Skip to content

Commit ce14b98

Browse files
author
SDKAuto
committed
CodeGen from PR 12367 in Azure/azure-rest-api-specs
Merge 248fbe91c26176160782c0eead5168772ec86ed4 into 3227f9795b09642afb975f40d45ed481192b43a2
1 parent 1cdf789 commit ce14b98

18 files changed

+487
-62
lines changed

sdk/netapp/arm-netapp/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2020 Microsoft
3+
Copyright (c) 2021 Microsoft
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

sdk/netapp/arm-netapp/src/azureNetAppFilesManagementClientContext.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,25 +37,25 @@ export class AzureNetAppFilesManagementClientContext extends msRestAzure.AzureSe
3737
if (!options) {
3838
options = {};
3939
}
40-
if (!options.userAgent) {
40+
if(!options.userAgent) {
4141
const defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
4242
options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;
4343
}
4444

4545
super(credentials, options);
4646

47-
this.apiVersion = '2020-09-01';
47+
this.apiVersion = '2020-11-01';
4848
this.acceptLanguage = 'en-US';
4949
this.longRunningOperationRetryTimeout = 30;
5050
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
5151
this.requestContentType = "application/json; charset=utf-8";
5252
this.credentials = credentials;
5353
this.subscriptionId = subscriptionId;
5454

55-
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
55+
if(options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
5656
this.acceptLanguage = options.acceptLanguage;
5757
}
58-
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
58+
if(options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
5959
this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
6060
}
6161
}

sdk/netapp/arm-netapp/src/models/accountBackupsMappers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*/
88

99
export {
10+
AccountEncryption,
1011
ActiveDirectory,
1112
Backup,
1213
BackupPatch,
@@ -28,6 +29,7 @@ export {
2829
ReplicationObject,
2930
Snapshot,
3031
SnapshotPolicy,
32+
SystemData,
3133
Vault,
3234
Volume,
3335
VolumeBackupProperties,

sdk/netapp/arm-netapp/src/models/accountsMappers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*/
88

99
export {
10+
AccountEncryption,
1011
ActiveDirectory,
1112
Backup,
1213
BackupPatch,
@@ -28,6 +29,7 @@ export {
2829
ReplicationObject,
2930
Snapshot,
3031
SnapshotPolicy,
32+
SystemData,
3133
Vault,
3234
Volume,
3335
VolumeBackupProperties,

sdk/netapp/arm-netapp/src/models/backupPoliciesMappers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*/
88

99
export {
10+
AccountEncryption,
1011
ActiveDirectory,
1112
Backup,
1213
BackupPatch,
@@ -28,6 +29,7 @@ export {
2829
ReplicationObject,
2930
Snapshot,
3031
SnapshotPolicy,
32+
SystemData,
3133
Vault,
3234
Volume,
3335
VolumeBackupProperties,

sdk/netapp/arm-netapp/src/models/backupsMappers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*/
88

99
export {
10+
AccountEncryption,
1011
ActiveDirectory,
1112
Backup,
1213
BackupPatch,
@@ -28,6 +29,7 @@ export {
2829
ReplicationObject,
2930
Snapshot,
3031
SnapshotPolicy,
32+
SystemData,
3133
Vault,
3234
Volume,
3335
VolumeBackupProperties,

0 commit comments

Comments
 (0)