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