@azure/arm-containerinstance 7.1.0 → 8.0.0-alpha.20220104.2
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 +782 -805
- 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 -22
- 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 +728 -1245
- package/src/models/mappers.ts +790 -809
- package/src/models/parameters.ts +90 -38
- package/src/operations/containerGroups.ts +667 -500
- 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 -3094
- 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 -1501
- 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 -270
- package/esm/operations/containerGroups.d.ts.map +0 -1
- package/esm/operations/containerGroups.js +0 -496
- 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,118 +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: "HttpHeader",
|
|
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",
|
|
364
462
|
type: {
|
|
365
|
-
name: "
|
|
463
|
+
name: "Number"
|
|
366
464
|
}
|
|
367
465
|
},
|
|
368
|
-
|
|
369
|
-
serializedName: "
|
|
466
|
+
cpu: {
|
|
467
|
+
serializedName: "cpu",
|
|
370
468
|
type: {
|
|
371
|
-
name: "
|
|
469
|
+
name: "Number"
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
gpu: {
|
|
473
|
+
serializedName: "gpu",
|
|
474
|
+
type: {
|
|
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
|
-
element: {
|
|
407
|
-
type: {
|
|
408
|
-
name: "Composite",
|
|
409
|
-
className: "HttpHeader"
|
|
410
|
-
}
|
|
411
|
-
}
|
|
504
|
+
name: "Boolean"
|
|
412
505
|
}
|
|
413
506
|
}
|
|
414
507
|
}
|
|
415
508
|
}
|
|
416
509
|
};
|
|
417
|
-
export
|
|
418
|
-
serializedName: "ContainerProbe",
|
|
510
|
+
export const ContainerProbe = {
|
|
419
511
|
type: {
|
|
420
512
|
name: "Composite",
|
|
421
513
|
className: "ContainerProbe",
|
|
@@ -467,28 +559,13 @@ export var ContainerProbe = {
|
|
|
467
559
|
}
|
|
468
560
|
}
|
|
469
561
|
};
|
|
470
|
-
export
|
|
471
|
-
serializedName: "Container",
|
|
562
|
+
export const ContainerExec = {
|
|
472
563
|
type: {
|
|
473
564
|
name: "Composite",
|
|
474
|
-
className: "
|
|
565
|
+
className: "ContainerExec",
|
|
475
566
|
modelProperties: {
|
|
476
|
-
name: {
|
|
477
|
-
required: true,
|
|
478
|
-
serializedName: "name",
|
|
479
|
-
type: {
|
|
480
|
-
name: "String"
|
|
481
|
-
}
|
|
482
|
-
},
|
|
483
|
-
image: {
|
|
484
|
-
required: true,
|
|
485
|
-
serializedName: "properties.image",
|
|
486
|
-
type: {
|
|
487
|
-
name: "String"
|
|
488
|
-
}
|
|
489
|
-
},
|
|
490
567
|
command: {
|
|
491
|
-
serializedName: "
|
|
568
|
+
serializedName: "command",
|
|
492
569
|
type: {
|
|
493
570
|
name: "Sequence",
|
|
494
571
|
element: {
|
|
@@ -497,272 +574,84 @@ export var Container = {
|
|
|
497
574
|
}
|
|
498
575
|
}
|
|
499
576
|
}
|
|
500
|
-
},
|
|
501
|
-
ports: {
|
|
502
|
-
serializedName: "properties.ports",
|
|
503
|
-
type: {
|
|
504
|
-
name: "Sequence",
|
|
505
|
-
element: {
|
|
506
|
-
type: {
|
|
507
|
-
name: "Composite",
|
|
508
|
-
className: "ContainerPort"
|
|
509
|
-
}
|
|
510
|
-
}
|
|
511
|
-
}
|
|
512
|
-
},
|
|
513
|
-
environmentVariables: {
|
|
514
|
-
serializedName: "properties.environmentVariables",
|
|
515
|
-
type: {
|
|
516
|
-
name: "Sequence",
|
|
517
|
-
element: {
|
|
518
|
-
type: {
|
|
519
|
-
name: "Composite",
|
|
520
|
-
className: "EnvironmentVariable"
|
|
521
|
-
}
|
|
522
|
-
}
|
|
523
|
-
}
|
|
524
|
-
},
|
|
525
|
-
instanceView: {
|
|
526
|
-
readOnly: true,
|
|
527
|
-
serializedName: "properties.instanceView",
|
|
528
|
-
type: {
|
|
529
|
-
name: "Composite",
|
|
530
|
-
className: "ContainerPropertiesInstanceView"
|
|
531
|
-
}
|
|
532
|
-
},
|
|
533
|
-
resources: {
|
|
534
|
-
required: true,
|
|
535
|
-
serializedName: "properties.resources",
|
|
536
|
-
type: {
|
|
537
|
-
name: "Composite",
|
|
538
|
-
className: "ResourceRequirements"
|
|
539
|
-
}
|
|
540
|
-
},
|
|
541
|
-
volumeMounts: {
|
|
542
|
-
serializedName: "properties.volumeMounts",
|
|
543
|
-
type: {
|
|
544
|
-
name: "Sequence",
|
|
545
|
-
element: {
|
|
546
|
-
type: {
|
|
547
|
-
name: "Composite",
|
|
548
|
-
className: "VolumeMount"
|
|
549
|
-
}
|
|
550
|
-
}
|
|
551
|
-
}
|
|
552
|
-
},
|
|
553
|
-
livenessProbe: {
|
|
554
|
-
serializedName: "properties.livenessProbe",
|
|
555
|
-
type: {
|
|
556
|
-
name: "Composite",
|
|
557
|
-
className: "ContainerProbe"
|
|
558
|
-
}
|
|
559
|
-
},
|
|
560
|
-
readinessProbe: {
|
|
561
|
-
serializedName: "properties.readinessProbe",
|
|
562
|
-
type: {
|
|
563
|
-
name: "Composite",
|
|
564
|
-
className: "ContainerProbe"
|
|
565
|
-
}
|
|
566
|
-
}
|
|
567
|
-
}
|
|
568
|
-
}
|
|
569
|
-
};
|
|
570
|
-
export var AzureFileVolume = {
|
|
571
|
-
serializedName: "AzureFileVolume",
|
|
572
|
-
type: {
|
|
573
|
-
name: "Composite",
|
|
574
|
-
className: "AzureFileVolume",
|
|
575
|
-
modelProperties: {
|
|
576
|
-
shareName: {
|
|
577
|
-
required: true,
|
|
578
|
-
serializedName: "shareName",
|
|
579
|
-
type: {
|
|
580
|
-
name: "String"
|
|
581
|
-
}
|
|
582
|
-
},
|
|
583
|
-
readOnly: {
|
|
584
|
-
serializedName: "readOnly",
|
|
585
|
-
type: {
|
|
586
|
-
name: "Boolean"
|
|
587
|
-
}
|
|
588
|
-
},
|
|
589
|
-
storageAccountName: {
|
|
590
|
-
required: true,
|
|
591
|
-
serializedName: "storageAccountName",
|
|
592
|
-
type: {
|
|
593
|
-
name: "String"
|
|
594
|
-
}
|
|
595
|
-
},
|
|
596
|
-
storageAccountKey: {
|
|
597
|
-
serializedName: "storageAccountKey",
|
|
598
|
-
type: {
|
|
599
|
-
name: "String"
|
|
600
|
-
}
|
|
601
577
|
}
|
|
602
578
|
}
|
|
603
579
|
}
|
|
604
580
|
};
|
|
605
|
-
export
|
|
606
|
-
serializedName: "GitRepoVolume",
|
|
581
|
+
export const ContainerHttpGet = {
|
|
607
582
|
type: {
|
|
608
583
|
name: "Composite",
|
|
609
|
-
className: "
|
|
584
|
+
className: "ContainerHttpGet",
|
|
610
585
|
modelProperties: {
|
|
611
|
-
|
|
612
|
-
serializedName: "
|
|
586
|
+
path: {
|
|
587
|
+
serializedName: "path",
|
|
613
588
|
type: {
|
|
614
589
|
name: "String"
|
|
615
590
|
}
|
|
616
591
|
},
|
|
617
|
-
|
|
592
|
+
port: {
|
|
593
|
+
serializedName: "port",
|
|
618
594
|
required: true,
|
|
619
|
-
serializedName: "repository",
|
|
620
595
|
type: {
|
|
621
|
-
name: "
|
|
596
|
+
name: "Number"
|
|
622
597
|
}
|
|
623
598
|
},
|
|
624
|
-
|
|
625
|
-
serializedName: "
|
|
626
|
-
type: {
|
|
627
|
-
name: "String"
|
|
628
|
-
}
|
|
629
|
-
}
|
|
630
|
-
}
|
|
631
|
-
}
|
|
632
|
-
};
|
|
633
|
-
export var Volume = {
|
|
634
|
-
serializedName: "Volume",
|
|
635
|
-
type: {
|
|
636
|
-
name: "Composite",
|
|
637
|
-
className: "Volume",
|
|
638
|
-
modelProperties: {
|
|
639
|
-
name: {
|
|
640
|
-
required: true,
|
|
641
|
-
serializedName: "name",
|
|
599
|
+
scheme: {
|
|
600
|
+
serializedName: "scheme",
|
|
642
601
|
type: {
|
|
643
602
|
name: "String"
|
|
644
603
|
}
|
|
645
604
|
},
|
|
646
|
-
|
|
647
|
-
serializedName: "
|
|
648
|
-
type: {
|
|
649
|
-
name: "Composite",
|
|
650
|
-
className: "AzureFileVolume"
|
|
651
|
-
}
|
|
652
|
-
},
|
|
653
|
-
emptyDir: {
|
|
654
|
-
serializedName: "emptyDir",
|
|
655
|
-
type: {
|
|
656
|
-
name: "Object"
|
|
657
|
-
}
|
|
658
|
-
},
|
|
659
|
-
secret: {
|
|
660
|
-
serializedName: "secret",
|
|
605
|
+
httpHeaders: {
|
|
606
|
+
serializedName: "httpHeaders",
|
|
661
607
|
type: {
|
|
662
|
-
name: "
|
|
663
|
-
|
|
608
|
+
name: "Sequence",
|
|
609
|
+
element: {
|
|
664
610
|
type: {
|
|
665
|
-
name: "
|
|
611
|
+
name: "Composite",
|
|
612
|
+
className: "HttpHeader"
|
|
666
613
|
}
|
|
667
614
|
}
|
|
668
615
|
}
|
|
669
|
-
},
|
|
670
|
-
gitRepo: {
|
|
671
|
-
serializedName: "gitRepo",
|
|
672
|
-
type: {
|
|
673
|
-
name: "Composite",
|
|
674
|
-
className: "GitRepoVolume"
|
|
675
|
-
}
|
|
676
|
-
}
|
|
677
|
-
}
|
|
678
|
-
}
|
|
679
|
-
};
|
|
680
|
-
export var ContainerGroupIdentityUserAssignedIdentitiesValue = {
|
|
681
|
-
serializedName: "ContainerGroupIdentity_userAssignedIdentitiesValue",
|
|
682
|
-
type: {
|
|
683
|
-
name: "Composite",
|
|
684
|
-
className: "ContainerGroupIdentityUserAssignedIdentitiesValue",
|
|
685
|
-
modelProperties: {
|
|
686
|
-
principalId: {
|
|
687
|
-
readOnly: true,
|
|
688
|
-
serializedName: "principalId",
|
|
689
|
-
type: {
|
|
690
|
-
name: "String"
|
|
691
|
-
}
|
|
692
|
-
},
|
|
693
|
-
clientId: {
|
|
694
|
-
readOnly: true,
|
|
695
|
-
serializedName: "clientId",
|
|
696
|
-
type: {
|
|
697
|
-
name: "String"
|
|
698
|
-
}
|
|
699
616
|
}
|
|
700
617
|
}
|
|
701
618
|
}
|
|
702
619
|
};
|
|
703
|
-
export
|
|
704
|
-
serializedName: "ContainerGroupIdentity",
|
|
620
|
+
export const HttpHeader = {
|
|
705
621
|
type: {
|
|
706
622
|
name: "Composite",
|
|
707
|
-
className: "
|
|
623
|
+
className: "HttpHeader",
|
|
708
624
|
modelProperties: {
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
serializedName: "principalId",
|
|
625
|
+
name: {
|
|
626
|
+
serializedName: "name",
|
|
712
627
|
type: {
|
|
713
628
|
name: "String"
|
|
714
629
|
}
|
|
715
630
|
},
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
serializedName: "tenantId",
|
|
631
|
+
value: {
|
|
632
|
+
serializedName: "value",
|
|
719
633
|
type: {
|
|
720
634
|
name: "String"
|
|
721
635
|
}
|
|
722
|
-
},
|
|
723
|
-
type: {
|
|
724
|
-
serializedName: "type",
|
|
725
|
-
type: {
|
|
726
|
-
name: "Enum",
|
|
727
|
-
allowedValues: [
|
|
728
|
-
"SystemAssigned",
|
|
729
|
-
"UserAssigned",
|
|
730
|
-
"SystemAssigned, UserAssigned",
|
|
731
|
-
"None"
|
|
732
|
-
]
|
|
733
|
-
}
|
|
734
|
-
},
|
|
735
|
-
userAssignedIdentities: {
|
|
736
|
-
serializedName: "userAssignedIdentities",
|
|
737
|
-
type: {
|
|
738
|
-
name: "Dictionary",
|
|
739
|
-
value: {
|
|
740
|
-
type: {
|
|
741
|
-
name: "Composite",
|
|
742
|
-
className: "ContainerGroupIdentityUserAssignedIdentitiesValue"
|
|
743
|
-
}
|
|
744
|
-
}
|
|
745
|
-
}
|
|
746
636
|
}
|
|
747
637
|
}
|
|
748
638
|
}
|
|
749
639
|
};
|
|
750
|
-
export
|
|
751
|
-
serializedName: "ImageRegistryCredential",
|
|
640
|
+
export const ImageRegistryCredential = {
|
|
752
641
|
type: {
|
|
753
642
|
name: "Composite",
|
|
754
643
|
className: "ImageRegistryCredential",
|
|
755
644
|
modelProperties: {
|
|
756
645
|
server: {
|
|
757
|
-
required: true,
|
|
758
646
|
serializedName: "server",
|
|
647
|
+
required: true,
|
|
759
648
|
type: {
|
|
760
649
|
name: "String"
|
|
761
650
|
}
|
|
762
651
|
},
|
|
763
652
|
username: {
|
|
764
|
-
required: true,
|
|
765
653
|
serializedName: "username",
|
|
654
|
+
required: true,
|
|
766
655
|
type: {
|
|
767
656
|
name: "String"
|
|
768
657
|
}
|
|
@@ -788,8 +677,54 @@ export var ImageRegistryCredential = {
|
|
|
788
677
|
}
|
|
789
678
|
}
|
|
790
679
|
};
|
|
791
|
-
export
|
|
792
|
-
|
|
680
|
+
export const IpAddress = {
|
|
681
|
+
type: {
|
|
682
|
+
name: "Composite",
|
|
683
|
+
className: "IpAddress",
|
|
684
|
+
modelProperties: {
|
|
685
|
+
ports: {
|
|
686
|
+
serializedName: "ports",
|
|
687
|
+
required: true,
|
|
688
|
+
type: {
|
|
689
|
+
name: "Sequence",
|
|
690
|
+
element: {
|
|
691
|
+
type: {
|
|
692
|
+
name: "Composite",
|
|
693
|
+
className: "Port"
|
|
694
|
+
}
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
},
|
|
698
|
+
type: {
|
|
699
|
+
serializedName: "type",
|
|
700
|
+
required: true,
|
|
701
|
+
type: {
|
|
702
|
+
name: "String"
|
|
703
|
+
}
|
|
704
|
+
},
|
|
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,
|
|
720
|
+
type: {
|
|
721
|
+
name: "String"
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
};
|
|
727
|
+
export const Port = {
|
|
793
728
|
type: {
|
|
794
729
|
name: "Composite",
|
|
795
730
|
className: "Port",
|
|
@@ -801,8 +736,8 @@ export var Port = {
|
|
|
801
736
|
}
|
|
802
737
|
},
|
|
803
738
|
port: {
|
|
804
|
-
required: true,
|
|
805
739
|
serializedName: "port",
|
|
740
|
+
required: true,
|
|
806
741
|
type: {
|
|
807
742
|
name: "Number"
|
|
808
743
|
}
|
|
@@ -810,47 +745,103 @@ export var Port = {
|
|
|
810
745
|
}
|
|
811
746
|
}
|
|
812
747
|
};
|
|
813
|
-
export
|
|
814
|
-
serializedName: "IpAddress",
|
|
748
|
+
export const Volume = {
|
|
815
749
|
type: {
|
|
816
750
|
name: "Composite",
|
|
817
|
-
className: "
|
|
751
|
+
className: "Volume",
|
|
818
752
|
modelProperties: {
|
|
819
|
-
|
|
753
|
+
name: {
|
|
754
|
+
serializedName: "name",
|
|
820
755
|
required: true,
|
|
821
|
-
serializedName: "ports",
|
|
822
756
|
type: {
|
|
823
|
-
name: "
|
|
824
|
-
element: {
|
|
825
|
-
type: {
|
|
826
|
-
name: "Composite",
|
|
827
|
-
className: "Port"
|
|
828
|
-
}
|
|
829
|
-
}
|
|
757
|
+
name: "String"
|
|
830
758
|
}
|
|
831
759
|
},
|
|
832
|
-
|
|
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",
|
|
833
798
|
required: true,
|
|
834
|
-
serializedName: "type",
|
|
835
799
|
type: {
|
|
836
800
|
name: "String"
|
|
837
801
|
}
|
|
838
802
|
},
|
|
839
|
-
|
|
840
|
-
serializedName: "
|
|
803
|
+
readOnly: {
|
|
804
|
+
serializedName: "readOnly",
|
|
805
|
+
type: {
|
|
806
|
+
name: "Boolean"
|
|
807
|
+
}
|
|
808
|
+
},
|
|
809
|
+
storageAccountName: {
|
|
810
|
+
serializedName: "storageAccountName",
|
|
811
|
+
required: true,
|
|
841
812
|
type: {
|
|
842
813
|
name: "String"
|
|
843
814
|
}
|
|
844
815
|
},
|
|
845
|
-
|
|
846
|
-
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",
|
|
847
832
|
type: {
|
|
848
833
|
name: "String"
|
|
849
834
|
}
|
|
850
835
|
},
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
836
|
+
repository: {
|
|
837
|
+
serializedName: "repository",
|
|
838
|
+
required: true,
|
|
839
|
+
type: {
|
|
840
|
+
name: "String"
|
|
841
|
+
}
|
|
842
|
+
},
|
|
843
|
+
revision: {
|
|
844
|
+
serializedName: "revision",
|
|
854
845
|
type: {
|
|
855
846
|
name: "String"
|
|
856
847
|
}
|
|
@@ -858,15 +849,14 @@ export var IpAddress = {
|
|
|
858
849
|
}
|
|
859
850
|
}
|
|
860
851
|
};
|
|
861
|
-
export
|
|
862
|
-
serializedName: "ContainerGroup_properties_instanceView",
|
|
852
|
+
export const ContainerGroupPropertiesInstanceView = {
|
|
863
853
|
type: {
|
|
864
854
|
name: "Composite",
|
|
865
855
|
className: "ContainerGroupPropertiesInstanceView",
|
|
866
856
|
modelProperties: {
|
|
867
857
|
events: {
|
|
868
|
-
readOnly: true,
|
|
869
858
|
serializedName: "events",
|
|
859
|
+
readOnly: true,
|
|
870
860
|
type: {
|
|
871
861
|
name: "Sequence",
|
|
872
862
|
element: {
|
|
@@ -878,8 +868,8 @@ export var ContainerGroupPropertiesInstanceView = {
|
|
|
878
868
|
}
|
|
879
869
|
},
|
|
880
870
|
state: {
|
|
881
|
-
readOnly: true,
|
|
882
871
|
serializedName: "state",
|
|
872
|
+
readOnly: true,
|
|
883
873
|
type: {
|
|
884
874
|
name: "String"
|
|
885
875
|
}
|
|
@@ -887,22 +877,36 @@ export var ContainerGroupPropertiesInstanceView = {
|
|
|
887
877
|
}
|
|
888
878
|
}
|
|
889
879
|
};
|
|
890
|
-
export
|
|
891
|
-
|
|
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 = {
|
|
892
896
|
type: {
|
|
893
897
|
name: "Composite",
|
|
894
898
|
className: "LogAnalytics",
|
|
895
899
|
modelProperties: {
|
|
896
900
|
workspaceId: {
|
|
897
|
-
required: true,
|
|
898
901
|
serializedName: "workspaceId",
|
|
902
|
+
required: true,
|
|
899
903
|
type: {
|
|
900
904
|
name: "String"
|
|
901
905
|
}
|
|
902
906
|
},
|
|
903
907
|
workspaceKey: {
|
|
904
|
-
required: true,
|
|
905
908
|
serializedName: "workspaceKey",
|
|
909
|
+
required: true,
|
|
906
910
|
type: {
|
|
907
911
|
name: "String"
|
|
908
912
|
}
|
|
@@ -917,11 +921,7 @@ export var LogAnalytics = {
|
|
|
917
921
|
serializedName: "metadata",
|
|
918
922
|
type: {
|
|
919
923
|
name: "Dictionary",
|
|
920
|
-
value: {
|
|
921
|
-
type: {
|
|
922
|
-
name: "String"
|
|
923
|
-
}
|
|
924
|
-
}
|
|
924
|
+
value: { type: { name: "String" } }
|
|
925
925
|
}
|
|
926
926
|
},
|
|
927
927
|
workspaceResourceId: {
|
|
@@ -933,31 +933,14 @@ export var LogAnalytics = {
|
|
|
933
933
|
}
|
|
934
934
|
}
|
|
935
935
|
};
|
|
936
|
-
export
|
|
937
|
-
serializedName: "ContainerGroupDiagnostics",
|
|
938
|
-
type: {
|
|
939
|
-
name: "Composite",
|
|
940
|
-
className: "ContainerGroupDiagnostics",
|
|
941
|
-
modelProperties: {
|
|
942
|
-
logAnalytics: {
|
|
943
|
-
serializedName: "logAnalytics",
|
|
944
|
-
type: {
|
|
945
|
-
name: "Composite",
|
|
946
|
-
className: "LogAnalytics"
|
|
947
|
-
}
|
|
948
|
-
}
|
|
949
|
-
}
|
|
950
|
-
}
|
|
951
|
-
};
|
|
952
|
-
export var ContainerGroupSubnetId = {
|
|
953
|
-
serializedName: "ContainerGroupSubnetId",
|
|
936
|
+
export const ContainerGroupSubnetId = {
|
|
954
937
|
type: {
|
|
955
938
|
name: "Composite",
|
|
956
939
|
className: "ContainerGroupSubnetId",
|
|
957
940
|
modelProperties: {
|
|
958
941
|
id: {
|
|
959
|
-
required: true,
|
|
960
942
|
serializedName: "id",
|
|
943
|
+
required: true,
|
|
961
944
|
type: {
|
|
962
945
|
name: "String"
|
|
963
946
|
}
|
|
@@ -971,15 +954,14 @@ export var ContainerGroupSubnetId = {
|
|
|
971
954
|
}
|
|
972
955
|
}
|
|
973
956
|
};
|
|
974
|
-
export
|
|
975
|
-
serializedName: "DnsConfiguration",
|
|
957
|
+
export const DnsConfiguration = {
|
|
976
958
|
type: {
|
|
977
959
|
name: "Composite",
|
|
978
960
|
className: "DnsConfiguration",
|
|
979
961
|
modelProperties: {
|
|
980
962
|
nameServers: {
|
|
981
|
-
required: true,
|
|
982
963
|
serializedName: "nameServers",
|
|
964
|
+
required: true,
|
|
983
965
|
type: {
|
|
984
966
|
name: "Sequence",
|
|
985
967
|
element: {
|
|
@@ -1004,29 +986,28 @@ export var DnsConfiguration = {
|
|
|
1004
986
|
}
|
|
1005
987
|
}
|
|
1006
988
|
};
|
|
1007
|
-
export
|
|
1008
|
-
serializedName: "EncryptionProperties",
|
|
989
|
+
export const EncryptionProperties = {
|
|
1009
990
|
type: {
|
|
1010
991
|
name: "Composite",
|
|
1011
992
|
className: "EncryptionProperties",
|
|
1012
993
|
modelProperties: {
|
|
1013
994
|
vaultBaseUrl: {
|
|
1014
|
-
required: true,
|
|
1015
995
|
serializedName: "vaultBaseUrl",
|
|
996
|
+
required: true,
|
|
1016
997
|
type: {
|
|
1017
998
|
name: "String"
|
|
1018
999
|
}
|
|
1019
1000
|
},
|
|
1020
1001
|
keyName: {
|
|
1021
|
-
required: true,
|
|
1022
1002
|
serializedName: "keyName",
|
|
1003
|
+
required: true,
|
|
1023
1004
|
type: {
|
|
1024
1005
|
name: "String"
|
|
1025
1006
|
}
|
|
1026
1007
|
},
|
|
1027
1008
|
keyVersion: {
|
|
1028
|
-
required: true,
|
|
1029
1009
|
serializedName: "keyVersion",
|
|
1010
|
+
required: true,
|
|
1030
1011
|
type: {
|
|
1031
1012
|
name: "String"
|
|
1032
1013
|
}
|
|
@@ -1034,60 +1015,14 @@ export var EncryptionProperties = {
|
|
|
1034
1015
|
}
|
|
1035
1016
|
}
|
|
1036
1017
|
};
|
|
1037
|
-
export
|
|
1038
|
-
serializedName: "InitContainerPropertiesDefinition_instanceView",
|
|
1039
|
-
type: {
|
|
1040
|
-
name: "Composite",
|
|
1041
|
-
className: "InitContainerPropertiesDefinitionInstanceView",
|
|
1042
|
-
modelProperties: {
|
|
1043
|
-
restartCount: {
|
|
1044
|
-
readOnly: true,
|
|
1045
|
-
serializedName: "restartCount",
|
|
1046
|
-
type: {
|
|
1047
|
-
name: "Number"
|
|
1048
|
-
}
|
|
1049
|
-
},
|
|
1050
|
-
currentState: {
|
|
1051
|
-
readOnly: true,
|
|
1052
|
-
serializedName: "currentState",
|
|
1053
|
-
type: {
|
|
1054
|
-
name: "Composite",
|
|
1055
|
-
className: "ContainerState"
|
|
1056
|
-
}
|
|
1057
|
-
},
|
|
1058
|
-
previousState: {
|
|
1059
|
-
readOnly: true,
|
|
1060
|
-
serializedName: "previousState",
|
|
1061
|
-
type: {
|
|
1062
|
-
name: "Composite",
|
|
1063
|
-
className: "ContainerState"
|
|
1064
|
-
}
|
|
1065
|
-
},
|
|
1066
|
-
events: {
|
|
1067
|
-
readOnly: true,
|
|
1068
|
-
serializedName: "events",
|
|
1069
|
-
type: {
|
|
1070
|
-
name: "Sequence",
|
|
1071
|
-
element: {
|
|
1072
|
-
type: {
|
|
1073
|
-
name: "Composite",
|
|
1074
|
-
className: "Event"
|
|
1075
|
-
}
|
|
1076
|
-
}
|
|
1077
|
-
}
|
|
1078
|
-
}
|
|
1079
|
-
}
|
|
1080
|
-
}
|
|
1081
|
-
};
|
|
1082
|
-
export var InitContainerDefinition = {
|
|
1083
|
-
serializedName: "InitContainerDefinition",
|
|
1018
|
+
export const InitContainerDefinition = {
|
|
1084
1019
|
type: {
|
|
1085
1020
|
name: "Composite",
|
|
1086
1021
|
className: "InitContainerDefinition",
|
|
1087
1022
|
modelProperties: {
|
|
1088
1023
|
name: {
|
|
1089
|
-
required: true,
|
|
1090
1024
|
serializedName: "name",
|
|
1025
|
+
required: true,
|
|
1091
1026
|
type: {
|
|
1092
1027
|
name: "String"
|
|
1093
1028
|
}
|
|
@@ -1116,27 +1051,68 @@ export var InitContainerDefinition = {
|
|
|
1116
1051
|
element: {
|
|
1117
1052
|
type: {
|
|
1118
1053
|
name: "Composite",
|
|
1119
|
-
className: "EnvironmentVariable"
|
|
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",
|
|
1068
|
+
type: {
|
|
1069
|
+
name: "Sequence",
|
|
1070
|
+
element: {
|
|
1071
|
+
type: {
|
|
1072
|
+
name: "Composite",
|
|
1073
|
+
className: "VolumeMount"
|
|
1120
1074
|
}
|
|
1121
1075
|
}
|
|
1122
1076
|
}
|
|
1123
|
-
}
|
|
1124
|
-
|
|
1077
|
+
}
|
|
1078
|
+
}
|
|
1079
|
+
}
|
|
1080
|
+
};
|
|
1081
|
+
export const InitContainerPropertiesDefinitionInstanceView = {
|
|
1082
|
+
type: {
|
|
1083
|
+
name: "Composite",
|
|
1084
|
+
className: "InitContainerPropertiesDefinitionInstanceView",
|
|
1085
|
+
modelProperties: {
|
|
1086
|
+
restartCount: {
|
|
1087
|
+
serializedName: "restartCount",
|
|
1125
1088
|
readOnly: true,
|
|
1126
|
-
|
|
1089
|
+
type: {
|
|
1090
|
+
name: "Number"
|
|
1091
|
+
}
|
|
1092
|
+
},
|
|
1093
|
+
currentState: {
|
|
1094
|
+
serializedName: "currentState",
|
|
1127
1095
|
type: {
|
|
1128
1096
|
name: "Composite",
|
|
1129
|
-
className: "
|
|
1097
|
+
className: "ContainerState"
|
|
1130
1098
|
}
|
|
1131
1099
|
},
|
|
1132
|
-
|
|
1133
|
-
serializedName: "
|
|
1100
|
+
previousState: {
|
|
1101
|
+
serializedName: "previousState",
|
|
1102
|
+
type: {
|
|
1103
|
+
name: "Composite",
|
|
1104
|
+
className: "ContainerState"
|
|
1105
|
+
}
|
|
1106
|
+
},
|
|
1107
|
+
events: {
|
|
1108
|
+
serializedName: "events",
|
|
1109
|
+
readOnly: true,
|
|
1134
1110
|
type: {
|
|
1135
1111
|
name: "Sequence",
|
|
1136
1112
|
element: {
|
|
1137
1113
|
type: {
|
|
1138
1114
|
name: "Composite",
|
|
1139
|
-
className: "
|
|
1115
|
+
className: "Event"
|
|
1140
1116
|
}
|
|
1141
1117
|
}
|
|
1142
1118
|
}
|
|
@@ -1144,29 +1120,28 @@ export var InitContainerDefinition = {
|
|
|
1144
1120
|
}
|
|
1145
1121
|
}
|
|
1146
1122
|
};
|
|
1147
|
-
export
|
|
1148
|
-
serializedName: "Resource",
|
|
1123
|
+
export const Resource = {
|
|
1149
1124
|
type: {
|
|
1150
1125
|
name: "Composite",
|
|
1151
1126
|
className: "Resource",
|
|
1152
1127
|
modelProperties: {
|
|
1153
1128
|
id: {
|
|
1154
|
-
readOnly: true,
|
|
1155
1129
|
serializedName: "id",
|
|
1130
|
+
readOnly: true,
|
|
1156
1131
|
type: {
|
|
1157
1132
|
name: "String"
|
|
1158
1133
|
}
|
|
1159
1134
|
},
|
|
1160
1135
|
name: {
|
|
1161
|
-
readOnly: true,
|
|
1162
1136
|
serializedName: "name",
|
|
1137
|
+
readOnly: true,
|
|
1163
1138
|
type: {
|
|
1164
1139
|
name: "String"
|
|
1165
1140
|
}
|
|
1166
1141
|
},
|
|
1167
1142
|
type: {
|
|
1168
|
-
readOnly: true,
|
|
1169
1143
|
serializedName: "type",
|
|
1144
|
+
readOnly: true,
|
|
1170
1145
|
type: {
|
|
1171
1146
|
name: "String"
|
|
1172
1147
|
}
|
|
@@ -1181,11 +1156,7 @@ export var Resource = {
|
|
|
1181
1156
|
serializedName: "tags",
|
|
1182
1157
|
type: {
|
|
1183
1158
|
name: "Dictionary",
|
|
1184
|
-
value: {
|
|
1185
|
-
type: {
|
|
1186
|
-
name: "String"
|
|
1187
|
-
}
|
|
1188
|
-
}
|
|
1159
|
+
value: { type: { name: "String" } }
|
|
1189
1160
|
}
|
|
1190
1161
|
},
|
|
1191
1162
|
zones: {
|
|
@@ -1202,155 +1173,113 @@ export var Resource = {
|
|
|
1202
1173
|
}
|
|
1203
1174
|
}
|
|
1204
1175
|
};
|
|
1205
|
-
export
|
|
1206
|
-
serializedName: "ContainerGroup",
|
|
1176
|
+
export const CloudError = {
|
|
1207
1177
|
type: {
|
|
1208
1178
|
name: "Composite",
|
|
1209
|
-
className: "
|
|
1210
|
-
modelProperties:
|
|
1211
|
-
|
|
1179
|
+
className: "CloudError",
|
|
1180
|
+
modelProperties: {
|
|
1181
|
+
error: {
|
|
1182
|
+
serializedName: "error",
|
|
1212
1183
|
type: {
|
|
1213
1184
|
name: "Composite",
|
|
1214
|
-
className: "
|
|
1185
|
+
className: "CloudErrorBody"
|
|
1215
1186
|
}
|
|
1216
|
-
}
|
|
1217
|
-
|
|
1218
|
-
|
|
1187
|
+
}
|
|
1188
|
+
}
|
|
1189
|
+
}
|
|
1190
|
+
};
|
|
1191
|
+
export const CloudErrorBody = {
|
|
1192
|
+
type: {
|
|
1193
|
+
name: "Composite",
|
|
1194
|
+
className: "CloudErrorBody",
|
|
1195
|
+
modelProperties: {
|
|
1196
|
+
code: {
|
|
1197
|
+
serializedName: "code",
|
|
1219
1198
|
type: {
|
|
1220
1199
|
name: "String"
|
|
1221
1200
|
}
|
|
1222
|
-
},
|
|
1223
|
-
|
|
1224
|
-
serializedName: "
|
|
1225
|
-
type: {
|
|
1226
|
-
name: "Sequence",
|
|
1227
|
-
element: {
|
|
1228
|
-
type: {
|
|
1229
|
-
name: "Composite",
|
|
1230
|
-
className: "Container"
|
|
1231
|
-
}
|
|
1232
|
-
}
|
|
1233
|
-
}
|
|
1234
|
-
}, imageRegistryCredentials: {
|
|
1235
|
-
serializedName: "properties.imageRegistryCredentials",
|
|
1236
|
-
type: {
|
|
1237
|
-
name: "Sequence",
|
|
1238
|
-
element: {
|
|
1239
|
-
type: {
|
|
1240
|
-
name: "Composite",
|
|
1241
|
-
className: "ImageRegistryCredential"
|
|
1242
|
-
}
|
|
1243
|
-
}
|
|
1244
|
-
}
|
|
1245
|
-
}, restartPolicy: {
|
|
1246
|
-
serializedName: "properties.restartPolicy",
|
|
1201
|
+
},
|
|
1202
|
+
message: {
|
|
1203
|
+
serializedName: "message",
|
|
1247
1204
|
type: {
|
|
1248
1205
|
name: "String"
|
|
1249
1206
|
}
|
|
1250
|
-
},
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
name: "Composite",
|
|
1254
|
-
className: "IpAddress"
|
|
1255
|
-
}
|
|
1256
|
-
}, osType: {
|
|
1257
|
-
required: true,
|
|
1258
|
-
serializedName: "properties.osType",
|
|
1207
|
+
},
|
|
1208
|
+
target: {
|
|
1209
|
+
serializedName: "target",
|
|
1259
1210
|
type: {
|
|
1260
1211
|
name: "String"
|
|
1261
1212
|
}
|
|
1262
|
-
},
|
|
1263
|
-
|
|
1213
|
+
},
|
|
1214
|
+
details: {
|
|
1215
|
+
serializedName: "details",
|
|
1264
1216
|
type: {
|
|
1265
1217
|
name: "Sequence",
|
|
1266
1218
|
element: {
|
|
1267
1219
|
type: {
|
|
1268
1220
|
name: "Composite",
|
|
1269
|
-
className: "
|
|
1221
|
+
className: "CloudErrorBody"
|
|
1270
1222
|
}
|
|
1271
1223
|
}
|
|
1272
1224
|
}
|
|
1273
|
-
}
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
className: "ContainerGroupDiagnostics"
|
|
1285
|
-
}
|
|
1286
|
-
}, subnetIds: {
|
|
1287
|
-
serializedName: "properties.subnetIds",
|
|
1225
|
+
}
|
|
1226
|
+
}
|
|
1227
|
+
}
|
|
1228
|
+
};
|
|
1229
|
+
export const OperationListResult = {
|
|
1230
|
+
type: {
|
|
1231
|
+
name: "Composite",
|
|
1232
|
+
className: "OperationListResult",
|
|
1233
|
+
modelProperties: {
|
|
1234
|
+
value: {
|
|
1235
|
+
serializedName: "value",
|
|
1288
1236
|
type: {
|
|
1289
1237
|
name: "Sequence",
|
|
1290
1238
|
element: {
|
|
1291
1239
|
type: {
|
|
1292
1240
|
name: "Composite",
|
|
1293
|
-
className: "
|
|
1241
|
+
className: "Operation"
|
|
1294
1242
|
}
|
|
1295
1243
|
}
|
|
1296
1244
|
}
|
|
1297
|
-
},
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
name: "Composite",
|
|
1301
|
-
className: "DnsConfiguration"
|
|
1302
|
-
}
|
|
1303
|
-
}, sku: {
|
|
1304
|
-
serializedName: "properties.sku",
|
|
1245
|
+
},
|
|
1246
|
+
nextLink: {
|
|
1247
|
+
serializedName: "nextLink",
|
|
1305
1248
|
type: {
|
|
1306
1249
|
name: "String"
|
|
1307
1250
|
}
|
|
1308
|
-
}
|
|
1309
|
-
|
|
1310
|
-
type: {
|
|
1311
|
-
name: "Composite",
|
|
1312
|
-
className: "EncryptionProperties"
|
|
1313
|
-
}
|
|
1314
|
-
}, initContainers: {
|
|
1315
|
-
serializedName: "properties.initContainers",
|
|
1316
|
-
type: {
|
|
1317
|
-
name: "Sequence",
|
|
1318
|
-
element: {
|
|
1319
|
-
type: {
|
|
1320
|
-
name: "Composite",
|
|
1321
|
-
className: "InitContainerDefinition"
|
|
1322
|
-
}
|
|
1323
|
-
}
|
|
1324
|
-
}
|
|
1325
|
-
} })
|
|
1251
|
+
}
|
|
1252
|
+
}
|
|
1326
1253
|
}
|
|
1327
1254
|
};
|
|
1328
|
-
export
|
|
1329
|
-
serializedName: "Operation_display",
|
|
1255
|
+
export const Operation = {
|
|
1330
1256
|
type: {
|
|
1331
1257
|
name: "Composite",
|
|
1332
|
-
className: "
|
|
1258
|
+
className: "Operation",
|
|
1333
1259
|
modelProperties: {
|
|
1334
|
-
|
|
1335
|
-
serializedName: "
|
|
1260
|
+
name: {
|
|
1261
|
+
serializedName: "name",
|
|
1262
|
+
required: true,
|
|
1336
1263
|
type: {
|
|
1337
1264
|
name: "String"
|
|
1338
1265
|
}
|
|
1339
1266
|
},
|
|
1340
|
-
|
|
1341
|
-
serializedName: "
|
|
1267
|
+
display: {
|
|
1268
|
+
serializedName: "display",
|
|
1342
1269
|
type: {
|
|
1343
|
-
name: "
|
|
1270
|
+
name: "Composite",
|
|
1271
|
+
className: "OperationDisplay"
|
|
1344
1272
|
}
|
|
1345
1273
|
},
|
|
1346
|
-
|
|
1347
|
-
serializedName: "
|
|
1274
|
+
properties: {
|
|
1275
|
+
serializedName: "properties",
|
|
1348
1276
|
type: {
|
|
1349
|
-
name: "
|
|
1277
|
+
name: "Dictionary",
|
|
1278
|
+
value: { type: { name: "any" } }
|
|
1350
1279
|
}
|
|
1351
1280
|
},
|
|
1352
|
-
|
|
1353
|
-
serializedName: "
|
|
1281
|
+
origin: {
|
|
1282
|
+
serializedName: "origin",
|
|
1354
1283
|
type: {
|
|
1355
1284
|
name: "String"
|
|
1356
1285
|
}
|
|
@@ -1358,35 +1287,31 @@ export var OperationDisplay = {
|
|
|
1358
1287
|
}
|
|
1359
1288
|
}
|
|
1360
1289
|
};
|
|
1361
|
-
export
|
|
1362
|
-
serializedName: "Operation",
|
|
1290
|
+
export const OperationDisplay = {
|
|
1363
1291
|
type: {
|
|
1364
1292
|
name: "Composite",
|
|
1365
|
-
className: "
|
|
1293
|
+
className: "OperationDisplay",
|
|
1366
1294
|
modelProperties: {
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
serializedName: "name",
|
|
1295
|
+
provider: {
|
|
1296
|
+
serializedName: "provider",
|
|
1370
1297
|
type: {
|
|
1371
1298
|
name: "String"
|
|
1372
1299
|
}
|
|
1373
1300
|
},
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
serializedName: "display",
|
|
1301
|
+
resource: {
|
|
1302
|
+
serializedName: "resource",
|
|
1377
1303
|
type: {
|
|
1378
|
-
name: "
|
|
1379
|
-
className: "OperationDisplay"
|
|
1304
|
+
name: "String"
|
|
1380
1305
|
}
|
|
1381
1306
|
},
|
|
1382
|
-
|
|
1383
|
-
serializedName: "
|
|
1307
|
+
operation: {
|
|
1308
|
+
serializedName: "operation",
|
|
1384
1309
|
type: {
|
|
1385
|
-
name: "
|
|
1310
|
+
name: "String"
|
|
1386
1311
|
}
|
|
1387
1312
|
},
|
|
1388
|
-
|
|
1389
|
-
serializedName: "
|
|
1313
|
+
description: {
|
|
1314
|
+
serializedName: "description",
|
|
1390
1315
|
type: {
|
|
1391
1316
|
name: "String"
|
|
1392
1317
|
}
|
|
@@ -1394,69 +1319,86 @@ export var Operation = {
|
|
|
1394
1319
|
}
|
|
1395
1320
|
}
|
|
1396
1321
|
};
|
|
1397
|
-
export
|
|
1398
|
-
serializedName: "Usage_name",
|
|
1322
|
+
export const UsageListResult = {
|
|
1399
1323
|
type: {
|
|
1400
1324
|
name: "Composite",
|
|
1401
|
-
className: "
|
|
1325
|
+
className: "UsageListResult",
|
|
1402
1326
|
modelProperties: {
|
|
1403
1327
|
value: {
|
|
1404
|
-
readOnly: true,
|
|
1405
1328
|
serializedName: "value",
|
|
1406
|
-
type: {
|
|
1407
|
-
name: "String"
|
|
1408
|
-
}
|
|
1409
|
-
},
|
|
1410
|
-
localizedValue: {
|
|
1411
1329
|
readOnly: true,
|
|
1412
|
-
serializedName: "localizedValue",
|
|
1413
1330
|
type: {
|
|
1414
|
-
name: "
|
|
1331
|
+
name: "Sequence",
|
|
1332
|
+
element: {
|
|
1333
|
+
type: {
|
|
1334
|
+
name: "Composite",
|
|
1335
|
+
className: "Usage"
|
|
1336
|
+
}
|
|
1337
|
+
}
|
|
1415
1338
|
}
|
|
1416
1339
|
}
|
|
1417
1340
|
}
|
|
1418
1341
|
}
|
|
1419
1342
|
};
|
|
1420
|
-
export
|
|
1421
|
-
serializedName: "Usage",
|
|
1343
|
+
export const Usage = {
|
|
1422
1344
|
type: {
|
|
1423
1345
|
name: "Composite",
|
|
1424
1346
|
className: "Usage",
|
|
1425
1347
|
modelProperties: {
|
|
1426
1348
|
unit: {
|
|
1427
|
-
readOnly: true,
|
|
1428
1349
|
serializedName: "unit",
|
|
1350
|
+
readOnly: true,
|
|
1429
1351
|
type: {
|
|
1430
1352
|
name: "String"
|
|
1431
1353
|
}
|
|
1432
1354
|
},
|
|
1433
1355
|
currentValue: {
|
|
1434
|
-
readOnly: true,
|
|
1435
1356
|
serializedName: "currentValue",
|
|
1357
|
+
readOnly: true,
|
|
1436
1358
|
type: {
|
|
1437
1359
|
name: "Number"
|
|
1438
1360
|
}
|
|
1439
1361
|
},
|
|
1440
1362
|
limit: {
|
|
1441
|
-
readOnly: true,
|
|
1442
1363
|
serializedName: "limit",
|
|
1364
|
+
readOnly: true,
|
|
1443
1365
|
type: {
|
|
1444
1366
|
name: "Number"
|
|
1445
1367
|
}
|
|
1446
1368
|
},
|
|
1447
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",
|
|
1448
1393
|
readOnly: true,
|
|
1449
|
-
serializedName: "name",
|
|
1450
1394
|
type: {
|
|
1451
|
-
name: "
|
|
1452
|
-
className: "UsageName"
|
|
1395
|
+
name: "String"
|
|
1453
1396
|
}
|
|
1454
1397
|
}
|
|
1455
1398
|
}
|
|
1456
1399
|
}
|
|
1457
1400
|
};
|
|
1458
|
-
export
|
|
1459
|
-
serializedName: "Logs",
|
|
1401
|
+
export const Logs = {
|
|
1460
1402
|
type: {
|
|
1461
1403
|
name: "Composite",
|
|
1462
1404
|
className: "Logs",
|
|
@@ -1470,8 +1412,28 @@ export var Logs = {
|
|
|
1470
1412
|
}
|
|
1471
1413
|
}
|
|
1472
1414
|
};
|
|
1473
|
-
export
|
|
1474
|
-
|
|
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 = {
|
|
1475
1437
|
type: {
|
|
1476
1438
|
name: "Composite",
|
|
1477
1439
|
className: "ContainerExecRequestTerminalSize",
|
|
@@ -1491,33 +1453,30 @@ export var ContainerExecRequestTerminalSize = {
|
|
|
1491
1453
|
}
|
|
1492
1454
|
}
|
|
1493
1455
|
};
|
|
1494
|
-
export
|
|
1495
|
-
serializedName: "ContainerExecRequest",
|
|
1456
|
+
export const ContainerExecResponse = {
|
|
1496
1457
|
type: {
|
|
1497
1458
|
name: "Composite",
|
|
1498
|
-
className: "
|
|
1459
|
+
className: "ContainerExecResponse",
|
|
1499
1460
|
modelProperties: {
|
|
1500
|
-
|
|
1501
|
-
serializedName: "
|
|
1461
|
+
webSocketUri: {
|
|
1462
|
+
serializedName: "webSocketUri",
|
|
1502
1463
|
type: {
|
|
1503
1464
|
name: "String"
|
|
1504
1465
|
}
|
|
1505
1466
|
},
|
|
1506
|
-
|
|
1507
|
-
serializedName: "
|
|
1467
|
+
password: {
|
|
1468
|
+
serializedName: "password",
|
|
1508
1469
|
type: {
|
|
1509
|
-
name: "
|
|
1510
|
-
className: "ContainerExecRequestTerminalSize"
|
|
1470
|
+
name: "String"
|
|
1511
1471
|
}
|
|
1512
1472
|
}
|
|
1513
1473
|
}
|
|
1514
1474
|
}
|
|
1515
1475
|
};
|
|
1516
|
-
export
|
|
1517
|
-
serializedName: "ContainerExecResponse",
|
|
1476
|
+
export const ContainerAttachResponse = {
|
|
1518
1477
|
type: {
|
|
1519
1478
|
name: "Composite",
|
|
1520
|
-
className: "
|
|
1479
|
+
className: "ContainerAttachResponse",
|
|
1521
1480
|
modelProperties: {
|
|
1522
1481
|
webSocketUri: {
|
|
1523
1482
|
serializedName: "webSocketUri",
|
|
@@ -1534,20 +1493,25 @@ export var ContainerExecResponse = {
|
|
|
1534
1493
|
}
|
|
1535
1494
|
}
|
|
1536
1495
|
};
|
|
1537
|
-
export
|
|
1538
|
-
serializedName: "ContainerAttachResponse",
|
|
1496
|
+
export const CachedImagesListResult = {
|
|
1539
1497
|
type: {
|
|
1540
1498
|
name: "Composite",
|
|
1541
|
-
className: "
|
|
1499
|
+
className: "CachedImagesListResult",
|
|
1542
1500
|
modelProperties: {
|
|
1543
|
-
|
|
1544
|
-
serializedName: "
|
|
1501
|
+
value: {
|
|
1502
|
+
serializedName: "value",
|
|
1545
1503
|
type: {
|
|
1546
|
-
name: "
|
|
1504
|
+
name: "Sequence",
|
|
1505
|
+
element: {
|
|
1506
|
+
type: {
|
|
1507
|
+
name: "Composite",
|
|
1508
|
+
className: "CachedImages"
|
|
1509
|
+
}
|
|
1510
|
+
}
|
|
1547
1511
|
}
|
|
1548
1512
|
},
|
|
1549
|
-
|
|
1550
|
-
serializedName: "
|
|
1513
|
+
nextLink: {
|
|
1514
|
+
serializedName: "nextLink",
|
|
1551
1515
|
type: {
|
|
1552
1516
|
name: "String"
|
|
1553
1517
|
}
|
|
@@ -1555,22 +1519,21 @@ export var ContainerAttachResponse = {
|
|
|
1555
1519
|
}
|
|
1556
1520
|
}
|
|
1557
1521
|
};
|
|
1558
|
-
export
|
|
1559
|
-
serializedName: "cachedImages",
|
|
1522
|
+
export const CachedImages = {
|
|
1560
1523
|
type: {
|
|
1561
1524
|
name: "Composite",
|
|
1562
1525
|
className: "CachedImages",
|
|
1563
1526
|
modelProperties: {
|
|
1564
1527
|
osType: {
|
|
1565
|
-
required: true,
|
|
1566
1528
|
serializedName: "osType",
|
|
1529
|
+
required: true,
|
|
1567
1530
|
type: {
|
|
1568
1531
|
name: "String"
|
|
1569
1532
|
}
|
|
1570
1533
|
},
|
|
1571
1534
|
image: {
|
|
1572
|
-
required: true,
|
|
1573
1535
|
serializedName: "image",
|
|
1536
|
+
required: true,
|
|
1574
1537
|
type: {
|
|
1575
1538
|
name: "String"
|
|
1576
1539
|
}
|
|
@@ -1578,79 +1541,73 @@ export var CachedImages = {
|
|
|
1578
1541
|
}
|
|
1579
1542
|
}
|
|
1580
1543
|
};
|
|
1581
|
-
export
|
|
1582
|
-
serializedName: "Capabilities_capabilities",
|
|
1544
|
+
export const CapabilitiesListResult = {
|
|
1583
1545
|
type: {
|
|
1584
1546
|
name: "Composite",
|
|
1585
|
-
className: "
|
|
1547
|
+
className: "CapabilitiesListResult",
|
|
1586
1548
|
modelProperties: {
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
serializedName: "maxMemoryInGB",
|
|
1590
|
-
type: {
|
|
1591
|
-
name: "Number"
|
|
1592
|
-
}
|
|
1593
|
-
},
|
|
1594
|
-
maxCpu: {
|
|
1595
|
-
readOnly: true,
|
|
1596
|
-
serializedName: "maxCpu",
|
|
1549
|
+
value: {
|
|
1550
|
+
serializedName: "value",
|
|
1597
1551
|
type: {
|
|
1598
|
-
name: "
|
|
1552
|
+
name: "Sequence",
|
|
1553
|
+
element: {
|
|
1554
|
+
type: {
|
|
1555
|
+
name: "Composite",
|
|
1556
|
+
className: "Capabilities"
|
|
1557
|
+
}
|
|
1558
|
+
}
|
|
1599
1559
|
}
|
|
1600
1560
|
},
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
serializedName: "maxGpuCount",
|
|
1561
|
+
nextLink: {
|
|
1562
|
+
serializedName: "nextLink",
|
|
1604
1563
|
type: {
|
|
1605
|
-
name: "
|
|
1564
|
+
name: "String"
|
|
1606
1565
|
}
|
|
1607
1566
|
}
|
|
1608
1567
|
}
|
|
1609
1568
|
}
|
|
1610
1569
|
};
|
|
1611
|
-
export
|
|
1612
|
-
serializedName: "Capabilities",
|
|
1570
|
+
export const Capabilities = {
|
|
1613
1571
|
type: {
|
|
1614
1572
|
name: "Composite",
|
|
1615
1573
|
className: "Capabilities",
|
|
1616
1574
|
modelProperties: {
|
|
1617
1575
|
resourceType: {
|
|
1618
|
-
readOnly: true,
|
|
1619
1576
|
serializedName: "resourceType",
|
|
1577
|
+
readOnly: true,
|
|
1620
1578
|
type: {
|
|
1621
1579
|
name: "String"
|
|
1622
1580
|
}
|
|
1623
1581
|
},
|
|
1624
1582
|
osType: {
|
|
1625
|
-
readOnly: true,
|
|
1626
1583
|
serializedName: "osType",
|
|
1584
|
+
readOnly: true,
|
|
1627
1585
|
type: {
|
|
1628
1586
|
name: "String"
|
|
1629
1587
|
}
|
|
1630
1588
|
},
|
|
1631
1589
|
location: {
|
|
1632
|
-
readOnly: true,
|
|
1633
1590
|
serializedName: "location",
|
|
1591
|
+
readOnly: true,
|
|
1634
1592
|
type: {
|
|
1635
1593
|
name: "String"
|
|
1636
1594
|
}
|
|
1637
1595
|
},
|
|
1638
1596
|
ipAddressType: {
|
|
1639
|
-
readOnly: true,
|
|
1640
1597
|
serializedName: "ipAddressType",
|
|
1598
|
+
readOnly: true,
|
|
1641
1599
|
type: {
|
|
1642
1600
|
name: "String"
|
|
1643
1601
|
}
|
|
1644
1602
|
},
|
|
1645
1603
|
gpu: {
|
|
1646
|
-
readOnly: true,
|
|
1647
1604
|
serializedName: "gpu",
|
|
1605
|
+
readOnly: true,
|
|
1648
1606
|
type: {
|
|
1649
1607
|
name: "String"
|
|
1650
1608
|
}
|
|
1651
1609
|
},
|
|
1652
1610
|
capabilities: {
|
|
1653
|
-
readOnly: true,
|
|
1654
1611
|
serializedName: "capabilities",
|
|
1655
1612
|
type: {
|
|
1656
1613
|
name: "Composite",
|
|
@@ -1660,134 +1617,154 @@ export var Capabilities = {
|
|
|
1660
1617
|
}
|
|
1661
1618
|
}
|
|
1662
1619
|
};
|
|
1663
|
-
export
|
|
1664
|
-
serializedName: "ContainerGroupListResult",
|
|
1620
|
+
export const CapabilitiesCapabilities = {
|
|
1665
1621
|
type: {
|
|
1666
1622
|
name: "Composite",
|
|
1667
|
-
className: "
|
|
1623
|
+
className: "CapabilitiesCapabilities",
|
|
1668
1624
|
modelProperties: {
|
|
1669
|
-
|
|
1670
|
-
serializedName: "",
|
|
1625
|
+
maxMemoryInGB: {
|
|
1626
|
+
serializedName: "maxMemoryInGB",
|
|
1627
|
+
readOnly: true,
|
|
1671
1628
|
type: {
|
|
1672
|
-
name: "
|
|
1673
|
-
element: {
|
|
1674
|
-
type: {
|
|
1675
|
-
name: "Composite",
|
|
1676
|
-
className: "ContainerGroup"
|
|
1677
|
-
}
|
|
1678
|
-
}
|
|
1629
|
+
name: "Number"
|
|
1679
1630
|
}
|
|
1680
1631
|
},
|
|
1681
|
-
|
|
1682
|
-
serializedName: "
|
|
1632
|
+
maxCpu: {
|
|
1633
|
+
serializedName: "maxCpu",
|
|
1634
|
+
readOnly: true,
|
|
1683
1635
|
type: {
|
|
1684
|
-
name: "
|
|
1636
|
+
name: "Number"
|
|
1637
|
+
}
|
|
1638
|
+
},
|
|
1639
|
+
maxGpuCount: {
|
|
1640
|
+
serializedName: "maxGpuCount",
|
|
1641
|
+
readOnly: true,
|
|
1642
|
+
type: {
|
|
1643
|
+
name: "Number"
|
|
1685
1644
|
}
|
|
1686
1645
|
}
|
|
1687
1646
|
}
|
|
1688
1647
|
}
|
|
1689
1648
|
};
|
|
1690
|
-
export
|
|
1691
|
-
serializedName: "OperationListResult",
|
|
1649
|
+
export const ContainerGroup = {
|
|
1692
1650
|
type: {
|
|
1693
1651
|
name: "Composite",
|
|
1694
|
-
className: "
|
|
1695
|
-
modelProperties: {
|
|
1696
|
-
|
|
1697
|
-
|
|
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,
|
|
1698
1668
|
type: {
|
|
1699
1669
|
name: "Sequence",
|
|
1700
1670
|
element: {
|
|
1701
1671
|
type: {
|
|
1702
1672
|
name: "Composite",
|
|
1703
|
-
className: "
|
|
1673
|
+
className: "Container"
|
|
1704
1674
|
}
|
|
1705
1675
|
}
|
|
1706
1676
|
}
|
|
1707
|
-
},
|
|
1708
|
-
|
|
1709
|
-
|
|
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",
|
|
1710
1690
|
type: {
|
|
1711
1691
|
name: "String"
|
|
1712
1692
|
}
|
|
1713
|
-
}
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
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",
|
|
1726
1707
|
type: {
|
|
1727
1708
|
name: "Sequence",
|
|
1728
1709
|
element: {
|
|
1729
1710
|
type: {
|
|
1730
1711
|
name: "Composite",
|
|
1731
|
-
className: "
|
|
1712
|
+
className: "Volume"
|
|
1732
1713
|
}
|
|
1733
1714
|
}
|
|
1734
1715
|
}
|
|
1735
|
-
}
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
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",
|
|
1747
1730
|
type: {
|
|
1748
1731
|
name: "Sequence",
|
|
1749
1732
|
element: {
|
|
1750
1733
|
type: {
|
|
1751
1734
|
name: "Composite",
|
|
1752
|
-
className: "
|
|
1735
|
+
className: "ContainerGroupSubnetId"
|
|
1753
1736
|
}
|
|
1754
1737
|
}
|
|
1755
1738
|
}
|
|
1756
|
-
},
|
|
1757
|
-
|
|
1758
|
-
|
|
1739
|
+
}, dnsConfig: {
|
|
1740
|
+
serializedName: "properties.dnsConfig",
|
|
1741
|
+
type: {
|
|
1742
|
+
name: "Composite",
|
|
1743
|
+
className: "DnsConfiguration"
|
|
1744
|
+
}
|
|
1745
|
+
}, sku: {
|
|
1746
|
+
serializedName: "properties.sku",
|
|
1759
1747
|
type: {
|
|
1760
1748
|
name: "String"
|
|
1761
1749
|
}
|
|
1762
|
-
}
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
className: "CapabilitiesListResult",
|
|
1771
|
-
modelProperties: {
|
|
1772
|
-
value: {
|
|
1773
|
-
serializedName: "",
|
|
1750
|
+
}, encryptionProperties: {
|
|
1751
|
+
serializedName: "properties.encryptionProperties",
|
|
1752
|
+
type: {
|
|
1753
|
+
name: "Composite",
|
|
1754
|
+
className: "EncryptionProperties"
|
|
1755
|
+
}
|
|
1756
|
+
}, initContainers: {
|
|
1757
|
+
serializedName: "properties.initContainers",
|
|
1774
1758
|
type: {
|
|
1775
1759
|
name: "Sequence",
|
|
1776
1760
|
element: {
|
|
1777
1761
|
type: {
|
|
1778
1762
|
name: "Composite",
|
|
1779
|
-
className: "
|
|
1763
|
+
className: "InitContainerDefinition"
|
|
1780
1764
|
}
|
|
1781
1765
|
}
|
|
1782
1766
|
}
|
|
1783
|
-
}
|
|
1784
|
-
nextLink: {
|
|
1785
|
-
serializedName: "nextLink",
|
|
1786
|
-
type: {
|
|
1787
|
-
name: "String"
|
|
1788
|
-
}
|
|
1789
|
-
}
|
|
1790
|
-
}
|
|
1767
|
+
} })
|
|
1791
1768
|
}
|
|
1792
1769
|
};
|
|
1793
1770
|
//# sourceMappingURL=mappers.js.map
|