@azure/arm-msi 1.2.1 → 2.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 +69 -80
- package/dist/index.js +1029 -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/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/managedServiceIdentityClient.d.ts +20 -0
- package/dist-esm/src/managedServiceIdentityClient.d.ts.map +1 -0
- package/dist-esm/src/managedServiceIdentityClient.js +53 -0
- package/dist-esm/src/managedServiceIdentityClient.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +212 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +9 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +14 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/dist-esm/src/models/mappers.js +325 -0
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +13 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +113 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +4 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +11 -0
- package/dist-esm/src/operations/index.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/operations/systemAssignedIdentities.d.ts +20 -0
- package/dist-esm/src/operations/systemAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operations/systemAssignedIdentities.js +48 -0
- package/dist-esm/src/operations/systemAssignedIdentities.js.map +1 -0
- package/dist-esm/src/operations/userAssignedIdentities.d.ts +83 -0
- package/dist-esm/src/operations/userAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operations/userAssignedIdentities.js +359 -0
- package/dist-esm/src/operations/userAssignedIdentities.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +11 -0
- package/dist-esm/src/operationsInterfaces/index.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/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts +12 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js +9 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts +47 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js +9 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +66 -33
- package/review/arm-msi.api.md +218 -0
- package/rollup.config.js +184 -27
- package/src/index.ts +12 -0
- package/src/managedServiceIdentityClient.ts +74 -37
- package/src/models/index.ts +194 -304
- package/src/models/mappers.ts +245 -85
- package/src/models/parameters.ts +83 -24
- package/src/operations/index.ts +4 -5
- package/src/operations/operations.ts +87 -73
- package/src/operations/systemAssignedIdentities.ts +65 -0
- package/src/operations/userAssignedIdentities.ts +278 -307
- package/src/operationsInterfaces/index.ts +11 -0
- package/src/operationsInterfaces/operations.ts +22 -0
- package/src/operationsInterfaces/systemAssignedIdentities.ts +26 -0
- package/src/operationsInterfaces/userAssignedIdentities.ts +91 -0
- package/tsconfig.json +4 -4
- package/types/arm-msi.d.ts +330 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-msi.js +0 -830
- package/dist/arm-msi.js.map +0 -1
- package/dist/arm-msi.min.js +0 -1
- package/dist/arm-msi.min.js.map +0 -1
- package/esm/managedServiceIdentityClient.d.ts +0 -25
- package/esm/managedServiceIdentityClient.d.ts.map +0 -1
- package/esm/managedServiceIdentityClient.js +0 -39
- package/esm/managedServiceIdentityClient.js.map +0 -1
- package/esm/managedServiceIdentityClientContext.d.ts +0 -22
- package/esm/managedServiceIdentityClientContext.d.ts.map +0 -1
- package/esm/managedServiceIdentityClientContext.js +0 -61
- package/esm/managedServiceIdentityClientContext.js.map +0 -1
- package/esm/models/index.d.ts +0 -332
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -10
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -9
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js +0 -197
- 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 +0 -11
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -8
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -71
- package/esm/models/parameters.js.map +0 -1
- package/esm/models/userAssignedIdentitiesMappers.d.ts +0 -2
- package/esm/models/userAssignedIdentitiesMappers.d.ts.map +0 -1
- package/esm/models/userAssignedIdentitiesMappers.js +0 -11
- package/esm/models/userAssignedIdentitiesMappers.js.map +0 -1
- package/esm/operations/index.d.ts +0 -3
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js +0 -12
- package/esm/operations/index.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 -77
- package/esm/operations/operations.js.map +0 -1
- package/esm/operations/userAssignedIdentities.d.ts +0 -172
- package/esm/operations/userAssignedIdentities.d.ts.map +0 -1
- package/esm/operations/userAssignedIdentities.js +0 -272
- package/esm/operations/userAssignedIdentities.js.map +0 -1
- package/src/managedServiceIdentityClientContext.ts +0 -68
- package/src/models/operationsMappers.ts +0 -17
- package/src/models/userAssignedIdentitiesMappers.ts +0 -17
@@ -0,0 +1,325 @@
|
|
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 regenerated.
|
7
|
+
*/
|
8
|
+
export const Resource = {
|
9
|
+
type: {
|
10
|
+
name: "Composite",
|
11
|
+
className: "Resource",
|
12
|
+
modelProperties: {
|
13
|
+
id: {
|
14
|
+
serializedName: "id",
|
15
|
+
readOnly: true,
|
16
|
+
type: {
|
17
|
+
name: "String"
|
18
|
+
}
|
19
|
+
},
|
20
|
+
name: {
|
21
|
+
serializedName: "name",
|
22
|
+
readOnly: true,
|
23
|
+
type: {
|
24
|
+
name: "String"
|
25
|
+
}
|
26
|
+
},
|
27
|
+
type: {
|
28
|
+
serializedName: "type",
|
29
|
+
readOnly: true,
|
30
|
+
type: {
|
31
|
+
name: "String"
|
32
|
+
}
|
33
|
+
}
|
34
|
+
}
|
35
|
+
}
|
36
|
+
};
|
37
|
+
export const CloudError = {
|
38
|
+
type: {
|
39
|
+
name: "Composite",
|
40
|
+
className: "CloudError",
|
41
|
+
modelProperties: {
|
42
|
+
error: {
|
43
|
+
serializedName: "error",
|
44
|
+
type: {
|
45
|
+
name: "Composite",
|
46
|
+
className: "CloudErrorBody"
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
};
|
52
|
+
export const CloudErrorBody = {
|
53
|
+
type: {
|
54
|
+
name: "Composite",
|
55
|
+
className: "CloudErrorBody",
|
56
|
+
modelProperties: {
|
57
|
+
code: {
|
58
|
+
serializedName: "code",
|
59
|
+
type: {
|
60
|
+
name: "String"
|
61
|
+
}
|
62
|
+
},
|
63
|
+
message: {
|
64
|
+
serializedName: "message",
|
65
|
+
type: {
|
66
|
+
name: "String"
|
67
|
+
}
|
68
|
+
},
|
69
|
+
target: {
|
70
|
+
serializedName: "target",
|
71
|
+
type: {
|
72
|
+
name: "String"
|
73
|
+
}
|
74
|
+
},
|
75
|
+
details: {
|
76
|
+
serializedName: "details",
|
77
|
+
type: {
|
78
|
+
name: "Sequence",
|
79
|
+
element: {
|
80
|
+
type: {
|
81
|
+
name: "Composite",
|
82
|
+
className: "CloudErrorBody"
|
83
|
+
}
|
84
|
+
}
|
85
|
+
}
|
86
|
+
}
|
87
|
+
}
|
88
|
+
}
|
89
|
+
};
|
90
|
+
export const OperationListResult = {
|
91
|
+
type: {
|
92
|
+
name: "Composite",
|
93
|
+
className: "OperationListResult",
|
94
|
+
modelProperties: {
|
95
|
+
value: {
|
96
|
+
serializedName: "value",
|
97
|
+
type: {
|
98
|
+
name: "Sequence",
|
99
|
+
element: {
|
100
|
+
type: {
|
101
|
+
name: "Composite",
|
102
|
+
className: "Operation"
|
103
|
+
}
|
104
|
+
}
|
105
|
+
}
|
106
|
+
},
|
107
|
+
nextLink: {
|
108
|
+
serializedName: "nextLink",
|
109
|
+
type: {
|
110
|
+
name: "String"
|
111
|
+
}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
}
|
115
|
+
};
|
116
|
+
export const Operation = {
|
117
|
+
type: {
|
118
|
+
name: "Composite",
|
119
|
+
className: "Operation",
|
120
|
+
modelProperties: {
|
121
|
+
name: {
|
122
|
+
serializedName: "name",
|
123
|
+
type: {
|
124
|
+
name: "String"
|
125
|
+
}
|
126
|
+
},
|
127
|
+
display: {
|
128
|
+
serializedName: "display",
|
129
|
+
type: {
|
130
|
+
name: "Composite",
|
131
|
+
className: "OperationDisplay"
|
132
|
+
}
|
133
|
+
}
|
134
|
+
}
|
135
|
+
}
|
136
|
+
};
|
137
|
+
export const OperationDisplay = {
|
138
|
+
type: {
|
139
|
+
name: "Composite",
|
140
|
+
className: "OperationDisplay",
|
141
|
+
modelProperties: {
|
142
|
+
provider: {
|
143
|
+
serializedName: "provider",
|
144
|
+
type: {
|
145
|
+
name: "String"
|
146
|
+
}
|
147
|
+
},
|
148
|
+
operation: {
|
149
|
+
serializedName: "operation",
|
150
|
+
type: {
|
151
|
+
name: "String"
|
152
|
+
}
|
153
|
+
},
|
154
|
+
resource: {
|
155
|
+
serializedName: "resource",
|
156
|
+
type: {
|
157
|
+
name: "String"
|
158
|
+
}
|
159
|
+
},
|
160
|
+
description: {
|
161
|
+
serializedName: "description",
|
162
|
+
type: {
|
163
|
+
name: "String"
|
164
|
+
}
|
165
|
+
}
|
166
|
+
}
|
167
|
+
}
|
168
|
+
};
|
169
|
+
export const UserAssignedIdentitiesListResult = {
|
170
|
+
type: {
|
171
|
+
name: "Composite",
|
172
|
+
className: "UserAssignedIdentitiesListResult",
|
173
|
+
modelProperties: {
|
174
|
+
value: {
|
175
|
+
serializedName: "value",
|
176
|
+
type: {
|
177
|
+
name: "Sequence",
|
178
|
+
element: {
|
179
|
+
type: {
|
180
|
+
name: "Composite",
|
181
|
+
className: "Identity"
|
182
|
+
}
|
183
|
+
}
|
184
|
+
}
|
185
|
+
},
|
186
|
+
nextLink: {
|
187
|
+
serializedName: "nextLink",
|
188
|
+
type: {
|
189
|
+
name: "String"
|
190
|
+
}
|
191
|
+
}
|
192
|
+
}
|
193
|
+
}
|
194
|
+
};
|
195
|
+
export const ProxyResource = {
|
196
|
+
type: {
|
197
|
+
name: "Composite",
|
198
|
+
className: "ProxyResource",
|
199
|
+
modelProperties: Object.assign({}, Resource.type.modelProperties)
|
200
|
+
}
|
201
|
+
};
|
202
|
+
export const TrackedResource = {
|
203
|
+
type: {
|
204
|
+
name: "Composite",
|
205
|
+
className: "TrackedResource",
|
206
|
+
modelProperties: Object.assign(Object.assign({}, Resource.type.modelProperties), { tags: {
|
207
|
+
serializedName: "tags",
|
208
|
+
type: {
|
209
|
+
name: "Dictionary",
|
210
|
+
value: { type: { name: "String" } }
|
211
|
+
}
|
212
|
+
}, location: {
|
213
|
+
serializedName: "location",
|
214
|
+
required: true,
|
215
|
+
type: {
|
216
|
+
name: "String"
|
217
|
+
}
|
218
|
+
} })
|
219
|
+
}
|
220
|
+
};
|
221
|
+
export const IdentityUpdate = {
|
222
|
+
type: {
|
223
|
+
name: "Composite",
|
224
|
+
className: "IdentityUpdate",
|
225
|
+
modelProperties: Object.assign(Object.assign({}, Resource.type.modelProperties), { location: {
|
226
|
+
serializedName: "location",
|
227
|
+
type: {
|
228
|
+
name: "String"
|
229
|
+
}
|
230
|
+
}, tags: {
|
231
|
+
serializedName: "tags",
|
232
|
+
type: {
|
233
|
+
name: "Dictionary",
|
234
|
+
value: { type: { name: "String" } }
|
235
|
+
}
|
236
|
+
}, tenantId: {
|
237
|
+
serializedName: "properties.tenantId",
|
238
|
+
readOnly: true,
|
239
|
+
type: {
|
240
|
+
name: "Uuid"
|
241
|
+
}
|
242
|
+
}, principalId: {
|
243
|
+
serializedName: "properties.principalId",
|
244
|
+
readOnly: true,
|
245
|
+
type: {
|
246
|
+
name: "Uuid"
|
247
|
+
}
|
248
|
+
}, clientId: {
|
249
|
+
serializedName: "properties.clientId",
|
250
|
+
readOnly: true,
|
251
|
+
type: {
|
252
|
+
name: "Uuid"
|
253
|
+
}
|
254
|
+
} })
|
255
|
+
}
|
256
|
+
};
|
257
|
+
export const SystemAssignedIdentity = {
|
258
|
+
type: {
|
259
|
+
name: "Composite",
|
260
|
+
className: "SystemAssignedIdentity",
|
261
|
+
modelProperties: Object.assign(Object.assign({}, ProxyResource.type.modelProperties), { location: {
|
262
|
+
serializedName: "location",
|
263
|
+
required: true,
|
264
|
+
type: {
|
265
|
+
name: "String"
|
266
|
+
}
|
267
|
+
}, tags: {
|
268
|
+
serializedName: "tags",
|
269
|
+
type: {
|
270
|
+
name: "Dictionary",
|
271
|
+
value: { type: { name: "String" } }
|
272
|
+
}
|
273
|
+
}, tenantId: {
|
274
|
+
serializedName: "properties.tenantId",
|
275
|
+
readOnly: true,
|
276
|
+
type: {
|
277
|
+
name: "Uuid"
|
278
|
+
}
|
279
|
+
}, principalId: {
|
280
|
+
serializedName: "properties.principalId",
|
281
|
+
readOnly: true,
|
282
|
+
type: {
|
283
|
+
name: "Uuid"
|
284
|
+
}
|
285
|
+
}, clientId: {
|
286
|
+
serializedName: "properties.clientId",
|
287
|
+
readOnly: true,
|
288
|
+
type: {
|
289
|
+
name: "Uuid"
|
290
|
+
}
|
291
|
+
}, clientSecretUrl: {
|
292
|
+
serializedName: "properties.clientSecretUrl",
|
293
|
+
readOnly: true,
|
294
|
+
type: {
|
295
|
+
name: "String"
|
296
|
+
}
|
297
|
+
} })
|
298
|
+
}
|
299
|
+
};
|
300
|
+
export const Identity = {
|
301
|
+
type: {
|
302
|
+
name: "Composite",
|
303
|
+
className: "Identity",
|
304
|
+
modelProperties: Object.assign(Object.assign({}, TrackedResource.type.modelProperties), { tenantId: {
|
305
|
+
serializedName: "properties.tenantId",
|
306
|
+
readOnly: true,
|
307
|
+
type: {
|
308
|
+
name: "Uuid"
|
309
|
+
}
|
310
|
+
}, principalId: {
|
311
|
+
serializedName: "properties.principalId",
|
312
|
+
readOnly: true,
|
313
|
+
type: {
|
314
|
+
name: "Uuid"
|
315
|
+
}
|
316
|
+
}, clientId: {
|
317
|
+
serializedName: "properties.clientId",
|
318
|
+
readOnly: true,
|
319
|
+
type: {
|
320
|
+
name: "Uuid"
|
321
|
+
}
|
322
|
+
} })
|
323
|
+
}
|
324
|
+
};
|
325
|
+
//# sourceMappingURL=mappers.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"mappers.js","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { OperationParameter, OperationURLParameter, OperationQueryParameter } from "@azure/core-client";
|
2
|
+
export declare const accept: OperationParameter;
|
3
|
+
export declare const $host: OperationURLParameter;
|
4
|
+
export declare const scope: OperationURLParameter;
|
5
|
+
export declare const apiVersion: OperationQueryParameter;
|
6
|
+
export declare const nextLink: OperationURLParameter;
|
7
|
+
export declare const subscriptionId: OperationURLParameter;
|
8
|
+
export declare const resourceGroupName: OperationURLParameter;
|
9
|
+
export declare const contentType: OperationParameter;
|
10
|
+
export declare const parameters: OperationParameter;
|
11
|
+
export declare const resourceName: OperationURLParameter;
|
12
|
+
export declare const parameters1: OperationParameter;
|
13
|
+
//# sourceMappingURL=parameters.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"parameters.d.ts","sourceRoot":"","sources":["../../../src/models/parameters.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,kBAAkB,EAClB,qBAAqB,EACrB,uBAAuB,EACxB,MAAM,oBAAoB,CAAC;AAM5B,eAAO,MAAM,MAAM,EAAE,kBAUpB,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,qBAUnB,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,qBAUnB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,uBAUxB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,qBAUtB,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,qBAS5B,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,qBAS/B,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,kBAUzB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,kBAGxB,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,qBAS1B,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,kBAGzB,CAAC"}
|
@@ -0,0 +1,113 @@
|
|
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 regenerated.
|
7
|
+
*/
|
8
|
+
import { Identity as IdentityMapper, IdentityUpdate as IdentityUpdateMapper } from "../models/mappers";
|
9
|
+
export const accept = {
|
10
|
+
parameterPath: "accept",
|
11
|
+
mapper: {
|
12
|
+
defaultValue: "application/json",
|
13
|
+
isConstant: true,
|
14
|
+
serializedName: "Accept",
|
15
|
+
type: {
|
16
|
+
name: "String"
|
17
|
+
}
|
18
|
+
}
|
19
|
+
};
|
20
|
+
export const $host = {
|
21
|
+
parameterPath: "$host",
|
22
|
+
mapper: {
|
23
|
+
serializedName: "$host",
|
24
|
+
required: true,
|
25
|
+
type: {
|
26
|
+
name: "String"
|
27
|
+
}
|
28
|
+
},
|
29
|
+
skipEncoding: true
|
30
|
+
};
|
31
|
+
export const scope = {
|
32
|
+
parameterPath: "scope",
|
33
|
+
mapper: {
|
34
|
+
serializedName: "scope",
|
35
|
+
required: true,
|
36
|
+
type: {
|
37
|
+
name: "String"
|
38
|
+
}
|
39
|
+
},
|
40
|
+
skipEncoding: true
|
41
|
+
};
|
42
|
+
export const apiVersion = {
|
43
|
+
parameterPath: "apiVersion",
|
44
|
+
mapper: {
|
45
|
+
defaultValue: "2018-11-30",
|
46
|
+
isConstant: true,
|
47
|
+
serializedName: "api-version",
|
48
|
+
type: {
|
49
|
+
name: "String"
|
50
|
+
}
|
51
|
+
}
|
52
|
+
};
|
53
|
+
export const nextLink = {
|
54
|
+
parameterPath: "nextLink",
|
55
|
+
mapper: {
|
56
|
+
serializedName: "nextLink",
|
57
|
+
required: true,
|
58
|
+
type: {
|
59
|
+
name: "String"
|
60
|
+
}
|
61
|
+
},
|
62
|
+
skipEncoding: true
|
63
|
+
};
|
64
|
+
export const subscriptionId = {
|
65
|
+
parameterPath: "subscriptionId",
|
66
|
+
mapper: {
|
67
|
+
serializedName: "subscriptionId",
|
68
|
+
required: true,
|
69
|
+
type: {
|
70
|
+
name: "String"
|
71
|
+
}
|
72
|
+
}
|
73
|
+
};
|
74
|
+
export const resourceGroupName = {
|
75
|
+
parameterPath: "resourceGroupName",
|
76
|
+
mapper: {
|
77
|
+
serializedName: "resourceGroupName",
|
78
|
+
required: true,
|
79
|
+
type: {
|
80
|
+
name: "String"
|
81
|
+
}
|
82
|
+
}
|
83
|
+
};
|
84
|
+
export const contentType = {
|
85
|
+
parameterPath: ["options", "contentType"],
|
86
|
+
mapper: {
|
87
|
+
defaultValue: "application/json",
|
88
|
+
isConstant: true,
|
89
|
+
serializedName: "Content-Type",
|
90
|
+
type: {
|
91
|
+
name: "String"
|
92
|
+
}
|
93
|
+
}
|
94
|
+
};
|
95
|
+
export const parameters = {
|
96
|
+
parameterPath: "parameters",
|
97
|
+
mapper: IdentityMapper
|
98
|
+
};
|
99
|
+
export const resourceName = {
|
100
|
+
parameterPath: "resourceName",
|
101
|
+
mapper: {
|
102
|
+
serializedName: "resourceName",
|
103
|
+
required: true,
|
104
|
+
type: {
|
105
|
+
name: "String"
|
106
|
+
}
|
107
|
+
}
|
108
|
+
};
|
109
|
+
export const parameters1 = {
|
110
|
+
parameterPath: "parameters",
|
111
|
+
mapper: IdentityUpdateMapper
|
112
|
+
};
|
113
|
+
//# sourceMappingURL=parameters.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"parameters.js","sourceRoot":"","sources":["../../../src/models/parameters.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAOH,OAAO,EACL,QAAQ,IAAI,cAAc,EAC1B,cAAc,IAAI,oBAAoB,EACvC,MAAM,mBAAmB,CAAC;AAE3B,MAAM,CAAC,MAAM,MAAM,GAAuB;IACxC,aAAa,EAAE,QAAQ;IACvB,MAAM,EAAE;QACN,YAAY,EAAE,kBAAkB;QAChC,UAAU,EAAE,IAAI;QAChB,cAAc,EAAE,QAAQ;QACxB,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,KAAK,GAA0B;IAC1C,aAAa,EAAE,OAAO;IACtB,MAAM,EAAE;QACN,cAAc,EAAE,OAAO;QACvB,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;IACD,YAAY,EAAE,IAAI;CACnB,CAAC;AAEF,MAAM,CAAC,MAAM,KAAK,GAA0B;IAC1C,aAAa,EAAE,OAAO;IACtB,MAAM,EAAE;QACN,cAAc,EAAE,OAAO;QACvB,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;IACD,YAAY,EAAE,IAAI;CACnB,CAAC;AAEF,MAAM,CAAC,MAAM,UAAU,GAA4B;IACjD,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAE;QACN,YAAY,EAAE,YAAY;QAC1B,UAAU,EAAE,IAAI;QAChB,cAAc,EAAE,aAAa;QAC7B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,QAAQ,GAA0B;IAC7C,aAAa,EAAE,UAAU;IACzB,MAAM,EAAE;QACN,cAAc,EAAE,UAAU;QAC1B,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;IACD,YAAY,EAAE,IAAI;CACnB,CAAC;AAEF,MAAM,CAAC,MAAM,cAAc,GAA0B;IACnD,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,cAAc,EAAE,gBAAgB;QAChC,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAA0B;IACtD,aAAa,EAAE,mBAAmB;IAClC,MAAM,EAAE;QACN,cAAc,EAAE,mBAAmB;QACnC,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,WAAW,GAAuB;IAC7C,aAAa,EAAE,CAAC,SAAS,EAAE,aAAa,CAAC;IACzC,MAAM,EAAE;QACN,YAAY,EAAE,kBAAkB;QAChC,UAAU,EAAE,IAAI;QAChB,cAAc,EAAE,cAAc;QAC9B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,UAAU,GAAuB;IAC5C,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAE,cAAc;CACvB,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAA0B;IACjD,aAAa,EAAE,cAAc;IAC7B,MAAM,EAAE;QACN,cAAc,EAAE,cAAc;QAC9B,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,WAAW,GAAuB;IAC7C,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAE,oBAAoB;CAC7B,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/operations/index.ts"],"names":[],"mappings":"AAQA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,cAAc,CAAC;AAC7B,cAAc,0BAA0B,CAAC"}
|
@@ -0,0 +1,11 @@
|
|
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 regenerated.
|
7
|
+
*/
|
8
|
+
export * from "./systemAssignedIdentities";
|
9
|
+
export * from "./operations";
|
10
|
+
export * from "./userAssignedIdentities";
|
11
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,cAAc,4BAA4B,CAAC;AAC3C,cAAc,cAAc,CAAC;AAC7B,cAAc,0BAA0B,CAAC"}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import { PagedAsyncIterableIterator } from "@azure/core-paging";
|
2
|
+
import { Operations } from "../operationsInterfaces";
|
3
|
+
import { ManagedServiceIdentityClient } from "../managedServiceIdentityClient";
|
4
|
+
import { Operation, OperationsListOptionalParams } from "../models";
|
5
|
+
/** Class containing Operations operations. */
|
6
|
+
export declare class OperationsImpl implements Operations {
|
7
|
+
private readonly client;
|
8
|
+
/**
|
9
|
+
* Initialize a new instance of the class Operations class.
|
10
|
+
* @param client Reference to the service client
|
11
|
+
*/
|
12
|
+
constructor(client: ManagedServiceIdentityClient);
|
13
|
+
/**
|
14
|
+
* Lists available operations for the Microsoft.ManagedIdentity provider
|
15
|
+
* @param options The options parameters.
|
16
|
+
*/
|
17
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
18
|
+
private listPagingPage;
|
19
|
+
private listPagingAll;
|
20
|
+
/**
|
21
|
+
* Lists available operations for the Microsoft.ManagedIdentity provider
|
22
|
+
* @param options The options parameters.
|
23
|
+
*/
|
24
|
+
private _list;
|
25
|
+
/**
|
26
|
+
* ListNext
|
27
|
+
* @param nextLink The nextLink from the previous successful call to the List method.
|
28
|
+
* @param options The options parameters.
|
29
|
+
*/
|
30
|
+
private _listNext;
|
31
|
+
}
|
32
|
+
//# sourceMappingURL=operations.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../../../src/operations/operations.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AAChE,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAIrD,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAC/E,OAAO,EACL,SAAS,EAET,4BAA4B,EAG7B,MAAM,WAAW,CAAC;AAGnB,8CAA8C;AAC9C,qBAAa,cAAe,YAAW,UAAU;IAC/C,OAAO,CAAC,QAAQ,CAAC,MAAM,CAA+B;IAEtD;;;OAGG;gBACS,MAAM,EAAE,4BAA4B;IAIhD;;;OAGG;IACI,IAAI,CACT,OAAO,CAAC,EAAE,4BAA4B,GACrC,0BAA0B,CAAC,SAAS,CAAC;YAezB,cAAc;YAad,aAAa;IAQ5B;;;OAGG;IACH,OAAO,CAAC,KAAK;IAMb;;;;OAIG;IACH,OAAO,CAAC,SAAS;CASlB"}
|
@@ -0,0 +1,120 @@
|
|
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 regenerated.
|
7
|
+
*/
|
8
|
+
import { __asyncDelegator, __asyncGenerator, __asyncValues, __await } from "tslib";
|
9
|
+
import * as coreClient from "@azure/core-client";
|
10
|
+
import * as Mappers from "../models/mappers";
|
11
|
+
import * as Parameters from "../models/parameters";
|
12
|
+
/// <reference lib="esnext.asynciterable" />
|
13
|
+
/** Class containing Operations operations. */
|
14
|
+
export class OperationsImpl {
|
15
|
+
/**
|
16
|
+
* Initialize a new instance of the class Operations class.
|
17
|
+
* @param client Reference to the service client
|
18
|
+
*/
|
19
|
+
constructor(client) {
|
20
|
+
this.client = client;
|
21
|
+
}
|
22
|
+
/**
|
23
|
+
* Lists available operations for the Microsoft.ManagedIdentity provider
|
24
|
+
* @param options The options parameters.
|
25
|
+
*/
|
26
|
+
list(options) {
|
27
|
+
const iter = this.listPagingAll(options);
|
28
|
+
return {
|
29
|
+
next() {
|
30
|
+
return iter.next();
|
31
|
+
},
|
32
|
+
[Symbol.asyncIterator]() {
|
33
|
+
return this;
|
34
|
+
},
|
35
|
+
byPage: () => {
|
36
|
+
return this.listPagingPage(options);
|
37
|
+
}
|
38
|
+
};
|
39
|
+
}
|
40
|
+
listPagingPage(options) {
|
41
|
+
return __asyncGenerator(this, arguments, function* listPagingPage_1() {
|
42
|
+
let result = yield __await(this._list(options));
|
43
|
+
yield yield __await(result.value || []);
|
44
|
+
let continuationToken = result.nextLink;
|
45
|
+
while (continuationToken) {
|
46
|
+
result = yield __await(this._listNext(continuationToken, options));
|
47
|
+
continuationToken = result.nextLink;
|
48
|
+
yield yield __await(result.value || []);
|
49
|
+
}
|
50
|
+
});
|
51
|
+
}
|
52
|
+
listPagingAll(options) {
|
53
|
+
return __asyncGenerator(this, arguments, function* listPagingAll_1() {
|
54
|
+
var e_1, _a;
|
55
|
+
try {
|
56
|
+
for (var _b = __asyncValues(this.listPagingPage(options)), _c; _c = yield __await(_b.next()), !_c.done;) {
|
57
|
+
const page = _c.value;
|
58
|
+
yield __await(yield* __asyncDelegator(__asyncValues(page)));
|
59
|
+
}
|
60
|
+
}
|
61
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
62
|
+
finally {
|
63
|
+
try {
|
64
|
+
if (_c && !_c.done && (_a = _b.return)) yield __await(_a.call(_b));
|
65
|
+
}
|
66
|
+
finally { if (e_1) throw e_1.error; }
|
67
|
+
}
|
68
|
+
});
|
69
|
+
}
|
70
|
+
/**
|
71
|
+
* Lists available operations for the Microsoft.ManagedIdentity provider
|
72
|
+
* @param options The options parameters.
|
73
|
+
*/
|
74
|
+
_list(options) {
|
75
|
+
return this.client.sendOperationRequest({ options }, listOperationSpec);
|
76
|
+
}
|
77
|
+
/**
|
78
|
+
* ListNext
|
79
|
+
* @param nextLink The nextLink from the previous successful call to the List method.
|
80
|
+
* @param options The options parameters.
|
81
|
+
*/
|
82
|
+
_listNext(nextLink, options) {
|
83
|
+
return this.client.sendOperationRequest({ nextLink, options }, listNextOperationSpec);
|
84
|
+
}
|
85
|
+
}
|
86
|
+
// Operation Specifications
|
87
|
+
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
|
88
|
+
const listOperationSpec = {
|
89
|
+
path: "/providers/Microsoft.ManagedIdentity/operations",
|
90
|
+
httpMethod: "GET",
|
91
|
+
responses: {
|
92
|
+
200: {
|
93
|
+
bodyMapper: Mappers.OperationListResult
|
94
|
+
},
|
95
|
+
default: {
|
96
|
+
bodyMapper: Mappers.CloudError
|
97
|
+
}
|
98
|
+
},
|
99
|
+
queryParameters: [Parameters.apiVersion],
|
100
|
+
urlParameters: [Parameters.$host],
|
101
|
+
headerParameters: [Parameters.accept],
|
102
|
+
serializer
|
103
|
+
};
|
104
|
+
const listNextOperationSpec = {
|
105
|
+
path: "{nextLink}",
|
106
|
+
httpMethod: "GET",
|
107
|
+
responses: {
|
108
|
+
200: {
|
109
|
+
bodyMapper: Mappers.OperationListResult
|
110
|
+
},
|
111
|
+
default: {
|
112
|
+
bodyMapper: Mappers.CloudError
|
113
|
+
}
|
114
|
+
},
|
115
|
+
queryParameters: [Parameters.apiVersion],
|
116
|
+
urlParameters: [Parameters.$host, Parameters.nextLink],
|
117
|
+
headerParameters: [Parameters.accept],
|
118
|
+
serializer
|
119
|
+
};
|
120
|
+
//# sourceMappingURL=operations.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"operations.js","sourceRoot":"","sources":["../../../src/operations/operations.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { SystemAssignedIdentities } from "../operationsInterfaces";
|
2
|
+
import { ManagedServiceIdentityClient } from "../managedServiceIdentityClient";
|
3
|
+
import { SystemAssignedIdentitiesGetByScopeOptionalParams, SystemAssignedIdentitiesGetByScopeResponse } from "../models";
|
4
|
+
/** Class containing SystemAssignedIdentities operations. */
|
5
|
+
export declare class SystemAssignedIdentitiesImpl implements SystemAssignedIdentities {
|
6
|
+
private readonly client;
|
7
|
+
/**
|
8
|
+
* Initialize a new instance of the class SystemAssignedIdentities class.
|
9
|
+
* @param client Reference to the service client
|
10
|
+
*/
|
11
|
+
constructor(client: ManagedServiceIdentityClient);
|
12
|
+
/**
|
13
|
+
* Gets the systemAssignedIdentity available under the specified RP scope.
|
14
|
+
* @param scope The resource provider scope of the resource. Parent resource being extended by Managed
|
15
|
+
* Identities.
|
16
|
+
* @param options The options parameters.
|
17
|
+
*/
|
18
|
+
getByScope(scope: string, options?: SystemAssignedIdentitiesGetByScopeOptionalParams): Promise<SystemAssignedIdentitiesGetByScopeResponse>;
|
19
|
+
}
|
20
|
+
//# sourceMappingURL=systemAssignedIdentities.d.ts.map
|