@azure/attestation 1.0.1-alpha.20241002.1 → 1.0.1-alpha.20241004.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/dist-esm/src/attestationAdministrationClient.js +1 -0
- package/dist-esm/src/attestationAdministrationClient.js.map +1 -1
- package/dist-esm/src/attestationClient.js +6 -2
- package/dist-esm/src/attestationClient.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2444,7 +2444,9 @@ class AttestationClient {
|
|
|
2444
2444
|
* @param options - Client operation options.
|
|
2445
2445
|
* @returns the set of AttestationSigners which may be used to sign attestation tokens.
|
|
2446
2446
|
*/
|
|
2447
|
-
async getAttestationSigners(
|
|
2447
|
+
async getAttestationSigners(
|
|
2448
|
+
// eslint-disable-next-line @azure/azure-sdk/ts-naming-options
|
|
2449
|
+
options = {}) {
|
|
2448
2450
|
return tracingClient.withSpan("AttestationClient-getAttestationSigners", options, async (updatedOptions) => {
|
|
2449
2451
|
var _a;
|
|
2450
2452
|
const signingCertificates = await this._client.signingCertificates.get(updatedOptions);
|
|
@@ -2460,7 +2462,9 @@ class AttestationClient {
|
|
|
2460
2462
|
* @param options - Client operation options.
|
|
2461
2463
|
* @returns The OpenID metadata discovery document for the attestation service.
|
|
2462
2464
|
*/
|
|
2463
|
-
async getOpenIdMetadata(
|
|
2465
|
+
async getOpenIdMetadata(
|
|
2466
|
+
// eslint-disable-next-line @azure/azure-sdk/ts-naming-options
|
|
2467
|
+
options = {}) {
|
|
2464
2468
|
return tracingClient.withSpan("AttestationClient-getOpenIdMetadata", options, async (updatedOptions) => {
|
|
2465
2469
|
const configs = await this._client.metadataConfiguration.get(updatedOptions);
|
|
2466
2470
|
return configs;
|
|
@@ -2503,6 +2507,7 @@ function _policyResultFromGenerated(rawJson) {
|
|
|
2503
2507
|
|
|
2504
2508
|
// Copyright (c) Microsoft Corporation.
|
|
2505
2509
|
// Licensed under the MIT License.
|
|
2510
|
+
/* eslint-disable @azure/azure-sdk/ts-naming-options */
|
|
2506
2511
|
/**
|
|
2507
2512
|
* Attestation Client class.
|
|
2508
2513
|
*
|