#pragma warning restore /// <summary> /// Initializes a new instance of the <see cref="AttestationClient"/> class. /// </summary> /// <param name="endpoint">Uri for the Microsoft Azure Attestation Service Instance to use.</param> /// <param name="credential">Credentials to be used in the Client.</param> /// <param name="options"><see cref="AttestationClientOptions"/> used to configure the API client.</param> #pragma warning disable CA1801 public AttestationAdministrationClient(Uri endpoint, TokenCredential credential, AttestationClientOptions options) { Argument.AssertNotNull(endpoint, nameof(endpoint)); Argument.AssertNotNull(credential, nameof(credential)); Argument.AssertNotNull(options, nameof(options)); _options = options; // Add the authentication policy to our builder. _pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(credential, DefaultScope)); // Initialize the ClientDiagnostics. _clientDiagnostics = new ClientDiagnostics(options); Endpoint = endpoint; // Initialize the Policy Rest Client. _policyClient = new PolicyRestClient(_clientDiagnostics, _pipeline, Endpoint.AbsoluteUri, options.Version); // Initialize the Certificates Rest Client. _policyManagementClient = new PolicyCertificatesRestClient(_clientDiagnostics, _pipeline, Endpoint.AbsoluteUri, options.Version); // Initialize the Attestation Rest Client. _attestationClient = new AttestationClient(endpoint, credential, options); }