Skip to content

Commit 90fbb75

Browse files
author
SDKAuto
committed
CodeGen from PR 13577 in Azure/azure-rest-api-specs
Merge 2870e437d59be9c18721fe0e56869f97580a2289 into f961bf41cf8b92f449c1a919710f70356ade9b47
1 parent 10395be commit 90fbb75

File tree

61 files changed

+450
-39
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+450
-39
lines changed

sdk/apimanagement/arm-apimanagement/src/apiManagementClientContext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export class ApiManagementClientContext extends msRestAzure.AzureServiceClient {
4444

4545
super(credentials, options);
4646

47-
this.apiVersion = '2020-12-01';
47+
this.apiVersion = '2021-01-01-preview';
4848
this.acceptLanguage = 'en-US';
4949
this.longRunningOperationRetryTimeout = 30;
5050
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";

sdk/apimanagement/arm-apimanagement/src/models/apiDiagnosticMappers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@
99
export {
1010
AccessInformationContract,
1111
AdditionalLocation,
12+
ApiContactInformation,
1213
ApiContract,
1314
ApiDiagnosticCreateOrUpdateHeaders,
1415
ApiDiagnosticGetEntityTagHeaders,
1516
ApiDiagnosticGetHeaders,
1617
ApiDiagnosticUpdateHeaders,
18+
ApiLicenseInformation,
1719
ApiManagementServiceIdentity,
1820
ApiManagementServiceResource,
1921
ApiManagementServiceSkuProperties,

sdk/apimanagement/arm-apimanagement/src/models/apiIssueAttachmentMappers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@
99
export {
1010
AccessInformationContract,
1111
AdditionalLocation,
12+
ApiContactInformation,
1213
ApiContract,
1314
ApiIssueAttachmentCreateOrUpdateHeaders,
1415
ApiIssueAttachmentGetEntityTagHeaders,
1516
ApiIssueAttachmentGetHeaders,
17+
ApiLicenseInformation,
1618
ApiManagementServiceIdentity,
1719
ApiManagementServiceResource,
1820
ApiManagementServiceSkuProperties,

sdk/apimanagement/arm-apimanagement/src/models/apiIssueCommentMappers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@
99
export {
1010
AccessInformationContract,
1111
AdditionalLocation,
12+
ApiContactInformation,
1213
ApiContract,
1314
ApiIssueCommentCreateOrUpdateHeaders,
1415
ApiIssueCommentGetEntityTagHeaders,
1516
ApiIssueCommentGetHeaders,
17+
ApiLicenseInformation,
1618
ApiManagementServiceIdentity,
1719
ApiManagementServiceResource,
1820
ApiManagementServiceSkuProperties,

sdk/apimanagement/arm-apimanagement/src/models/apiIssueMappers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@
99
export {
1010
AccessInformationContract,
1111
AdditionalLocation,
12+
ApiContactInformation,
1213
ApiContract,
1314
ApiIssueCreateOrUpdateHeaders,
1415
ApiIssueGetEntityTagHeaders,
1516
ApiIssueGetHeaders,
1617
ApiIssueUpdateHeaders,
18+
ApiLicenseInformation,
1719
ApiManagementServiceIdentity,
1820
ApiManagementServiceResource,
1921
ApiManagementServiceSkuProperties,

sdk/apimanagement/arm-apimanagement/src/models/apiManagementServiceMappers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
export {
1010
AccessInformationContract,
1111
AdditionalLocation,
12+
ApiContactInformation,
1213
ApiContract,
14+
ApiLicenseInformation,
1315
ApiManagementServiceApplyNetworkConfigurationParameters,
1416
ApiManagementServiceBackupRestoreParameters,
1517
ApiManagementServiceCheckNameAvailabilityParameters,

sdk/apimanagement/arm-apimanagement/src/models/apiMappers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export {
1010
AccessInformationContract,
1111
AdditionalLocation,
1212
ApiCollection,
13+
ApiContactInformation,
1314
ApiContract,
1415
ApiContractProperties,
1516
ApiCreateOrUpdateHeaders,
@@ -18,6 +19,7 @@ export {
1819
ApiEntityBaseContract,
1920
ApiGetEntityTagHeaders,
2021
ApiGetHeaders,
22+
ApiLicenseInformation,
2123
ApiManagementServiceIdentity,
2224
ApiManagementServiceResource,
2325
ApiManagementServiceSkuProperties,

sdk/apimanagement/arm-apimanagement/src/models/apiOperationMappers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
export {
1010
AccessInformationContract,
1111
AdditionalLocation,
12+
ApiContactInformation,
1213
ApiContract,
14+
ApiLicenseInformation,
1315
ApiManagementServiceIdentity,
1416
ApiManagementServiceResource,
1517
ApiManagementServiceSkuProperties,

sdk/apimanagement/arm-apimanagement/src/models/apiOperationPolicyMappers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
export {
1010
AccessInformationContract,
1111
AdditionalLocation,
12+
ApiContactInformation,
1213
ApiContract,
14+
ApiLicenseInformation,
1315
ApiManagementServiceIdentity,
1416
ApiManagementServiceResource,
1517
ApiManagementServiceSkuProperties,

sdk/apimanagement/arm-apimanagement/src/models/apiPolicyMappers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
export {
1010
AccessInformationContract,
1111
AdditionalLocation,
12+
ApiContactInformation,
1213
ApiContract,
14+
ApiLicenseInformation,
1315
ApiManagementServiceIdentity,
1416
ApiManagementServiceResource,
1517
ApiManagementServiceSkuProperties,

0 commit comments

Comments
 (0)