@azure/arm-attestation 1.0.0 → 2.0.1-alpha.20211230.1

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.
Files changed (128) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/{LICENSE.txt → LICENSE} +2 -2
  3. package/README.md +72 -73
  4. package/dist/index.js +1319 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.min.js +1 -0
  7. package/dist/index.min.js.map +1 -0
  8. package/dist-esm/src/attestationManagementClient.d.ts +20 -0
  9. package/dist-esm/src/attestationManagementClient.d.ts.map +1 -0
  10. package/dist-esm/src/attestationManagementClient.js +53 -0
  11. package/dist-esm/src/attestationManagementClient.js.map +1 -0
  12. package/dist-esm/src/index.d.ts +5 -0
  13. package/dist-esm/src/index.d.ts.map +1 -0
  14. package/dist-esm/src/index.js +12 -0
  15. package/dist-esm/src/index.js.map +1 -0
  16. package/dist-esm/src/models/index.d.ts +389 -0
  17. package/dist-esm/src/models/index.d.ts.map +1 -0
  18. package/dist-esm/src/models/index.js +38 -0
  19. package/dist-esm/src/models/index.js.map +1 -0
  20. package/dist-esm/src/models/mappers.d.ts +21 -0
  21. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  22. package/{esm → dist-esm/src}/models/mappers.js +239 -164
  23. package/dist-esm/src/models/mappers.js.map +1 -0
  24. package/dist-esm/src/models/parameters.d.ts +15 -0
  25. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  26. package/dist-esm/src/models/parameters.js +138 -0
  27. package/dist-esm/src/models/parameters.js.map +1 -0
  28. package/dist-esm/src/operations/attestationProviders.d.ts +65 -0
  29. package/dist-esm/src/operations/attestationProviders.d.ts.map +1 -0
  30. package/dist-esm/src/operations/attestationProviders.js +254 -0
  31. package/dist-esm/src/operations/attestationProviders.js.map +1 -0
  32. package/dist-esm/src/operations/index.d.ts +4 -0
  33. package/dist-esm/src/operations/index.d.ts.map +1 -0
  34. package/dist-esm/src/operations/index.js +11 -0
  35. package/dist-esm/src/operations/index.js.map +1 -0
  36. package/dist-esm/src/operations/operations.d.ts +18 -0
  37. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  38. package/dist-esm/src/operations/operations.js +46 -0
  39. package/dist-esm/src/operations/operations.js.map +1 -0
  40. package/dist-esm/src/operations/privateEndpointConnections.d.ts +58 -0
  41. package/dist-esm/src/operations/privateEndpointConnections.d.ts.map +1 -0
  42. package/dist-esm/src/operations/privateEndpointConnections.js +216 -0
  43. package/dist-esm/src/operations/privateEndpointConnections.js.map +1 -0
  44. package/dist-esm/src/operationsInterfaces/attestationProviders.d.ts +57 -0
  45. package/dist-esm/src/operationsInterfaces/attestationProviders.d.ts.map +1 -0
  46. package/dist-esm/src/operationsInterfaces/attestationProviders.js +9 -0
  47. package/dist-esm/src/operationsInterfaces/attestationProviders.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  49. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  50. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  51. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/operations.d.ts +10 -0
  53. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  54. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  55. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  56. package/dist-esm/src/operationsInterfaces/privateEndpointConnections.d.ts +41 -0
  57. package/dist-esm/src/operationsInterfaces/privateEndpointConnections.d.ts.map +1 -0
  58. package/dist-esm/src/operationsInterfaces/privateEndpointConnections.js +9 -0
  59. package/dist-esm/src/operationsInterfaces/privateEndpointConnections.js.map +1 -0
  60. package/dist-esm/test/attestation_examples.d.ts +4 -0
  61. package/dist-esm/test/attestation_examples.d.ts.map +1 -0
  62. package/dist-esm/test/attestation_examples.js +94 -0
  63. package/dist-esm/test/attestation_examples.js.map +1 -0
  64. package/package.json +63 -21
  65. package/review/arm-attestation.api.md +346 -0
  66. package/rollup.config.js +181 -30
  67. package/src/attestationManagementClient.ts +74 -31
  68. package/src/index.ts +12 -0
  69. package/src/models/index.ts +299 -384
  70. package/src/models/mappers.ts +242 -162
  71. package/src/models/parameters.ts +106 -29
  72. package/src/operations/attestationProviders.ts +178 -315
  73. package/src/operations/index.ts +4 -5
  74. package/src/operations/operations.ts +29 -44
  75. package/src/operations/privateEndpointConnections.ts +277 -0
  76. package/src/operationsInterfaces/attestationProviders.ts +111 -0
  77. package/src/operationsInterfaces/index.ts +11 -0
  78. package/src/operationsInterfaces/operations.ts +21 -0
  79. package/src/operationsInterfaces/privateEndpointConnections.ts +78 -0
  80. package/tsconfig.json +3 -3
  81. package/types/arm-attestation.d.ts +565 -0
  82. package/types/tsdoc-metadata.json +11 -0
  83. package/dist/arm-attestation.js +0 -1105
  84. package/dist/arm-attestation.js.map +0 -1
  85. package/dist/arm-attestation.min.js +0 -1
  86. package/dist/arm-attestation.min.js.map +0 -1
  87. package/esm/attestationManagementClient.d.ts +0 -19
  88. package/esm/attestationManagementClient.d.ts.map +0 -1
  89. package/esm/attestationManagementClient.js +0 -34
  90. package/esm/attestationManagementClient.js.map +0 -1
  91. package/esm/attestationManagementClientContext.d.ts +0 -16
  92. package/esm/attestationManagementClientContext.d.ts.map +0 -1
  93. package/esm/attestationManagementClientContext.js +0 -56
  94. package/esm/attestationManagementClientContext.js.map +0 -1
  95. package/esm/models/attestationProvidersMappers.d.ts +0 -2
  96. package/esm/models/attestationProvidersMappers.d.ts.map +0 -1
  97. package/esm/models/attestationProvidersMappers.js +0 -9
  98. package/esm/models/attestationProvidersMappers.js.map +0 -1
  99. package/esm/models/index.d.ts +0 -492
  100. package/esm/models/index.d.ts.map +0 -1
  101. package/esm/models/index.js +0 -8
  102. package/esm/models/index.js.map +0 -1
  103. package/esm/models/mappers.d.ts +0 -19
  104. package/esm/models/mappers.d.ts.map +0 -1
  105. package/esm/models/mappers.js.map +0 -1
  106. package/esm/models/operationsMappers.d.ts +0 -2
  107. package/esm/models/operationsMappers.d.ts.map +0 -1
  108. package/esm/models/operationsMappers.js +0 -9
  109. package/esm/models/operationsMappers.js.map +0 -1
  110. package/esm/models/parameters.d.ts +0 -8
  111. package/esm/models/parameters.d.ts.map +0 -1
  112. package/esm/models/parameters.js +0 -81
  113. package/esm/models/parameters.js.map +0 -1
  114. package/esm/operations/attestationProviders.d.ts +0 -169
  115. package/esm/operations/attestationProviders.d.ts.map +0 -1
  116. package/esm/operations/attestationProviders.js +0 -277
  117. package/esm/operations/attestationProviders.js.map +0 -1
  118. package/esm/operations/index.d.ts +0 -3
  119. package/esm/operations/index.d.ts.map +0 -1
  120. package/esm/operations/index.js +0 -12
  121. package/esm/operations/index.js.map +0 -1
  122. package/esm/operations/operations.d.ts +0 -28
  123. package/esm/operations/operations.d.ts.map +0 -1
  124. package/esm/operations/operations.js +0 -51
  125. package/esm/operations/operations.js.map +0 -1
  126. package/src/attestationManagementClientContext.ts +0 -62
  127. package/src/models/attestationProvidersMappers.ts +0 -24
  128. package/src/models/operationsMappers.ts +0 -15
