Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

netapp-track1 #17781

Merged
merged 1 commit into from
Sep 27, 2021
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
2 changes: 1 addition & 1 deletion sdk/netapp/arm-netapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@azure/arm-netapp",
"author": "Microsoft Corporation",
"description": "AzureNetAppFilesManagementClient Library with typescript type definitions for node.js and browser.",
"version": "14.2.0",
"version": "14.3.0",
"dependencies": {
"@azure/ms-rest-azure-js": "^2.1.0",
"@azure/ms-rest-js": "^2.2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class AzureNetAppFilesManagementClient extends AzureNetAppFilesManagementClientC
// Operation groups
operations: operations.Operations;
netAppResource: operations.NetAppResource;
netAppResourceQuotaLimits: operations.NetAppResourceQuotaLimits;
accounts: operations.Accounts;
pools: operations.Pools;
volumes: operations.Volumes;
Expand All @@ -45,6 +46,7 @@ class AzureNetAppFilesManagementClient extends AzureNetAppFilesManagementClientC
super(credentials, subscriptionId, options);
this.operations = new operations.Operations(this);
this.netAppResource = new operations.NetAppResource(this);
this.netAppResourceQuotaLimits = new operations.NetAppResourceQuotaLimits(this);
this.accounts = new operations.Accounts(this);
this.pools = new operations.Pools(this);
this.volumes = new operations.Volumes(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import * as msRestAzure from "@azure/ms-rest-azure-js";
import { TokenCredential } from "@azure/core-auth";

const packageName = "@azure/arm-netapp";
const packageVersion = "14.2.0";
const packageVersion = "14.3.0";

export class AzureNetAppFilesManagementClientContext extends msRestAzure.AzureServiceClient {
credentials: msRest.ServiceClientCredentials | TokenCredential;
Expand Down
5 changes: 5 additions & 0 deletions sdk/netapp/arm-netapp/src/models/accountBackupsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
export {
AccountEncryption,
ActiveDirectory,
AzureEntityResource,
Backup,
BackupPatch,
BackupPolicy,
Expand All @@ -26,10 +27,14 @@ export {
MountTargetProperties,
NetAppAccount,
NetAppAccountPatch,
ProxyResource,
ReplicationObject,
Resource,
Snapshot,
SnapshotPolicy,
SubscriptionQuotaItem,
SystemData,
TrackedResource,
Vault,
Volume,
VolumeBackupProperties,
Expand Down
5 changes: 5 additions & 0 deletions sdk/netapp/arm-netapp/src/models/accountsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
export {
AccountEncryption,
ActiveDirectory,
AzureEntityResource,
Backup,
BackupPatch,
BackupPolicy,
Expand All @@ -26,10 +27,14 @@ export {
NetAppAccount,
NetAppAccountList,
NetAppAccountPatch,
ProxyResource,
ReplicationObject,
Resource,
Snapshot,
SnapshotPolicy,
SubscriptionQuotaItem,
SystemData,
TrackedResource,
Vault,
Volume,
VolumeBackupProperties,
Expand Down
5 changes: 5 additions & 0 deletions sdk/netapp/arm-netapp/src/models/backupPoliciesMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
export {
AccountEncryption,
ActiveDirectory,
AzureEntityResource,
Backup,
BackupPatch,
BackupPoliciesList,
Expand All @@ -26,10 +27,14 @@ export {
MountTargetProperties,
NetAppAccount,
NetAppAccountPatch,
ProxyResource,
ReplicationObject,
Resource,
Snapshot,
SnapshotPolicy,
SubscriptionQuotaItem,
SystemData,
TrackedResource,
Vault,
Volume,
VolumeBackupProperties,
Expand Down
5 changes: 5 additions & 0 deletions sdk/netapp/arm-netapp/src/models/backupsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
export {
AccountEncryption,
ActiveDirectory,
AzureEntityResource,
Backup,
BackupPatch,
BackupPolicy,
Expand All @@ -27,11 +28,15 @@ export {
MountTargetProperties,
NetAppAccount,
NetAppAccountPatch,
ProxyResource,
ReplicationObject,
Resource,
RestoreStatus,
Snapshot,
SnapshotPolicy,
SubscriptionQuotaItem,
SystemData,
TrackedResource,
Vault,
Volume,
VolumeBackupProperties,
Expand Down
Loading