Skip to content

Commit

Permalink
containerinstance-track1 (Azure#18183)
Browse files Browse the repository at this point in the history
  • Loading branch information
colawwj authored Oct 18, 2021
1 parent 2ab232f commit 008ed54
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 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 @@ -2,7 +2,7 @@
"name": "@azure/arm-containerinstance",
"author": "Microsoft Corporation",
"description": "ContainerInstanceManagementClient Library with typescript type definitions for node.js and browser.",
"version": "7.0.0",
"version": "7.1.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 @@ -13,7 +13,7 @@ import * as msRestAzure from "@azure/ms-rest-azure-js";
import { TokenCredential } from "@azure/core-auth";

const packageName = "@azure/arm-containerinstance";
const packageVersion = "7.0.0";
const packageVersion = "7.1.0";

export class ContainerInstanceManagementClientContext extends msRestAzure.AzureServiceClient {
credentials: msRest.ServiceClientCredentials | TokenCredential;
Expand Down 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 008ed54

Please sign in to comment.