Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ export default class KeyVaultManagementClient extends AzureServiceClient {
*
* @param {boolean} [options.noRetryPolicy] - If set to true, turn off default retry policy
*
* @param {string} [options.acceptLanguage] - Gets or sets the preferred language for the response.
* @param {string} [options.acceptLanguage] - The preferred language for the response.
*
* @param {number} [options.longRunningOperationRetryTimeout] - Gets or sets the retry timeout in seconds for Long Running Operations. Default value is 30.
* @param {number} [options.longRunningOperationRetryTimeout] - The retry timeout in seconds for Long Running Operations. Default value is 30.
*
* @param {boolean} [options.generateClientRequestId] - When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
* @param {boolean} [options.generateClientRequestId] - Whether a unique x-ms-client-request-id should be generated. When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
*
*/
constructor(credentials: ServiceClientCredentials, subscriptionId: string, baseUri?: string, options?: AzureServiceClientOptions);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ class KeyVaultManagementClient extends ServiceClient {
* @param {object} [options.requestOptions] - Options for the underlying request object
* {@link https://github.com/request/request#requestoptions-callback Options doc}
* @param {boolean} [options.noRetryPolicy] - If set to true, turn off default retry policy
* @param {string} [options.acceptLanguage] - Gets or sets the preferred language for the response.
* @param {number} [options.longRunningOperationRetryTimeout] - Gets or sets the retry timeout in seconds for Long Running Operations. Default value is 30.
* @param {boolean} [options.generateClientRequestId] - When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
* @param {string} [options.acceptLanguage] - The preferred language for the response.
* @param {number} [options.longRunningOperationRetryTimeout] - The retry timeout in seconds for Long Running Operations. Default value is 30.
* @param {boolean} [options.generateClientRequestId] - Whether a unique x-ms-client-request-id should be generated. When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
*/
constructor(credentials, subscriptionId, baseUri, options) {
if (credentials === null || credentials === undefined) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* An identity that have access to the key vault. All identities in the array
* must use the same tenant ID as the key vault's tenant ID.
Expand Down
2 changes: 0 additions & 2 deletions lib/services/keyVaultManagement/lib/models/deletedVault.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* Deleted vault information with extended details.
*
Expand Down
2 changes: 0 additions & 2 deletions lib/services/keyVaultManagement/lib/models/networkRuleSet.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* A set of rules governing the network accessibility of a vault.
*
Expand Down
2 changes: 0 additions & 2 deletions lib/services/keyVaultManagement/lib/models/operation.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* Key Vault REST API operation definition.
*
Expand Down
8 changes: 4 additions & 4 deletions lib/services/keyVaultManagement/lib/models/permissions.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class Permissions {
name: 'Sequence',
element: {
required: false,
serializedName: 'StringElementType',
serializedName: 'KeyPermissionsElementType',
type: {
name: 'String'
}
Expand All @@ -60,7 +60,7 @@ class Permissions {
name: 'Sequence',
element: {
required: false,
serializedName: 'StringElementType',
serializedName: 'SecretPermissionsElementType',
type: {
name: 'String'
}
Expand All @@ -74,7 +74,7 @@ class Permissions {
name: 'Sequence',
element: {
required: false,
serializedName: 'StringElementType',
serializedName: 'CertificatePermissionsElementType',
type: {
name: 'String'
}
Expand All @@ -88,7 +88,7 @@ class Permissions {
name: 'Sequence',
element: {
required: false,
serializedName: 'StringElementType',
serializedName: 'StoragePermissionsElementType',
type: {
name: 'String'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* One property of operation, include log specifications.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* Properties of the vault access policy
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* Properties of the vault
*
Expand Down
2 changes: 0 additions & 2 deletions lib/services/keyVaultManagement/lib/models/vaultProperties.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* Properties of the vault
*
Expand Down
Loading