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