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

[AutoPR @azure/arm-netapp] Fix missing type in netapp, update on PR 8170 - ANF-4290ClarifyMsftChangeToANFSwagger #851

Closed
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/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019 Microsoft
Copyright (c) 2020 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 0 additions & 2 deletions sdk/netapp/arm-netapp/src/azureNetAppFilesManagementClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class AzureNetAppFilesManagementClient extends AzureNetAppFilesManagementClientC
accounts: operations.Accounts;
pools: operations.Pools;
volumes: operations.Volumes;
mountTargets: operations.MountTargets;
snapshots: operations.Snapshots;

/**
Expand All @@ -39,7 +38,6 @@ class AzureNetAppFilesManagementClient extends AzureNetAppFilesManagementClientC
this.accounts = new operations.Accounts(this);
this.pools = new operations.Pools(this);
this.volumes = new operations.Volumes(this);
this.mountTargets = new operations.MountTargets(this);
this.snapshots = new operations.Snapshots(this);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class AzureNetAppFilesManagementClientContext extends msRestAzure.AzureSe

super(credentials, options);

this.apiVersion = '2019-10-01';
this.apiVersion = '2019-11-01';
this.acceptLanguage = 'en-US';
this.longRunningOperationRetryTimeout = 30;
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
Expand Down
3 changes: 2 additions & 1 deletion sdk/netapp/arm-netapp/src/models/accountsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@ export {
CapacityPoolPatch,
CloudError,
ExportPolicyRule,
MountTarget,
MountTargetList,
NetAppAccount,
NetAppAccountList,
NetAppAccountPatch,
ReplicationObject,
Snapshot,
SnapshotPatch,
Volume,
VolumePatch,
VolumePatchPropertiesExportPolicy,
Expand Down
Loading