@azure/arm-containerinstance 6.3.0 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/{LICENSE.txt → LICENSE} +2 -2
- package/README.md +70 -78
- package/dist/index.js +3335 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/containerInstanceManagementClient.d.ts +22 -0
- package/dist-esm/src/containerInstanceManagementClient.d.ts.map +1 -0
- package/dist-esm/src/containerInstanceManagementClient.js +55 -0
- package/dist-esm/src/containerInstanceManagementClient.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +964 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +70 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +54 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/mappers.js +799 -788
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +17 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/parameters.js +67 -37
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/containerGroups.d.ts +159 -0
- package/dist-esm/src/operations/containerGroups.d.ts.map +1 -0
- package/dist-esm/src/operations/containerGroups.js +678 -0
- package/dist-esm/src/operations/containerGroups.js.map +1 -0
- package/dist-esm/src/operations/containers.d.ts +40 -0
- package/dist-esm/src/operations/containers.d.ts.map +1 -0
- package/dist-esm/src/operations/containers.js +134 -0
- package/dist-esm/src/operations/containers.js.map +1 -0
- package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/{esm → dist-esm/src}/operations/index.js +1 -2
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/location.d.ts +70 -0
- package/dist-esm/src/operations/location.d.ts.map +1 -0
- package/dist-esm/src/operations/location.js +310 -0
- package/dist-esm/src/operations/location.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +32 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +120 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/containerGroups.d.ts +119 -0
- package/dist-esm/src/operationsInterfaces/containerGroups.d.ts.map +1 -0
- package/{src/models/operationsMappers.ts → dist-esm/src/operationsInterfaces/containerGroups.js} +2 -7
- package/dist-esm/src/operationsInterfaces/containerGroups.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/containers.d.ts +32 -0
- package/dist-esm/src/operationsInterfaces/containers.d.ts.map +1 -0
- package/{esm/models/operationsMappers.js → dist-esm/src/operationsInterfaces/containers.js} +2 -2
- package/dist-esm/src/operationsInterfaces/containers.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +12 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/location.d.ts +24 -0
- package/dist-esm/src/operationsInterfaces/location.d.ts.map +1 -0
- package/{esm/models/index.js → dist-esm/src/operationsInterfaces/location.js} +2 -1
- package/dist-esm/src/operationsInterfaces/location.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/{src/models/containersMappers.ts → dist-esm/src/operationsInterfaces/operations.js} +2 -9
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/test/containerinstance_examples.d.ts +4 -0
- package/dist-esm/test/containerinstance_examples.d.ts.map +1 -0
- package/dist-esm/test/containerinstance_examples.js +156 -0
- package/dist-esm/test/containerinstance_examples.js.map +1 -0
- package/package.json +65 -32
- package/review/arm-containerinstance.api.md +752 -0
- package/rollup.config.js +181 -30
- package/src/containerInstanceManagementClient.ts +78 -40
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +734 -1215
- package/src/models/mappers.ts +808 -793
- package/src/models/parameters.ts +90 -38
- package/src/operations/containerGroups.ts +660 -424
- package/src/operations/containers.ts +89 -143
- package/src/operations/index.ts +1 -2
- package/src/operations/location.ts +262 -179
- package/src/operations/operations.ts +85 -73
- package/src/operationsInterfaces/containerGroups.ts +212 -0
- package/src/operationsInterfaces/containers.ts +64 -0
- package/src/operationsInterfaces/index.ts +12 -0
- package/src/operationsInterfaces/location.ts +49 -0
- package/src/operationsInterfaces/operations.ts +22 -0
- package/tsconfig.json +3 -3
- package/types/arm-containerinstance.d.ts +1282 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-containerinstance.js +0 -3019
- package/dist/arm-containerinstance.js.map +0 -1
- package/dist/arm-containerinstance.min.js +0 -1
- package/dist/arm-containerinstance.min.js.map +0 -1
- package/esm/containerInstanceManagementClient.d.ts +0 -28
- package/esm/containerInstanceManagementClient.d.ts.map +0 -1
- package/esm/containerInstanceManagementClient.js +0 -41
- package/esm/containerInstanceManagementClient.js.map +0 -1
- package/esm/containerInstanceManagementClientContext.d.ts +0 -23
- package/esm/containerInstanceManagementClientContext.d.ts.map +0 -1
- package/esm/containerInstanceManagementClientContext.js +0 -61
- package/esm/containerInstanceManagementClientContext.js.map +0 -1
- package/esm/models/containerGroupsMappers.d.ts +0 -2
- package/esm/models/containerGroupsMappers.d.ts.map +0 -1
- package/esm/models/containerGroupsMappers.js +0 -9
- package/esm/models/containerGroupsMappers.js.map +0 -1
- package/esm/models/containersMappers.d.ts +0 -2
- package/esm/models/containersMappers.d.ts.map +0 -1
- package/esm/models/containersMappers.js +0 -9
- package/esm/models/containersMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -1469
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js.map +0 -1
- package/esm/models/locationMappers.d.ts +0 -2
- package/esm/models/locationMappers.d.ts.map +0 -1
- package/esm/models/locationMappers.js +0 -9
- package/esm/models/locationMappers.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -54
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -12
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/containerGroups.d.ts +0 -247
- package/esm/operations/containerGroups.d.ts.map +0 -1
- package/esm/operations/containerGroups.js +0 -455
- package/esm/operations/containerGroups.js.map +0 -1
- package/esm/operations/containers.d.ts +0 -94
- package/esm/operations/containers.d.ts.map +0 -1
- package/esm/operations/containers.js +0 -133
- package/esm/operations/containers.js.map +0 -1
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/location.d.ts +0 -107
- package/esm/operations/location.d.ts.map +0 -1
- package/esm/operations/location.js +0 -171
- package/esm/operations/location.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -46
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -79
- package/esm/operations/operations.js.map +0 -1
- package/src/containerInstanceManagementClientContext.ts +0 -68
- package/src/models/containerGroupsMappers.ts +0 -46
- package/src/models/locationMappers.ts +0 -19
package/src/models/mappers.ts
CHANGED
|
@@ -6,153 +6,247 @@
|
|
|
6
6
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
import
|
|
10
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
9
|
+
import * as coreClient from "@azure/core-client";
|
|
11
10
|
|
|
12
|
-
export const
|
|
13
|
-
export const BaseResource = BaseResourceMapper;
|
|
14
|
-
|
|
15
|
-
export const ContainerPort: msRest.CompositeMapper = {
|
|
16
|
-
serializedName: "ContainerPort",
|
|
11
|
+
export const ContainerGroupListResult: coreClient.CompositeMapper = {
|
|
17
12
|
type: {
|
|
18
13
|
name: "Composite",
|
|
19
|
-
className: "
|
|
14
|
+
className: "ContainerGroupListResult",
|
|
20
15
|
modelProperties: {
|
|
21
|
-
|
|
22
|
-
serializedName: "
|
|
16
|
+
value: {
|
|
17
|
+
serializedName: "value",
|
|
23
18
|
type: {
|
|
24
|
-
name: "
|
|
19
|
+
name: "Sequence",
|
|
20
|
+
element: {
|
|
21
|
+
type: {
|
|
22
|
+
name: "Composite",
|
|
23
|
+
className: "ContainerGroup"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
25
26
|
}
|
|
26
27
|
},
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
serializedName: "port",
|
|
28
|
+
nextLink: {
|
|
29
|
+
serializedName: "nextLink",
|
|
30
30
|
type: {
|
|
31
|
-
name: "
|
|
31
|
+
name: "String"
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
37
|
|
|
38
|
-
export const
|
|
39
|
-
serializedName: "EnvironmentVariable",
|
|
38
|
+
export const ContainerGroupIdentity: coreClient.CompositeMapper = {
|
|
40
39
|
type: {
|
|
41
40
|
name: "Composite",
|
|
42
|
-
className: "
|
|
41
|
+
className: "ContainerGroupIdentity",
|
|
43
42
|
modelProperties: {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
43
|
+
principalId: {
|
|
44
|
+
serializedName: "principalId",
|
|
45
|
+
readOnly: true,
|
|
47
46
|
type: {
|
|
48
47
|
name: "String"
|
|
49
48
|
}
|
|
50
49
|
},
|
|
51
|
-
|
|
52
|
-
serializedName: "
|
|
50
|
+
tenantId: {
|
|
51
|
+
serializedName: "tenantId",
|
|
52
|
+
readOnly: true,
|
|
53
53
|
type: {
|
|
54
54
|
name: "String"
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
|
-
|
|
58
|
-
serializedName: "
|
|
57
|
+
type: {
|
|
58
|
+
serializedName: "type",
|
|
59
59
|
type: {
|
|
60
|
-
name: "
|
|
60
|
+
name: "Enum",
|
|
61
|
+
allowedValues: [
|
|
62
|
+
"SystemAssigned",
|
|
63
|
+
"UserAssigned",
|
|
64
|
+
"SystemAssigned, UserAssigned",
|
|
65
|
+
"None"
|
|
66
|
+
]
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
userAssignedIdentities: {
|
|
70
|
+
serializedName: "userAssignedIdentities",
|
|
71
|
+
type: {
|
|
72
|
+
name: "Dictionary",
|
|
73
|
+
value: {
|
|
74
|
+
type: {
|
|
75
|
+
name: "Composite",
|
|
76
|
+
className:
|
|
77
|
+
"Components10Wh5UdSchemasContainergroupidentityPropertiesUserassignedidentitiesAdditionalproperties"
|
|
78
|
+
}
|
|
79
|
+
}
|
|
61
80
|
}
|
|
62
81
|
}
|
|
63
82
|
}
|
|
64
83
|
}
|
|
65
84
|
};
|
|
66
85
|
|
|
67
|
-
export const
|
|
68
|
-
serializedName: "ContainerState",
|
|
86
|
+
export const Components10Wh5UdSchemasContainergroupidentityPropertiesUserassignedidentitiesAdditionalproperties: coreClient.CompositeMapper = {
|
|
69
87
|
type: {
|
|
70
88
|
name: "Composite",
|
|
71
|
-
className:
|
|
89
|
+
className:
|
|
90
|
+
"Components10Wh5UdSchemasContainergroupidentityPropertiesUserassignedidentitiesAdditionalproperties",
|
|
72
91
|
modelProperties: {
|
|
73
|
-
|
|
92
|
+
principalId: {
|
|
93
|
+
serializedName: "principalId",
|
|
74
94
|
readOnly: true,
|
|
75
|
-
serializedName: "state",
|
|
76
95
|
type: {
|
|
77
96
|
name: "String"
|
|
78
97
|
}
|
|
79
98
|
},
|
|
80
|
-
|
|
99
|
+
clientId: {
|
|
100
|
+
serializedName: "clientId",
|
|
81
101
|
readOnly: true,
|
|
82
|
-
serializedName: "startTime",
|
|
83
102
|
type: {
|
|
84
|
-
name: "
|
|
103
|
+
name: "String"
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
export const Container: coreClient.CompositeMapper = {
|
|
111
|
+
type: {
|
|
112
|
+
name: "Composite",
|
|
113
|
+
className: "Container",
|
|
114
|
+
modelProperties: {
|
|
115
|
+
name: {
|
|
116
|
+
serializedName: "name",
|
|
117
|
+
required: true,
|
|
118
|
+
type: {
|
|
119
|
+
name: "String"
|
|
85
120
|
}
|
|
86
121
|
},
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
122
|
+
image: {
|
|
123
|
+
serializedName: "properties.image",
|
|
124
|
+
required: true,
|
|
90
125
|
type: {
|
|
91
|
-
name: "
|
|
126
|
+
name: "String"
|
|
92
127
|
}
|
|
93
128
|
},
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
serializedName: "finishTime",
|
|
129
|
+
command: {
|
|
130
|
+
serializedName: "properties.command",
|
|
97
131
|
type: {
|
|
98
|
-
name: "
|
|
132
|
+
name: "Sequence",
|
|
133
|
+
element: {
|
|
134
|
+
type: {
|
|
135
|
+
name: "String"
|
|
136
|
+
}
|
|
137
|
+
}
|
|
99
138
|
}
|
|
100
139
|
},
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
serializedName: "detailStatus",
|
|
140
|
+
ports: {
|
|
141
|
+
serializedName: "properties.ports",
|
|
104
142
|
type: {
|
|
105
|
-
name: "
|
|
143
|
+
name: "Sequence",
|
|
144
|
+
element: {
|
|
145
|
+
type: {
|
|
146
|
+
name: "Composite",
|
|
147
|
+
className: "ContainerPort"
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
environmentVariables: {
|
|
153
|
+
serializedName: "properties.environmentVariables",
|
|
154
|
+
type: {
|
|
155
|
+
name: "Sequence",
|
|
156
|
+
element: {
|
|
157
|
+
type: {
|
|
158
|
+
name: "Composite",
|
|
159
|
+
className: "EnvironmentVariable"
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
instanceView: {
|
|
165
|
+
serializedName: "properties.instanceView",
|
|
166
|
+
type: {
|
|
167
|
+
name: "Composite",
|
|
168
|
+
className: "ContainerPropertiesInstanceView"
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
resources: {
|
|
172
|
+
serializedName: "properties.resources",
|
|
173
|
+
type: {
|
|
174
|
+
name: "Composite",
|
|
175
|
+
className: "ResourceRequirements"
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
volumeMounts: {
|
|
179
|
+
serializedName: "properties.volumeMounts",
|
|
180
|
+
type: {
|
|
181
|
+
name: "Sequence",
|
|
182
|
+
element: {
|
|
183
|
+
type: {
|
|
184
|
+
name: "Composite",
|
|
185
|
+
className: "VolumeMount"
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
livenessProbe: {
|
|
191
|
+
serializedName: "properties.livenessProbe",
|
|
192
|
+
type: {
|
|
193
|
+
name: "Composite",
|
|
194
|
+
className: "ContainerProbe"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
readinessProbe: {
|
|
198
|
+
serializedName: "properties.readinessProbe",
|
|
199
|
+
type: {
|
|
200
|
+
name: "Composite",
|
|
201
|
+
className: "ContainerProbe"
|
|
106
202
|
}
|
|
107
203
|
}
|
|
108
204
|
}
|
|
109
205
|
}
|
|
110
206
|
};
|
|
111
207
|
|
|
112
|
-
export const
|
|
113
|
-
serializedName: "Event",
|
|
208
|
+
export const ContainerPort: coreClient.CompositeMapper = {
|
|
114
209
|
type: {
|
|
115
210
|
name: "Composite",
|
|
116
|
-
className: "
|
|
211
|
+
className: "ContainerPort",
|
|
117
212
|
modelProperties: {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
serializedName: "count",
|
|
121
|
-
type: {
|
|
122
|
-
name: "Number"
|
|
123
|
-
}
|
|
124
|
-
},
|
|
125
|
-
firstTimestamp: {
|
|
126
|
-
readOnly: true,
|
|
127
|
-
serializedName: "firstTimestamp",
|
|
213
|
+
protocol: {
|
|
214
|
+
serializedName: "protocol",
|
|
128
215
|
type: {
|
|
129
|
-
name: "
|
|
216
|
+
name: "String"
|
|
130
217
|
}
|
|
131
218
|
},
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
219
|
+
port: {
|
|
220
|
+
serializedName: "port",
|
|
221
|
+
required: true,
|
|
135
222
|
type: {
|
|
136
|
-
name: "
|
|
223
|
+
name: "Number"
|
|
137
224
|
}
|
|
138
|
-
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
};
|
|
229
|
+
|
|
230
|
+
export const EnvironmentVariable: coreClient.CompositeMapper = {
|
|
231
|
+
type: {
|
|
232
|
+
name: "Composite",
|
|
233
|
+
className: "EnvironmentVariable",
|
|
234
|
+
modelProperties: {
|
|
139
235
|
name: {
|
|
140
|
-
readOnly: true,
|
|
141
236
|
serializedName: "name",
|
|
237
|
+
required: true,
|
|
142
238
|
type: {
|
|
143
239
|
name: "String"
|
|
144
240
|
}
|
|
145
241
|
},
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
serializedName: "message",
|
|
242
|
+
value: {
|
|
243
|
+
serializedName: "value",
|
|
149
244
|
type: {
|
|
150
245
|
name: "String"
|
|
151
246
|
}
|
|
152
247
|
},
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
serializedName: "type",
|
|
248
|
+
secureValue: {
|
|
249
|
+
serializedName: "secureValue",
|
|
156
250
|
type: {
|
|
157
251
|
name: "String"
|
|
158
252
|
}
|
|
@@ -161,21 +255,19 @@ export const Event: msRest.CompositeMapper = {
|
|
|
161
255
|
}
|
|
162
256
|
};
|
|
163
257
|
|
|
164
|
-
export const ContainerPropertiesInstanceView:
|
|
165
|
-
serializedName: "ContainerProperties_instanceView",
|
|
258
|
+
export const ContainerPropertiesInstanceView: coreClient.CompositeMapper = {
|
|
166
259
|
type: {
|
|
167
260
|
name: "Composite",
|
|
168
261
|
className: "ContainerPropertiesInstanceView",
|
|
169
262
|
modelProperties: {
|
|
170
263
|
restartCount: {
|
|
171
|
-
readOnly: true,
|
|
172
264
|
serializedName: "restartCount",
|
|
265
|
+
readOnly: true,
|
|
173
266
|
type: {
|
|
174
267
|
name: "Number"
|
|
175
268
|
}
|
|
176
269
|
},
|
|
177
270
|
currentState: {
|
|
178
|
-
readOnly: true,
|
|
179
271
|
serializedName: "currentState",
|
|
180
272
|
type: {
|
|
181
273
|
name: "Composite",
|
|
@@ -183,7 +275,6 @@ export const ContainerPropertiesInstanceView: msRest.CompositeMapper = {
|
|
|
183
275
|
}
|
|
184
276
|
},
|
|
185
277
|
previousState: {
|
|
186
|
-
readOnly: true,
|
|
187
278
|
serializedName: "previousState",
|
|
188
279
|
type: {
|
|
189
280
|
name: "Composite",
|
|
@@ -191,8 +282,8 @@ export const ContainerPropertiesInstanceView: msRest.CompositeMapper = {
|
|
|
191
282
|
}
|
|
192
283
|
},
|
|
193
284
|
events: {
|
|
194
|
-
readOnly: true,
|
|
195
285
|
serializedName: "events",
|
|
286
|
+
readOnly: true,
|
|
196
287
|
type: {
|
|
197
288
|
name: "Sequence",
|
|
198
289
|
element: {
|
|
@@ -207,22 +298,42 @@ export const ContainerPropertiesInstanceView: msRest.CompositeMapper = {
|
|
|
207
298
|
}
|
|
208
299
|
};
|
|
209
300
|
|
|
210
|
-
export const
|
|
211
|
-
serializedName: "GpuResource",
|
|
301
|
+
export const ContainerState: coreClient.CompositeMapper = {
|
|
212
302
|
type: {
|
|
213
303
|
name: "Composite",
|
|
214
|
-
className: "
|
|
304
|
+
className: "ContainerState",
|
|
215
305
|
modelProperties: {
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
306
|
+
state: {
|
|
307
|
+
serializedName: "state",
|
|
308
|
+
readOnly: true,
|
|
309
|
+
type: {
|
|
310
|
+
name: "String"
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
startTime: {
|
|
314
|
+
serializedName: "startTime",
|
|
315
|
+
readOnly: true,
|
|
316
|
+
type: {
|
|
317
|
+
name: "DateTime"
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
exitCode: {
|
|
321
|
+
serializedName: "exitCode",
|
|
322
|
+
readOnly: true,
|
|
219
323
|
type: {
|
|
220
324
|
name: "Number"
|
|
221
325
|
}
|
|
222
326
|
},
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
327
|
+
finishTime: {
|
|
328
|
+
serializedName: "finishTime",
|
|
329
|
+
readOnly: true,
|
|
330
|
+
type: {
|
|
331
|
+
name: "DateTime"
|
|
332
|
+
}
|
|
333
|
+
},
|
|
334
|
+
detailStatus: {
|
|
335
|
+
serializedName: "detailStatus",
|
|
336
|
+
readOnly: true,
|
|
226
337
|
type: {
|
|
227
338
|
name: "String"
|
|
228
339
|
}
|
|
@@ -231,74 +342,63 @@ export const GpuResource: msRest.CompositeMapper = {
|
|
|
231
342
|
}
|
|
232
343
|
};
|
|
233
344
|
|
|
234
|
-
export const
|
|
235
|
-
serializedName: "ResourceRequests",
|
|
345
|
+
export const Event: coreClient.CompositeMapper = {
|
|
236
346
|
type: {
|
|
237
347
|
name: "Composite",
|
|
238
|
-
className: "
|
|
348
|
+
className: "Event",
|
|
239
349
|
modelProperties: {
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
350
|
+
count: {
|
|
351
|
+
serializedName: "count",
|
|
352
|
+
readOnly: true,
|
|
243
353
|
type: {
|
|
244
354
|
name: "Number"
|
|
245
355
|
}
|
|
246
356
|
},
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
357
|
+
firstTimestamp: {
|
|
358
|
+
serializedName: "firstTimestamp",
|
|
359
|
+
readOnly: true,
|
|
250
360
|
type: {
|
|
251
|
-
name: "
|
|
361
|
+
name: "DateTime"
|
|
252
362
|
}
|
|
253
363
|
},
|
|
254
|
-
|
|
255
|
-
serializedName: "
|
|
364
|
+
lastTimestamp: {
|
|
365
|
+
serializedName: "lastTimestamp",
|
|
366
|
+
readOnly: true,
|
|
256
367
|
type: {
|
|
257
|
-
name: "
|
|
258
|
-
className: "GpuResource"
|
|
368
|
+
name: "DateTime"
|
|
259
369
|
}
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
export const ResourceLimits: msRest.CompositeMapper = {
|
|
266
|
-
serializedName: "ResourceLimits",
|
|
267
|
-
type: {
|
|
268
|
-
name: "Composite",
|
|
269
|
-
className: "ResourceLimits",
|
|
270
|
-
modelProperties: {
|
|
271
|
-
memoryInGB: {
|
|
272
|
-
serializedName: "memoryInGB",
|
|
370
|
+
},
|
|
371
|
+
name: {
|
|
372
|
+
serializedName: "name",
|
|
373
|
+
readOnly: true,
|
|
273
374
|
type: {
|
|
274
|
-
name: "
|
|
375
|
+
name: "String"
|
|
275
376
|
}
|
|
276
377
|
},
|
|
277
|
-
|
|
278
|
-
serializedName: "
|
|
378
|
+
message: {
|
|
379
|
+
serializedName: "message",
|
|
380
|
+
readOnly: true,
|
|
279
381
|
type: {
|
|
280
|
-
name: "
|
|
382
|
+
name: "String"
|
|
281
383
|
}
|
|
282
384
|
},
|
|
283
|
-
|
|
284
|
-
serializedName: "
|
|
385
|
+
type: {
|
|
386
|
+
serializedName: "type",
|
|
387
|
+
readOnly: true,
|
|
285
388
|
type: {
|
|
286
|
-
name: "
|
|
287
|
-
className: "GpuResource"
|
|
389
|
+
name: "String"
|
|
288
390
|
}
|
|
289
391
|
}
|
|
290
392
|
}
|
|
291
393
|
}
|
|
292
394
|
};
|
|
293
395
|
|
|
294
|
-
export const ResourceRequirements:
|
|
295
|
-
serializedName: "ResourceRequirements",
|
|
396
|
+
export const ResourceRequirements: coreClient.CompositeMapper = {
|
|
296
397
|
type: {
|
|
297
398
|
name: "Composite",
|
|
298
399
|
className: "ResourceRequirements",
|
|
299
400
|
modelProperties: {
|
|
300
401
|
requests: {
|
|
301
|
-
required: true,
|
|
302
402
|
serializedName: "requests",
|
|
303
403
|
type: {
|
|
304
404
|
name: "Composite",
|
|
@@ -316,117 +416,117 @@ export const ResourceRequirements: msRest.CompositeMapper = {
|
|
|
316
416
|
}
|
|
317
417
|
};
|
|
318
418
|
|
|
319
|
-
export const
|
|
320
|
-
serializedName: "VolumeMount",
|
|
419
|
+
export const ResourceRequests: coreClient.CompositeMapper = {
|
|
321
420
|
type: {
|
|
322
421
|
name: "Composite",
|
|
323
|
-
className: "
|
|
422
|
+
className: "ResourceRequests",
|
|
324
423
|
modelProperties: {
|
|
325
|
-
|
|
424
|
+
memoryInGB: {
|
|
425
|
+
serializedName: "memoryInGB",
|
|
326
426
|
required: true,
|
|
327
|
-
serializedName: "name",
|
|
328
427
|
type: {
|
|
329
|
-
name: "
|
|
428
|
+
name: "Number"
|
|
330
429
|
}
|
|
331
430
|
},
|
|
332
|
-
|
|
431
|
+
cpu: {
|
|
432
|
+
serializedName: "cpu",
|
|
333
433
|
required: true,
|
|
334
|
-
serializedName: "mountPath",
|
|
335
434
|
type: {
|
|
336
|
-
name: "
|
|
435
|
+
name: "Number"
|
|
337
436
|
}
|
|
338
437
|
},
|
|
339
|
-
|
|
340
|
-
serializedName: "
|
|
438
|
+
gpu: {
|
|
439
|
+
serializedName: "gpu",
|
|
341
440
|
type: {
|
|
342
|
-
name: "
|
|
441
|
+
name: "Composite",
|
|
442
|
+
className: "GpuResource"
|
|
343
443
|
}
|
|
344
444
|
}
|
|
345
445
|
}
|
|
346
446
|
}
|
|
347
447
|
};
|
|
348
448
|
|
|
349
|
-
export const
|
|
350
|
-
serializedName: "ContainerExec",
|
|
449
|
+
export const GpuResource: coreClient.CompositeMapper = {
|
|
351
450
|
type: {
|
|
352
451
|
name: "Composite",
|
|
353
|
-
className: "
|
|
452
|
+
className: "GpuResource",
|
|
354
453
|
modelProperties: {
|
|
355
|
-
|
|
356
|
-
serializedName: "
|
|
454
|
+
count: {
|
|
455
|
+
serializedName: "count",
|
|
456
|
+
required: true,
|
|
357
457
|
type: {
|
|
358
|
-
name: "
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
458
|
+
name: "Number"
|
|
459
|
+
}
|
|
460
|
+
},
|
|
461
|
+
sku: {
|
|
462
|
+
serializedName: "sku",
|
|
463
|
+
required: true,
|
|
464
|
+
type: {
|
|
465
|
+
name: "String"
|
|
364
466
|
}
|
|
365
467
|
}
|
|
366
468
|
}
|
|
367
469
|
}
|
|
368
470
|
};
|
|
369
471
|
|
|
370
|
-
export const
|
|
371
|
-
serializedName: "HttpHeaders",
|
|
472
|
+
export const ResourceLimits: coreClient.CompositeMapper = {
|
|
372
473
|
type: {
|
|
373
474
|
name: "Composite",
|
|
374
|
-
className: "
|
|
475
|
+
className: "ResourceLimits",
|
|
375
476
|
modelProperties: {
|
|
376
|
-
|
|
377
|
-
serializedName: "
|
|
477
|
+
memoryInGB: {
|
|
478
|
+
serializedName: "memoryInGB",
|
|
378
479
|
type: {
|
|
379
|
-
name: "
|
|
480
|
+
name: "Number"
|
|
380
481
|
}
|
|
381
482
|
},
|
|
382
|
-
|
|
383
|
-
serializedName: "
|
|
483
|
+
cpu: {
|
|
484
|
+
serializedName: "cpu",
|
|
384
485
|
type: {
|
|
385
|
-
name: "
|
|
486
|
+
name: "Number"
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
gpu: {
|
|
490
|
+
serializedName: "gpu",
|
|
491
|
+
type: {
|
|
492
|
+
name: "Composite",
|
|
493
|
+
className: "GpuResource"
|
|
386
494
|
}
|
|
387
495
|
}
|
|
388
496
|
}
|
|
389
497
|
}
|
|
390
498
|
};
|
|
391
499
|
|
|
392
|
-
export const
|
|
393
|
-
serializedName: "ContainerHttpGet",
|
|
500
|
+
export const VolumeMount: coreClient.CompositeMapper = {
|
|
394
501
|
type: {
|
|
395
502
|
name: "Composite",
|
|
396
|
-
className: "
|
|
503
|
+
className: "VolumeMount",
|
|
397
504
|
modelProperties: {
|
|
398
|
-
|
|
399
|
-
serializedName: "
|
|
505
|
+
name: {
|
|
506
|
+
serializedName: "name",
|
|
507
|
+
required: true,
|
|
400
508
|
type: {
|
|
401
509
|
name: "String"
|
|
402
510
|
}
|
|
403
511
|
},
|
|
404
|
-
|
|
512
|
+
mountPath: {
|
|
513
|
+
serializedName: "mountPath",
|
|
405
514
|
required: true,
|
|
406
|
-
serializedName: "port",
|
|
407
|
-
type: {
|
|
408
|
-
name: "Number"
|
|
409
|
-
}
|
|
410
|
-
},
|
|
411
|
-
scheme: {
|
|
412
|
-
serializedName: "scheme",
|
|
413
515
|
type: {
|
|
414
516
|
name: "String"
|
|
415
517
|
}
|
|
416
518
|
},
|
|
417
|
-
|
|
418
|
-
serializedName: "
|
|
519
|
+
readOnly: {
|
|
520
|
+
serializedName: "readOnly",
|
|
419
521
|
type: {
|
|
420
|
-
name: "
|
|
421
|
-
className: "HttpHeaders"
|
|
522
|
+
name: "Boolean"
|
|
422
523
|
}
|
|
423
524
|
}
|
|
424
525
|
}
|
|
425
526
|
}
|
|
426
527
|
};
|
|
427
528
|
|
|
428
|
-
export const ContainerProbe:
|
|
429
|
-
serializedName: "ContainerProbe",
|
|
529
|
+
export const ContainerProbe: coreClient.CompositeMapper = {
|
|
430
530
|
type: {
|
|
431
531
|
name: "Composite",
|
|
432
532
|
className: "ContainerProbe",
|
|
@@ -479,28 +579,13 @@ export const ContainerProbe: msRest.CompositeMapper = {
|
|
|
479
579
|
}
|
|
480
580
|
};
|
|
481
581
|
|
|
482
|
-
export const
|
|
483
|
-
serializedName: "Container",
|
|
582
|
+
export const ContainerExec: coreClient.CompositeMapper = {
|
|
484
583
|
type: {
|
|
485
584
|
name: "Composite",
|
|
486
|
-
className: "
|
|
585
|
+
className: "ContainerExec",
|
|
487
586
|
modelProperties: {
|
|
488
|
-
name: {
|
|
489
|
-
required: true,
|
|
490
|
-
serializedName: "name",
|
|
491
|
-
type: {
|
|
492
|
-
name: "String"
|
|
493
|
-
}
|
|
494
|
-
},
|
|
495
|
-
image: {
|
|
496
|
-
required: true,
|
|
497
|
-
serializedName: "properties.image",
|
|
498
|
-
type: {
|
|
499
|
-
name: "String"
|
|
500
|
-
}
|
|
501
|
-
},
|
|
502
587
|
command: {
|
|
503
|
-
serializedName: "
|
|
588
|
+
serializedName: "command",
|
|
504
589
|
type: {
|
|
505
590
|
name: "Sequence",
|
|
506
591
|
element: {
|
|
@@ -509,134 +594,64 @@ export const Container: msRest.CompositeMapper = {
|
|
|
509
594
|
}
|
|
510
595
|
}
|
|
511
596
|
}
|
|
512
|
-
},
|
|
513
|
-
ports: {
|
|
514
|
-
serializedName: "properties.ports",
|
|
515
|
-
type: {
|
|
516
|
-
name: "Sequence",
|
|
517
|
-
element: {
|
|
518
|
-
type: {
|
|
519
|
-
name: "Composite",
|
|
520
|
-
className: "ContainerPort"
|
|
521
|
-
}
|
|
522
|
-
}
|
|
523
|
-
}
|
|
524
|
-
},
|
|
525
|
-
environmentVariables: {
|
|
526
|
-
serializedName: "properties.environmentVariables",
|
|
527
|
-
type: {
|
|
528
|
-
name: "Sequence",
|
|
529
|
-
element: {
|
|
530
|
-
type: {
|
|
531
|
-
name: "Composite",
|
|
532
|
-
className: "EnvironmentVariable"
|
|
533
|
-
}
|
|
534
|
-
}
|
|
535
|
-
}
|
|
536
|
-
},
|
|
537
|
-
instanceView: {
|
|
538
|
-
readOnly: true,
|
|
539
|
-
serializedName: "properties.instanceView",
|
|
540
|
-
type: {
|
|
541
|
-
name: "Composite",
|
|
542
|
-
className: "ContainerPropertiesInstanceView"
|
|
543
|
-
}
|
|
544
|
-
},
|
|
545
|
-
resources: {
|
|
546
|
-
required: true,
|
|
547
|
-
serializedName: "properties.resources",
|
|
548
|
-
type: {
|
|
549
|
-
name: "Composite",
|
|
550
|
-
className: "ResourceRequirements"
|
|
551
|
-
}
|
|
552
|
-
},
|
|
553
|
-
volumeMounts: {
|
|
554
|
-
serializedName: "properties.volumeMounts",
|
|
555
|
-
type: {
|
|
556
|
-
name: "Sequence",
|
|
557
|
-
element: {
|
|
558
|
-
type: {
|
|
559
|
-
name: "Composite",
|
|
560
|
-
className: "VolumeMount"
|
|
561
|
-
}
|
|
562
|
-
}
|
|
563
|
-
}
|
|
564
|
-
},
|
|
565
|
-
livenessProbe: {
|
|
566
|
-
serializedName: "properties.livenessProbe",
|
|
567
|
-
type: {
|
|
568
|
-
name: "Composite",
|
|
569
|
-
className: "ContainerProbe"
|
|
570
|
-
}
|
|
571
|
-
},
|
|
572
|
-
readinessProbe: {
|
|
573
|
-
serializedName: "properties.readinessProbe",
|
|
574
|
-
type: {
|
|
575
|
-
name: "Composite",
|
|
576
|
-
className: "ContainerProbe"
|
|
577
|
-
}
|
|
578
597
|
}
|
|
579
598
|
}
|
|
580
599
|
}
|
|
581
600
|
};
|
|
582
601
|
|
|
583
|
-
export const
|
|
584
|
-
serializedName: "AzureFileVolume",
|
|
602
|
+
export const ContainerHttpGet: coreClient.CompositeMapper = {
|
|
585
603
|
type: {
|
|
586
604
|
name: "Composite",
|
|
587
|
-
className: "
|
|
605
|
+
className: "ContainerHttpGet",
|
|
588
606
|
modelProperties: {
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
serializedName: "shareName",
|
|
607
|
+
path: {
|
|
608
|
+
serializedName: "path",
|
|
592
609
|
type: {
|
|
593
610
|
name: "String"
|
|
594
611
|
}
|
|
595
612
|
},
|
|
596
|
-
|
|
597
|
-
serializedName: "
|
|
613
|
+
port: {
|
|
614
|
+
serializedName: "port",
|
|
615
|
+
required: true,
|
|
598
616
|
type: {
|
|
599
|
-
name: "
|
|
617
|
+
name: "Number"
|
|
600
618
|
}
|
|
601
619
|
},
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
serializedName: "storageAccountName",
|
|
620
|
+
scheme: {
|
|
621
|
+
serializedName: "scheme",
|
|
605
622
|
type: {
|
|
606
623
|
name: "String"
|
|
607
624
|
}
|
|
608
625
|
},
|
|
609
|
-
|
|
610
|
-
serializedName: "
|
|
626
|
+
httpHeaders: {
|
|
627
|
+
serializedName: "httpHeaders",
|
|
611
628
|
type: {
|
|
612
|
-
name: "
|
|
629
|
+
name: "Sequence",
|
|
630
|
+
element: {
|
|
631
|
+
type: {
|
|
632
|
+
name: "Composite",
|
|
633
|
+
className: "HttpHeader"
|
|
634
|
+
}
|
|
635
|
+
}
|
|
613
636
|
}
|
|
614
637
|
}
|
|
615
638
|
}
|
|
616
639
|
}
|
|
617
640
|
};
|
|
618
641
|
|
|
619
|
-
export const
|
|
620
|
-
serializedName: "GitRepoVolume",
|
|
642
|
+
export const HttpHeader: coreClient.CompositeMapper = {
|
|
621
643
|
type: {
|
|
622
644
|
name: "Composite",
|
|
623
|
-
className: "
|
|
645
|
+
className: "HttpHeader",
|
|
624
646
|
modelProperties: {
|
|
625
|
-
|
|
626
|
-
serializedName: "
|
|
627
|
-
type: {
|
|
628
|
-
name: "String"
|
|
629
|
-
}
|
|
630
|
-
},
|
|
631
|
-
repository: {
|
|
632
|
-
required: true,
|
|
633
|
-
serializedName: "repository",
|
|
647
|
+
name: {
|
|
648
|
+
serializedName: "name",
|
|
634
649
|
type: {
|
|
635
650
|
name: "String"
|
|
636
651
|
}
|
|
637
652
|
},
|
|
638
|
-
|
|
639
|
-
serializedName: "
|
|
653
|
+
value: {
|
|
654
|
+
serializedName: "value",
|
|
640
655
|
type: {
|
|
641
656
|
name: "String"
|
|
642
657
|
}
|
|
@@ -645,70 +660,39 @@ export const GitRepoVolume: msRest.CompositeMapper = {
|
|
|
645
660
|
}
|
|
646
661
|
};
|
|
647
662
|
|
|
648
|
-
export const
|
|
649
|
-
serializedName: "Volume",
|
|
663
|
+
export const ImageRegistryCredential: coreClient.CompositeMapper = {
|
|
650
664
|
type: {
|
|
651
665
|
name: "Composite",
|
|
652
|
-
className: "
|
|
666
|
+
className: "ImageRegistryCredential",
|
|
653
667
|
modelProperties: {
|
|
654
|
-
|
|
668
|
+
server: {
|
|
669
|
+
serializedName: "server",
|
|
655
670
|
required: true,
|
|
656
|
-
serializedName: "name",
|
|
657
671
|
type: {
|
|
658
672
|
name: "String"
|
|
659
673
|
}
|
|
660
674
|
},
|
|
661
|
-
|
|
662
|
-
serializedName: "
|
|
663
|
-
|
|
664
|
-
name: "Composite",
|
|
665
|
-
className: "AzureFileVolume"
|
|
666
|
-
}
|
|
667
|
-
},
|
|
668
|
-
emptyDir: {
|
|
669
|
-
serializedName: "emptyDir",
|
|
675
|
+
username: {
|
|
676
|
+
serializedName: "username",
|
|
677
|
+
required: true,
|
|
670
678
|
type: {
|
|
671
|
-
name: "
|
|
679
|
+
name: "String"
|
|
672
680
|
}
|
|
673
681
|
},
|
|
674
|
-
|
|
675
|
-
serializedName: "
|
|
682
|
+
password: {
|
|
683
|
+
serializedName: "password",
|
|
676
684
|
type: {
|
|
677
|
-
name: "
|
|
678
|
-
value: {
|
|
679
|
-
type: {
|
|
680
|
-
name: "String"
|
|
681
|
-
}
|
|
682
|
-
}
|
|
685
|
+
name: "String"
|
|
683
686
|
}
|
|
684
687
|
},
|
|
685
|
-
|
|
686
|
-
serializedName: "
|
|
687
|
-
type: {
|
|
688
|
-
name: "Composite",
|
|
689
|
-
className: "GitRepoVolume"
|
|
690
|
-
}
|
|
691
|
-
}
|
|
692
|
-
}
|
|
693
|
-
}
|
|
694
|
-
};
|
|
695
|
-
|
|
696
|
-
export const ContainerGroupIdentityUserAssignedIdentitiesValue: msRest.CompositeMapper = {
|
|
697
|
-
serializedName: "ContainerGroupIdentity_userAssignedIdentitiesValue",
|
|
698
|
-
type: {
|
|
699
|
-
name: "Composite",
|
|
700
|
-
className: "ContainerGroupIdentityUserAssignedIdentitiesValue",
|
|
701
|
-
modelProperties: {
|
|
702
|
-
principalId: {
|
|
703
|
-
readOnly: true,
|
|
704
|
-
serializedName: "principalId",
|
|
688
|
+
identity: {
|
|
689
|
+
serializedName: "identity",
|
|
705
690
|
type: {
|
|
706
691
|
name: "String"
|
|
707
692
|
}
|
|
708
693
|
},
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
serializedName: "clientId",
|
|
694
|
+
identityUrl: {
|
|
695
|
+
serializedName: "identityUrl",
|
|
712
696
|
type: {
|
|
713
697
|
name: "String"
|
|
714
698
|
}
|
|
@@ -717,76 +701,46 @@ export const ContainerGroupIdentityUserAssignedIdentitiesValue: msRest.Composite
|
|
|
717
701
|
}
|
|
718
702
|
};
|
|
719
703
|
|
|
720
|
-
export const
|
|
721
|
-
serializedName: "ContainerGroupIdentity",
|
|
704
|
+
export const IpAddress: coreClient.CompositeMapper = {
|
|
722
705
|
type: {
|
|
723
706
|
name: "Composite",
|
|
724
|
-
className: "
|
|
707
|
+
className: "IpAddress",
|
|
725
708
|
modelProperties: {
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
type: {
|
|
730
|
-
name: "String"
|
|
731
|
-
}
|
|
732
|
-
},
|
|
733
|
-
tenantId: {
|
|
734
|
-
readOnly: true,
|
|
735
|
-
serializedName: "tenantId",
|
|
736
|
-
type: {
|
|
737
|
-
name: "String"
|
|
738
|
-
}
|
|
739
|
-
},
|
|
740
|
-
type: {
|
|
741
|
-
serializedName: "type",
|
|
742
|
-
type: {
|
|
743
|
-
name: "Enum",
|
|
744
|
-
allowedValues: [
|
|
745
|
-
"SystemAssigned",
|
|
746
|
-
"UserAssigned",
|
|
747
|
-
"SystemAssigned, UserAssigned",
|
|
748
|
-
"None"
|
|
749
|
-
]
|
|
750
|
-
}
|
|
751
|
-
},
|
|
752
|
-
userAssignedIdentities: {
|
|
753
|
-
serializedName: "userAssignedIdentities",
|
|
709
|
+
ports: {
|
|
710
|
+
serializedName: "ports",
|
|
711
|
+
required: true,
|
|
754
712
|
type: {
|
|
755
|
-
name: "
|
|
756
|
-
|
|
713
|
+
name: "Sequence",
|
|
714
|
+
element: {
|
|
757
715
|
type: {
|
|
758
716
|
name: "Composite",
|
|
759
|
-
className: "
|
|
717
|
+
className: "Port"
|
|
760
718
|
}
|
|
761
719
|
}
|
|
762
720
|
}
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
};
|
|
767
|
-
|
|
768
|
-
export const ImageRegistryCredential: msRest.CompositeMapper = {
|
|
769
|
-
serializedName: "ImageRegistryCredential",
|
|
770
|
-
type: {
|
|
771
|
-
name: "Composite",
|
|
772
|
-
className: "ImageRegistryCredential",
|
|
773
|
-
modelProperties: {
|
|
774
|
-
server: {
|
|
721
|
+
},
|
|
722
|
+
type: {
|
|
723
|
+
serializedName: "type",
|
|
775
724
|
required: true,
|
|
776
|
-
serializedName: "server",
|
|
777
725
|
type: {
|
|
778
726
|
name: "String"
|
|
779
727
|
}
|
|
780
728
|
},
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
serializedName: "username",
|
|
729
|
+
ip: {
|
|
730
|
+
serializedName: "ip",
|
|
784
731
|
type: {
|
|
785
732
|
name: "String"
|
|
786
733
|
}
|
|
787
734
|
},
|
|
788
|
-
|
|
789
|
-
serializedName: "
|
|
735
|
+
dnsNameLabel: {
|
|
736
|
+
serializedName: "dnsNameLabel",
|
|
737
|
+
type: {
|
|
738
|
+
name: "String"
|
|
739
|
+
}
|
|
740
|
+
},
|
|
741
|
+
fqdn: {
|
|
742
|
+
serializedName: "fqdn",
|
|
743
|
+
readOnly: true,
|
|
790
744
|
type: {
|
|
791
745
|
name: "String"
|
|
792
746
|
}
|
|
@@ -795,8 +749,7 @@ export const ImageRegistryCredential: msRest.CompositeMapper = {
|
|
|
795
749
|
}
|
|
796
750
|
};
|
|
797
751
|
|
|
798
|
-
export const Port:
|
|
799
|
-
serializedName: "Port",
|
|
752
|
+
export const Port: coreClient.CompositeMapper = {
|
|
800
753
|
type: {
|
|
801
754
|
name: "Composite",
|
|
802
755
|
className: "Port",
|
|
@@ -808,8 +761,8 @@ export const Port: msRest.CompositeMapper = {
|
|
|
808
761
|
}
|
|
809
762
|
},
|
|
810
763
|
port: {
|
|
811
|
-
required: true,
|
|
812
764
|
serializedName: "port",
|
|
765
|
+
required: true,
|
|
813
766
|
type: {
|
|
814
767
|
name: "Number"
|
|
815
768
|
}
|
|
@@ -818,47 +771,105 @@ export const Port: msRest.CompositeMapper = {
|
|
|
818
771
|
}
|
|
819
772
|
};
|
|
820
773
|
|
|
821
|
-
export const
|
|
822
|
-
serializedName: "IpAddress",
|
|
774
|
+
export const Volume: coreClient.CompositeMapper = {
|
|
823
775
|
type: {
|
|
824
776
|
name: "Composite",
|
|
825
|
-
className: "
|
|
777
|
+
className: "Volume",
|
|
826
778
|
modelProperties: {
|
|
827
|
-
|
|
779
|
+
name: {
|
|
780
|
+
serializedName: "name",
|
|
828
781
|
required: true,
|
|
829
|
-
serializedName: "ports",
|
|
830
782
|
type: {
|
|
831
|
-
name: "
|
|
832
|
-
element: {
|
|
833
|
-
type: {
|
|
834
|
-
name: "Composite",
|
|
835
|
-
className: "Port"
|
|
836
|
-
}
|
|
837
|
-
}
|
|
783
|
+
name: "String"
|
|
838
784
|
}
|
|
839
785
|
},
|
|
840
|
-
|
|
786
|
+
azureFile: {
|
|
787
|
+
serializedName: "azureFile",
|
|
788
|
+
type: {
|
|
789
|
+
name: "Composite",
|
|
790
|
+
className: "AzureFileVolume"
|
|
791
|
+
}
|
|
792
|
+
},
|
|
793
|
+
emptyDir: {
|
|
794
|
+
serializedName: "emptyDir",
|
|
795
|
+
type: {
|
|
796
|
+
name: "Dictionary",
|
|
797
|
+
value: { type: { name: "any" } }
|
|
798
|
+
}
|
|
799
|
+
},
|
|
800
|
+
secret: {
|
|
801
|
+
serializedName: "secret",
|
|
802
|
+
type: {
|
|
803
|
+
name: "Dictionary",
|
|
804
|
+
value: { type: { name: "String" } }
|
|
805
|
+
}
|
|
806
|
+
},
|
|
807
|
+
gitRepo: {
|
|
808
|
+
serializedName: "gitRepo",
|
|
809
|
+
type: {
|
|
810
|
+
name: "Composite",
|
|
811
|
+
className: "GitRepoVolume"
|
|
812
|
+
}
|
|
813
|
+
}
|
|
814
|
+
}
|
|
815
|
+
}
|
|
816
|
+
};
|
|
817
|
+
|
|
818
|
+
export const AzureFileVolume: coreClient.CompositeMapper = {
|
|
819
|
+
type: {
|
|
820
|
+
name: "Composite",
|
|
821
|
+
className: "AzureFileVolume",
|
|
822
|
+
modelProperties: {
|
|
823
|
+
shareName: {
|
|
824
|
+
serializedName: "shareName",
|
|
841
825
|
required: true,
|
|
842
|
-
serializedName: "type",
|
|
843
826
|
type: {
|
|
844
827
|
name: "String"
|
|
845
828
|
}
|
|
846
829
|
},
|
|
847
|
-
|
|
848
|
-
serializedName: "
|
|
830
|
+
readOnly: {
|
|
831
|
+
serializedName: "readOnly",
|
|
832
|
+
type: {
|
|
833
|
+
name: "Boolean"
|
|
834
|
+
}
|
|
835
|
+
},
|
|
836
|
+
storageAccountName: {
|
|
837
|
+
serializedName: "storageAccountName",
|
|
838
|
+
required: true,
|
|
849
839
|
type: {
|
|
850
840
|
name: "String"
|
|
851
841
|
}
|
|
852
842
|
},
|
|
853
|
-
|
|
854
|
-
serializedName: "
|
|
843
|
+
storageAccountKey: {
|
|
844
|
+
serializedName: "storageAccountKey",
|
|
845
|
+
type: {
|
|
846
|
+
name: "String"
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
}
|
|
850
|
+
}
|
|
851
|
+
};
|
|
852
|
+
|
|
853
|
+
export const GitRepoVolume: coreClient.CompositeMapper = {
|
|
854
|
+
type: {
|
|
855
|
+
name: "Composite",
|
|
856
|
+
className: "GitRepoVolume",
|
|
857
|
+
modelProperties: {
|
|
858
|
+
directory: {
|
|
859
|
+
serializedName: "directory",
|
|
855
860
|
type: {
|
|
856
861
|
name: "String"
|
|
857
862
|
}
|
|
858
863
|
},
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
864
|
+
repository: {
|
|
865
|
+
serializedName: "repository",
|
|
866
|
+
required: true,
|
|
867
|
+
type: {
|
|
868
|
+
name: "String"
|
|
869
|
+
}
|
|
870
|
+
},
|
|
871
|
+
revision: {
|
|
872
|
+
serializedName: "revision",
|
|
862
873
|
type: {
|
|
863
874
|
name: "String"
|
|
864
875
|
}
|
|
@@ -867,15 +878,14 @@ export const IpAddress: msRest.CompositeMapper = {
|
|
|
867
878
|
}
|
|
868
879
|
};
|
|
869
880
|
|
|
870
|
-
export const ContainerGroupPropertiesInstanceView:
|
|
871
|
-
serializedName: "ContainerGroup_properties_instanceView",
|
|
881
|
+
export const ContainerGroupPropertiesInstanceView: coreClient.CompositeMapper = {
|
|
872
882
|
type: {
|
|
873
883
|
name: "Composite",
|
|
874
884
|
className: "ContainerGroupPropertiesInstanceView",
|
|
875
885
|
modelProperties: {
|
|
876
886
|
events: {
|
|
877
|
-
readOnly: true,
|
|
878
887
|
serializedName: "events",
|
|
888
|
+
readOnly: true,
|
|
879
889
|
type: {
|
|
880
890
|
name: "Sequence",
|
|
881
891
|
element: {
|
|
@@ -887,8 +897,8 @@ export const ContainerGroupPropertiesInstanceView: msRest.CompositeMapper = {
|
|
|
887
897
|
}
|
|
888
898
|
},
|
|
889
899
|
state: {
|
|
890
|
-
readOnly: true,
|
|
891
900
|
serializedName: "state",
|
|
901
|
+
readOnly: true,
|
|
892
902
|
type: {
|
|
893
903
|
name: "String"
|
|
894
904
|
}
|
|
@@ -897,22 +907,37 @@ export const ContainerGroupPropertiesInstanceView: msRest.CompositeMapper = {
|
|
|
897
907
|
}
|
|
898
908
|
};
|
|
899
909
|
|
|
900
|
-
export const
|
|
901
|
-
|
|
910
|
+
export const ContainerGroupDiagnostics: coreClient.CompositeMapper = {
|
|
911
|
+
type: {
|
|
912
|
+
name: "Composite",
|
|
913
|
+
className: "ContainerGroupDiagnostics",
|
|
914
|
+
modelProperties: {
|
|
915
|
+
logAnalytics: {
|
|
916
|
+
serializedName: "logAnalytics",
|
|
917
|
+
type: {
|
|
918
|
+
name: "Composite",
|
|
919
|
+
className: "LogAnalytics"
|
|
920
|
+
}
|
|
921
|
+
}
|
|
922
|
+
}
|
|
923
|
+
}
|
|
924
|
+
};
|
|
925
|
+
|
|
926
|
+
export const LogAnalytics: coreClient.CompositeMapper = {
|
|
902
927
|
type: {
|
|
903
928
|
name: "Composite",
|
|
904
929
|
className: "LogAnalytics",
|
|
905
930
|
modelProperties: {
|
|
906
931
|
workspaceId: {
|
|
907
|
-
required: true,
|
|
908
932
|
serializedName: "workspaceId",
|
|
933
|
+
required: true,
|
|
909
934
|
type: {
|
|
910
935
|
name: "String"
|
|
911
936
|
}
|
|
912
937
|
},
|
|
913
938
|
workspaceKey: {
|
|
914
|
-
required: true,
|
|
915
939
|
serializedName: "workspaceKey",
|
|
940
|
+
required: true,
|
|
916
941
|
type: {
|
|
917
942
|
name: "String"
|
|
918
943
|
}
|
|
@@ -927,54 +952,33 @@ export const LogAnalytics: msRest.CompositeMapper = {
|
|
|
927
952
|
serializedName: "metadata",
|
|
928
953
|
type: {
|
|
929
954
|
name: "Dictionary",
|
|
930
|
-
value: {
|
|
931
|
-
type: {
|
|
932
|
-
name: "String"
|
|
933
|
-
}
|
|
934
|
-
}
|
|
955
|
+
value: { type: { name: "String" } }
|
|
935
956
|
}
|
|
936
957
|
},
|
|
937
958
|
workspaceResourceId: {
|
|
938
959
|
serializedName: "workspaceResourceId",
|
|
939
960
|
type: {
|
|
940
|
-
name: "
|
|
941
|
-
value: {
|
|
942
|
-
type: {
|
|
943
|
-
name: "String"
|
|
944
|
-
}
|
|
945
|
-
}
|
|
946
|
-
}
|
|
947
|
-
}
|
|
948
|
-
}
|
|
949
|
-
}
|
|
950
|
-
};
|
|
951
|
-
|
|
952
|
-
export const ContainerGroupDiagnostics: msRest.CompositeMapper = {
|
|
953
|
-
serializedName: "ContainerGroupDiagnostics",
|
|
954
|
-
type: {
|
|
955
|
-
name: "Composite",
|
|
956
|
-
className: "ContainerGroupDiagnostics",
|
|
957
|
-
modelProperties: {
|
|
958
|
-
logAnalytics: {
|
|
959
|
-
serializedName: "logAnalytics",
|
|
960
|
-
type: {
|
|
961
|
-
name: "Composite",
|
|
962
|
-
className: "LogAnalytics"
|
|
961
|
+
name: "String"
|
|
963
962
|
}
|
|
964
963
|
}
|
|
965
964
|
}
|
|
966
965
|
}
|
|
967
966
|
};
|
|
968
967
|
|
|
969
|
-
export const
|
|
970
|
-
serializedName: "ContainerGroupNetworkProfile",
|
|
968
|
+
export const ContainerGroupSubnetId: coreClient.CompositeMapper = {
|
|
971
969
|
type: {
|
|
972
970
|
name: "Composite",
|
|
973
|
-
className: "
|
|
971
|
+
className: "ContainerGroupSubnetId",
|
|
974
972
|
modelProperties: {
|
|
975
973
|
id: {
|
|
976
|
-
required: true,
|
|
977
974
|
serializedName: "id",
|
|
975
|
+
required: true,
|
|
976
|
+
type: {
|
|
977
|
+
name: "String"
|
|
978
|
+
}
|
|
979
|
+
},
|
|
980
|
+
name: {
|
|
981
|
+
serializedName: "name",
|
|
978
982
|
type: {
|
|
979
983
|
name: "String"
|
|
980
984
|
}
|
|
@@ -983,15 +987,14 @@ export const ContainerGroupNetworkProfile: msRest.CompositeMapper = {
|
|
|
983
987
|
}
|
|
984
988
|
};
|
|
985
989
|
|
|
986
|
-
export const DnsConfiguration:
|
|
987
|
-
serializedName: "DnsConfiguration",
|
|
990
|
+
export const DnsConfiguration: coreClient.CompositeMapper = {
|
|
988
991
|
type: {
|
|
989
992
|
name: "Composite",
|
|
990
993
|
className: "DnsConfiguration",
|
|
991
994
|
modelProperties: {
|
|
992
995
|
nameServers: {
|
|
993
|
-
required: true,
|
|
994
996
|
serializedName: "nameServers",
|
|
997
|
+
required: true,
|
|
995
998
|
type: {
|
|
996
999
|
name: "Sequence",
|
|
997
1000
|
element: {
|
|
@@ -1017,29 +1020,28 @@ export const DnsConfiguration: msRest.CompositeMapper = {
|
|
|
1017
1020
|
}
|
|
1018
1021
|
};
|
|
1019
1022
|
|
|
1020
|
-
export const EncryptionProperties:
|
|
1021
|
-
serializedName: "EncryptionProperties",
|
|
1023
|
+
export const EncryptionProperties: coreClient.CompositeMapper = {
|
|
1022
1024
|
type: {
|
|
1023
1025
|
name: "Composite",
|
|
1024
1026
|
className: "EncryptionProperties",
|
|
1025
1027
|
modelProperties: {
|
|
1026
1028
|
vaultBaseUrl: {
|
|
1027
|
-
required: true,
|
|
1028
1029
|
serializedName: "vaultBaseUrl",
|
|
1030
|
+
required: true,
|
|
1029
1031
|
type: {
|
|
1030
1032
|
name: "String"
|
|
1031
1033
|
}
|
|
1032
1034
|
},
|
|
1033
1035
|
keyName: {
|
|
1034
|
-
required: true,
|
|
1035
1036
|
serializedName: "keyName",
|
|
1037
|
+
required: true,
|
|
1036
1038
|
type: {
|
|
1037
1039
|
name: "String"
|
|
1038
1040
|
}
|
|
1039
1041
|
},
|
|
1040
1042
|
keyVersion: {
|
|
1041
|
-
required: true,
|
|
1042
1043
|
serializedName: "keyVersion",
|
|
1044
|
+
required: true,
|
|
1043
1045
|
type: {
|
|
1044
1046
|
name: "String"
|
|
1045
1047
|
}
|
|
@@ -1048,110 +1050,105 @@ export const EncryptionProperties: msRest.CompositeMapper = {
|
|
|
1048
1050
|
}
|
|
1049
1051
|
};
|
|
1050
1052
|
|
|
1051
|
-
export const
|
|
1052
|
-
serializedName: "InitContainerPropertiesDefinition_instanceView",
|
|
1053
|
+
export const InitContainerDefinition: coreClient.CompositeMapper = {
|
|
1053
1054
|
type: {
|
|
1054
1055
|
name: "Composite",
|
|
1055
|
-
className: "
|
|
1056
|
+
className: "InitContainerDefinition",
|
|
1056
1057
|
modelProperties: {
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1058
|
+
name: {
|
|
1059
|
+
serializedName: "name",
|
|
1060
|
+
required: true,
|
|
1060
1061
|
type: {
|
|
1061
|
-
name: "
|
|
1062
|
+
name: "String"
|
|
1062
1063
|
}
|
|
1063
1064
|
},
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
serializedName: "currentState",
|
|
1065
|
+
image: {
|
|
1066
|
+
serializedName: "properties.image",
|
|
1067
1067
|
type: {
|
|
1068
|
-
name: "
|
|
1069
|
-
className: "ContainerState"
|
|
1068
|
+
name: "String"
|
|
1070
1069
|
}
|
|
1071
1070
|
},
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
serializedName: "previousState",
|
|
1071
|
+
command: {
|
|
1072
|
+
serializedName: "properties.command",
|
|
1075
1073
|
type: {
|
|
1076
|
-
name: "
|
|
1077
|
-
|
|
1074
|
+
name: "Sequence",
|
|
1075
|
+
element: {
|
|
1076
|
+
type: {
|
|
1077
|
+
name: "String"
|
|
1078
|
+
}
|
|
1079
|
+
}
|
|
1078
1080
|
}
|
|
1079
1081
|
},
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
serializedName: "events",
|
|
1082
|
+
environmentVariables: {
|
|
1083
|
+
serializedName: "properties.environmentVariables",
|
|
1083
1084
|
type: {
|
|
1084
1085
|
name: "Sequence",
|
|
1085
1086
|
element: {
|
|
1086
1087
|
type: {
|
|
1087
1088
|
name: "Composite",
|
|
1088
|
-
className: "
|
|
1089
|
+
className: "EnvironmentVariable"
|
|
1089
1090
|
}
|
|
1090
1091
|
}
|
|
1091
1092
|
}
|
|
1092
|
-
}
|
|
1093
|
-
}
|
|
1094
|
-
}
|
|
1095
|
-
};
|
|
1096
|
-
|
|
1097
|
-
export const InitContainerDefinition: msRest.CompositeMapper = {
|
|
1098
|
-
serializedName: "InitContainerDefinition",
|
|
1099
|
-
type: {
|
|
1100
|
-
name: "Composite",
|
|
1101
|
-
className: "InitContainerDefinition",
|
|
1102
|
-
modelProperties: {
|
|
1103
|
-
name: {
|
|
1104
|
-
required: true,
|
|
1105
|
-
serializedName: "name",
|
|
1106
|
-
type: {
|
|
1107
|
-
name: "String"
|
|
1108
|
-
}
|
|
1109
1093
|
},
|
|
1110
|
-
|
|
1111
|
-
serializedName: "properties.
|
|
1094
|
+
instanceView: {
|
|
1095
|
+
serializedName: "properties.instanceView",
|
|
1112
1096
|
type: {
|
|
1113
|
-
name: "
|
|
1097
|
+
name: "Composite",
|
|
1098
|
+
className: "InitContainerPropertiesDefinitionInstanceView"
|
|
1114
1099
|
}
|
|
1115
1100
|
},
|
|
1116
|
-
|
|
1117
|
-
serializedName: "properties.
|
|
1101
|
+
volumeMounts: {
|
|
1102
|
+
serializedName: "properties.volumeMounts",
|
|
1118
1103
|
type: {
|
|
1119
1104
|
name: "Sequence",
|
|
1120
1105
|
element: {
|
|
1121
1106
|
type: {
|
|
1122
|
-
name: "
|
|
1107
|
+
name: "Composite",
|
|
1108
|
+
className: "VolumeMount"
|
|
1123
1109
|
}
|
|
1124
1110
|
}
|
|
1125
1111
|
}
|
|
1112
|
+
}
|
|
1113
|
+
}
|
|
1114
|
+
}
|
|
1115
|
+
};
|
|
1116
|
+
|
|
1117
|
+
export const InitContainerPropertiesDefinitionInstanceView: coreClient.CompositeMapper = {
|
|
1118
|
+
type: {
|
|
1119
|
+
name: "Composite",
|
|
1120
|
+
className: "InitContainerPropertiesDefinitionInstanceView",
|
|
1121
|
+
modelProperties: {
|
|
1122
|
+
restartCount: {
|
|
1123
|
+
serializedName: "restartCount",
|
|
1124
|
+
readOnly: true,
|
|
1125
|
+
type: {
|
|
1126
|
+
name: "Number"
|
|
1127
|
+
}
|
|
1126
1128
|
},
|
|
1127
|
-
|
|
1128
|
-
serializedName: "
|
|
1129
|
+
currentState: {
|
|
1130
|
+
serializedName: "currentState",
|
|
1129
1131
|
type: {
|
|
1130
|
-
name: "
|
|
1131
|
-
|
|
1132
|
-
type: {
|
|
1133
|
-
name: "Composite",
|
|
1134
|
-
className: "EnvironmentVariable"
|
|
1135
|
-
}
|
|
1136
|
-
}
|
|
1132
|
+
name: "Composite",
|
|
1133
|
+
className: "ContainerState"
|
|
1137
1134
|
}
|
|
1138
1135
|
},
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
serializedName: "properties.instanceView",
|
|
1136
|
+
previousState: {
|
|
1137
|
+
serializedName: "previousState",
|
|
1142
1138
|
type: {
|
|
1143
1139
|
name: "Composite",
|
|
1144
|
-
className: "
|
|
1140
|
+
className: "ContainerState"
|
|
1145
1141
|
}
|
|
1146
1142
|
},
|
|
1147
|
-
|
|
1148
|
-
serializedName: "
|
|
1143
|
+
events: {
|
|
1144
|
+
serializedName: "events",
|
|
1145
|
+
readOnly: true,
|
|
1149
1146
|
type: {
|
|
1150
1147
|
name: "Sequence",
|
|
1151
1148
|
element: {
|
|
1152
1149
|
type: {
|
|
1153
1150
|
name: "Composite",
|
|
1154
|
-
className: "
|
|
1151
|
+
className: "Event"
|
|
1155
1152
|
}
|
|
1156
1153
|
}
|
|
1157
1154
|
}
|
|
@@ -1160,29 +1157,28 @@ export const InitContainerDefinition: msRest.CompositeMapper = {
|
|
|
1160
1157
|
}
|
|
1161
1158
|
};
|
|
1162
1159
|
|
|
1163
|
-
export const Resource:
|
|
1164
|
-
serializedName: "Resource",
|
|
1160
|
+
export const Resource: coreClient.CompositeMapper = {
|
|
1165
1161
|
type: {
|
|
1166
1162
|
name: "Composite",
|
|
1167
1163
|
className: "Resource",
|
|
1168
1164
|
modelProperties: {
|
|
1169
1165
|
id: {
|
|
1170
|
-
readOnly: true,
|
|
1171
1166
|
serializedName: "id",
|
|
1167
|
+
readOnly: true,
|
|
1172
1168
|
type: {
|
|
1173
1169
|
name: "String"
|
|
1174
1170
|
}
|
|
1175
1171
|
},
|
|
1176
1172
|
name: {
|
|
1177
|
-
readOnly: true,
|
|
1178
1173
|
serializedName: "name",
|
|
1174
|
+
readOnly: true,
|
|
1179
1175
|
type: {
|
|
1180
1176
|
name: "String"
|
|
1181
1177
|
}
|
|
1182
1178
|
},
|
|
1183
1179
|
type: {
|
|
1184
|
-
readOnly: true,
|
|
1185
1180
|
serializedName: "type",
|
|
1181
|
+
readOnly: true,
|
|
1186
1182
|
type: {
|
|
1187
1183
|
name: "String"
|
|
1188
1184
|
}
|
|
@@ -1197,7 +1193,14 @@ export const Resource: msRest.CompositeMapper = {
|
|
|
1197
1193
|
serializedName: "tags",
|
|
1198
1194
|
type: {
|
|
1199
1195
|
name: "Dictionary",
|
|
1200
|
-
value: {
|
|
1196
|
+
value: { type: { name: "String" } }
|
|
1197
|
+
}
|
|
1198
|
+
},
|
|
1199
|
+
zones: {
|
|
1200
|
+
serializedName: "zones",
|
|
1201
|
+
type: {
|
|
1202
|
+
name: "Sequence",
|
|
1203
|
+
element: {
|
|
1201
1204
|
type: {
|
|
1202
1205
|
name: "String"
|
|
1203
1206
|
}
|
|
@@ -1208,144 +1211,125 @@ export const Resource: msRest.CompositeMapper = {
|
|
|
1208
1211
|
}
|
|
1209
1212
|
};
|
|
1210
1213
|
|
|
1211
|
-
export const
|
|
1212
|
-
serializedName: "ContainerGroup",
|
|
1214
|
+
export const CloudError: coreClient.CompositeMapper = {
|
|
1213
1215
|
type: {
|
|
1214
1216
|
name: "Composite",
|
|
1215
|
-
className: "
|
|
1217
|
+
className: "CloudError",
|
|
1216
1218
|
modelProperties: {
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
serializedName: "identity",
|
|
1219
|
+
error: {
|
|
1220
|
+
serializedName: "error",
|
|
1220
1221
|
type: {
|
|
1221
1222
|
name: "Composite",
|
|
1222
|
-
className: "
|
|
1223
|
+
className: "CloudErrorBody"
|
|
1224
|
+
}
|
|
1225
|
+
}
|
|
1226
|
+
}
|
|
1227
|
+
}
|
|
1228
|
+
};
|
|
1229
|
+
|
|
1230
|
+
export const CloudErrorBody: coreClient.CompositeMapper = {
|
|
1231
|
+
type: {
|
|
1232
|
+
name: "Composite",
|
|
1233
|
+
className: "CloudErrorBody",
|
|
1234
|
+
modelProperties: {
|
|
1235
|
+
code: {
|
|
1236
|
+
serializedName: "code",
|
|
1237
|
+
type: {
|
|
1238
|
+
name: "String"
|
|
1223
1239
|
}
|
|
1224
1240
|
},
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
serializedName: "properties.provisioningState",
|
|
1241
|
+
message: {
|
|
1242
|
+
serializedName: "message",
|
|
1228
1243
|
type: {
|
|
1229
1244
|
name: "String"
|
|
1230
1245
|
}
|
|
1231
1246
|
},
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
serializedName: "properties.containers",
|
|
1247
|
+
target: {
|
|
1248
|
+
serializedName: "target",
|
|
1235
1249
|
type: {
|
|
1236
|
-
name: "
|
|
1237
|
-
element: {
|
|
1238
|
-
type: {
|
|
1239
|
-
name: "Composite",
|
|
1240
|
-
className: "Container"
|
|
1241
|
-
}
|
|
1242
|
-
}
|
|
1250
|
+
name: "String"
|
|
1243
1251
|
}
|
|
1244
1252
|
},
|
|
1245
|
-
|
|
1246
|
-
serializedName: "
|
|
1253
|
+
details: {
|
|
1254
|
+
serializedName: "details",
|
|
1247
1255
|
type: {
|
|
1248
1256
|
name: "Sequence",
|
|
1249
1257
|
element: {
|
|
1250
1258
|
type: {
|
|
1251
1259
|
name: "Composite",
|
|
1252
|
-
className: "
|
|
1260
|
+
className: "CloudErrorBody"
|
|
1253
1261
|
}
|
|
1254
1262
|
}
|
|
1255
1263
|
}
|
|
1256
|
-
}
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
}
|
|
1269
|
-
},
|
|
1270
|
-
osType: {
|
|
1271
|
-
required: true,
|
|
1272
|
-
serializedName: "properties.osType",
|
|
1273
|
-
type: {
|
|
1274
|
-
name: "String"
|
|
1275
|
-
}
|
|
1276
|
-
},
|
|
1277
|
-
volumes: {
|
|
1278
|
-
serializedName: "properties.volumes",
|
|
1264
|
+
}
|
|
1265
|
+
}
|
|
1266
|
+
}
|
|
1267
|
+
};
|
|
1268
|
+
|
|
1269
|
+
export const OperationListResult: coreClient.CompositeMapper = {
|
|
1270
|
+
type: {
|
|
1271
|
+
name: "Composite",
|
|
1272
|
+
className: "OperationListResult",
|
|
1273
|
+
modelProperties: {
|
|
1274
|
+
value: {
|
|
1275
|
+
serializedName: "value",
|
|
1279
1276
|
type: {
|
|
1280
1277
|
name: "Sequence",
|
|
1281
1278
|
element: {
|
|
1282
1279
|
type: {
|
|
1283
1280
|
name: "Composite",
|
|
1284
|
-
className: "
|
|
1281
|
+
className: "Operation"
|
|
1285
1282
|
}
|
|
1286
1283
|
}
|
|
1287
1284
|
}
|
|
1288
1285
|
},
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
serializedName: "properties.instanceView",
|
|
1286
|
+
nextLink: {
|
|
1287
|
+
serializedName: "nextLink",
|
|
1292
1288
|
type: {
|
|
1293
|
-
name: "
|
|
1294
|
-
className: "ContainerGroupPropertiesInstanceView"
|
|
1289
|
+
name: "String"
|
|
1295
1290
|
}
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
|
-
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
}
|
|
1294
|
+
};
|
|
1295
|
+
|
|
1296
|
+
export const Operation: coreClient.CompositeMapper = {
|
|
1297
|
+
type: {
|
|
1298
|
+
name: "Composite",
|
|
1299
|
+
className: "Operation",
|
|
1300
|
+
modelProperties: {
|
|
1301
|
+
name: {
|
|
1302
|
+
serializedName: "name",
|
|
1303
|
+
required: true,
|
|
1299
1304
|
type: {
|
|
1300
|
-
name: "
|
|
1301
|
-
className: "ContainerGroupDiagnostics"
|
|
1305
|
+
name: "String"
|
|
1302
1306
|
}
|
|
1303
1307
|
},
|
|
1304
|
-
|
|
1305
|
-
serializedName: "
|
|
1308
|
+
display: {
|
|
1309
|
+
serializedName: "display",
|
|
1306
1310
|
type: {
|
|
1307
1311
|
name: "Composite",
|
|
1308
|
-
className: "
|
|
1312
|
+
className: "OperationDisplay"
|
|
1309
1313
|
}
|
|
1310
1314
|
},
|
|
1311
|
-
|
|
1312
|
-
serializedName: "properties
|
|
1315
|
+
properties: {
|
|
1316
|
+
serializedName: "properties",
|
|
1313
1317
|
type: {
|
|
1314
|
-
name: "
|
|
1315
|
-
|
|
1318
|
+
name: "Dictionary",
|
|
1319
|
+
value: { type: { name: "any" } }
|
|
1316
1320
|
}
|
|
1317
1321
|
},
|
|
1318
|
-
|
|
1319
|
-
serializedName: "
|
|
1322
|
+
origin: {
|
|
1323
|
+
serializedName: "origin",
|
|
1320
1324
|
type: {
|
|
1321
1325
|
name: "String"
|
|
1322
1326
|
}
|
|
1323
|
-
},
|
|
1324
|
-
encryptionProperties: {
|
|
1325
|
-
serializedName: "properties.encryptionProperties",
|
|
1326
|
-
type: {
|
|
1327
|
-
name: "Composite",
|
|
1328
|
-
className: "EncryptionProperties"
|
|
1329
|
-
}
|
|
1330
|
-
},
|
|
1331
|
-
initContainers: {
|
|
1332
|
-
serializedName: "properties.initContainers",
|
|
1333
|
-
type: {
|
|
1334
|
-
name: "Sequence",
|
|
1335
|
-
element: {
|
|
1336
|
-
type: {
|
|
1337
|
-
name: "Composite",
|
|
1338
|
-
className: "InitContainerDefinition"
|
|
1339
|
-
}
|
|
1340
|
-
}
|
|
1341
|
-
}
|
|
1342
1327
|
}
|
|
1343
1328
|
}
|
|
1344
1329
|
}
|
|
1345
1330
|
};
|
|
1346
1331
|
|
|
1347
|
-
export const OperationDisplay:
|
|
1348
|
-
serializedName: "Operation_display",
|
|
1332
|
+
export const OperationDisplay: coreClient.CompositeMapper = {
|
|
1349
1333
|
type: {
|
|
1350
1334
|
name: "Composite",
|
|
1351
1335
|
className: "OperationDisplay",
|
|
@@ -1378,59 +1362,80 @@ export const OperationDisplay: msRest.CompositeMapper = {
|
|
|
1378
1362
|
}
|
|
1379
1363
|
};
|
|
1380
1364
|
|
|
1381
|
-
export const
|
|
1382
|
-
serializedName: "Operation",
|
|
1365
|
+
export const UsageListResult: coreClient.CompositeMapper = {
|
|
1383
1366
|
type: {
|
|
1384
1367
|
name: "Composite",
|
|
1385
|
-
className: "
|
|
1368
|
+
className: "UsageListResult",
|
|
1386
1369
|
modelProperties: {
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1370
|
+
value: {
|
|
1371
|
+
serializedName: "value",
|
|
1372
|
+
readOnly: true,
|
|
1373
|
+
type: {
|
|
1374
|
+
name: "Sequence",
|
|
1375
|
+
element: {
|
|
1376
|
+
type: {
|
|
1377
|
+
name: "Composite",
|
|
1378
|
+
className: "Usage"
|
|
1379
|
+
}
|
|
1380
|
+
}
|
|
1381
|
+
}
|
|
1382
|
+
}
|
|
1383
|
+
}
|
|
1384
|
+
}
|
|
1385
|
+
};
|
|
1386
|
+
|
|
1387
|
+
export const Usage: coreClient.CompositeMapper = {
|
|
1388
|
+
type: {
|
|
1389
|
+
name: "Composite",
|
|
1390
|
+
className: "Usage",
|
|
1391
|
+
modelProperties: {
|
|
1392
|
+
unit: {
|
|
1393
|
+
serializedName: "unit",
|
|
1394
|
+
readOnly: true,
|
|
1390
1395
|
type: {
|
|
1391
1396
|
name: "String"
|
|
1392
1397
|
}
|
|
1393
1398
|
},
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1399
|
+
currentValue: {
|
|
1400
|
+
serializedName: "currentValue",
|
|
1401
|
+
readOnly: true,
|
|
1397
1402
|
type: {
|
|
1398
|
-
name: "
|
|
1399
|
-
className: "OperationDisplay"
|
|
1403
|
+
name: "Number"
|
|
1400
1404
|
}
|
|
1401
1405
|
},
|
|
1402
|
-
|
|
1403
|
-
serializedName: "
|
|
1406
|
+
limit: {
|
|
1407
|
+
serializedName: "limit",
|
|
1408
|
+
readOnly: true,
|
|
1404
1409
|
type: {
|
|
1405
|
-
name: "
|
|
1410
|
+
name: "Number"
|
|
1406
1411
|
}
|
|
1407
1412
|
},
|
|
1408
|
-
|
|
1409
|
-
serializedName: "
|
|
1413
|
+
name: {
|
|
1414
|
+
serializedName: "name",
|
|
1410
1415
|
type: {
|
|
1411
|
-
name: "
|
|
1416
|
+
name: "Composite",
|
|
1417
|
+
className: "UsageName"
|
|
1412
1418
|
}
|
|
1413
1419
|
}
|
|
1414
1420
|
}
|
|
1415
1421
|
}
|
|
1416
1422
|
};
|
|
1417
1423
|
|
|
1418
|
-
export const UsageName:
|
|
1419
|
-
serializedName: "Usage_name",
|
|
1424
|
+
export const UsageName: coreClient.CompositeMapper = {
|
|
1420
1425
|
type: {
|
|
1421
1426
|
name: "Composite",
|
|
1422
1427
|
className: "UsageName",
|
|
1423
1428
|
modelProperties: {
|
|
1424
1429
|
value: {
|
|
1425
|
-
readOnly: true,
|
|
1426
1430
|
serializedName: "value",
|
|
1431
|
+
readOnly: true,
|
|
1427
1432
|
type: {
|
|
1428
1433
|
name: "String"
|
|
1429
1434
|
}
|
|
1430
1435
|
},
|
|
1431
1436
|
localizedValue: {
|
|
1432
|
-
readOnly: true,
|
|
1433
1437
|
serializedName: "localizedValue",
|
|
1438
|
+
readOnly: true,
|
|
1434
1439
|
type: {
|
|
1435
1440
|
name: "String"
|
|
1436
1441
|
}
|
|
@@ -1439,63 +1444,44 @@ export const UsageName: msRest.CompositeMapper = {
|
|
|
1439
1444
|
}
|
|
1440
1445
|
};
|
|
1441
1446
|
|
|
1442
|
-
export const
|
|
1443
|
-
serializedName: "Usage",
|
|
1447
|
+
export const Logs: coreClient.CompositeMapper = {
|
|
1444
1448
|
type: {
|
|
1445
1449
|
name: "Composite",
|
|
1446
|
-
className: "
|
|
1450
|
+
className: "Logs",
|
|
1447
1451
|
modelProperties: {
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
serializedName: "unit",
|
|
1451
|
-
type: {
|
|
1452
|
-
name: "String"
|
|
1453
|
-
}
|
|
1454
|
-
},
|
|
1455
|
-
currentValue: {
|
|
1456
|
-
readOnly: true,
|
|
1457
|
-
serializedName: "currentValue",
|
|
1458
|
-
type: {
|
|
1459
|
-
name: "Number"
|
|
1460
|
-
}
|
|
1461
|
-
},
|
|
1462
|
-
limit: {
|
|
1463
|
-
readOnly: true,
|
|
1464
|
-
serializedName: "limit",
|
|
1465
|
-
type: {
|
|
1466
|
-
name: "Number"
|
|
1467
|
-
}
|
|
1468
|
-
},
|
|
1469
|
-
name: {
|
|
1470
|
-
readOnly: true,
|
|
1471
|
-
serializedName: "name",
|
|
1452
|
+
content: {
|
|
1453
|
+
serializedName: "content",
|
|
1472
1454
|
type: {
|
|
1473
|
-
name: "
|
|
1474
|
-
className: "UsageName"
|
|
1455
|
+
name: "String"
|
|
1475
1456
|
}
|
|
1476
1457
|
}
|
|
1477
1458
|
}
|
|
1478
1459
|
}
|
|
1479
1460
|
};
|
|
1480
1461
|
|
|
1481
|
-
export const
|
|
1482
|
-
serializedName: "Logs",
|
|
1462
|
+
export const ContainerExecRequest: coreClient.CompositeMapper = {
|
|
1483
1463
|
type: {
|
|
1484
1464
|
name: "Composite",
|
|
1485
|
-
className: "
|
|
1465
|
+
className: "ContainerExecRequest",
|
|
1486
1466
|
modelProperties: {
|
|
1487
|
-
|
|
1488
|
-
serializedName: "
|
|
1467
|
+
command: {
|
|
1468
|
+
serializedName: "command",
|
|
1489
1469
|
type: {
|
|
1490
1470
|
name: "String"
|
|
1491
1471
|
}
|
|
1472
|
+
},
|
|
1473
|
+
terminalSize: {
|
|
1474
|
+
serializedName: "terminalSize",
|
|
1475
|
+
type: {
|
|
1476
|
+
name: "Composite",
|
|
1477
|
+
className: "ContainerExecRequestTerminalSize"
|
|
1478
|
+
}
|
|
1492
1479
|
}
|
|
1493
1480
|
}
|
|
1494
1481
|
}
|
|
1495
1482
|
};
|
|
1496
1483
|
|
|
1497
|
-
export const ContainerExecRequestTerminalSize:
|
|
1498
|
-
serializedName: "ContainerExecRequest_terminalSize",
|
|
1484
|
+
export const ContainerExecRequestTerminalSize: coreClient.CompositeMapper = {
|
|
1499
1485
|
type: {
|
|
1500
1486
|
name: "Composite",
|
|
1501
1487
|
className: "ContainerExecRequestTerminalSize",
|
|
@@ -1516,34 +1502,31 @@ export const ContainerExecRequestTerminalSize: msRest.CompositeMapper = {
|
|
|
1516
1502
|
}
|
|
1517
1503
|
};
|
|
1518
1504
|
|
|
1519
|
-
export const
|
|
1520
|
-
serializedName: "ContainerExecRequest",
|
|
1505
|
+
export const ContainerExecResponse: coreClient.CompositeMapper = {
|
|
1521
1506
|
type: {
|
|
1522
1507
|
name: "Composite",
|
|
1523
|
-
className: "
|
|
1508
|
+
className: "ContainerExecResponse",
|
|
1524
1509
|
modelProperties: {
|
|
1525
|
-
|
|
1526
|
-
serializedName: "
|
|
1510
|
+
webSocketUri: {
|
|
1511
|
+
serializedName: "webSocketUri",
|
|
1527
1512
|
type: {
|
|
1528
1513
|
name: "String"
|
|
1529
1514
|
}
|
|
1530
1515
|
},
|
|
1531
|
-
|
|
1532
|
-
serializedName: "
|
|
1516
|
+
password: {
|
|
1517
|
+
serializedName: "password",
|
|
1533
1518
|
type: {
|
|
1534
|
-
name: "
|
|
1535
|
-
className: "ContainerExecRequestTerminalSize"
|
|
1519
|
+
name: "String"
|
|
1536
1520
|
}
|
|
1537
1521
|
}
|
|
1538
1522
|
}
|
|
1539
1523
|
}
|
|
1540
1524
|
};
|
|
1541
1525
|
|
|
1542
|
-
export const
|
|
1543
|
-
serializedName: "ContainerExecResponse",
|
|
1526
|
+
export const ContainerAttachResponse: coreClient.CompositeMapper = {
|
|
1544
1527
|
type: {
|
|
1545
1528
|
name: "Composite",
|
|
1546
|
-
className: "
|
|
1529
|
+
className: "ContainerAttachResponse",
|
|
1547
1530
|
modelProperties: {
|
|
1548
1531
|
webSocketUri: {
|
|
1549
1532
|
serializedName: "webSocketUri",
|
|
@@ -1561,20 +1544,25 @@ export const ContainerExecResponse: msRest.CompositeMapper = {
|
|
|
1561
1544
|
}
|
|
1562
1545
|
};
|
|
1563
1546
|
|
|
1564
|
-
export const
|
|
1565
|
-
serializedName: "ContainerAttachResponse",
|
|
1547
|
+
export const CachedImagesListResult: coreClient.CompositeMapper = {
|
|
1566
1548
|
type: {
|
|
1567
1549
|
name: "Composite",
|
|
1568
|
-
className: "
|
|
1550
|
+
className: "CachedImagesListResult",
|
|
1569
1551
|
modelProperties: {
|
|
1570
|
-
|
|
1571
|
-
serializedName: "
|
|
1552
|
+
value: {
|
|
1553
|
+
serializedName: "value",
|
|
1572
1554
|
type: {
|
|
1573
|
-
name: "
|
|
1555
|
+
name: "Sequence",
|
|
1556
|
+
element: {
|
|
1557
|
+
type: {
|
|
1558
|
+
name: "Composite",
|
|
1559
|
+
className: "CachedImages"
|
|
1560
|
+
}
|
|
1561
|
+
}
|
|
1574
1562
|
}
|
|
1575
1563
|
},
|
|
1576
|
-
|
|
1577
|
-
serializedName: "
|
|
1564
|
+
nextLink: {
|
|
1565
|
+
serializedName: "nextLink",
|
|
1578
1566
|
type: {
|
|
1579
1567
|
name: "String"
|
|
1580
1568
|
}
|
|
@@ -1583,22 +1571,21 @@ export const ContainerAttachResponse: msRest.CompositeMapper = {
|
|
|
1583
1571
|
}
|
|
1584
1572
|
};
|
|
1585
1573
|
|
|
1586
|
-
export const CachedImages:
|
|
1587
|
-
serializedName: "cachedImages",
|
|
1574
|
+
export const CachedImages: coreClient.CompositeMapper = {
|
|
1588
1575
|
type: {
|
|
1589
1576
|
name: "Composite",
|
|
1590
1577
|
className: "CachedImages",
|
|
1591
1578
|
modelProperties: {
|
|
1592
1579
|
osType: {
|
|
1593
|
-
required: true,
|
|
1594
1580
|
serializedName: "osType",
|
|
1581
|
+
required: true,
|
|
1595
1582
|
type: {
|
|
1596
1583
|
name: "String"
|
|
1597
1584
|
}
|
|
1598
1585
|
},
|
|
1599
1586
|
image: {
|
|
1600
|
-
required: true,
|
|
1601
1587
|
serializedName: "image",
|
|
1588
|
+
required: true,
|
|
1602
1589
|
type: {
|
|
1603
1590
|
name: "String"
|
|
1604
1591
|
}
|
|
@@ -1607,80 +1594,74 @@ export const CachedImages: msRest.CompositeMapper = {
|
|
|
1607
1594
|
}
|
|
1608
1595
|
};
|
|
1609
1596
|
|
|
1610
|
-
export const
|
|
1611
|
-
serializedName: "Capabilities_capabilities",
|
|
1597
|
+
export const CapabilitiesListResult: coreClient.CompositeMapper = {
|
|
1612
1598
|
type: {
|
|
1613
1599
|
name: "Composite",
|
|
1614
|
-
className: "
|
|
1600
|
+
className: "CapabilitiesListResult",
|
|
1615
1601
|
modelProperties: {
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
serializedName: "maxMemoryInGB",
|
|
1619
|
-
type: {
|
|
1620
|
-
name: "Number"
|
|
1621
|
-
}
|
|
1622
|
-
},
|
|
1623
|
-
maxCpu: {
|
|
1624
|
-
readOnly: true,
|
|
1625
|
-
serializedName: "maxCpu",
|
|
1602
|
+
value: {
|
|
1603
|
+
serializedName: "value",
|
|
1626
1604
|
type: {
|
|
1627
|
-
name: "
|
|
1605
|
+
name: "Sequence",
|
|
1606
|
+
element: {
|
|
1607
|
+
type: {
|
|
1608
|
+
name: "Composite",
|
|
1609
|
+
className: "Capabilities"
|
|
1610
|
+
}
|
|
1611
|
+
}
|
|
1628
1612
|
}
|
|
1629
1613
|
},
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
serializedName: "maxGpuCount",
|
|
1614
|
+
nextLink: {
|
|
1615
|
+
serializedName: "nextLink",
|
|
1633
1616
|
type: {
|
|
1634
|
-
name: "
|
|
1617
|
+
name: "String"
|
|
1635
1618
|
}
|
|
1636
1619
|
}
|
|
1637
1620
|
}
|
|
1638
1621
|
}
|
|
1639
1622
|
};
|
|
1640
1623
|
|
|
1641
|
-
export const Capabilities:
|
|
1642
|
-
serializedName: "Capabilities",
|
|
1624
|
+
export const Capabilities: coreClient.CompositeMapper = {
|
|
1643
1625
|
type: {
|
|
1644
1626
|
name: "Composite",
|
|
1645
1627
|
className: "Capabilities",
|
|
1646
1628
|
modelProperties: {
|
|
1647
1629
|
resourceType: {
|
|
1648
|
-
readOnly: true,
|
|
1649
1630
|
serializedName: "resourceType",
|
|
1631
|
+
readOnly: true,
|
|
1650
1632
|
type: {
|
|
1651
1633
|
name: "String"
|
|
1652
1634
|
}
|
|
1653
1635
|
},
|
|
1654
1636
|
osType: {
|
|
1655
|
-
readOnly: true,
|
|
1656
1637
|
serializedName: "osType",
|
|
1638
|
+
readOnly: true,
|
|
1657
1639
|
type: {
|
|
1658
1640
|
name: "String"
|
|
1659
1641
|
}
|
|
1660
1642
|
},
|
|
1661
1643
|
location: {
|
|
1662
|
-
readOnly: true,
|
|
1663
1644
|
serializedName: "location",
|
|
1645
|
+
readOnly: true,
|
|
1664
1646
|
type: {
|
|
1665
1647
|
name: "String"
|
|
1666
1648
|
}
|
|
1667
1649
|
},
|
|
1668
1650
|
ipAddressType: {
|
|
1669
|
-
readOnly: true,
|
|
1670
1651
|
serializedName: "ipAddressType",
|
|
1652
|
+
readOnly: true,
|
|
1671
1653
|
type: {
|
|
1672
1654
|
name: "String"
|
|
1673
1655
|
}
|
|
1674
1656
|
},
|
|
1675
1657
|
gpu: {
|
|
1676
|
-
readOnly: true,
|
|
1677
1658
|
serializedName: "gpu",
|
|
1659
|
+
readOnly: true,
|
|
1678
1660
|
type: {
|
|
1679
1661
|
name: "String"
|
|
1680
1662
|
}
|
|
1681
1663
|
},
|
|
1682
1664
|
capabilities: {
|
|
1683
|
-
readOnly: true,
|
|
1684
1665
|
serializedName: "capabilities",
|
|
1685
1666
|
type: {
|
|
1686
1667
|
name: "Composite",
|
|
@@ -1691,136 +1672,170 @@ export const Capabilities: msRest.CompositeMapper = {
|
|
|
1691
1672
|
}
|
|
1692
1673
|
};
|
|
1693
1674
|
|
|
1694
|
-
export const
|
|
1695
|
-
serializedName: "ContainerGroupListResult",
|
|
1675
|
+
export const CapabilitiesCapabilities: coreClient.CompositeMapper = {
|
|
1696
1676
|
type: {
|
|
1697
1677
|
name: "Composite",
|
|
1698
|
-
className: "
|
|
1678
|
+
className: "CapabilitiesCapabilities",
|
|
1699
1679
|
modelProperties: {
|
|
1700
|
-
|
|
1701
|
-
serializedName: "",
|
|
1680
|
+
maxMemoryInGB: {
|
|
1681
|
+
serializedName: "maxMemoryInGB",
|
|
1682
|
+
readOnly: true,
|
|
1702
1683
|
type: {
|
|
1703
|
-
name: "
|
|
1704
|
-
element: {
|
|
1705
|
-
type: {
|
|
1706
|
-
name: "Composite",
|
|
1707
|
-
className: "ContainerGroup"
|
|
1708
|
-
}
|
|
1709
|
-
}
|
|
1684
|
+
name: "Number"
|
|
1710
1685
|
}
|
|
1711
1686
|
},
|
|
1712
|
-
|
|
1713
|
-
serializedName: "
|
|
1687
|
+
maxCpu: {
|
|
1688
|
+
serializedName: "maxCpu",
|
|
1689
|
+
readOnly: true,
|
|
1714
1690
|
type: {
|
|
1715
|
-
name: "
|
|
1691
|
+
name: "Number"
|
|
1692
|
+
}
|
|
1693
|
+
},
|
|
1694
|
+
maxGpuCount: {
|
|
1695
|
+
serializedName: "maxGpuCount",
|
|
1696
|
+
readOnly: true,
|
|
1697
|
+
type: {
|
|
1698
|
+
name: "Number"
|
|
1716
1699
|
}
|
|
1717
1700
|
}
|
|
1718
1701
|
}
|
|
1719
1702
|
}
|
|
1720
1703
|
};
|
|
1721
1704
|
|
|
1722
|
-
export const
|
|
1723
|
-
serializedName: "OperationListResult",
|
|
1705
|
+
export const ContainerGroup: coreClient.CompositeMapper = {
|
|
1724
1706
|
type: {
|
|
1725
1707
|
name: "Composite",
|
|
1726
|
-
className: "
|
|
1708
|
+
className: "ContainerGroup",
|
|
1727
1709
|
modelProperties: {
|
|
1728
|
-
|
|
1729
|
-
|
|
1710
|
+
...Resource.type.modelProperties,
|
|
1711
|
+
identity: {
|
|
1712
|
+
serializedName: "identity",
|
|
1713
|
+
type: {
|
|
1714
|
+
name: "Composite",
|
|
1715
|
+
className: "ContainerGroupIdentity"
|
|
1716
|
+
}
|
|
1717
|
+
},
|
|
1718
|
+
provisioningState: {
|
|
1719
|
+
serializedName: "properties.provisioningState",
|
|
1720
|
+
readOnly: true,
|
|
1721
|
+
type: {
|
|
1722
|
+
name: "String"
|
|
1723
|
+
}
|
|
1724
|
+
},
|
|
1725
|
+
containers: {
|
|
1726
|
+
serializedName: "properties.containers",
|
|
1727
|
+
required: true,
|
|
1730
1728
|
type: {
|
|
1731
1729
|
name: "Sequence",
|
|
1732
1730
|
element: {
|
|
1733
1731
|
type: {
|
|
1734
1732
|
name: "Composite",
|
|
1735
|
-
className: "
|
|
1733
|
+
className: "Container"
|
|
1736
1734
|
}
|
|
1737
1735
|
}
|
|
1738
1736
|
}
|
|
1739
1737
|
},
|
|
1740
|
-
|
|
1741
|
-
serializedName: "
|
|
1742
|
-
type: {
|
|
1743
|
-
name: "String"
|
|
1744
|
-
}
|
|
1745
|
-
}
|
|
1746
|
-
}
|
|
1747
|
-
}
|
|
1748
|
-
};
|
|
1749
|
-
|
|
1750
|
-
export const UsageListResult: msRest.CompositeMapper = {
|
|
1751
|
-
serializedName: "UsageListResult",
|
|
1752
|
-
type: {
|
|
1753
|
-
name: "Composite",
|
|
1754
|
-
className: "UsageListResult",
|
|
1755
|
-
modelProperties: {
|
|
1756
|
-
value: {
|
|
1757
|
-
readOnly: true,
|
|
1758
|
-
serializedName: "",
|
|
1738
|
+
imageRegistryCredentials: {
|
|
1739
|
+
serializedName: "properties.imageRegistryCredentials",
|
|
1759
1740
|
type: {
|
|
1760
1741
|
name: "Sequence",
|
|
1761
1742
|
element: {
|
|
1762
1743
|
type: {
|
|
1763
1744
|
name: "Composite",
|
|
1764
|
-
className: "
|
|
1745
|
+
className: "ImageRegistryCredential"
|
|
1765
1746
|
}
|
|
1766
1747
|
}
|
|
1767
1748
|
}
|
|
1768
|
-
}
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1749
|
+
},
|
|
1750
|
+
restartPolicy: {
|
|
1751
|
+
serializedName: "properties.restartPolicy",
|
|
1752
|
+
type: {
|
|
1753
|
+
name: "String"
|
|
1754
|
+
}
|
|
1755
|
+
},
|
|
1756
|
+
ipAddress: {
|
|
1757
|
+
serializedName: "properties.ipAddress",
|
|
1758
|
+
type: {
|
|
1759
|
+
name: "Composite",
|
|
1760
|
+
className: "IpAddress"
|
|
1761
|
+
}
|
|
1762
|
+
},
|
|
1763
|
+
osType: {
|
|
1764
|
+
serializedName: "properties.osType",
|
|
1765
|
+
required: true,
|
|
1766
|
+
type: {
|
|
1767
|
+
name: "String"
|
|
1768
|
+
}
|
|
1769
|
+
},
|
|
1770
|
+
volumes: {
|
|
1771
|
+
serializedName: "properties.volumes",
|
|
1781
1772
|
type: {
|
|
1782
1773
|
name: "Sequence",
|
|
1783
1774
|
element: {
|
|
1784
1775
|
type: {
|
|
1785
1776
|
name: "Composite",
|
|
1786
|
-
className: "
|
|
1777
|
+
className: "Volume"
|
|
1787
1778
|
}
|
|
1788
1779
|
}
|
|
1789
1780
|
}
|
|
1790
1781
|
},
|
|
1791
|
-
|
|
1792
|
-
serializedName: "
|
|
1782
|
+
instanceView: {
|
|
1783
|
+
serializedName: "properties.instanceView",
|
|
1793
1784
|
type: {
|
|
1794
|
-
name: "
|
|
1785
|
+
name: "Composite",
|
|
1786
|
+
className: "ContainerGroupPropertiesInstanceView"
|
|
1795
1787
|
}
|
|
1796
|
-
}
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
modelProperties: {
|
|
1807
|
-
value: {
|
|
1808
|
-
serializedName: "",
|
|
1788
|
+
},
|
|
1789
|
+
diagnostics: {
|
|
1790
|
+
serializedName: "properties.diagnostics",
|
|
1791
|
+
type: {
|
|
1792
|
+
name: "Composite",
|
|
1793
|
+
className: "ContainerGroupDiagnostics"
|
|
1794
|
+
}
|
|
1795
|
+
},
|
|
1796
|
+
subnetIds: {
|
|
1797
|
+
serializedName: "properties.subnetIds",
|
|
1809
1798
|
type: {
|
|
1810
1799
|
name: "Sequence",
|
|
1811
1800
|
element: {
|
|
1812
1801
|
type: {
|
|
1813
1802
|
name: "Composite",
|
|
1814
|
-
className: "
|
|
1803
|
+
className: "ContainerGroupSubnetId"
|
|
1815
1804
|
}
|
|
1816
1805
|
}
|
|
1817
1806
|
}
|
|
1818
1807
|
},
|
|
1819
|
-
|
|
1820
|
-
serializedName: "
|
|
1808
|
+
dnsConfig: {
|
|
1809
|
+
serializedName: "properties.dnsConfig",
|
|
1810
|
+
type: {
|
|
1811
|
+
name: "Composite",
|
|
1812
|
+
className: "DnsConfiguration"
|
|
1813
|
+
}
|
|
1814
|
+
},
|
|
1815
|
+
sku: {
|
|
1816
|
+
serializedName: "properties.sku",
|
|
1821
1817
|
type: {
|
|
1822
1818
|
name: "String"
|
|
1823
1819
|
}
|
|
1820
|
+
},
|
|
1821
|
+
encryptionProperties: {
|
|
1822
|
+
serializedName: "properties.encryptionProperties",
|
|
1823
|
+
type: {
|
|
1824
|
+
name: "Composite",
|
|
1825
|
+
className: "EncryptionProperties"
|
|
1826
|
+
}
|
|
1827
|
+
},
|
|
1828
|
+
initContainers: {
|
|
1829
|
+
serializedName: "properties.initContainers",
|
|
1830
|
+
type: {
|
|
1831
|
+
name: "Sequence",
|
|
1832
|
+
element: {
|
|
1833
|
+
type: {
|
|
1834
|
+
name: "Composite",
|
|
1835
|
+
className: "InitContainerDefinition"
|
|
1836
|
+
}
|
|
1837
|
+
}
|
|
1838
|
+
}
|
|
1824
1839
|
}
|
|
1825
1840
|
}
|
|
1826
1841
|
}
|