Skip to content

Commit

Permalink
CodeGen from PR 16247 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge e07f70ace2bdbef12cca324de9eee31005161aa7 into 2ebe584103a362fa87f2f60c9bab89ab410c7571
  • Loading branch information
SDKAuto committed Oct 7, 2021
1 parent af0330b commit 21dd7e4
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdk/containerinstance/arm-containerinstance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"rollup-plugin-sourcemaps": "^0.4.2",
"uglify-js": "^3.6.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/feature/v4/sdk/containerinstance/arm-containerinstance",
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/containerinstance/arm-containerinstance",
"repository": {
"type": "git",
"url": "https://github.com/Azure/azure-sdk-for-js.git"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class ContainerInstanceManagementClientContext extends msRestAzure.AzureS

super(credentials, options);

this.apiVersion = '2021-07-01';
this.apiVersion = '2021-09-01';
this.acceptLanguage = 'en-US';
this.longRunningOperationRetryTimeout = 30;
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -714,6 +714,10 @@ export interface Resource extends BaseResource {
* The resource tags.
*/
tags?: { [propertyName: string]: string };
/**
* The zones for the container group.
*/
zones?: string[];
}

/**
Expand Down
11 changes: 11 additions & 0 deletions sdk/containerinstance/arm-containerinstance/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1221,6 +1221,17 @@ export const Resource: msRest.CompositeMapper = {
}
}
}
},
zones: {
serializedName: "zones",
type: {
name: "Sequence",
element: {
type: {
name: "String"
}
}
}
}
}
}
Expand Down

0 comments on commit 21dd7e4

Please sign in to comment.