File tree Expand file tree Collapse file tree 4 files changed +18
-3
lines changed
sdk/containerinstance/arm-containerinstance Expand file tree Collapse file tree 4 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " @azure/arm-containerinstance" ,
3
3
"author" : " Microsoft Corporation" ,
4
4
"description" : " ContainerInstanceManagementClient Library with typescript type definitions for node.js and browser." ,
5
- "version" : " 7.0 .0" ,
5
+ "version" : " 7.1 .0" ,
6
6
"dependencies" : {
7
7
"@azure/ms-rest-azure-js" : " ^2.1.0" ,
8
8
"@azure/ms-rest-js" : " ^2.2.0" ,
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import * as msRestAzure from "@azure/ms-rest-azure-js";
13
13
import { TokenCredential } from "@azure/core-auth" ;
14
14
15
15
const packageName = "@azure/arm-containerinstance" ;
16
- const packageVersion = "7.0 .0" ;
16
+ const packageVersion = "7.1 .0" ;
17
17
18
18
export class ContainerInstanceManagementClientContext extends msRestAzure . AzureServiceClient {
19
19
credentials : msRest . ServiceClientCredentials | TokenCredential ;
@@ -50,7 +50,7 @@ export class ContainerInstanceManagementClientContext extends msRestAzure.AzureS
50
50
51
51
super ( credentials , options ) ;
52
52
53
- this . apiVersion = '2021-07 -01' ;
53
+ this . apiVersion = '2021-09 -01' ;
54
54
this . acceptLanguage = 'en-US' ;
55
55
this . longRunningOperationRetryTimeout = 30 ;
56
56
this . baseUri = options . baseUri || this . baseUri || "https://management.azure.com" ;
Original file line number Diff line number Diff line change @@ -714,6 +714,10 @@ export interface Resource extends BaseResource {
714
714
* The resource tags.
715
715
*/
716
716
tags ?: { [ propertyName : string ] : string } ;
717
+ /**
718
+ * The zones for the container group.
719
+ */
720
+ zones ?: string [ ] ;
717
721
}
718
722
719
723
/**
Original file line number Diff line number Diff line change @@ -1221,6 +1221,17 @@ export const Resource: msRest.CompositeMapper = {
1221
1221
}
1222
1222
}
1223
1223
}
1224
+ } ,
1225
+ zones : {
1226
+ serializedName : "zones" ,
1227
+ type : {
1228
+ name : "Sequence" ,
1229
+ element : {
1230
+ type : {
1231
+ name : "String"
1232
+ }
1233
+ }
1234
+ }
1224
1235
}
1225
1236
}
1226
1237
}
You can’t perform that action at this time.
0 commit comments