@@ -1,492 +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
- * Metadata pertaining to creation and last modification of the resource.
6
- */
7
- export interface SystemData {
8
- /**
9
- * The identity that created the resource.
10
- */
11
- createdBy?: string;
12
- /**
13
- * The type of identity that created the resource. Possible values include: 'User',
14
- * 'Application', 'ManagedIdentity', 'Key'
15
- */
16
- createdByType?: CreatedByType;
17
- /**
18
- * The timestamp of resource creation (UTC).
19
- */
20
- createdAt?: Date;
21
- /**
22
- * The identity that last modified the resource.
23
- */
24
- lastModifiedBy?: string;
25
- /**
26
- * The type of identity that last modified the resource. Possible values include: 'User',
27
- * 'Application', 'ManagedIdentity', 'Key'
28
- */
29
- lastModifiedByType?: CreatedByType;
30
- /**
31
- * The type of identity that last modified the resource.
32
- */
33
- lastModifiedAt?: Date;
34
- }
35
- /**
36
- * Display object with properties of the operation.
37
- */
38
- export interface OperationsDisplayDefinition {
39
- /**
40
- * Resource provider of the operation.
41
- */
42
- provider?: string;
43
- /**
44
- * Resource for the operation.
45
- */
46
- resource?: string;
47
- /**
48
- * Short description of the operation.
49
- */
50
- operation?: string;
51
- /**
52
- * Description of the operation.
53
- */
54
- description?: string;
55
- }
56
- /**
57
- * Definition object with the name and properties of an operation.
58
- */
59
- export interface OperationsDefinition {
60
- /**
61
- * Name of the operation.
62
- */
63
- name?: string;
64
- /**
65
- * Display object with properties of the operation.
66
- */
67
- display?: OperationsDisplayDefinition;
68
- }
69
- /**
70
- * List of supported operations.
71
- */
72
- export interface OperationList {
73
- /**
74
- * The system metadata relating to this resource
75
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
76
- */
77
- readonly systemData?: SystemData;
78
- /**
79
- * List of supported operations.
80
- */
81
- value?: OperationsDefinition[];
82
- }
83
- /**
84
- * Common fields that are returned in the response for all Azure Resource Manager resources
85
- * @summary Resource
86
- */
87
- export interface Resource extends BaseResource {
88
- /**
89
- * Fully qualified resource ID for the resource. Ex -
90
- * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
91
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
92
- */
93
- readonly id?: string;
94
- /**
95
- * The name of the resource
96
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
97
- */
98
- readonly name?: string;
99
- /**
100
- * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
101
- * "Microsoft.Storage/storageAccounts"
102
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
103
- */
104
- readonly type?: string;
105
- }
106
- /**
107
- * The resource model definition for an Azure Resource Manager tracked top level resource which has
108
- * 'tags' and a 'location'
109
- * @summary Tracked Resource
110
- */
111
- export interface TrackedResource extends Resource {
112
- /**
113
- * Resource tags.
114
- */
115
- tags?: {
116
- [propertyName: string]: string;
117
- };
118
- /**
119
- * The geo-location where the resource lives
120
- */
121
- location: string;
122
- }
123
- /**
124
- * Attestation service response message.
125
- */
126
- export interface AttestationProvider extends TrackedResource {
127
- /**
128
- * The system metadata relating to this resource
129
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
130
- */
131
- readonly systemData?: SystemData;
132
- /**
133
- * Trust model for the attestation service instance.
134
- */
135
- trustModel?: string;
136
- /**
137
- * Status of attestation service. Possible values include: 'Ready', 'NotReady', 'Error'
138
- */
139
- status?: AttestationServiceStatus;
140
- /**
141
- * Gets the uri of attestation service
142
- */
143
- attestUri?: string;
144
- }
145
- /**
146
- * Attestation Providers List.
147
- */
148
- export interface AttestationProviderListResult {
149
- /**
150
- * The system metadata relating to this resource
151
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
152
- */
153
- readonly systemData?: SystemData;
154
- /**
155
- * Attestation Provider array.
156
- */
157
- value?: AttestationProvider[];
158
- }
159
- /**
160
- * Parameters for patching an attestation service instance
161
- */
162
- export interface AttestationServicePatchParams extends BaseResource {
163
- /**
164
- * The tags that will be assigned to the attestation service instance.
165
- */
166
- tags?: {
167
- [propertyName: string]: string;
168
- };
169
- }
170
- /**
171
- * An interface representing JSONWebKey.
172
- */
173
- export interface JSONWebKey {
174
- /**
175
- * The "alg" (algorithm) parameter identifies the algorithm intended for
176
- * use with the key. The values used should either be registered in the
177
- * IANA "JSON Web Signature and Encryption Algorithms" registry
178
- * established by [JWA] or be a value that contains a Collision-
179
- * Resistant Name.
180
- */
181
- alg: string;
182
- /**
183
- * The "crv" (curve) parameter identifies the curve type
184
- */
185
- crv?: string;
186
- /**
187
- * RSA private exponent or ECC private key
188
- */
189
- d?: string;
190
- /**
191
- * RSA Private Key Parameter
192
- */
193
- dp?: string;
194
- /**
195
- * RSA Private Key Parameter
196
- */
197
- dq?: string;
198
- /**
199
- * RSA public exponent, in Base64
200
- */
201
- e?: string;
202
- /**
203
- * Symmetric key
204
- */
205
- k?: string;
206
- /**
207
- * The "kid" (key ID) parameter is used to match a specific key. This
208
- * is used, for instance, to choose among a set of keys within a JWK Set
209
- * during key rollover. The structure of the "kid" value is
210
- * unspecified. When "kid" values are used within a JWK Set, different
211
- * keys within the JWK Set SHOULD use distinct "kid" values. (One
212
- * example in which different keys might use the same "kid" value is if
213
- * they have different "kty" (key type) values but are considered to be
214
- * equivalent alternatives by the application using them.) The "kid"
215
- * value is a case-sensitive string.
216
- */
217
- kid: string;
218
- /**
219
- * The "kty" (key type) parameter identifies the cryptographic algorithm
220
- * family used with the key, such as "RSA" or "EC". "kty" values should
221
- * either be registered in the IANA "JSON Web Key Types" registry
222
- * established by [JWA] or be a value that contains a Collision-
223
- * Resistant Name. The "kty" value is a case-sensitive string.
224
- */
225
- kty: string;
226
- /**
227
- * RSA modulus, in Base64
228
- */
229
- n?: string;
230
- /**
231
- * RSA secret prime
232
- */
233
- p?: string;
234
- /**
235
- * RSA secret prime, with p < q
236
- */
237
- q?: string;
238
- /**
239
- * RSA Private Key Parameter
240
- */
241
- qi?: string;
242
- /**
243
- * Use ("public key use") identifies the intended use of
244
- * the public key. The "use" parameter is employed to indicate whether
245
- * a public key is used for encrypting data or verifying the signature
246
- * on data. Values are commonly "sig" (signature) or "enc" (encryption).
247
- */
248
- use: string;
249
- /**
250
- * X coordinate for the Elliptic Curve point
251
- */
252
- x?: string;
253
- /**
254
- * The "x5c" (X.509 certificate chain) parameter contains a chain of one
255
- * or more PKIX certificates [RFC5280]. The certificate chain is
256
- * represented as a JSON array of certificate value strings. Each
257
- * string in the array is a base64-encoded (Section 4 of [RFC4648] --
258
- * not base64url-encoded) DER [ITU.X690.1994] PKIX certificate value.
259
- * The PKIX certificate containing the key value MUST be the first
260
- * certificate.
261
- */
262
- x5c?: string[];
263
- /**
264
- * Y coordinate for the Elliptic Curve point
265
- */
266
- y?: string;
267
- }
268
- /**
269
- * An interface representing JSONWebKeySet.
270
- */
271
- export interface JSONWebKeySet {
272
- /**
273
- * The value of the "keys" parameter is an array of JWK values. By
274
- * default, the order of the JWK values within the array does not imply
275
- * an order of preference among them, although applications of JWK Sets
276
- * can choose to assign a meaning to the order for their purposes, if
277
- * desired.
278
- */
279
- keys?: JSONWebKey[];
280
- }
281
- /**
282
- * Client supplied parameters used to create a new attestation service instance.
283
- */
284
- export interface AttestationServiceCreationSpecificParams {
285
- /**
286
- * JSON Web Key Set defining a set of X.509 Certificates that will represent the parent
287
- * certificate for the signing certificate used for policy operations
288
- */
289
- policySigningCertificates?: JSONWebKeySet;
290
- }
291
- /**
292
- * Parameters for creating an attestation service instance
293
- */
294
- export interface AttestationServiceCreationParams extends BaseResource {
295
- /**
296
- * The supported Azure location where the attestation service instance should be created.
297
- */
298
- location: string;
299
- /**
300
- * The tags that will be assigned to the attestation service instance.
301
- */
302
- tags?: {
303
- [propertyName: string]: string;
304
- };
305
- /**
306
- * Properties of the attestation service instance
307
- */
308
- properties: AttestationServiceCreationSpecificParams;
309
- }
310
- /**
311
- * The resource model definition for a Azure Resource Manager proxy resource. It will not have tags
312
- * and a location
313
- * @summary Proxy Resource
314
- */
315
- export interface ProxyResource extends Resource {
316
- }
317
- /**
318
- * The resource model definition for an Azure Resource Manager resource with an etag.
319
- * @summary Entity Resource
320
- */
321
- export interface AzureEntityResource extends Resource {
322
- /**
323
- * Resource Etag.
324
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
325
- */
326
- readonly etag?: string;
327
- }
328
- /**
329
- * An interface representing AttestationManagementClientOptions.
330
- */
331
- export interface AttestationManagementClientOptions extends AzureServiceClientOptions {
332
- baseUri?: string;
333
- }
334
- /**
335
- * Defines values for CreatedByType.
336
- * Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key'
337
- * @readonly
338
- * @enum {string}
339
- */
340
- export declare type CreatedByType = 'User' | 'Application' | 'ManagedIdentity' | 'Key';
341
- /**
342
- * Defines values for AttestationServiceStatus.
343
- * Possible values include: 'Ready', 'NotReady', 'Error'
344
- * @readonly
345
- * @enum {string}
346
- */
347
- export declare type AttestationServiceStatus = 'Ready' | 'NotReady' | 'Error';
348
- /**
349
- * Contains response data for the list operation.
350
- */
351
- export declare type OperationsListResponse = OperationList & {
352
- /**
353
- * The underlying HTTP response.
354
- */
355
- _response: msRest.HttpResponse & {
356
- /**
357
- * The response body as text (string format)
358
- */
359
- bodyAsText: string;
360
- /**
361
- * The response body as parsed JSON or XML
362
- */
363
- parsedBody: OperationList;
364
- };
365
- };
366
- /**
367
- * Contains response data for the get operation.
368
- */
369
- export declare type AttestationProvidersGetResponse = AttestationProvider & {
370
- /**
371
- * The underlying HTTP response.
372
- */
373
- _response: msRest.HttpResponse & {
374
- /**
375
- * The response body as text (string format)
376
- */
377
- bodyAsText: string;
378
- /**
379
- * The response body as parsed JSON or XML
380
- */
381
- parsedBody: AttestationProvider;
382
- };
383
- };
384
- /**
385
- * Contains response data for the create operation.
386
- */
387
- export declare type AttestationProvidersCreateResponse = AttestationProvider & {
388
- /**
389
- * The underlying HTTP response.
390
- */
391
- _response: msRest.HttpResponse & {
392
- /**
393
- * The response body as text (string format)
394
- */
395
- bodyAsText: string;
396
- /**
397
- * The response body as parsed JSON or XML
398
- */
399
- parsedBody: AttestationProvider;
400
- };
401
- };
402
- /**
403
- * Contains response data for the update operation.
404
- */
405
- export declare type AttestationProvidersUpdateResponse = AttestationProvider & {
406
- /**
407
- * The underlying HTTP response.
408
- */
409
- _response: msRest.HttpResponse & {
410
- /**
411
- * The response body as text (string format)
412
- */
413
- bodyAsText: string;
414
- /**
415
- * The response body as parsed JSON or XML
416
- */
417
- parsedBody: AttestationProvider;
418
- };
419
- };
420
- /**
421
- * Contains response data for the list operation.
422
- */
423
- export declare type AttestationProvidersListResponse = AttestationProviderListResult & {
424
- /**
425
- * The underlying HTTP response.
426
- */
427
- _response: msRest.HttpResponse & {
428
- /**
429
- * The response body as text (string format)
430
- */
431
- bodyAsText: string;
432
- /**
433
- * The response body as parsed JSON or XML
434
- */
435
- parsedBody: AttestationProviderListResult;
436
- };
437
- };
438
- /**
439
- * Contains response data for the listByResourceGroup operation.
440
- */
441
- export declare type AttestationProvidersListByResourceGroupResponse = AttestationProviderListResult & {
442
- /**
443
- * The underlying HTTP response.
444
- */
445
- _response: msRest.HttpResponse & {
446
- /**
447
- * The response body as text (string format)
448
- */
449
- bodyAsText: string;
450
- /**
451
- * The response body as parsed JSON or XML
452
- */
453
- parsedBody: AttestationProviderListResult;
454
- };
455
- };
456
- /**
457
- * Contains response data for the listDefault operation.
458
- */
459
- export declare type AttestationProvidersListDefaultResponse = AttestationProviderListResult & {
460
- /**
461
- * The underlying HTTP response.
462
- */
463
- _response: msRest.HttpResponse & {
464
- /**
465
- * The response body as text (string format)
466
- */
467
- bodyAsText: string;
468
- /**
469
- * The response body as parsed JSON or XML
470
- */
471
- parsedBody: AttestationProviderListResult;
472
- };
473
- };
474
- /**
475
- * Contains response data for the getDefaultByLocation operation.
476
- */
477
- export declare type AttestationProvidersGetDefaultByLocationResponse = AttestationProvider & {
478
- /**
479
- * The underlying HTTP response.
480
- */
481
- _response: msRest.HttpResponse & {
482
- /**
483
- * The response body as text (string format)
484
- */
485
- bodyAsText: string;
486
- /**
487
- * The response body as parsed JSON or XML
488
- */
489
- parsedBody: AttestationProvider;
490
- };
491
- };
492
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"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"}
@@ -1,8 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Licensed under the MIT License. See License.txt in the project root for license information.
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
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
@@ -1,19 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- export declare const CloudError: msRest.CompositeMapper;
3
- export declare const BaseResource: msRest.CompositeMapper;
4
- export declare const SystemData: msRest.CompositeMapper;
5
- export declare const OperationsDisplayDefinition: msRest.CompositeMapper;
6
- export declare const OperationsDefinition: msRest.CompositeMapper;
7
- export declare const OperationList: msRest.CompositeMapper;
8
- export declare const Resource: msRest.CompositeMapper;
9
- export declare const TrackedResource: msRest.CompositeMapper;
10
- export declare const AttestationProvider: msRest.CompositeMapper;
11
- export declare const AttestationProviderListResult: msRest.CompositeMapper;
12
- export declare const AttestationServicePatchParams: msRest.CompositeMapper;
13
- export declare const JSONWebKey: msRest.CompositeMapper;
14
- export declare const JSONWebKeySet: msRest.CompositeMapper;
15
- export declare const AttestationServiceCreationSpecificParams: msRest.CompositeMapper;
16
- export declare const AttestationServiceCreationParams: msRest.CompositeMapper;
17
- export declare const ProxyResource: msRest.CompositeMapper;
18
- export declare const AzureEntityResource: msRest.CompositeMapper;
19
- //# sourceMappingURL=mappers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../src/models/mappers.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,UAAU,wBAAmB,CAAC;AAC3C,eAAO,MAAM,YAAY,wBAAqB,CAAC;AAE/C,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,eA4C/B,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,MAAM,CAAC,eAgChD,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,MAAM,CAAC,eAqBzC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,eA4BlC,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,eA6B7B,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,eA2BpC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,eAmCxC,CAAC;AAEF,eAAO,MAAM,6BAA6B,EAAE,MAAM,CAAC,eA4BlD,CAAC;AAEF,eAAO,MAAM,6BAA6B,EAAE,MAAM,CAAC,eAmBlD,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,eAuH/B,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,eAoBlC,CAAC;AAEF,eAAO,MAAM,wCAAwC,EAAE,MAAM,CAAC,eAe7D,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,MAAM,CAAC,eAkCrD,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,eASlC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,eAgBxC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"mappers.js","sourceRoot":"","sources":["../../src/models/mappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;;AAEH,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAG/E,MAAM,CAAC,IAAM,UAAU,GAAG,gBAAgB,CAAC;AAC3C,MAAM,CAAC,IAAM,YAAY,GAAG,kBAAkB,CAAC;AAE/C,MAAM,CAAC,IAAM,UAAU,GAA2B;IAChD,cAAc,EAAE,YAAY;IAC5B,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,YAAY;QACvB,eAAe,EAAE;YACf,SAAS,EAAE;gBACT,cAAc,EAAE,WAAW;gBAC3B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,aAAa,EAAE;gBACb,cAAc,EAAE,eAAe;gBAC/B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,cAAc,EAAE,WAAW;gBAC3B,IAAI,EAAE;oBACJ,IAAI,EAAE,UAAU;iBACjB;aACF;YACD,cAAc,EAAE;gBACd,cAAc,EAAE,gBAAgB;gBAChC,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,kBAAkB,EAAE;gBAClB,cAAc,EAAE,oBAAoB;gBACpC,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,cAAc,EAAE;gBACd,cAAc,EAAE,gBAAgB;gBAChC,IAAI,EAAE;oBACJ,IAAI,EAAE,UAAU;iBACjB;aACF;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,IAAM,2BAA2B,GAA2B;IACjE,cAAc,EAAE,6BAA6B;IAC7C,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,6BAA6B;QACxC,eAAe,EAAE;YACf,QAAQ,EAAE;gBACR,cAAc,EAAE,UAAU;gBAC1B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,QAAQ,EAAE;gBACR,cAAc,EAAE,UAAU;gBAC1B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,cAAc,EAAE,WAAW;gBAC3B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,WAAW,EAAE;gBACX,cAAc,EAAE,aAAa;gBAC7B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,IAAM,oBAAoB,GAA2B;IAC1D,cAAc,EAAE,sBAAsB;IACtC,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,sBAAsB;QACjC,eAAe,EAAE;YACf,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,OAAO,EAAE;gBACP,cAAc,EAAE,SAAS;gBACzB,IAAI,EAAE;oBACJ,IAAI,EAAE,WAAW;oBACjB,SAAS,EAAE,6BAA6B;iBACzC;aACF;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,IAAM,aAAa,GAA2B;IACnD,cAAc,EAAE,eAAe;IAC/B,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,eAAe;QAC1B,eAAe,EAAE;YACf,UAAU,EAAE;gBACV,QAAQ,EAAE,IAAI;gBACd,cAAc,EAAE,YAAY;gBAC5B,IAAI,EAAE;oBACJ,IAAI,EAAE,WAAW;oBACjB,SAAS,EAAE,YAAY;iBACxB;aACF;YACD,KAAK,EAAE;gBACL,cAAc,EAAE,OAAO;gBACvB,IAAI,EAAE;oBACJ,IAAI,EAAE,UAAU;oBAChB,OAAO,EAAE;wBACP,IAAI,EAAE;4BACJ,IAAI,EAAE,WAAW;4BACjB,SAAS,EAAE,sBAAsB;yBAClC;qBACF;iBACF;aACF;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,IAAM,QAAQ,GAA2B;IAC9C,cAAc,EAAE,UAAU;IAC1B,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,UAAU;QACrB,eAAe,EAAE;YACf,EAAE,EAAE;gBACF,QAAQ,EAAE,IAAI;gBACd,cAAc,EAAE,IAAI;gBACpB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,IAAI,EAAE;gBACJ,QAAQ,EAAE,IAAI;gBACd,cAAc,EAAE,MAAM;gBACtB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,IAAI,EAAE;gBACJ,QAAQ,EAAE,IAAI;gBACd,cAAc,EAAE,MAAM;gBACtB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,IAAM,eAAe,GAA2B;IACrD,cAAc,EAAE,iBAAiB;IACjC,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,iBAAiB;QAC5B,eAAe,wBACV,QAAQ,CAAC,IAAI,CAAC,eAAe,KAChC,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,IAAI,EAAE;oBACJ,IAAI,EAAE,YAAY;oBAClB,KAAK,EAAE;wBACL,IAAI,EAAE;4BACJ,IAAI,EAAE,QAAQ;yBACf;qBACF;iBACF;aACF,EACD,QAAQ,EAAE;gBACR,QAAQ,EAAE,IAAI;gBACd,cAAc,EAAE,UAAU;gBAC1B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF,GACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,IAAM,mBAAmB,GAA2B;IACzD,cAAc,EAAE,qBAAqB;IACrC,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,qBAAqB;QAChC,eAAe,wBACV,eAAe,CAAC,IAAI,CAAC,eAAe,KACvC,UAAU,EAAE;gBACV,QAAQ,EAAE,IAAI;gBACd,cAAc,EAAE,YAAY;gBAC5B,IAAI,EAAE;oBACJ,IAAI,EAAE,WAAW;oBACjB,SAAS,EAAE,YAAY;iBACxB;aACF,EACD,UAAU,EAAE;gBACV,cAAc,EAAE,uBAAuB;gBACvC,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF,EACD,MAAM,EAAE;gBACN,cAAc,EAAE,mBAAmB;gBACnC,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF,EACD,SAAS,EAAE;gBACT,cAAc,EAAE,sBAAsB;gBACtC,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF,GACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,IAAM,6BAA6B,GAA2B;IACnE,cAAc,EAAE,+BAA+B;IAC/C,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,+BAA+B;QAC1C,eAAe,EAAE;YACf,UAAU,EAAE;gBACV,QAAQ,EAAE,IAAI;gBACd,cAAc,EAAE,YAAY;gBAC5B,IAAI,EAAE;oBACJ,IAAI,EAAE,WAAW;oBACjB,SAAS,EAAE,YAAY;iBACxB;aACF;YACD,KAAK,EAAE;gBACL,cAAc,EAAE,OAAO;gBACvB,IAAI,EAAE;oBACJ,IAAI,EAAE,UAAU;oBAChB,OAAO,EAAE;wBACP,IAAI,EAAE;4BACJ,IAAI,EAAE,WAAW;4BACjB,SAAS,EAAE,qBAAqB;yBACjC;qBACF;iBACF;aACF;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,IAAM,6BAA6B,GAA2B;IACnE,cAAc,EAAE,+BAA+B;IAC/C,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,+BAA+B;QAC1C,eAAe,EAAE;YACf,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,IAAI,EAAE;oBACJ,IAAI,EAAE,YAAY;oBAClB,KAAK,EAAE;wBACL,IAAI,EAAE;4BACJ,IAAI,EAAE,QAAQ;yBACf;qBACF;iBACF;aACF;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,IAAM,UAAU,GAA2B;IAChD,cAAc,EAAE,YAAY;IAC5B,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,YAAY;QACvB,eAAe,EAAE;YACf,GAAG,EAAE;gBACH,QAAQ,EAAE,IAAI;gBACd,cAAc,EAAE,KAAK;gBACrB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,GAAG,EAAE;gBACH,cAAc,EAAE,KAAK;gBACrB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,CAAC,EAAE;gBACD,cAAc,EAAE,GAAG;gBACnB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,EAAE,EAAE;gBACF,cAAc,EAAE,IAAI;gBACpB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,EAAE,EAAE;gBACF,cAAc,EAAE,IAAI;gBACpB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,CAAC,EAAE;gBACD,cAAc,EAAE,GAAG;gBACnB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,CAAC,EAAE;gBACD,cAAc,EAAE,GAAG;gBACnB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,GAAG,EAAE;gBACH,QAAQ,EAAE,IAAI;gBACd,cAAc,EAAE,KAAK;gBACrB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,GAAG,EAAE;gBACH,QAAQ,EAAE,IAAI;gBACd,cAAc,EAAE,KAAK;gBACrB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,CAAC,EAAE;gBACD,cAAc,EAAE,GAAG;gBACnB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,CAAC,EAAE;gBACD,cAAc,EAAE,GAAG;gBACnB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,CAAC,EAAE;gBACD,cAAc,EAAE,GAAG;gBACnB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,EAAE,EAAE;gBACF,cAAc,EAAE,IAAI;gBACpB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,GAAG,EAAE;gBACH,QAAQ,EAAE,IAAI;gBACd,cAAc,EAAE,KAAK;gBACrB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,CAAC,EAAE;gBACD,cAAc,EAAE,GAAG;gBACnB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,GAAG,EAAE;gBACH,cAAc,EAAE,KAAK;gBACrB,IAAI,EAAE;oBACJ,IAAI,EAAE,UAAU;oBAChB,OAAO,EAAE;wBACP,IAAI,EAAE;4BACJ,IAAI,EAAE,QAAQ;yBACf;qBACF;iBACF;aACF;YACD,CAAC,EAAE;gBACD,cAAc,EAAE,GAAG;gBACnB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,IAAM,aAAa,GAA2B;IACnD,cAAc,EAAE,eAAe;IAC/B,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,eAAe;QAC1B,eAAe,EAAE;YACf,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,IAAI,EAAE;oBACJ,IAAI,EAAE,UAAU;oBAChB,OAAO,EAAE;wBACP,IAAI,EAAE;4BACJ,IAAI,EAAE,WAAW;4BACjB,SAAS,EAAE,YAAY;yBACxB;qBACF;iBACF;aACF;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,IAAM,wCAAwC,GAA2B;IAC9E,cAAc,EAAE,0CAA0C;IAC1D,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,0CAA0C;QACrD,eAAe,EAAE;YACf,yBAAyB,EAAE;gBACzB,cAAc,EAAE,2BAA2B;gBAC3C,IAAI,EAAE;oBACJ,IAAI,EAAE,WAAW;oBACjB,SAAS,EAAE,eAAe;iBAC3B;aACF;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,IAAM,gCAAgC,GAA2B;IACtE,cAAc,EAAE,kCAAkC;IAClD,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,kCAAkC;QAC7C,eAAe,EAAE;YACf,QAAQ,EAAE;gBACR,QAAQ,EAAE,IAAI;gBACd,cAAc,EAAE,UAAU;gBAC1B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,IAAI,EAAE;oBACJ,IAAI,EAAE,YAAY;oBAClB,KAAK,EAAE;wBACL,IAAI,EAAE;4BACJ,IAAI,EAAE,QAAQ;yBACf;qBACF;iBACF;aACF;YACD,UAAU,EAAE;gBACV,QAAQ,EAAE,IAAI;gBACd,cAAc,EAAE,YAAY;gBAC5B,IAAI,EAAE;oBACJ,IAAI,EAAE,WAAW;oBACjB,SAAS,EAAE,0CAA0C;iBACtD;aACF;SACF;KACF;CACF,CAAC;AAEF,MAAM,CAAC,IAAM,aAAa,GAA2B;IACnD,cAAc,EAAE,eAAe;IAC/B,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,eAAe;QAC1B,eAAe,eACV,QAAQ,CAAC,IAAI,CAAC,eAAe,CACjC;KACF;CACF,CAAC;AAEF,MAAM,CAAC,IAAM,mBAAmB,GAA2B;IACzD,cAAc,EAAE,qBAAqB;IACrC,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,qBAAqB;QAChC,eAAe,wBACV,QAAQ,CAAC,IAAI,CAAC,eAAe,KAChC,IAAI,EAAE;gBACJ,QAAQ,EAAE,IAAI;gBACd,cAAc,EAAE,MAAM;gBACtB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF,GACF;KACF;CACF,CAAC"}
@@ -1,2 +0,0 @@
1
- export { CloudError, OperationList, OperationsDefinition, OperationsDisplayDefinition, SystemData } from "../models/mappers";
2
- //# sourceMappingURL=operationsMappers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operationsMappers.d.ts","sourceRoot":"","sources":["../../src/models/operationsMappers.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,UAAU,EACV,aAAa,EACb,oBAAoB,EACpB,2BAA2B,EAC3B,UAAU,EACX,MAAM,mBAAmB,CAAC"}
@@ -1,9 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Licensed under the MIT License. See License.txt in the project root for license information.
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 { CloudError, OperationList, OperationsDefinition, OperationsDisplayDefinition, SystemData } from "../models/mappers";
9
- //# sourceMappingURL=operationsMappers.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operationsMappers.js","sourceRoot":"","sources":["../../src/models/operationsMappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EACL,UAAU,EACV,aAAa,EACb,oBAAoB,EACpB,2BAA2B,EAC3B,UAAU,EACX,MAAM,mBAAmB,CAAC"}
@@ -1,8 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- export declare const acceptLanguage: msRest.OperationParameter;
3
- export declare const apiVersion: msRest.OperationQueryParameter;
4
- export declare const location: msRest.OperationURLParameter;
5
- export declare const providerName: msRest.OperationURLParameter;
6
- export declare const resourceGroupName: msRest.OperationURLParameter;
7
- export declare const subscriptionId: msRest.OperationURLParameter;
8
- //# sourceMappingURL=parameters.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parameters.d.ts","sourceRoot":"","sources":["../../src/models/parameters.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,kBASnC,CAAC;AACF,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,uBAS/B,CAAC;AACF,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,qBAY7B,CAAC;AACF,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,qBASjC,CAAC;AACF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,qBActC,CAAC;AACF,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,qBAYnC,CAAC"}
@@ -1,81 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Licensed under the MIT License. See License.txt in the project root for
4
- * license information.
5
- *
6
- * Code generated by Microsoft (R) AutoRest Code Generator.
7
- * Changes may cause incorrect behavior and will be lost if the code is
8
- * regenerated.
9
- */
10
- export var acceptLanguage = {
11
- parameterPath: "acceptLanguage",
12
- mapper: {
13
- serializedName: "accept-language",
14
- defaultValue: 'en-US',
15
- type: {
16
- name: "String"
17
- }
18
- }
19
- };
20
- export var apiVersion = {
21
- parameterPath: "apiVersion",
22
- mapper: {
23
- required: true,
24
- serializedName: "api-version",
25
- type: {
26
- name: "String"
27
- }
28
- }
29
- };
30
- export var location = {
31
- parameterPath: "location",
32
- mapper: {
33
- required: true,
34
- serializedName: "location",
35
- constraints: {
36
- MinLength: 1
37
- },
38
- type: {
39
- name: "String"
40
- }
41
- }
42
- };
43
- export var providerName = {
44
- parameterPath: "providerName",
45
- mapper: {
46
- required: true,
47
- serializedName: "providerName",
48
- type: {
49
- name: "String"
50
- }
51
- }
52
- };
53
- export var resourceGroupName = {
54
- parameterPath: "resourceGroupName",
55
- mapper: {
56
- required: true,
57
- serializedName: "resourceGroupName",
58
- constraints: {
59
- MaxLength: 90,
60
- MinLength: 1,
61
- Pattern: /^[-\w\._\(\)]+$/
62
- },
63
- type: {
64
- name: "String"
65
- }
66
- }
67
- };
68
- export var subscriptionId = {
69
- parameterPath: "subscriptionId",
70
- mapper: {
71
- required: true,
72
- serializedName: "subscriptionId",
73
- constraints: {
74
- MinLength: 1
75
- },
76
- type: {
77
- name: "String"
78
- }
79
- }
80
- };
81
- //# sourceMappingURL=parameters.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parameters.js","sourceRoot":"","sources":["../../src/models/parameters.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAIH,MAAM,CAAC,IAAM,cAAc,GAA8B;IACvD,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,cAAc,EAAE,iBAAiB;QACjC,YAAY,EAAE,OAAO;QACrB,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,UAAU,GAAmC;IACxD,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,aAAa;QAC7B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,QAAQ,GAAiC;IACpD,aAAa,EAAE,UAAU;IACzB,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,UAAU;QAC1B,WAAW,EAAE;YACX,SAAS,EAAE,CAAC;SACb;QACD,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,YAAY,GAAiC;IACxD,aAAa,EAAE,cAAc;IAC7B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,cAAc;QAC9B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,iBAAiB,GAAiC;IAC7D,aAAa,EAAE,mBAAmB;IAClC,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,mBAAmB;QACnC,WAAW,EAAE;YACX,SAAS,EAAE,EAAE;YACb,SAAS,EAAE,CAAC;YACZ,OAAO,EAAE,iBAAiB;SAC3B;QACD,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,cAAc,GAAiC;IAC1D,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,gBAAgB;QAChC,WAAW,EAAE;YACX,SAAS,EAAE,CAAC;SACb;QACD,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC"}