@azure/arm-containerinstance 6.3.0 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/{LICENSE.txt → LICENSE} +2 -2
- package/README.md +70 -78
- package/dist/index.js +3335 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/containerInstanceManagementClient.d.ts +22 -0
- package/dist-esm/src/containerInstanceManagementClient.d.ts.map +1 -0
- package/dist-esm/src/containerInstanceManagementClient.js +55 -0
- package/dist-esm/src/containerInstanceManagementClient.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +964 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +70 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +54 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/mappers.js +799 -788
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +17 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/parameters.js +67 -37
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/containerGroups.d.ts +159 -0
- package/dist-esm/src/operations/containerGroups.d.ts.map +1 -0
- package/dist-esm/src/operations/containerGroups.js +678 -0
- package/dist-esm/src/operations/containerGroups.js.map +1 -0
- package/dist-esm/src/operations/containers.d.ts +40 -0
- package/dist-esm/src/operations/containers.d.ts.map +1 -0
- package/dist-esm/src/operations/containers.js +134 -0
- package/dist-esm/src/operations/containers.js.map +1 -0
- package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/{esm → dist-esm/src}/operations/index.js +1 -2
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/location.d.ts +70 -0
- package/dist-esm/src/operations/location.d.ts.map +1 -0
- package/dist-esm/src/operations/location.js +310 -0
- package/dist-esm/src/operations/location.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +32 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +120 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/containerGroups.d.ts +119 -0
- package/dist-esm/src/operationsInterfaces/containerGroups.d.ts.map +1 -0
- package/{src/models/operationsMappers.ts → dist-esm/src/operationsInterfaces/containerGroups.js} +2 -7
- package/dist-esm/src/operationsInterfaces/containerGroups.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/containers.d.ts +32 -0
- package/dist-esm/src/operationsInterfaces/containers.d.ts.map +1 -0
- package/{esm/models/operationsMappers.js → dist-esm/src/operationsInterfaces/containers.js} +2 -2
- package/dist-esm/src/operationsInterfaces/containers.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +12 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/location.d.ts +24 -0
- package/dist-esm/src/operationsInterfaces/location.d.ts.map +1 -0
- package/{esm/models/index.js → dist-esm/src/operationsInterfaces/location.js} +2 -1
- package/dist-esm/src/operationsInterfaces/location.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/{src/models/containersMappers.ts → dist-esm/src/operationsInterfaces/operations.js} +2 -9
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/test/containerinstance_examples.d.ts +4 -0
- package/dist-esm/test/containerinstance_examples.d.ts.map +1 -0
- package/dist-esm/test/containerinstance_examples.js +156 -0
- package/dist-esm/test/containerinstance_examples.js.map +1 -0
- package/package.json +65 -32
- package/review/arm-containerinstance.api.md +752 -0
- package/rollup.config.js +181 -30
- package/src/containerInstanceManagementClient.ts +78 -40
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +734 -1215
- package/src/models/mappers.ts +808 -793
- package/src/models/parameters.ts +90 -38
- package/src/operations/containerGroups.ts +660 -424
- package/src/operations/containers.ts +89 -143
- package/src/operations/index.ts +1 -2
- package/src/operations/location.ts +262 -179
- package/src/operations/operations.ts +85 -73
- package/src/operationsInterfaces/containerGroups.ts +212 -0
- package/src/operationsInterfaces/containers.ts +64 -0
- package/src/operationsInterfaces/index.ts +12 -0
- package/src/operationsInterfaces/location.ts +49 -0
- package/src/operationsInterfaces/operations.ts +22 -0
- package/tsconfig.json +3 -3
- package/types/arm-containerinstance.d.ts +1282 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-containerinstance.js +0 -3019
- package/dist/arm-containerinstance.js.map +0 -1
- package/dist/arm-containerinstance.min.js +0 -1
- package/dist/arm-containerinstance.min.js.map +0 -1
- package/esm/containerInstanceManagementClient.d.ts +0 -28
- package/esm/containerInstanceManagementClient.d.ts.map +0 -1
- package/esm/containerInstanceManagementClient.js +0 -41
- package/esm/containerInstanceManagementClient.js.map +0 -1
- package/esm/containerInstanceManagementClientContext.d.ts +0 -23
- package/esm/containerInstanceManagementClientContext.d.ts.map +0 -1
- package/esm/containerInstanceManagementClientContext.js +0 -61
- package/esm/containerInstanceManagementClientContext.js.map +0 -1
- package/esm/models/containerGroupsMappers.d.ts +0 -2
- package/esm/models/containerGroupsMappers.d.ts.map +0 -1
- package/esm/models/containerGroupsMappers.js +0 -9
- package/esm/models/containerGroupsMappers.js.map +0 -1
- package/esm/models/containersMappers.d.ts +0 -2
- package/esm/models/containersMappers.d.ts.map +0 -1
- package/esm/models/containersMappers.js +0 -9
- package/esm/models/containersMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -1469
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js.map +0 -1
- package/esm/models/locationMappers.d.ts +0 -2
- package/esm/models/locationMappers.d.ts.map +0 -1
- package/esm/models/locationMappers.js +0 -9
- package/esm/models/locationMappers.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -54
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -12
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/containerGroups.d.ts +0 -247
- package/esm/operations/containerGroups.d.ts.map +0 -1
- package/esm/operations/containerGroups.js +0 -455
- package/esm/operations/containerGroups.js.map +0 -1
- package/esm/operations/containers.d.ts +0 -94
- package/esm/operations/containers.d.ts.map +0 -1
- package/esm/operations/containers.js +0 -133
- package/esm/operations/containers.js.map +0 -1
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/location.d.ts +0 -107
- package/esm/operations/location.d.ts.map +0 -1
- package/esm/operations/location.js +0 -171
- package/esm/operations/location.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -46
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -79
- package/esm/operations/operations.js.map +0 -1
- package/src/containerInstanceManagementClientContext.ts +0 -68
- package/src/models/containerGroupsMappers.ts +0 -46
- package/src/models/locationMappers.ts +0 -19
package/esm/models/index.d.ts
DELETED
|
@@ -1,1469 +0,0 @@
|
|
|
1
|
-
import { BaseResource, CloudError, AzureServiceClientOptions } from "@azure/ms-rest-azure-js";
|
|
2
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
3
|
-
export { BaseResource, CloudError };
|
|
4
|
-
/**
|
|
5
|
-
* The port exposed on the container instance.
|
|
6
|
-
*/
|
|
7
|
-
export interface ContainerPort {
|
|
8
|
-
/**
|
|
9
|
-
* The protocol associated with the port. Possible values include: 'TCP', 'UDP'
|
|
10
|
-
*/
|
|
11
|
-
protocol?: ContainerNetworkProtocol;
|
|
12
|
-
/**
|
|
13
|
-
* The port number exposed within the container group.
|
|
14
|
-
*/
|
|
15
|
-
port: number;
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* The environment variable to set within the container instance.
|
|
19
|
-
*/
|
|
20
|
-
export interface EnvironmentVariable {
|
|
21
|
-
/**
|
|
22
|
-
* The name of the environment variable.
|
|
23
|
-
*/
|
|
24
|
-
name: string;
|
|
25
|
-
/**
|
|
26
|
-
* The value of the environment variable.
|
|
27
|
-
*/
|
|
28
|
-
value?: string;
|
|
29
|
-
/**
|
|
30
|
-
* The value of the secure environment variable.
|
|
31
|
-
*/
|
|
32
|
-
secureValue?: string;
|
|
33
|
-
}
|
|
34
|
-
/**
|
|
35
|
-
* The container instance state.
|
|
36
|
-
*/
|
|
37
|
-
export interface ContainerState {
|
|
38
|
-
/**
|
|
39
|
-
* The state of the container instance.
|
|
40
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
41
|
-
*/
|
|
42
|
-
readonly state?: string;
|
|
43
|
-
/**
|
|
44
|
-
* The date-time when the container instance state started.
|
|
45
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
46
|
-
*/
|
|
47
|
-
readonly startTime?: Date;
|
|
48
|
-
/**
|
|
49
|
-
* The container instance exit codes correspond to those from the `docker run` command.
|
|
50
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
51
|
-
*/
|
|
52
|
-
readonly exitCode?: number;
|
|
53
|
-
/**
|
|
54
|
-
* The date-time when the container instance state finished.
|
|
55
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
56
|
-
*/
|
|
57
|
-
readonly finishTime?: Date;
|
|
58
|
-
/**
|
|
59
|
-
* The human-readable status of the container instance state.
|
|
60
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
61
|
-
*/
|
|
62
|
-
readonly detailStatus?: string;
|
|
63
|
-
}
|
|
64
|
-
/**
|
|
65
|
-
* A container group or container instance event.
|
|
66
|
-
*/
|
|
67
|
-
export interface Event {
|
|
68
|
-
/**
|
|
69
|
-
* The count of the event.
|
|
70
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
71
|
-
*/
|
|
72
|
-
readonly count?: number;
|
|
73
|
-
/**
|
|
74
|
-
* The date-time of the earliest logged event.
|
|
75
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
76
|
-
*/
|
|
77
|
-
readonly firstTimestamp?: Date;
|
|
78
|
-
/**
|
|
79
|
-
* The date-time of the latest logged event.
|
|
80
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
81
|
-
*/
|
|
82
|
-
readonly lastTimestamp?: Date;
|
|
83
|
-
/**
|
|
84
|
-
* The event name.
|
|
85
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
86
|
-
*/
|
|
87
|
-
readonly name?: string;
|
|
88
|
-
/**
|
|
89
|
-
* The event message.
|
|
90
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
91
|
-
*/
|
|
92
|
-
readonly message?: string;
|
|
93
|
-
/**
|
|
94
|
-
* The event type.
|
|
95
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
96
|
-
*/
|
|
97
|
-
readonly type?: string;
|
|
98
|
-
}
|
|
99
|
-
/**
|
|
100
|
-
* The instance view of the container instance. Only valid in response.
|
|
101
|
-
*/
|
|
102
|
-
export interface ContainerPropertiesInstanceView {
|
|
103
|
-
/**
|
|
104
|
-
* The number of times that the container instance has been restarted.
|
|
105
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
106
|
-
*/
|
|
107
|
-
readonly restartCount?: number;
|
|
108
|
-
/**
|
|
109
|
-
* Current container instance state.
|
|
110
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
111
|
-
*/
|
|
112
|
-
readonly currentState?: ContainerState;
|
|
113
|
-
/**
|
|
114
|
-
* Previous container instance state.
|
|
115
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
116
|
-
*/
|
|
117
|
-
readonly previousState?: ContainerState;
|
|
118
|
-
/**
|
|
119
|
-
* The events of the container instance.
|
|
120
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
121
|
-
*/
|
|
122
|
-
readonly events?: Event[];
|
|
123
|
-
}
|
|
124
|
-
/**
|
|
125
|
-
* The GPU resource.
|
|
126
|
-
*/
|
|
127
|
-
export interface GpuResource {
|
|
128
|
-
/**
|
|
129
|
-
* The count of the GPU resource.
|
|
130
|
-
*/
|
|
131
|
-
count: number;
|
|
132
|
-
/**
|
|
133
|
-
* The SKU of the GPU resource. Possible values include: 'K80', 'P100', 'V100'
|
|
134
|
-
*/
|
|
135
|
-
sku: GpuSku;
|
|
136
|
-
}
|
|
137
|
-
/**
|
|
138
|
-
* The resource requests.
|
|
139
|
-
*/
|
|
140
|
-
export interface ResourceRequests {
|
|
141
|
-
/**
|
|
142
|
-
* The memory request in GB of this container instance.
|
|
143
|
-
*/
|
|
144
|
-
memoryInGB: number;
|
|
145
|
-
/**
|
|
146
|
-
* The CPU request of this container instance.
|
|
147
|
-
*/
|
|
148
|
-
cpu: number;
|
|
149
|
-
/**
|
|
150
|
-
* The GPU request of this container instance.
|
|
151
|
-
*/
|
|
152
|
-
gpu?: GpuResource;
|
|
153
|
-
}
|
|
154
|
-
/**
|
|
155
|
-
* The resource limits.
|
|
156
|
-
*/
|
|
157
|
-
export interface ResourceLimits {
|
|
158
|
-
/**
|
|
159
|
-
* The memory limit in GB of this container instance.
|
|
160
|
-
*/
|
|
161
|
-
memoryInGB?: number;
|
|
162
|
-
/**
|
|
163
|
-
* The CPU limit of this container instance.
|
|
164
|
-
*/
|
|
165
|
-
cpu?: number;
|
|
166
|
-
/**
|
|
167
|
-
* The GPU limit of this container instance.
|
|
168
|
-
*/
|
|
169
|
-
gpu?: GpuResource;
|
|
170
|
-
}
|
|
171
|
-
/**
|
|
172
|
-
* The resource requirements.
|
|
173
|
-
*/
|
|
174
|
-
export interface ResourceRequirements {
|
|
175
|
-
/**
|
|
176
|
-
* The resource requests of this container instance.
|
|
177
|
-
*/
|
|
178
|
-
requests: ResourceRequests;
|
|
179
|
-
/**
|
|
180
|
-
* The resource limits of this container instance.
|
|
181
|
-
*/
|
|
182
|
-
limits?: ResourceLimits;
|
|
183
|
-
}
|
|
184
|
-
/**
|
|
185
|
-
* The properties of the volume mount.
|
|
186
|
-
*/
|
|
187
|
-
export interface VolumeMount {
|
|
188
|
-
/**
|
|
189
|
-
* The name of the volume mount.
|
|
190
|
-
*/
|
|
191
|
-
name: string;
|
|
192
|
-
/**
|
|
193
|
-
* The path within the container where the volume should be mounted. Must not contain colon (:).
|
|
194
|
-
*/
|
|
195
|
-
mountPath: string;
|
|
196
|
-
/**
|
|
197
|
-
* The flag indicating whether the volume mount is read-only.
|
|
198
|
-
*/
|
|
199
|
-
readOnly?: boolean;
|
|
200
|
-
}
|
|
201
|
-
/**
|
|
202
|
-
* The container execution command, for liveness or readiness probe
|
|
203
|
-
*/
|
|
204
|
-
export interface ContainerExec {
|
|
205
|
-
/**
|
|
206
|
-
* The commands to execute within the container.
|
|
207
|
-
*/
|
|
208
|
-
command?: string[];
|
|
209
|
-
}
|
|
210
|
-
/**
|
|
211
|
-
* The HTTP headers.
|
|
212
|
-
*/
|
|
213
|
-
export interface HttpHeaders {
|
|
214
|
-
/**
|
|
215
|
-
* The header name.
|
|
216
|
-
*/
|
|
217
|
-
name?: string;
|
|
218
|
-
/**
|
|
219
|
-
* The header value.
|
|
220
|
-
*/
|
|
221
|
-
value?: string;
|
|
222
|
-
}
|
|
223
|
-
/**
|
|
224
|
-
* The container Http Get settings, for liveness or readiness probe
|
|
225
|
-
*/
|
|
226
|
-
export interface ContainerHttpGet {
|
|
227
|
-
/**
|
|
228
|
-
* The path to probe.
|
|
229
|
-
*/
|
|
230
|
-
path?: string;
|
|
231
|
-
/**
|
|
232
|
-
* The port number to probe.
|
|
233
|
-
*/
|
|
234
|
-
port: number;
|
|
235
|
-
/**
|
|
236
|
-
* The scheme. Possible values include: 'http', 'https'
|
|
237
|
-
*/
|
|
238
|
-
scheme?: Scheme;
|
|
239
|
-
/**
|
|
240
|
-
* The HTTP headers.
|
|
241
|
-
*/
|
|
242
|
-
httpHeaders?: HttpHeaders;
|
|
243
|
-
}
|
|
244
|
-
/**
|
|
245
|
-
* The container probe, for liveness or readiness
|
|
246
|
-
*/
|
|
247
|
-
export interface ContainerProbe {
|
|
248
|
-
/**
|
|
249
|
-
* The execution command to probe
|
|
250
|
-
*/
|
|
251
|
-
exec?: ContainerExec;
|
|
252
|
-
/**
|
|
253
|
-
* The Http Get settings to probe
|
|
254
|
-
*/
|
|
255
|
-
httpGet?: ContainerHttpGet;
|
|
256
|
-
/**
|
|
257
|
-
* The initial delay seconds.
|
|
258
|
-
*/
|
|
259
|
-
initialDelaySeconds?: number;
|
|
260
|
-
/**
|
|
261
|
-
* The period seconds.
|
|
262
|
-
*/
|
|
263
|
-
periodSeconds?: number;
|
|
264
|
-
/**
|
|
265
|
-
* The failure threshold.
|
|
266
|
-
*/
|
|
267
|
-
failureThreshold?: number;
|
|
268
|
-
/**
|
|
269
|
-
* The success threshold.
|
|
270
|
-
*/
|
|
271
|
-
successThreshold?: number;
|
|
272
|
-
/**
|
|
273
|
-
* The timeout seconds.
|
|
274
|
-
*/
|
|
275
|
-
timeoutSeconds?: number;
|
|
276
|
-
}
|
|
277
|
-
/**
|
|
278
|
-
* A container instance.
|
|
279
|
-
*/
|
|
280
|
-
export interface Container {
|
|
281
|
-
/**
|
|
282
|
-
* The user-provided name of the container instance.
|
|
283
|
-
*/
|
|
284
|
-
name: string;
|
|
285
|
-
/**
|
|
286
|
-
* The name of the image used to create the container instance.
|
|
287
|
-
*/
|
|
288
|
-
image: string;
|
|
289
|
-
/**
|
|
290
|
-
* The commands to execute within the container instance in exec form.
|
|
291
|
-
*/
|
|
292
|
-
command?: string[];
|
|
293
|
-
/**
|
|
294
|
-
* The exposed ports on the container instance.
|
|
295
|
-
*/
|
|
296
|
-
ports?: ContainerPort[];
|
|
297
|
-
/**
|
|
298
|
-
* The environment variables to set in the container instance.
|
|
299
|
-
*/
|
|
300
|
-
environmentVariables?: EnvironmentVariable[];
|
|
301
|
-
/**
|
|
302
|
-
* The instance view of the container instance. Only valid in response.
|
|
303
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
304
|
-
*/
|
|
305
|
-
readonly instanceView?: ContainerPropertiesInstanceView;
|
|
306
|
-
/**
|
|
307
|
-
* The resource requirements of the container instance.
|
|
308
|
-
*/
|
|
309
|
-
resources: ResourceRequirements;
|
|
310
|
-
/**
|
|
311
|
-
* The volume mounts available to the container instance.
|
|
312
|
-
*/
|
|
313
|
-
volumeMounts?: VolumeMount[];
|
|
314
|
-
/**
|
|
315
|
-
* The liveness probe.
|
|
316
|
-
*/
|
|
317
|
-
livenessProbe?: ContainerProbe;
|
|
318
|
-
/**
|
|
319
|
-
* The readiness probe.
|
|
320
|
-
*/
|
|
321
|
-
readinessProbe?: ContainerProbe;
|
|
322
|
-
}
|
|
323
|
-
/**
|
|
324
|
-
* The properties of the Azure File volume. Azure File shares are mounted as volumes.
|
|
325
|
-
*/
|
|
326
|
-
export interface AzureFileVolume {
|
|
327
|
-
/**
|
|
328
|
-
* The name of the Azure File share to be mounted as a volume.
|
|
329
|
-
*/
|
|
330
|
-
shareName: string;
|
|
331
|
-
/**
|
|
332
|
-
* The flag indicating whether the Azure File shared mounted as a volume is read-only.
|
|
333
|
-
*/
|
|
334
|
-
readOnly?: boolean;
|
|
335
|
-
/**
|
|
336
|
-
* The name of the storage account that contains the Azure File share.
|
|
337
|
-
*/
|
|
338
|
-
storageAccountName: string;
|
|
339
|
-
/**
|
|
340
|
-
* The storage account access key used to access the Azure File share.
|
|
341
|
-
*/
|
|
342
|
-
storageAccountKey?: string;
|
|
343
|
-
}
|
|
344
|
-
/**
|
|
345
|
-
* Represents a volume that is populated with the contents of a git repository
|
|
346
|
-
*/
|
|
347
|
-
export interface GitRepoVolume {
|
|
348
|
-
/**
|
|
349
|
-
* Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume
|
|
350
|
-
* directory will be the git repository. Otherwise, if specified, the volume will contain the
|
|
351
|
-
* git repository in the subdirectory with the given name.
|
|
352
|
-
*/
|
|
353
|
-
directory?: string;
|
|
354
|
-
/**
|
|
355
|
-
* Repository URL
|
|
356
|
-
*/
|
|
357
|
-
repository: string;
|
|
358
|
-
/**
|
|
359
|
-
* Commit hash for the specified revision.
|
|
360
|
-
*/
|
|
361
|
-
revision?: string;
|
|
362
|
-
}
|
|
363
|
-
/**
|
|
364
|
-
* The properties of the volume.
|
|
365
|
-
*/
|
|
366
|
-
export interface Volume {
|
|
367
|
-
/**
|
|
368
|
-
* The name of the volume.
|
|
369
|
-
*/
|
|
370
|
-
name: string;
|
|
371
|
-
/**
|
|
372
|
-
* The Azure File volume.
|
|
373
|
-
*/
|
|
374
|
-
azureFile?: AzureFileVolume;
|
|
375
|
-
/**
|
|
376
|
-
* The empty directory volume.
|
|
377
|
-
*/
|
|
378
|
-
emptyDir?: any;
|
|
379
|
-
/**
|
|
380
|
-
* The secret volume.
|
|
381
|
-
*/
|
|
382
|
-
secret?: {
|
|
383
|
-
[propertyName: string]: string;
|
|
384
|
-
};
|
|
385
|
-
/**
|
|
386
|
-
* The git repo volume.
|
|
387
|
-
*/
|
|
388
|
-
gitRepo?: GitRepoVolume;
|
|
389
|
-
}
|
|
390
|
-
/**
|
|
391
|
-
* An interface representing ContainerGroupIdentityUserAssignedIdentitiesValue.
|
|
392
|
-
*/
|
|
393
|
-
export interface ContainerGroupIdentityUserAssignedIdentitiesValue {
|
|
394
|
-
/**
|
|
395
|
-
* The principal id of user assigned identity.
|
|
396
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
397
|
-
*/
|
|
398
|
-
readonly principalId?: string;
|
|
399
|
-
/**
|
|
400
|
-
* The client id of user assigned identity.
|
|
401
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
402
|
-
*/
|
|
403
|
-
readonly clientId?: string;
|
|
404
|
-
}
|
|
405
|
-
/**
|
|
406
|
-
* Identity for the container group.
|
|
407
|
-
*/
|
|
408
|
-
export interface ContainerGroupIdentity {
|
|
409
|
-
/**
|
|
410
|
-
* The principal id of the container group identity. This property will only be provided for a
|
|
411
|
-
* system assigned identity.
|
|
412
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
413
|
-
*/
|
|
414
|
-
readonly principalId?: string;
|
|
415
|
-
/**
|
|
416
|
-
* The tenant id associated with the container group. This property will only be provided for a
|
|
417
|
-
* system assigned identity.
|
|
418
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
419
|
-
*/
|
|
420
|
-
readonly tenantId?: string;
|
|
421
|
-
/**
|
|
422
|
-
* The type of identity used for the container group. The type 'SystemAssigned, UserAssigned'
|
|
423
|
-
* includes both an implicitly created identity and a set of user assigned identities. The type
|
|
424
|
-
* 'None' will remove any identities from the container group. Possible values include:
|
|
425
|
-
* 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned', 'None'
|
|
426
|
-
*/
|
|
427
|
-
type?: ResourceIdentityType;
|
|
428
|
-
/**
|
|
429
|
-
* The list of user identities associated with the container group. The user identity dictionary
|
|
430
|
-
* key references will be ARM resource ids in the form:
|
|
431
|
-
* '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
|
|
432
|
-
*/
|
|
433
|
-
userAssignedIdentities?: {
|
|
434
|
-
[propertyName: string]: ContainerGroupIdentityUserAssignedIdentitiesValue;
|
|
435
|
-
};
|
|
436
|
-
}
|
|
437
|
-
/**
|
|
438
|
-
* Image registry credential.
|
|
439
|
-
*/
|
|
440
|
-
export interface ImageRegistryCredential {
|
|
441
|
-
/**
|
|
442
|
-
* The Docker image registry server without a protocol such as "http" and "https".
|
|
443
|
-
*/
|
|
444
|
-
server: string;
|
|
445
|
-
/**
|
|
446
|
-
* The username for the private registry.
|
|
447
|
-
*/
|
|
448
|
-
username: string;
|
|
449
|
-
/**
|
|
450
|
-
* The password for the private registry.
|
|
451
|
-
*/
|
|
452
|
-
password?: string;
|
|
453
|
-
}
|
|
454
|
-
/**
|
|
455
|
-
* The port exposed on the container group.
|
|
456
|
-
*/
|
|
457
|
-
export interface Port {
|
|
458
|
-
/**
|
|
459
|
-
* The protocol associated with the port. Possible values include: 'TCP', 'UDP'
|
|
460
|
-
*/
|
|
461
|
-
protocol?: ContainerGroupNetworkProtocol;
|
|
462
|
-
/**
|
|
463
|
-
* The port number.
|
|
464
|
-
*/
|
|
465
|
-
port: number;
|
|
466
|
-
}
|
|
467
|
-
/**
|
|
468
|
-
* IP address for the container group.
|
|
469
|
-
*/
|
|
470
|
-
export interface IpAddress {
|
|
471
|
-
/**
|
|
472
|
-
* The list of ports exposed on the container group.
|
|
473
|
-
*/
|
|
474
|
-
ports: Port[];
|
|
475
|
-
/**
|
|
476
|
-
* Specifies if the IP is exposed to the public internet or private VNET. Possible values
|
|
477
|
-
* include: 'Public', 'Private'
|
|
478
|
-
*/
|
|
479
|
-
type: ContainerGroupIpAddressType;
|
|
480
|
-
/**
|
|
481
|
-
* The IP exposed to the public internet.
|
|
482
|
-
*/
|
|
483
|
-
ip?: string;
|
|
484
|
-
/**
|
|
485
|
-
* The Dns name label for the IP.
|
|
486
|
-
*/
|
|
487
|
-
dnsNameLabel?: string;
|
|
488
|
-
/**
|
|
489
|
-
* The FQDN for the IP.
|
|
490
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
491
|
-
*/
|
|
492
|
-
readonly fqdn?: string;
|
|
493
|
-
}
|
|
494
|
-
/**
|
|
495
|
-
* The instance view of the container group. Only valid in response.
|
|
496
|
-
*/
|
|
497
|
-
export interface ContainerGroupPropertiesInstanceView {
|
|
498
|
-
/**
|
|
499
|
-
* The events of this container group.
|
|
500
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
501
|
-
*/
|
|
502
|
-
readonly events?: Event[];
|
|
503
|
-
/**
|
|
504
|
-
* The state of the container group. Only valid in response.
|
|
505
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
506
|
-
*/
|
|
507
|
-
readonly state?: string;
|
|
508
|
-
}
|
|
509
|
-
/**
|
|
510
|
-
* Container group log analytics information.
|
|
511
|
-
*/
|
|
512
|
-
export interface LogAnalytics {
|
|
513
|
-
/**
|
|
514
|
-
* The workspace id for log analytics
|
|
515
|
-
*/
|
|
516
|
-
workspaceId: string;
|
|
517
|
-
/**
|
|
518
|
-
* The workspace key for log analytics
|
|
519
|
-
*/
|
|
520
|
-
workspaceKey: string;
|
|
521
|
-
/**
|
|
522
|
-
* The log type to be used. Possible values include: 'ContainerInsights', 'ContainerInstanceLogs'
|
|
523
|
-
*/
|
|
524
|
-
logType?: LogAnalyticsLogType;
|
|
525
|
-
/**
|
|
526
|
-
* Metadata for log analytics.
|
|
527
|
-
*/
|
|
528
|
-
metadata?: {
|
|
529
|
-
[propertyName: string]: string;
|
|
530
|
-
};
|
|
531
|
-
/**
|
|
532
|
-
* The workspace resource id for log analytics
|
|
533
|
-
*/
|
|
534
|
-
workspaceResourceId?: {
|
|
535
|
-
[propertyName: string]: string;
|
|
536
|
-
};
|
|
537
|
-
}
|
|
538
|
-
/**
|
|
539
|
-
* Container group diagnostic information.
|
|
540
|
-
*/
|
|
541
|
-
export interface ContainerGroupDiagnostics {
|
|
542
|
-
/**
|
|
543
|
-
* Container group log analytics information.
|
|
544
|
-
*/
|
|
545
|
-
logAnalytics?: LogAnalytics;
|
|
546
|
-
}
|
|
547
|
-
/**
|
|
548
|
-
* Container group network profile information.
|
|
549
|
-
*/
|
|
550
|
-
export interface ContainerGroupNetworkProfile {
|
|
551
|
-
/**
|
|
552
|
-
* The identifier for a network profile.
|
|
553
|
-
*/
|
|
554
|
-
id: string;
|
|
555
|
-
}
|
|
556
|
-
/**
|
|
557
|
-
* DNS configuration for the container group.
|
|
558
|
-
*/
|
|
559
|
-
export interface DnsConfiguration {
|
|
560
|
-
/**
|
|
561
|
-
* The DNS servers for the container group.
|
|
562
|
-
*/
|
|
563
|
-
nameServers: string[];
|
|
564
|
-
/**
|
|
565
|
-
* The DNS search domains for hostname lookup in the container group.
|
|
566
|
-
*/
|
|
567
|
-
searchDomains?: string;
|
|
568
|
-
/**
|
|
569
|
-
* The DNS options for the container group.
|
|
570
|
-
*/
|
|
571
|
-
options?: string;
|
|
572
|
-
}
|
|
573
|
-
/**
|
|
574
|
-
* The container group encryption properties.
|
|
575
|
-
*/
|
|
576
|
-
export interface EncryptionProperties {
|
|
577
|
-
/**
|
|
578
|
-
* The keyvault base url.
|
|
579
|
-
*/
|
|
580
|
-
vaultBaseUrl: string;
|
|
581
|
-
/**
|
|
582
|
-
* The encryption key name.
|
|
583
|
-
*/
|
|
584
|
-
keyName: string;
|
|
585
|
-
/**
|
|
586
|
-
* The encryption key version.
|
|
587
|
-
*/
|
|
588
|
-
keyVersion: string;
|
|
589
|
-
}
|
|
590
|
-
/**
|
|
591
|
-
* The instance view of the init container. Only valid in response.
|
|
592
|
-
*/
|
|
593
|
-
export interface InitContainerPropertiesDefinitionInstanceView {
|
|
594
|
-
/**
|
|
595
|
-
* The number of times that the init container has been restarted.
|
|
596
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
597
|
-
*/
|
|
598
|
-
readonly restartCount?: number;
|
|
599
|
-
/**
|
|
600
|
-
* The current state of the init container.
|
|
601
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
602
|
-
*/
|
|
603
|
-
readonly currentState?: ContainerState;
|
|
604
|
-
/**
|
|
605
|
-
* The previous state of the init container.
|
|
606
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
607
|
-
*/
|
|
608
|
-
readonly previousState?: ContainerState;
|
|
609
|
-
/**
|
|
610
|
-
* The events of the init container.
|
|
611
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
612
|
-
*/
|
|
613
|
-
readonly events?: Event[];
|
|
614
|
-
}
|
|
615
|
-
/**
|
|
616
|
-
* The init container definition.
|
|
617
|
-
*/
|
|
618
|
-
export interface InitContainerDefinition {
|
|
619
|
-
/**
|
|
620
|
-
* The name for the init container.
|
|
621
|
-
*/
|
|
622
|
-
name: string;
|
|
623
|
-
/**
|
|
624
|
-
* The image of the init container.
|
|
625
|
-
*/
|
|
626
|
-
image?: string;
|
|
627
|
-
/**
|
|
628
|
-
* The command to execute within the init container in exec form.
|
|
629
|
-
*/
|
|
630
|
-
command?: string[];
|
|
631
|
-
/**
|
|
632
|
-
* The environment variables to set in the init container.
|
|
633
|
-
*/
|
|
634
|
-
environmentVariables?: EnvironmentVariable[];
|
|
635
|
-
/**
|
|
636
|
-
* The instance view of the init container. Only valid in response.
|
|
637
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
638
|
-
*/
|
|
639
|
-
readonly instanceView?: InitContainerPropertiesDefinitionInstanceView;
|
|
640
|
-
/**
|
|
641
|
-
* The volume mounts available to the init container.
|
|
642
|
-
*/
|
|
643
|
-
volumeMounts?: VolumeMount[];
|
|
644
|
-
}
|
|
645
|
-
/**
|
|
646
|
-
* The Resource model definition.
|
|
647
|
-
*/
|
|
648
|
-
export interface Resource extends BaseResource {
|
|
649
|
-
/**
|
|
650
|
-
* The resource id.
|
|
651
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
652
|
-
*/
|
|
653
|
-
readonly id?: string;
|
|
654
|
-
/**
|
|
655
|
-
* The resource name.
|
|
656
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
657
|
-
*/
|
|
658
|
-
readonly name?: string;
|
|
659
|
-
/**
|
|
660
|
-
* The resource type.
|
|
661
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
662
|
-
*/
|
|
663
|
-
readonly type?: string;
|
|
664
|
-
/**
|
|
665
|
-
* The resource location.
|
|
666
|
-
*/
|
|
667
|
-
location?: string;
|
|
668
|
-
/**
|
|
669
|
-
* The resource tags.
|
|
670
|
-
*/
|
|
671
|
-
tags?: {
|
|
672
|
-
[propertyName: string]: string;
|
|
673
|
-
};
|
|
674
|
-
}
|
|
675
|
-
/**
|
|
676
|
-
* A container group.
|
|
677
|
-
*/
|
|
678
|
-
export interface ContainerGroup extends Resource {
|
|
679
|
-
/**
|
|
680
|
-
* The identity of the container group, if configured.
|
|
681
|
-
*/
|
|
682
|
-
identity?: ContainerGroupIdentity;
|
|
683
|
-
/**
|
|
684
|
-
* The provisioning state of the container group. This only appears in the response.
|
|
685
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
686
|
-
*/
|
|
687
|
-
readonly provisioningState?: string;
|
|
688
|
-
/**
|
|
689
|
-
* The containers within the container group.
|
|
690
|
-
*/
|
|
691
|
-
containers: Container[];
|
|
692
|
-
/**
|
|
693
|
-
* The image registry credentials by which the container group is created from.
|
|
694
|
-
*/
|
|
695
|
-
imageRegistryCredentials?: ImageRegistryCredential[];
|
|
696
|
-
/**
|
|
697
|
-
* Restart policy for all containers within the container group.
|
|
698
|
-
* - `Always` Always restart
|
|
699
|
-
* - `OnFailure` Restart on failure
|
|
700
|
-
* - `Never` Never restart
|
|
701
|
-
* . Possible values include: 'Always', 'OnFailure', 'Never'
|
|
702
|
-
*/
|
|
703
|
-
restartPolicy?: ContainerGroupRestartPolicy;
|
|
704
|
-
/**
|
|
705
|
-
* The IP address type of the container group.
|
|
706
|
-
*/
|
|
707
|
-
ipAddress?: IpAddress;
|
|
708
|
-
/**
|
|
709
|
-
* The operating system type required by the containers in the container group. Possible values
|
|
710
|
-
* include: 'Windows', 'Linux'
|
|
711
|
-
*/
|
|
712
|
-
osType: OperatingSystemTypes;
|
|
713
|
-
/**
|
|
714
|
-
* The list of volumes that can be mounted by containers in this container group.
|
|
715
|
-
*/
|
|
716
|
-
volumes?: Volume[];
|
|
717
|
-
/**
|
|
718
|
-
* The instance view of the container group. Only valid in response.
|
|
719
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
720
|
-
*/
|
|
721
|
-
readonly instanceView?: ContainerGroupPropertiesInstanceView;
|
|
722
|
-
/**
|
|
723
|
-
* The diagnostic information for a container group.
|
|
724
|
-
*/
|
|
725
|
-
diagnostics?: ContainerGroupDiagnostics;
|
|
726
|
-
/**
|
|
727
|
-
* The network profile information for a container group.
|
|
728
|
-
*/
|
|
729
|
-
networkProfile?: ContainerGroupNetworkProfile;
|
|
730
|
-
/**
|
|
731
|
-
* The DNS config information for a container group.
|
|
732
|
-
*/
|
|
733
|
-
dnsConfig?: DnsConfiguration;
|
|
734
|
-
/**
|
|
735
|
-
* The SKU for a container group. Possible values include: 'Standard', 'Dedicated'
|
|
736
|
-
*/
|
|
737
|
-
sku?: ContainerGroupSku;
|
|
738
|
-
/**
|
|
739
|
-
* The encryption properties for a container group.
|
|
740
|
-
*/
|
|
741
|
-
encryptionProperties?: EncryptionProperties;
|
|
742
|
-
/**
|
|
743
|
-
* The init containers for a container group.
|
|
744
|
-
*/
|
|
745
|
-
initContainers?: InitContainerDefinition[];
|
|
746
|
-
}
|
|
747
|
-
/**
|
|
748
|
-
* The display information of the operation.
|
|
749
|
-
*/
|
|
750
|
-
export interface OperationDisplay {
|
|
751
|
-
/**
|
|
752
|
-
* The name of the provider of the operation.
|
|
753
|
-
*/
|
|
754
|
-
provider?: string;
|
|
755
|
-
/**
|
|
756
|
-
* The name of the resource type of the operation.
|
|
757
|
-
*/
|
|
758
|
-
resource?: string;
|
|
759
|
-
/**
|
|
760
|
-
* The friendly name of the operation.
|
|
761
|
-
*/
|
|
762
|
-
operation?: string;
|
|
763
|
-
/**
|
|
764
|
-
* The description of the operation.
|
|
765
|
-
*/
|
|
766
|
-
description?: string;
|
|
767
|
-
}
|
|
768
|
-
/**
|
|
769
|
-
* An operation for Azure Container Instance service.
|
|
770
|
-
*/
|
|
771
|
-
export interface Operation {
|
|
772
|
-
/**
|
|
773
|
-
* The name of the operation.
|
|
774
|
-
*/
|
|
775
|
-
name: string;
|
|
776
|
-
/**
|
|
777
|
-
* The display information of the operation.
|
|
778
|
-
*/
|
|
779
|
-
display: OperationDisplay;
|
|
780
|
-
/**
|
|
781
|
-
* The additional properties.
|
|
782
|
-
*/
|
|
783
|
-
properties?: any;
|
|
784
|
-
/**
|
|
785
|
-
* The intended executor of the operation. Possible values include: 'User', 'System'
|
|
786
|
-
*/
|
|
787
|
-
origin?: ContainerInstanceOperationsOrigin;
|
|
788
|
-
}
|
|
789
|
-
/**
|
|
790
|
-
* The name object of the resource
|
|
791
|
-
*/
|
|
792
|
-
export interface UsageName {
|
|
793
|
-
/**
|
|
794
|
-
* The name of the resource
|
|
795
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
796
|
-
*/
|
|
797
|
-
readonly value?: string;
|
|
798
|
-
/**
|
|
799
|
-
* The localized name of the resource
|
|
800
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
801
|
-
*/
|
|
802
|
-
readonly localizedValue?: string;
|
|
803
|
-
}
|
|
804
|
-
/**
|
|
805
|
-
* A single usage result
|
|
806
|
-
*/
|
|
807
|
-
export interface Usage {
|
|
808
|
-
/**
|
|
809
|
-
* Unit of the usage result
|
|
810
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
811
|
-
*/
|
|
812
|
-
readonly unit?: string;
|
|
813
|
-
/**
|
|
814
|
-
* The current usage of the resource
|
|
815
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
816
|
-
*/
|
|
817
|
-
readonly currentValue?: number;
|
|
818
|
-
/**
|
|
819
|
-
* The maximum permitted usage of the resource.
|
|
820
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
821
|
-
*/
|
|
822
|
-
readonly limit?: number;
|
|
823
|
-
/**
|
|
824
|
-
* The name object of the resource
|
|
825
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
826
|
-
*/
|
|
827
|
-
readonly name?: UsageName;
|
|
828
|
-
}
|
|
829
|
-
/**
|
|
830
|
-
* The logs.
|
|
831
|
-
*/
|
|
832
|
-
export interface Logs {
|
|
833
|
-
/**
|
|
834
|
-
* The content of the log.
|
|
835
|
-
*/
|
|
836
|
-
content?: string;
|
|
837
|
-
}
|
|
838
|
-
/**
|
|
839
|
-
* The size of the terminal.
|
|
840
|
-
*/
|
|
841
|
-
export interface ContainerExecRequestTerminalSize {
|
|
842
|
-
/**
|
|
843
|
-
* The row size of the terminal
|
|
844
|
-
*/
|
|
845
|
-
rows?: number;
|
|
846
|
-
/**
|
|
847
|
-
* The column size of the terminal
|
|
848
|
-
*/
|
|
849
|
-
cols?: number;
|
|
850
|
-
}
|
|
851
|
-
/**
|
|
852
|
-
* The container exec request.
|
|
853
|
-
*/
|
|
854
|
-
export interface ContainerExecRequest {
|
|
855
|
-
/**
|
|
856
|
-
* The command to be executed.
|
|
857
|
-
*/
|
|
858
|
-
command?: string;
|
|
859
|
-
/**
|
|
860
|
-
* The size of the terminal.
|
|
861
|
-
*/
|
|
862
|
-
terminalSize?: ContainerExecRequestTerminalSize;
|
|
863
|
-
}
|
|
864
|
-
/**
|
|
865
|
-
* The information for the container exec command.
|
|
866
|
-
*/
|
|
867
|
-
export interface ContainerExecResponse {
|
|
868
|
-
/**
|
|
869
|
-
* The uri for the exec websocket.
|
|
870
|
-
*/
|
|
871
|
-
webSocketUri?: string;
|
|
872
|
-
/**
|
|
873
|
-
* The password to start the exec command.
|
|
874
|
-
*/
|
|
875
|
-
password?: string;
|
|
876
|
-
}
|
|
877
|
-
/**
|
|
878
|
-
* The information for the output stream from container attach.
|
|
879
|
-
*/
|
|
880
|
-
export interface ContainerAttachResponse {
|
|
881
|
-
/**
|
|
882
|
-
* The uri for the output stream from the attach.
|
|
883
|
-
*/
|
|
884
|
-
webSocketUri?: string;
|
|
885
|
-
/**
|
|
886
|
-
* The password to the output stream from the attach. Send as an Authorization header value when
|
|
887
|
-
* connecting to the websocketUri.
|
|
888
|
-
*/
|
|
889
|
-
password?: string;
|
|
890
|
-
}
|
|
891
|
-
/**
|
|
892
|
-
* The cached image and OS type.
|
|
893
|
-
*/
|
|
894
|
-
export interface CachedImages {
|
|
895
|
-
/**
|
|
896
|
-
* The OS type of the cached image.
|
|
897
|
-
*/
|
|
898
|
-
osType: string;
|
|
899
|
-
/**
|
|
900
|
-
* The cached image name.
|
|
901
|
-
*/
|
|
902
|
-
image: string;
|
|
903
|
-
}
|
|
904
|
-
/**
|
|
905
|
-
* The supported capabilities.
|
|
906
|
-
*/
|
|
907
|
-
export interface CapabilitiesCapabilities {
|
|
908
|
-
/**
|
|
909
|
-
* The maximum allowed memory request in GB.
|
|
910
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
911
|
-
*/
|
|
912
|
-
readonly maxMemoryInGB?: number;
|
|
913
|
-
/**
|
|
914
|
-
* The maximum allowed CPU request in cores.
|
|
915
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
916
|
-
*/
|
|
917
|
-
readonly maxCpu?: number;
|
|
918
|
-
/**
|
|
919
|
-
* The maximum allowed GPU count.
|
|
920
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
921
|
-
*/
|
|
922
|
-
readonly maxGpuCount?: number;
|
|
923
|
-
}
|
|
924
|
-
/**
|
|
925
|
-
* The regional capabilities.
|
|
926
|
-
*/
|
|
927
|
-
export interface Capabilities {
|
|
928
|
-
/**
|
|
929
|
-
* The resource type that this capability describes.
|
|
930
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
931
|
-
*/
|
|
932
|
-
readonly resourceType?: string;
|
|
933
|
-
/**
|
|
934
|
-
* The OS type that this capability describes.
|
|
935
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
936
|
-
*/
|
|
937
|
-
readonly osType?: string;
|
|
938
|
-
/**
|
|
939
|
-
* The resource location.
|
|
940
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
941
|
-
*/
|
|
942
|
-
readonly location?: string;
|
|
943
|
-
/**
|
|
944
|
-
* The ip address type that this capability describes.
|
|
945
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
946
|
-
*/
|
|
947
|
-
readonly ipAddressType?: string;
|
|
948
|
-
/**
|
|
949
|
-
* The GPU sku that this capability describes.
|
|
950
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
951
|
-
*/
|
|
952
|
-
readonly gpu?: string;
|
|
953
|
-
/**
|
|
954
|
-
* The supported capabilities.
|
|
955
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
956
|
-
*/
|
|
957
|
-
readonly capabilities?: CapabilitiesCapabilities;
|
|
958
|
-
}
|
|
959
|
-
/**
|
|
960
|
-
* Optional Parameters.
|
|
961
|
-
*/
|
|
962
|
-
export interface ContainersListLogsOptionalParams extends msRest.RequestOptionsBase {
|
|
963
|
-
/**
|
|
964
|
-
* The number of lines to show from the tail of the container instance log. If not provided, all
|
|
965
|
-
* available logs are shown up to 4mb.
|
|
966
|
-
*/
|
|
967
|
-
tail?: number;
|
|
968
|
-
/**
|
|
969
|
-
* If true, adds a timestamp at the beginning of every line of log output. If not provided,
|
|
970
|
-
* defaults to false.
|
|
971
|
-
*/
|
|
972
|
-
timestamps?: boolean;
|
|
973
|
-
}
|
|
974
|
-
/**
|
|
975
|
-
* An interface representing ContainerInstanceManagementClientOptions.
|
|
976
|
-
*/
|
|
977
|
-
export interface ContainerInstanceManagementClientOptions extends AzureServiceClientOptions {
|
|
978
|
-
baseUri?: string;
|
|
979
|
-
}
|
|
980
|
-
/**
|
|
981
|
-
* @interface
|
|
982
|
-
* The container group list response that contains the container group properties.
|
|
983
|
-
* @extends Array<ContainerGroup>
|
|
984
|
-
*/
|
|
985
|
-
export interface ContainerGroupListResult extends Array<ContainerGroup> {
|
|
986
|
-
/**
|
|
987
|
-
* The URI to fetch the next page of container groups.
|
|
988
|
-
*/
|
|
989
|
-
nextLink?: string;
|
|
990
|
-
}
|
|
991
|
-
/**
|
|
992
|
-
* @interface
|
|
993
|
-
* The operation list response that contains all operations for Azure Container Instance service.
|
|
994
|
-
* @extends Array<Operation>
|
|
995
|
-
*/
|
|
996
|
-
export interface OperationListResult extends Array<Operation> {
|
|
997
|
-
/**
|
|
998
|
-
* The URI to fetch the next page of operations.
|
|
999
|
-
*/
|
|
1000
|
-
nextLink?: string;
|
|
1001
|
-
}
|
|
1002
|
-
/**
|
|
1003
|
-
* @interface
|
|
1004
|
-
* The response containing the usage data
|
|
1005
|
-
* @extends Array<Usage>
|
|
1006
|
-
*/
|
|
1007
|
-
export interface UsageListResult extends Array<Usage> {
|
|
1008
|
-
}
|
|
1009
|
-
/**
|
|
1010
|
-
* @interface
|
|
1011
|
-
* The response containing cached images.
|
|
1012
|
-
* @extends Array<CachedImages>
|
|
1013
|
-
*/
|
|
1014
|
-
export interface CachedImagesListResult extends Array<CachedImages> {
|
|
1015
|
-
/**
|
|
1016
|
-
* The URI to fetch the next page of cached images.
|
|
1017
|
-
*/
|
|
1018
|
-
nextLink?: string;
|
|
1019
|
-
}
|
|
1020
|
-
/**
|
|
1021
|
-
* @interface
|
|
1022
|
-
* The response containing list of capabilities.
|
|
1023
|
-
* @extends Array<Capabilities>
|
|
1024
|
-
*/
|
|
1025
|
-
export interface CapabilitiesListResult extends Array<Capabilities> {
|
|
1026
|
-
/**
|
|
1027
|
-
* The URI to fetch the next page of capabilities.
|
|
1028
|
-
*/
|
|
1029
|
-
nextLink?: string;
|
|
1030
|
-
}
|
|
1031
|
-
/**
|
|
1032
|
-
* Defines values for ContainerNetworkProtocol.
|
|
1033
|
-
* Possible values include: 'TCP', 'UDP'
|
|
1034
|
-
* @readonly
|
|
1035
|
-
* @enum {string}
|
|
1036
|
-
*/
|
|
1037
|
-
export declare type ContainerNetworkProtocol = 'TCP' | 'UDP';
|
|
1038
|
-
/**
|
|
1039
|
-
* Defines values for GpuSku.
|
|
1040
|
-
* Possible values include: 'K80', 'P100', 'V100'
|
|
1041
|
-
* @readonly
|
|
1042
|
-
* @enum {string}
|
|
1043
|
-
*/
|
|
1044
|
-
export declare type GpuSku = 'K80' | 'P100' | 'V100';
|
|
1045
|
-
/**
|
|
1046
|
-
* Defines values for Scheme.
|
|
1047
|
-
* Possible values include: 'http', 'https'
|
|
1048
|
-
* @readonly
|
|
1049
|
-
* @enum {string}
|
|
1050
|
-
*/
|
|
1051
|
-
export declare type Scheme = 'http' | 'https';
|
|
1052
|
-
/**
|
|
1053
|
-
* Defines values for ResourceIdentityType.
|
|
1054
|
-
* Possible values include: 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned',
|
|
1055
|
-
* 'None'
|
|
1056
|
-
* @readonly
|
|
1057
|
-
* @enum {string}
|
|
1058
|
-
*/
|
|
1059
|
-
export declare type ResourceIdentityType = 'SystemAssigned' | 'UserAssigned' | 'SystemAssigned, UserAssigned' | 'None';
|
|
1060
|
-
/**
|
|
1061
|
-
* Defines values for ContainerGroupRestartPolicy.
|
|
1062
|
-
* Possible values include: 'Always', 'OnFailure', 'Never'
|
|
1063
|
-
* @readonly
|
|
1064
|
-
* @enum {string}
|
|
1065
|
-
*/
|
|
1066
|
-
export declare type ContainerGroupRestartPolicy = 'Always' | 'OnFailure' | 'Never';
|
|
1067
|
-
/**
|
|
1068
|
-
* Defines values for ContainerGroupNetworkProtocol.
|
|
1069
|
-
* Possible values include: 'TCP', 'UDP'
|
|
1070
|
-
* @readonly
|
|
1071
|
-
* @enum {string}
|
|
1072
|
-
*/
|
|
1073
|
-
export declare type ContainerGroupNetworkProtocol = 'TCP' | 'UDP';
|
|
1074
|
-
/**
|
|
1075
|
-
* Defines values for ContainerGroupIpAddressType.
|
|
1076
|
-
* Possible values include: 'Public', 'Private'
|
|
1077
|
-
* @readonly
|
|
1078
|
-
* @enum {string}
|
|
1079
|
-
*/
|
|
1080
|
-
export declare type ContainerGroupIpAddressType = 'Public' | 'Private';
|
|
1081
|
-
/**
|
|
1082
|
-
* Defines values for OperatingSystemTypes.
|
|
1083
|
-
* Possible values include: 'Windows', 'Linux'
|
|
1084
|
-
* @readonly
|
|
1085
|
-
* @enum {string}
|
|
1086
|
-
*/
|
|
1087
|
-
export declare type OperatingSystemTypes = 'Windows' | 'Linux';
|
|
1088
|
-
/**
|
|
1089
|
-
* Defines values for LogAnalyticsLogType.
|
|
1090
|
-
* Possible values include: 'ContainerInsights', 'ContainerInstanceLogs'
|
|
1091
|
-
* @readonly
|
|
1092
|
-
* @enum {string}
|
|
1093
|
-
*/
|
|
1094
|
-
export declare type LogAnalyticsLogType = 'ContainerInsights' | 'ContainerInstanceLogs';
|
|
1095
|
-
/**
|
|
1096
|
-
* Defines values for ContainerGroupSku.
|
|
1097
|
-
* Possible values include: 'Standard', 'Dedicated'
|
|
1098
|
-
* @readonly
|
|
1099
|
-
* @enum {string}
|
|
1100
|
-
*/
|
|
1101
|
-
export declare type ContainerGroupSku = 'Standard' | 'Dedicated';
|
|
1102
|
-
/**
|
|
1103
|
-
* Defines values for ContainerInstanceOperationsOrigin.
|
|
1104
|
-
* Possible values include: 'User', 'System'
|
|
1105
|
-
* @readonly
|
|
1106
|
-
* @enum {string}
|
|
1107
|
-
*/
|
|
1108
|
-
export declare type ContainerInstanceOperationsOrigin = 'User' | 'System';
|
|
1109
|
-
/**
|
|
1110
|
-
* Contains response data for the list operation.
|
|
1111
|
-
*/
|
|
1112
|
-
export declare type ContainerGroupsListResponse = ContainerGroupListResult & {
|
|
1113
|
-
/**
|
|
1114
|
-
* The underlying HTTP response.
|
|
1115
|
-
*/
|
|
1116
|
-
_response: msRest.HttpResponse & {
|
|
1117
|
-
/**
|
|
1118
|
-
* The response body as text (string format)
|
|
1119
|
-
*/
|
|
1120
|
-
bodyAsText: string;
|
|
1121
|
-
/**
|
|
1122
|
-
* The response body as parsed JSON or XML
|
|
1123
|
-
*/
|
|
1124
|
-
parsedBody: ContainerGroupListResult;
|
|
1125
|
-
};
|
|
1126
|
-
};
|
|
1127
|
-
/**
|
|
1128
|
-
* Contains response data for the listByResourceGroup operation.
|
|
1129
|
-
*/
|
|
1130
|
-
export declare type ContainerGroupsListByResourceGroupResponse = ContainerGroupListResult & {
|
|
1131
|
-
/**
|
|
1132
|
-
* The underlying HTTP response.
|
|
1133
|
-
*/
|
|
1134
|
-
_response: msRest.HttpResponse & {
|
|
1135
|
-
/**
|
|
1136
|
-
* The response body as text (string format)
|
|
1137
|
-
*/
|
|
1138
|
-
bodyAsText: string;
|
|
1139
|
-
/**
|
|
1140
|
-
* The response body as parsed JSON or XML
|
|
1141
|
-
*/
|
|
1142
|
-
parsedBody: ContainerGroupListResult;
|
|
1143
|
-
};
|
|
1144
|
-
};
|
|
1145
|
-
/**
|
|
1146
|
-
* Contains response data for the get operation.
|
|
1147
|
-
*/
|
|
1148
|
-
export declare type ContainerGroupsGetResponse = ContainerGroup & {
|
|
1149
|
-
/**
|
|
1150
|
-
* The underlying HTTP response.
|
|
1151
|
-
*/
|
|
1152
|
-
_response: msRest.HttpResponse & {
|
|
1153
|
-
/**
|
|
1154
|
-
* The response body as text (string format)
|
|
1155
|
-
*/
|
|
1156
|
-
bodyAsText: string;
|
|
1157
|
-
/**
|
|
1158
|
-
* The response body as parsed JSON or XML
|
|
1159
|
-
*/
|
|
1160
|
-
parsedBody: ContainerGroup;
|
|
1161
|
-
};
|
|
1162
|
-
};
|
|
1163
|
-
/**
|
|
1164
|
-
* Contains response data for the createOrUpdate operation.
|
|
1165
|
-
*/
|
|
1166
|
-
export declare type ContainerGroupsCreateOrUpdateResponse = ContainerGroup & {
|
|
1167
|
-
/**
|
|
1168
|
-
* The underlying HTTP response.
|
|
1169
|
-
*/
|
|
1170
|
-
_response: msRest.HttpResponse & {
|
|
1171
|
-
/**
|
|
1172
|
-
* The response body as text (string format)
|
|
1173
|
-
*/
|
|
1174
|
-
bodyAsText: string;
|
|
1175
|
-
/**
|
|
1176
|
-
* The response body as parsed JSON or XML
|
|
1177
|
-
*/
|
|
1178
|
-
parsedBody: ContainerGroup;
|
|
1179
|
-
};
|
|
1180
|
-
};
|
|
1181
|
-
/**
|
|
1182
|
-
* Contains response data for the update operation.
|
|
1183
|
-
*/
|
|
1184
|
-
export declare type ContainerGroupsUpdateResponse = ContainerGroup & {
|
|
1185
|
-
/**
|
|
1186
|
-
* The underlying HTTP response.
|
|
1187
|
-
*/
|
|
1188
|
-
_response: msRest.HttpResponse & {
|
|
1189
|
-
/**
|
|
1190
|
-
* The response body as text (string format)
|
|
1191
|
-
*/
|
|
1192
|
-
bodyAsText: string;
|
|
1193
|
-
/**
|
|
1194
|
-
* The response body as parsed JSON or XML
|
|
1195
|
-
*/
|
|
1196
|
-
parsedBody: ContainerGroup;
|
|
1197
|
-
};
|
|
1198
|
-
};
|
|
1199
|
-
/**
|
|
1200
|
-
* Contains response data for the deleteMethod operation.
|
|
1201
|
-
*/
|
|
1202
|
-
export declare type ContainerGroupsDeleteMethodResponse = ContainerGroup & {
|
|
1203
|
-
/**
|
|
1204
|
-
* The underlying HTTP response.
|
|
1205
|
-
*/
|
|
1206
|
-
_response: msRest.HttpResponse & {
|
|
1207
|
-
/**
|
|
1208
|
-
* The response body as text (string format)
|
|
1209
|
-
*/
|
|
1210
|
-
bodyAsText: string;
|
|
1211
|
-
/**
|
|
1212
|
-
* The response body as parsed JSON or XML
|
|
1213
|
-
*/
|
|
1214
|
-
parsedBody: ContainerGroup;
|
|
1215
|
-
};
|
|
1216
|
-
};
|
|
1217
|
-
/**
|
|
1218
|
-
* Contains response data for the beginCreateOrUpdate operation.
|
|
1219
|
-
*/
|
|
1220
|
-
export declare type ContainerGroupsBeginCreateOrUpdateResponse = ContainerGroup & {
|
|
1221
|
-
/**
|
|
1222
|
-
* The underlying HTTP response.
|
|
1223
|
-
*/
|
|
1224
|
-
_response: msRest.HttpResponse & {
|
|
1225
|
-
/**
|
|
1226
|
-
* The response body as text (string format)
|
|
1227
|
-
*/
|
|
1228
|
-
bodyAsText: string;
|
|
1229
|
-
/**
|
|
1230
|
-
* The response body as parsed JSON or XML
|
|
1231
|
-
*/
|
|
1232
|
-
parsedBody: ContainerGroup;
|
|
1233
|
-
};
|
|
1234
|
-
};
|
|
1235
|
-
/**
|
|
1236
|
-
* Contains response data for the beginDeleteMethod operation.
|
|
1237
|
-
*/
|
|
1238
|
-
export declare type ContainerGroupsBeginDeleteMethodResponse = ContainerGroup & {
|
|
1239
|
-
/**
|
|
1240
|
-
* The underlying HTTP response.
|
|
1241
|
-
*/
|
|
1242
|
-
_response: msRest.HttpResponse & {
|
|
1243
|
-
/**
|
|
1244
|
-
* The response body as text (string format)
|
|
1245
|
-
*/
|
|
1246
|
-
bodyAsText: string;
|
|
1247
|
-
/**
|
|
1248
|
-
* The response body as parsed JSON or XML
|
|
1249
|
-
*/
|
|
1250
|
-
parsedBody: ContainerGroup;
|
|
1251
|
-
};
|
|
1252
|
-
};
|
|
1253
|
-
/**
|
|
1254
|
-
* Contains response data for the listNext operation.
|
|
1255
|
-
*/
|
|
1256
|
-
export declare type ContainerGroupsListNextResponse = ContainerGroupListResult & {
|
|
1257
|
-
/**
|
|
1258
|
-
* The underlying HTTP response.
|
|
1259
|
-
*/
|
|
1260
|
-
_response: msRest.HttpResponse & {
|
|
1261
|
-
/**
|
|
1262
|
-
* The response body as text (string format)
|
|
1263
|
-
*/
|
|
1264
|
-
bodyAsText: string;
|
|
1265
|
-
/**
|
|
1266
|
-
* The response body as parsed JSON or XML
|
|
1267
|
-
*/
|
|
1268
|
-
parsedBody: ContainerGroupListResult;
|
|
1269
|
-
};
|
|
1270
|
-
};
|
|
1271
|
-
/**
|
|
1272
|
-
* Contains response data for the listByResourceGroupNext operation.
|
|
1273
|
-
*/
|
|
1274
|
-
export declare type ContainerGroupsListByResourceGroupNextResponse = ContainerGroupListResult & {
|
|
1275
|
-
/**
|
|
1276
|
-
* The underlying HTTP response.
|
|
1277
|
-
*/
|
|
1278
|
-
_response: msRest.HttpResponse & {
|
|
1279
|
-
/**
|
|
1280
|
-
* The response body as text (string format)
|
|
1281
|
-
*/
|
|
1282
|
-
bodyAsText: string;
|
|
1283
|
-
/**
|
|
1284
|
-
* The response body as parsed JSON or XML
|
|
1285
|
-
*/
|
|
1286
|
-
parsedBody: ContainerGroupListResult;
|
|
1287
|
-
};
|
|
1288
|
-
};
|
|
1289
|
-
/**
|
|
1290
|
-
* Contains response data for the list operation.
|
|
1291
|
-
*/
|
|
1292
|
-
export declare type OperationsListResponse = OperationListResult & {
|
|
1293
|
-
/**
|
|
1294
|
-
* The underlying HTTP response.
|
|
1295
|
-
*/
|
|
1296
|
-
_response: msRest.HttpResponse & {
|
|
1297
|
-
/**
|
|
1298
|
-
* The response body as text (string format)
|
|
1299
|
-
*/
|
|
1300
|
-
bodyAsText: string;
|
|
1301
|
-
/**
|
|
1302
|
-
* The response body as parsed JSON or XML
|
|
1303
|
-
*/
|
|
1304
|
-
parsedBody: OperationListResult;
|
|
1305
|
-
};
|
|
1306
|
-
};
|
|
1307
|
-
/**
|
|
1308
|
-
* Contains response data for the listNext operation.
|
|
1309
|
-
*/
|
|
1310
|
-
export declare type OperationsListNextResponse = OperationListResult & {
|
|
1311
|
-
/**
|
|
1312
|
-
* The underlying HTTP response.
|
|
1313
|
-
*/
|
|
1314
|
-
_response: msRest.HttpResponse & {
|
|
1315
|
-
/**
|
|
1316
|
-
* The response body as text (string format)
|
|
1317
|
-
*/
|
|
1318
|
-
bodyAsText: string;
|
|
1319
|
-
/**
|
|
1320
|
-
* The response body as parsed JSON or XML
|
|
1321
|
-
*/
|
|
1322
|
-
parsedBody: OperationListResult;
|
|
1323
|
-
};
|
|
1324
|
-
};
|
|
1325
|
-
/**
|
|
1326
|
-
* Contains response data for the listUsage operation.
|
|
1327
|
-
*/
|
|
1328
|
-
export declare type LocationListUsageResponse = UsageListResult & {
|
|
1329
|
-
/**
|
|
1330
|
-
* The underlying HTTP response.
|
|
1331
|
-
*/
|
|
1332
|
-
_response: msRest.HttpResponse & {
|
|
1333
|
-
/**
|
|
1334
|
-
* The response body as text (string format)
|
|
1335
|
-
*/
|
|
1336
|
-
bodyAsText: string;
|
|
1337
|
-
/**
|
|
1338
|
-
* The response body as parsed JSON or XML
|
|
1339
|
-
*/
|
|
1340
|
-
parsedBody: UsageListResult;
|
|
1341
|
-
};
|
|
1342
|
-
};
|
|
1343
|
-
/**
|
|
1344
|
-
* Contains response data for the listCachedImages operation.
|
|
1345
|
-
*/
|
|
1346
|
-
export declare type LocationListCachedImagesResponse = CachedImagesListResult & {
|
|
1347
|
-
/**
|
|
1348
|
-
* The underlying HTTP response.
|
|
1349
|
-
*/
|
|
1350
|
-
_response: msRest.HttpResponse & {
|
|
1351
|
-
/**
|
|
1352
|
-
* The response body as text (string format)
|
|
1353
|
-
*/
|
|
1354
|
-
bodyAsText: string;
|
|
1355
|
-
/**
|
|
1356
|
-
* The response body as parsed JSON or XML
|
|
1357
|
-
*/
|
|
1358
|
-
parsedBody: CachedImagesListResult;
|
|
1359
|
-
};
|
|
1360
|
-
};
|
|
1361
|
-
/**
|
|
1362
|
-
* Contains response data for the listCapabilities operation.
|
|
1363
|
-
*/
|
|
1364
|
-
export declare type LocationListCapabilitiesResponse = CapabilitiesListResult & {
|
|
1365
|
-
/**
|
|
1366
|
-
* The underlying HTTP response.
|
|
1367
|
-
*/
|
|
1368
|
-
_response: msRest.HttpResponse & {
|
|
1369
|
-
/**
|
|
1370
|
-
* The response body as text (string format)
|
|
1371
|
-
*/
|
|
1372
|
-
bodyAsText: string;
|
|
1373
|
-
/**
|
|
1374
|
-
* The response body as parsed JSON or XML
|
|
1375
|
-
*/
|
|
1376
|
-
parsedBody: CapabilitiesListResult;
|
|
1377
|
-
};
|
|
1378
|
-
};
|
|
1379
|
-
/**
|
|
1380
|
-
* Contains response data for the listCachedImagesNext operation.
|
|
1381
|
-
*/
|
|
1382
|
-
export declare type LocationListCachedImagesNextResponse = CachedImagesListResult & {
|
|
1383
|
-
/**
|
|
1384
|
-
* The underlying HTTP response.
|
|
1385
|
-
*/
|
|
1386
|
-
_response: msRest.HttpResponse & {
|
|
1387
|
-
/**
|
|
1388
|
-
* The response body as text (string format)
|
|
1389
|
-
*/
|
|
1390
|
-
bodyAsText: string;
|
|
1391
|
-
/**
|
|
1392
|
-
* The response body as parsed JSON or XML
|
|
1393
|
-
*/
|
|
1394
|
-
parsedBody: CachedImagesListResult;
|
|
1395
|
-
};
|
|
1396
|
-
};
|
|
1397
|
-
/**
|
|
1398
|
-
* Contains response data for the listCapabilitiesNext operation.
|
|
1399
|
-
*/
|
|
1400
|
-
export declare type LocationListCapabilitiesNextResponse = CapabilitiesListResult & {
|
|
1401
|
-
/**
|
|
1402
|
-
* The underlying HTTP response.
|
|
1403
|
-
*/
|
|
1404
|
-
_response: msRest.HttpResponse & {
|
|
1405
|
-
/**
|
|
1406
|
-
* The response body as text (string format)
|
|
1407
|
-
*/
|
|
1408
|
-
bodyAsText: string;
|
|
1409
|
-
/**
|
|
1410
|
-
* The response body as parsed JSON or XML
|
|
1411
|
-
*/
|
|
1412
|
-
parsedBody: CapabilitiesListResult;
|
|
1413
|
-
};
|
|
1414
|
-
};
|
|
1415
|
-
/**
|
|
1416
|
-
* Contains response data for the listLogs operation.
|
|
1417
|
-
*/
|
|
1418
|
-
export declare type ContainersListLogsResponse = Logs & {
|
|
1419
|
-
/**
|
|
1420
|
-
* The underlying HTTP response.
|
|
1421
|
-
*/
|
|
1422
|
-
_response: msRest.HttpResponse & {
|
|
1423
|
-
/**
|
|
1424
|
-
* The response body as text (string format)
|
|
1425
|
-
*/
|
|
1426
|
-
bodyAsText: string;
|
|
1427
|
-
/**
|
|
1428
|
-
* The response body as parsed JSON or XML
|
|
1429
|
-
*/
|
|
1430
|
-
parsedBody: Logs;
|
|
1431
|
-
};
|
|
1432
|
-
};
|
|
1433
|
-
/**
|
|
1434
|
-
* Contains response data for the executeCommand operation.
|
|
1435
|
-
*/
|
|
1436
|
-
export declare type ContainersExecuteCommandResponse = ContainerExecResponse & {
|
|
1437
|
-
/**
|
|
1438
|
-
* The underlying HTTP response.
|
|
1439
|
-
*/
|
|
1440
|
-
_response: msRest.HttpResponse & {
|
|
1441
|
-
/**
|
|
1442
|
-
* The response body as text (string format)
|
|
1443
|
-
*/
|
|
1444
|
-
bodyAsText: string;
|
|
1445
|
-
/**
|
|
1446
|
-
* The response body as parsed JSON or XML
|
|
1447
|
-
*/
|
|
1448
|
-
parsedBody: ContainerExecResponse;
|
|
1449
|
-
};
|
|
1450
|
-
};
|
|
1451
|
-
/**
|
|
1452
|
-
* Contains response data for the attach operation.
|
|
1453
|
-
*/
|
|
1454
|
-
export declare type ContainersAttachResponse = ContainerAttachResponse & {
|
|
1455
|
-
/**
|
|
1456
|
-
* The underlying HTTP response.
|
|
1457
|
-
*/
|
|
1458
|
-
_response: msRest.HttpResponse & {
|
|
1459
|
-
/**
|
|
1460
|
-
* The response body as text (string format)
|
|
1461
|
-
*/
|
|
1462
|
-
bodyAsText: string;
|
|
1463
|
-
/**
|
|
1464
|
-
* The response body as parsed JSON or XML
|
|
1465
|
-
*/
|
|
1466
|
-
parsedBody: ContainerAttachResponse;
|
|
1467
|
-
};
|
|
1468
|
-
};
|
|
1469
|
-
//# sourceMappingURL=index.d.ts.map
|