@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
|
@@ -1,455 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
7
|
-
* regenerated.
|
|
8
|
-
*/
|
|
9
|
-
import { __assign } from "tslib";
|
|
10
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
11
|
-
import * as Mappers from "../models/containerGroupsMappers";
|
|
12
|
-
import * as Parameters from "../models/parameters";
|
|
13
|
-
/** Class representing a ContainerGroups. */
|
|
14
|
-
var ContainerGroups = /** @class */ (function () {
|
|
15
|
-
/**
|
|
16
|
-
* Create a ContainerGroups.
|
|
17
|
-
* @param {ContainerInstanceManagementClientContext} client Reference to the service client.
|
|
18
|
-
*/
|
|
19
|
-
function ContainerGroups(client) {
|
|
20
|
-
this.client = client;
|
|
21
|
-
}
|
|
22
|
-
ContainerGroups.prototype.list = function (options, callback) {
|
|
23
|
-
return this.client.sendOperationRequest({
|
|
24
|
-
options: options
|
|
25
|
-
}, listOperationSpec, callback);
|
|
26
|
-
};
|
|
27
|
-
ContainerGroups.prototype.listByResourceGroup = function (resourceGroupName, options, callback) {
|
|
28
|
-
return this.client.sendOperationRequest({
|
|
29
|
-
resourceGroupName: resourceGroupName,
|
|
30
|
-
options: options
|
|
31
|
-
}, listByResourceGroupOperationSpec, callback);
|
|
32
|
-
};
|
|
33
|
-
ContainerGroups.prototype.get = function (resourceGroupName, containerGroupName, options, callback) {
|
|
34
|
-
return this.client.sendOperationRequest({
|
|
35
|
-
resourceGroupName: resourceGroupName,
|
|
36
|
-
containerGroupName: containerGroupName,
|
|
37
|
-
options: options
|
|
38
|
-
}, getOperationSpec, callback);
|
|
39
|
-
};
|
|
40
|
-
/**
|
|
41
|
-
* Create or update container groups with specified configurations.
|
|
42
|
-
* @summary Create or update container groups.
|
|
43
|
-
* @param resourceGroupName The name of the resource group.
|
|
44
|
-
* @param containerGroupName The name of the container group.
|
|
45
|
-
* @param containerGroup The properties of the container group to be created or updated.
|
|
46
|
-
* @param [options] The optional parameters
|
|
47
|
-
* @returns Promise<Models.ContainerGroupsCreateOrUpdateResponse>
|
|
48
|
-
*/
|
|
49
|
-
ContainerGroups.prototype.createOrUpdate = function (resourceGroupName, containerGroupName, containerGroup, options) {
|
|
50
|
-
return this.beginCreateOrUpdate(resourceGroupName, containerGroupName, containerGroup, options)
|
|
51
|
-
.then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
|
|
52
|
-
};
|
|
53
|
-
ContainerGroups.prototype.update = function (resourceGroupName, containerGroupName, resource, options, callback) {
|
|
54
|
-
return this.client.sendOperationRequest({
|
|
55
|
-
resourceGroupName: resourceGroupName,
|
|
56
|
-
containerGroupName: containerGroupName,
|
|
57
|
-
resource: resource,
|
|
58
|
-
options: options
|
|
59
|
-
}, updateOperationSpec, callback);
|
|
60
|
-
};
|
|
61
|
-
/**
|
|
62
|
-
* Delete the specified container group in the specified subscription and resource group. The
|
|
63
|
-
* operation does not delete other resources provided by the user, such as volumes.
|
|
64
|
-
* @summary Delete the specified container group.
|
|
65
|
-
* @param resourceGroupName The name of the resource group.
|
|
66
|
-
* @param containerGroupName The name of the container group.
|
|
67
|
-
* @param [options] The optional parameters
|
|
68
|
-
* @returns Promise<Models.ContainerGroupsDeleteMethodResponse>
|
|
69
|
-
*/
|
|
70
|
-
ContainerGroups.prototype.deleteMethod = function (resourceGroupName, containerGroupName, options) {
|
|
71
|
-
return this.beginDeleteMethod(resourceGroupName, containerGroupName, options)
|
|
72
|
-
.then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
|
|
73
|
-
};
|
|
74
|
-
/**
|
|
75
|
-
* Restarts all containers in a container group in place. If container image has updates, new image
|
|
76
|
-
* will be downloaded.
|
|
77
|
-
* @summary Restarts all containers in a container group.
|
|
78
|
-
* @param resourceGroupName The name of the resource group.
|
|
79
|
-
* @param containerGroupName The name of the container group.
|
|
80
|
-
* @param [options] The optional parameters
|
|
81
|
-
* @returns Promise<msRest.RestResponse>
|
|
82
|
-
*/
|
|
83
|
-
ContainerGroups.prototype.restart = function (resourceGroupName, containerGroupName, options) {
|
|
84
|
-
return this.beginRestart(resourceGroupName, containerGroupName, options)
|
|
85
|
-
.then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
|
|
86
|
-
};
|
|
87
|
-
ContainerGroups.prototype.stop = function (resourceGroupName, containerGroupName, options, callback) {
|
|
88
|
-
return this.client.sendOperationRequest({
|
|
89
|
-
resourceGroupName: resourceGroupName,
|
|
90
|
-
containerGroupName: containerGroupName,
|
|
91
|
-
options: options
|
|
92
|
-
}, stopOperationSpec, callback);
|
|
93
|
-
};
|
|
94
|
-
/**
|
|
95
|
-
* Starts all containers in a container group. Compute resources will be allocated and billing will
|
|
96
|
-
* start.
|
|
97
|
-
* @summary Starts all containers in a container group.
|
|
98
|
-
* @param resourceGroupName The name of the resource group.
|
|
99
|
-
* @param containerGroupName The name of the container group.
|
|
100
|
-
* @param [options] The optional parameters
|
|
101
|
-
* @returns Promise<msRest.RestResponse>
|
|
102
|
-
*/
|
|
103
|
-
ContainerGroups.prototype.start = function (resourceGroupName, containerGroupName, options) {
|
|
104
|
-
return this.beginStart(resourceGroupName, containerGroupName, options)
|
|
105
|
-
.then(function (lroPoller) { return lroPoller.pollUntilFinished(); });
|
|
106
|
-
};
|
|
107
|
-
/**
|
|
108
|
-
* Create or update container groups with specified configurations.
|
|
109
|
-
* @summary Create or update container groups.
|
|
110
|
-
* @param resourceGroupName The name of the resource group.
|
|
111
|
-
* @param containerGroupName The name of the container group.
|
|
112
|
-
* @param containerGroup The properties of the container group to be created or updated.
|
|
113
|
-
* @param [options] The optional parameters
|
|
114
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
115
|
-
*/
|
|
116
|
-
ContainerGroups.prototype.beginCreateOrUpdate = function (resourceGroupName, containerGroupName, containerGroup, options) {
|
|
117
|
-
return this.client.sendLRORequest({
|
|
118
|
-
resourceGroupName: resourceGroupName,
|
|
119
|
-
containerGroupName: containerGroupName,
|
|
120
|
-
containerGroup: containerGroup,
|
|
121
|
-
options: options
|
|
122
|
-
}, beginCreateOrUpdateOperationSpec, options);
|
|
123
|
-
};
|
|
124
|
-
/**
|
|
125
|
-
* Delete the specified container group in the specified subscription and resource group. The
|
|
126
|
-
* operation does not delete other resources provided by the user, such as volumes.
|
|
127
|
-
* @summary Delete the specified container group.
|
|
128
|
-
* @param resourceGroupName The name of the resource group.
|
|
129
|
-
* @param containerGroupName The name of the container group.
|
|
130
|
-
* @param [options] The optional parameters
|
|
131
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
132
|
-
*/
|
|
133
|
-
ContainerGroups.prototype.beginDeleteMethod = function (resourceGroupName, containerGroupName, options) {
|
|
134
|
-
return this.client.sendLRORequest({
|
|
135
|
-
resourceGroupName: resourceGroupName,
|
|
136
|
-
containerGroupName: containerGroupName,
|
|
137
|
-
options: options
|
|
138
|
-
}, beginDeleteMethodOperationSpec, options);
|
|
139
|
-
};
|
|
140
|
-
/**
|
|
141
|
-
* Restarts all containers in a container group in place. If container image has updates, new image
|
|
142
|
-
* will be downloaded.
|
|
143
|
-
* @summary Restarts all containers in a container group.
|
|
144
|
-
* @param resourceGroupName The name of the resource group.
|
|
145
|
-
* @param containerGroupName The name of the container group.
|
|
146
|
-
* @param [options] The optional parameters
|
|
147
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
148
|
-
*/
|
|
149
|
-
ContainerGroups.prototype.beginRestart = function (resourceGroupName, containerGroupName, options) {
|
|
150
|
-
return this.client.sendLRORequest({
|
|
151
|
-
resourceGroupName: resourceGroupName,
|
|
152
|
-
containerGroupName: containerGroupName,
|
|
153
|
-
options: options
|
|
154
|
-
}, beginRestartOperationSpec, options);
|
|
155
|
-
};
|
|
156
|
-
/**
|
|
157
|
-
* Starts all containers in a container group. Compute resources will be allocated and billing will
|
|
158
|
-
* start.
|
|
159
|
-
* @summary Starts all containers in a container group.
|
|
160
|
-
* @param resourceGroupName The name of the resource group.
|
|
161
|
-
* @param containerGroupName The name of the container group.
|
|
162
|
-
* @param [options] The optional parameters
|
|
163
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
164
|
-
*/
|
|
165
|
-
ContainerGroups.prototype.beginStart = function (resourceGroupName, containerGroupName, options) {
|
|
166
|
-
return this.client.sendLRORequest({
|
|
167
|
-
resourceGroupName: resourceGroupName,
|
|
168
|
-
containerGroupName: containerGroupName,
|
|
169
|
-
options: options
|
|
170
|
-
}, beginStartOperationSpec, options);
|
|
171
|
-
};
|
|
172
|
-
ContainerGroups.prototype.listNext = function (nextPageLink, options, callback) {
|
|
173
|
-
return this.client.sendOperationRequest({
|
|
174
|
-
nextPageLink: nextPageLink,
|
|
175
|
-
options: options
|
|
176
|
-
}, listNextOperationSpec, callback);
|
|
177
|
-
};
|
|
178
|
-
ContainerGroups.prototype.listByResourceGroupNext = function (nextPageLink, options, callback) {
|
|
179
|
-
return this.client.sendOperationRequest({
|
|
180
|
-
nextPageLink: nextPageLink,
|
|
181
|
-
options: options
|
|
182
|
-
}, listByResourceGroupNextOperationSpec, callback);
|
|
183
|
-
};
|
|
184
|
-
return ContainerGroups;
|
|
185
|
-
}());
|
|
186
|
-
export { ContainerGroups };
|
|
187
|
-
// Operation Specifications
|
|
188
|
-
var serializer = new msRest.Serializer(Mappers);
|
|
189
|
-
var listOperationSpec = {
|
|
190
|
-
httpMethod: "GET",
|
|
191
|
-
path: "subscriptions/{subscriptionId}/providers/Microsoft.ContainerInstance/containerGroups",
|
|
192
|
-
urlParameters: [
|
|
193
|
-
Parameters.subscriptionId
|
|
194
|
-
],
|
|
195
|
-
queryParameters: [
|
|
196
|
-
Parameters.apiVersion
|
|
197
|
-
],
|
|
198
|
-
headerParameters: [
|
|
199
|
-
Parameters.acceptLanguage
|
|
200
|
-
],
|
|
201
|
-
responses: {
|
|
202
|
-
200: {
|
|
203
|
-
bodyMapper: Mappers.ContainerGroupListResult
|
|
204
|
-
},
|
|
205
|
-
default: {
|
|
206
|
-
bodyMapper: Mappers.CloudError
|
|
207
|
-
}
|
|
208
|
-
},
|
|
209
|
-
serializer: serializer
|
|
210
|
-
};
|
|
211
|
-
var listByResourceGroupOperationSpec = {
|
|
212
|
-
httpMethod: "GET",
|
|
213
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups",
|
|
214
|
-
urlParameters: [
|
|
215
|
-
Parameters.subscriptionId,
|
|
216
|
-
Parameters.resourceGroupName
|
|
217
|
-
],
|
|
218
|
-
queryParameters: [
|
|
219
|
-
Parameters.apiVersion
|
|
220
|
-
],
|
|
221
|
-
headerParameters: [
|
|
222
|
-
Parameters.acceptLanguage
|
|
223
|
-
],
|
|
224
|
-
responses: {
|
|
225
|
-
200: {
|
|
226
|
-
bodyMapper: Mappers.ContainerGroupListResult
|
|
227
|
-
},
|
|
228
|
-
default: {
|
|
229
|
-
bodyMapper: Mappers.CloudError
|
|
230
|
-
}
|
|
231
|
-
},
|
|
232
|
-
serializer: serializer
|
|
233
|
-
};
|
|
234
|
-
var getOperationSpec = {
|
|
235
|
-
httpMethod: "GET",
|
|
236
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}",
|
|
237
|
-
urlParameters: [
|
|
238
|
-
Parameters.subscriptionId,
|
|
239
|
-
Parameters.resourceGroupName,
|
|
240
|
-
Parameters.containerGroupName
|
|
241
|
-
],
|
|
242
|
-
queryParameters: [
|
|
243
|
-
Parameters.apiVersion
|
|
244
|
-
],
|
|
245
|
-
headerParameters: [
|
|
246
|
-
Parameters.acceptLanguage
|
|
247
|
-
],
|
|
248
|
-
responses: {
|
|
249
|
-
200: {
|
|
250
|
-
bodyMapper: Mappers.ContainerGroup
|
|
251
|
-
},
|
|
252
|
-
default: {
|
|
253
|
-
bodyMapper: Mappers.CloudError
|
|
254
|
-
}
|
|
255
|
-
},
|
|
256
|
-
serializer: serializer
|
|
257
|
-
};
|
|
258
|
-
var updateOperationSpec = {
|
|
259
|
-
httpMethod: "PATCH",
|
|
260
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}",
|
|
261
|
-
urlParameters: [
|
|
262
|
-
Parameters.subscriptionId,
|
|
263
|
-
Parameters.resourceGroupName,
|
|
264
|
-
Parameters.containerGroupName
|
|
265
|
-
],
|
|
266
|
-
queryParameters: [
|
|
267
|
-
Parameters.apiVersion
|
|
268
|
-
],
|
|
269
|
-
headerParameters: [
|
|
270
|
-
Parameters.acceptLanguage
|
|
271
|
-
],
|
|
272
|
-
requestBody: {
|
|
273
|
-
parameterPath: "resource",
|
|
274
|
-
mapper: __assign(__assign({}, Mappers.Resource), { required: true })
|
|
275
|
-
},
|
|
276
|
-
responses: {
|
|
277
|
-
200: {
|
|
278
|
-
bodyMapper: Mappers.ContainerGroup
|
|
279
|
-
},
|
|
280
|
-
default: {
|
|
281
|
-
bodyMapper: Mappers.CloudError
|
|
282
|
-
}
|
|
283
|
-
},
|
|
284
|
-
serializer: serializer
|
|
285
|
-
};
|
|
286
|
-
var stopOperationSpec = {
|
|
287
|
-
httpMethod: "POST",
|
|
288
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/stop",
|
|
289
|
-
urlParameters: [
|
|
290
|
-
Parameters.subscriptionId,
|
|
291
|
-
Parameters.resourceGroupName,
|
|
292
|
-
Parameters.containerGroupName
|
|
293
|
-
],
|
|
294
|
-
queryParameters: [
|
|
295
|
-
Parameters.apiVersion
|
|
296
|
-
],
|
|
297
|
-
headerParameters: [
|
|
298
|
-
Parameters.acceptLanguage
|
|
299
|
-
],
|
|
300
|
-
responses: {
|
|
301
|
-
204: {},
|
|
302
|
-
default: {
|
|
303
|
-
bodyMapper: Mappers.CloudError
|
|
304
|
-
}
|
|
305
|
-
},
|
|
306
|
-
serializer: serializer
|
|
307
|
-
};
|
|
308
|
-
var beginCreateOrUpdateOperationSpec = {
|
|
309
|
-
httpMethod: "PUT",
|
|
310
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}",
|
|
311
|
-
urlParameters: [
|
|
312
|
-
Parameters.subscriptionId,
|
|
313
|
-
Parameters.resourceGroupName,
|
|
314
|
-
Parameters.containerGroupName
|
|
315
|
-
],
|
|
316
|
-
queryParameters: [
|
|
317
|
-
Parameters.apiVersion
|
|
318
|
-
],
|
|
319
|
-
headerParameters: [
|
|
320
|
-
Parameters.acceptLanguage
|
|
321
|
-
],
|
|
322
|
-
requestBody: {
|
|
323
|
-
parameterPath: "containerGroup",
|
|
324
|
-
mapper: __assign(__assign({}, Mappers.ContainerGroup), { required: true })
|
|
325
|
-
},
|
|
326
|
-
responses: {
|
|
327
|
-
200: {
|
|
328
|
-
bodyMapper: Mappers.ContainerGroup
|
|
329
|
-
},
|
|
330
|
-
201: {
|
|
331
|
-
bodyMapper: Mappers.ContainerGroup
|
|
332
|
-
},
|
|
333
|
-
default: {
|
|
334
|
-
bodyMapper: Mappers.CloudError
|
|
335
|
-
}
|
|
336
|
-
},
|
|
337
|
-
serializer: serializer
|
|
338
|
-
};
|
|
339
|
-
var beginDeleteMethodOperationSpec = {
|
|
340
|
-
httpMethod: "DELETE",
|
|
341
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}",
|
|
342
|
-
urlParameters: [
|
|
343
|
-
Parameters.subscriptionId,
|
|
344
|
-
Parameters.resourceGroupName,
|
|
345
|
-
Parameters.containerGroupName
|
|
346
|
-
],
|
|
347
|
-
queryParameters: [
|
|
348
|
-
Parameters.apiVersion
|
|
349
|
-
],
|
|
350
|
-
headerParameters: [
|
|
351
|
-
Parameters.acceptLanguage
|
|
352
|
-
],
|
|
353
|
-
responses: {
|
|
354
|
-
200: {
|
|
355
|
-
bodyMapper: Mappers.ContainerGroup
|
|
356
|
-
},
|
|
357
|
-
202: {},
|
|
358
|
-
204: {},
|
|
359
|
-
default: {
|
|
360
|
-
bodyMapper: Mappers.CloudError
|
|
361
|
-
}
|
|
362
|
-
},
|
|
363
|
-
serializer: serializer
|
|
364
|
-
};
|
|
365
|
-
var beginRestartOperationSpec = {
|
|
366
|
-
httpMethod: "POST",
|
|
367
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/restart",
|
|
368
|
-
urlParameters: [
|
|
369
|
-
Parameters.subscriptionId,
|
|
370
|
-
Parameters.resourceGroupName,
|
|
371
|
-
Parameters.containerGroupName
|
|
372
|
-
],
|
|
373
|
-
queryParameters: [
|
|
374
|
-
Parameters.apiVersion
|
|
375
|
-
],
|
|
376
|
-
headerParameters: [
|
|
377
|
-
Parameters.acceptLanguage
|
|
378
|
-
],
|
|
379
|
-
responses: {
|
|
380
|
-
204: {},
|
|
381
|
-
default: {
|
|
382
|
-
bodyMapper: Mappers.CloudError
|
|
383
|
-
}
|
|
384
|
-
},
|
|
385
|
-
serializer: serializer
|
|
386
|
-
};
|
|
387
|
-
var beginStartOperationSpec = {
|
|
388
|
-
httpMethod: "POST",
|
|
389
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/start",
|
|
390
|
-
urlParameters: [
|
|
391
|
-
Parameters.subscriptionId,
|
|
392
|
-
Parameters.resourceGroupName,
|
|
393
|
-
Parameters.containerGroupName
|
|
394
|
-
],
|
|
395
|
-
queryParameters: [
|
|
396
|
-
Parameters.apiVersion
|
|
397
|
-
],
|
|
398
|
-
headerParameters: [
|
|
399
|
-
Parameters.acceptLanguage
|
|
400
|
-
],
|
|
401
|
-
responses: {
|
|
402
|
-
202: {},
|
|
403
|
-
default: {
|
|
404
|
-
bodyMapper: Mappers.CloudError
|
|
405
|
-
}
|
|
406
|
-
},
|
|
407
|
-
serializer: serializer
|
|
408
|
-
};
|
|
409
|
-
var listNextOperationSpec = {
|
|
410
|
-
httpMethod: "GET",
|
|
411
|
-
baseUrl: "https://management.azure.com",
|
|
412
|
-
path: "{nextLink}",
|
|
413
|
-
urlParameters: [
|
|
414
|
-
Parameters.nextPageLink
|
|
415
|
-
],
|
|
416
|
-
queryParameters: [
|
|
417
|
-
Parameters.apiVersion
|
|
418
|
-
],
|
|
419
|
-
headerParameters: [
|
|
420
|
-
Parameters.acceptLanguage
|
|
421
|
-
],
|
|
422
|
-
responses: {
|
|
423
|
-
200: {
|
|
424
|
-
bodyMapper: Mappers.ContainerGroupListResult
|
|
425
|
-
},
|
|
426
|
-
default: {
|
|
427
|
-
bodyMapper: Mappers.CloudError
|
|
428
|
-
}
|
|
429
|
-
},
|
|
430
|
-
serializer: serializer
|
|
431
|
-
};
|
|
432
|
-
var listByResourceGroupNextOperationSpec = {
|
|
433
|
-
httpMethod: "GET",
|
|
434
|
-
baseUrl: "https://management.azure.com",
|
|
435
|
-
path: "{nextLink}",
|
|
436
|
-
urlParameters: [
|
|
437
|
-
Parameters.nextPageLink
|
|
438
|
-
],
|
|
439
|
-
queryParameters: [
|
|
440
|
-
Parameters.apiVersion
|
|
441
|
-
],
|
|
442
|
-
headerParameters: [
|
|
443
|
-
Parameters.acceptLanguage
|
|
444
|
-
],
|
|
445
|
-
responses: {
|
|
446
|
-
200: {
|
|
447
|
-
bodyMapper: Mappers.ContainerGroupListResult
|
|
448
|
-
},
|
|
449
|
-
default: {
|
|
450
|
-
bodyMapper: Mappers.CloudError
|
|
451
|
-
}
|
|
452
|
-
},
|
|
453
|
-
serializer: serializer
|
|
454
|
-
};
|
|
455
|
-
//# sourceMappingURL=containerGroups.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerGroups.js","sourceRoot":"","sources":["../../src/operations/containerGroups.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
-
import * as Models from "../models";
|
|
3
|
-
import { ContainerInstanceManagementClientContext } from "../containerInstanceManagementClientContext";
|
|
4
|
-
/** Class representing a Containers. */
|
|
5
|
-
export declare class Containers {
|
|
6
|
-
private readonly client;
|
|
7
|
-
/**
|
|
8
|
-
* Create a Containers.
|
|
9
|
-
* @param {ContainerInstanceManagementClientContext} client Reference to the service client.
|
|
10
|
-
*/
|
|
11
|
-
constructor(client: ContainerInstanceManagementClientContext);
|
|
12
|
-
/**
|
|
13
|
-
* Get the logs for a specified container instance in a specified resource group and container
|
|
14
|
-
* group.
|
|
15
|
-
* @summary Get the logs for a specified container instance.
|
|
16
|
-
* @param resourceGroupName The name of the resource group.
|
|
17
|
-
* @param containerGroupName The name of the container group.
|
|
18
|
-
* @param containerName The name of the container instance.
|
|
19
|
-
* @param [options] The optional parameters
|
|
20
|
-
* @returns Promise<Models.ContainersListLogsResponse>
|
|
21
|
-
*/
|
|
22
|
-
listLogs(resourceGroupName: string, containerGroupName: string, containerName: string, options?: Models.ContainersListLogsOptionalParams): Promise<Models.ContainersListLogsResponse>;
|
|
23
|
-
/**
|
|
24
|
-
* @param resourceGroupName The name of the resource group.
|
|
25
|
-
* @param containerGroupName The name of the container group.
|
|
26
|
-
* @param containerName The name of the container instance.
|
|
27
|
-
* @param callback The callback
|
|
28
|
-
*/
|
|
29
|
-
listLogs(resourceGroupName: string, containerGroupName: string, containerName: string, callback: msRest.ServiceCallback<Models.Logs>): void;
|
|
30
|
-
/**
|
|
31
|
-
* @param resourceGroupName The name of the resource group.
|
|
32
|
-
* @param containerGroupName The name of the container group.
|
|
33
|
-
* @param containerName The name of the container instance.
|
|
34
|
-
* @param options The optional parameters
|
|
35
|
-
* @param callback The callback
|
|
36
|
-
*/
|
|
37
|
-
listLogs(resourceGroupName: string, containerGroupName: string, containerName: string, options: Models.ContainersListLogsOptionalParams, callback: msRest.ServiceCallback<Models.Logs>): void;
|
|
38
|
-
/**
|
|
39
|
-
* Executes a command for a specific container instance in a specified resource group and container
|
|
40
|
-
* group.
|
|
41
|
-
* @summary Executes a command in a specific container instance.
|
|
42
|
-
* @param resourceGroupName The name of the resource group.
|
|
43
|
-
* @param containerGroupName The name of the container group.
|
|
44
|
-
* @param containerName The name of the container instance.
|
|
45
|
-
* @param containerExecRequest The request for the exec command.
|
|
46
|
-
* @param [options] The optional parameters
|
|
47
|
-
* @returns Promise<Models.ContainersExecuteCommandResponse>
|
|
48
|
-
*/
|
|
49
|
-
executeCommand(resourceGroupName: string, containerGroupName: string, containerName: string, containerExecRequest: Models.ContainerExecRequest, options?: msRest.RequestOptionsBase): Promise<Models.ContainersExecuteCommandResponse>;
|
|
50
|
-
/**
|
|
51
|
-
* @param resourceGroupName The name of the resource group.
|
|
52
|
-
* @param containerGroupName The name of the container group.
|
|
53
|
-
* @param containerName The name of the container instance.
|
|
54
|
-
* @param containerExecRequest The request for the exec command.
|
|
55
|
-
* @param callback The callback
|
|
56
|
-
*/
|
|
57
|
-
executeCommand(resourceGroupName: string, containerGroupName: string, containerName: string, containerExecRequest: Models.ContainerExecRequest, callback: msRest.ServiceCallback<Models.ContainerExecResponse>): void;
|
|
58
|
-
/**
|
|
59
|
-
* @param resourceGroupName The name of the resource group.
|
|
60
|
-
* @param containerGroupName The name of the container group.
|
|
61
|
-
* @param containerName The name of the container instance.
|
|
62
|
-
* @param containerExecRequest The request for the exec command.
|
|
63
|
-
* @param options The optional parameters
|
|
64
|
-
* @param callback The callback
|
|
65
|
-
*/
|
|
66
|
-
executeCommand(resourceGroupName: string, containerGroupName: string, containerName: string, containerExecRequest: Models.ContainerExecRequest, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ContainerExecResponse>): void;
|
|
67
|
-
/**
|
|
68
|
-
* Attach to the output stream of a specific container instance in a specified resource group and
|
|
69
|
-
* container group.
|
|
70
|
-
* @summary Attach to the output of a specific container instance.
|
|
71
|
-
* @param resourceGroupName The name of the resource group.
|
|
72
|
-
* @param containerGroupName The name of the container group.
|
|
73
|
-
* @param containerName The name of the container instance.
|
|
74
|
-
* @param [options] The optional parameters
|
|
75
|
-
* @returns Promise<Models.ContainersAttachResponse>
|
|
76
|
-
*/
|
|
77
|
-
attach(resourceGroupName: string, containerGroupName: string, containerName: string, options?: msRest.RequestOptionsBase): Promise<Models.ContainersAttachResponse>;
|
|
78
|
-
/**
|
|
79
|
-
* @param resourceGroupName The name of the resource group.
|
|
80
|
-
* @param containerGroupName The name of the container group.
|
|
81
|
-
* @param containerName The name of the container instance.
|
|
82
|
-
* @param callback The callback
|
|
83
|
-
*/
|
|
84
|
-
attach(resourceGroupName: string, containerGroupName: string, containerName: string, callback: msRest.ServiceCallback<Models.ContainerAttachResponse>): void;
|
|
85
|
-
/**
|
|
86
|
-
* @param resourceGroupName The name of the resource group.
|
|
87
|
-
* @param containerGroupName The name of the container group.
|
|
88
|
-
* @param containerName The name of the container instance.
|
|
89
|
-
* @param options The optional parameters
|
|
90
|
-
* @param callback The callback
|
|
91
|
-
*/
|
|
92
|
-
attach(resourceGroupName: string, containerGroupName: string, containerName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.ContainerAttachResponse>): void;
|
|
93
|
-
}
|
|
94
|
-
//# sourceMappingURL=containers.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containers.d.ts","sourceRoot":"","sources":["../../src/operations/containers.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,MAAM,MAAM,WAAW,CAAC;AAGpC,OAAO,EAAE,wCAAwC,EAAE,MAAM,6CAA6C,CAAC;AAEvG,uCAAuC;AACvC,qBAAa,UAAU;IACrB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAA2C;IAElE;;;OAGG;gBACS,MAAM,EAAE,wCAAwC;IAI5D;;;;;;;;;OASG;IACH,QAAQ,CAAC,iBAAiB,EAAE,MAAM,EAAE,kBAAkB,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,gCAAgC,GAAG,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAAC;IACrL;;;;;OAKG;IACH,QAAQ,CAAC,iBAAiB,EAAE,MAAM,EAAE,kBAAkB,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI;IAC3I;;;;;;OAMG;IACH,QAAQ,CAAC,iBAAiB,EAAE,MAAM,EAAE,kBAAkB,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,gCAAgC,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI;IAa7L;;;;;;;;;;OAUG;IACH,cAAc,CAAC,iBAAiB,EAAE,MAAM,EAAE,kBAAkB,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,oBAAoB,EAAE,MAAM,CAAC,oBAAoB,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,gCAAgC,CAAC;IACtO;;;;;;OAMG;IACH,cAAc,CAAC,iBAAiB,EAAE,MAAM,EAAE,kBAAkB,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,oBAAoB,EAAE,MAAM,CAAC,oBAAoB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,qBAAqB,CAAC,GAAG,IAAI;IACrN;;;;;;;OAOG;IACH,cAAc,CAAC,iBAAiB,EAAE,MAAM,EAAE,kBAAkB,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,oBAAoB,EAAE,MAAM,CAAC,oBAAoB,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,qBAAqB,CAAC,GAAG,IAAI;IAczP;;;;;;;;;OASG;IACH,MAAM,CAAC,iBAAiB,EAAE,MAAM,EAAE,kBAAkB,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,wBAAwB,CAAC;IACnK;;;;;OAKG;IACH,MAAM,CAAC,iBAAiB,EAAE,MAAM,EAAE,kBAAkB,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,IAAI;IAC5J;;;;;;OAMG;IACH,MAAM,CAAC,iBAAiB,EAAE,MAAM,EAAE,kBAAkB,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,uBAAuB,CAAC,GAAG,IAAI;CAYjM"}
|