@azure/arm-msi 0.1.0 → 2.0.0-alpha.20211217.3

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 (135) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/{LICENSE.txt → LICENSE} +2 -2
  3. package/README.md +75 -73
  4. package/dist/index.js +1029 -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/index.d.ts +5 -0
  9. package/dist-esm/src/index.d.ts.map +1 -0
  10. package/dist-esm/src/index.js +12 -0
  11. package/dist-esm/src/index.js.map +1 -0
  12. package/dist-esm/src/managedServiceIdentityClient.d.ts +20 -0
  13. package/dist-esm/src/managedServiceIdentityClient.d.ts.map +1 -0
  14. package/dist-esm/src/managedServiceIdentityClient.js +53 -0
  15. package/dist-esm/src/managedServiceIdentityClient.js.map +1 -0
  16. package/dist-esm/src/models/index.d.ts +212 -0
  17. package/dist-esm/src/models/index.d.ts.map +1 -0
  18. package/dist-esm/src/models/index.js +9 -0
  19. package/dist-esm/src/models/index.js.map +1 -0
  20. package/dist-esm/src/models/mappers.d.ts +14 -0
  21. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  22. package/dist-esm/src/models/mappers.js +325 -0
  23. package/dist-esm/src/models/mappers.js.map +1 -0
  24. package/dist-esm/src/models/parameters.d.ts +13 -0
  25. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  26. package/dist-esm/src/models/parameters.js +113 -0
  27. package/dist-esm/src/models/parameters.js.map +1 -0
  28. package/dist-esm/src/operations/index.d.ts +4 -0
  29. package/dist-esm/src/operations/index.d.ts.map +1 -0
  30. package/dist-esm/src/operations/index.js +11 -0
  31. package/dist-esm/src/operations/index.js.map +1 -0
  32. package/dist-esm/src/operations/operations.d.ts +32 -0
  33. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  34. package/dist-esm/src/operations/operations.js +120 -0
  35. package/dist-esm/src/operations/operations.js.map +1 -0
  36. package/dist-esm/src/operations/systemAssignedIdentities.d.ts +20 -0
  37. package/dist-esm/src/operations/systemAssignedIdentities.d.ts.map +1 -0
  38. package/dist-esm/src/operations/systemAssignedIdentities.js +48 -0
  39. package/dist-esm/src/operations/systemAssignedIdentities.js.map +1 -0
  40. package/dist-esm/src/operations/userAssignedIdentities.d.ts +83 -0
  41. package/dist-esm/src/operations/userAssignedIdentities.d.ts.map +1 -0
  42. package/dist-esm/src/operations/userAssignedIdentities.js +359 -0
  43. package/dist-esm/src/operations/userAssignedIdentities.js.map +1 -0
  44. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  45. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  46. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  47. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
  49. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  50. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  51. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts +12 -0
  53. package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts.map +1 -0
  54. package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js +9 -0
  55. package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js.map +1 -0
  56. package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts +47 -0
  57. package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts.map +1 -0
  58. package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js +9 -0
  59. package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js.map +1 -0
  60. package/dist-esm/test/sampleTest.d.ts +2 -0
  61. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  62. package/dist-esm/test/sampleTest.js +40 -0
  63. package/dist-esm/test/sampleTest.js.map +1 -0
  64. package/package.json +70 -25
  65. package/review/arm-msi.api.md +218 -0
  66. package/rollup.config.js +184 -27
  67. package/src/index.ts +12 -0
  68. package/src/managedServiceIdentityClient.ts +87 -0
  69. package/src/models/index.ts +248 -0
  70. package/src/models/mappers.ts +364 -0
  71. package/src/models/parameters.ts +132 -0
  72. package/{lib → src}/operations/index.ts +4 -5
  73. package/src/operations/operations.ts +137 -0
  74. package/src/operations/systemAssignedIdentities.ts +65 -0
  75. package/src/operations/userAssignedIdentities.ts +450 -0
  76. package/src/operationsInterfaces/index.ts +11 -0
  77. package/src/operationsInterfaces/operations.ts +22 -0
  78. package/src/operationsInterfaces/systemAssignedIdentities.ts +26 -0
  79. package/src/operationsInterfaces/userAssignedIdentities.ts +91 -0
  80. package/tsconfig.json +4 -4
  81. package/types/arm-msi.d.ts +330 -0
  82. package/types/tsdoc-metadata.json +11 -0
  83. package/dist/arm-msi.js +0 -820
  84. package/dist/arm-msi.js.map +0 -1
  85. package/dist/arm-msi.min.js +0 -1
  86. package/dist/arm-msi.min.js.map +0 -1
  87. package/esm/managedServiceIdentityClient.d.ts +0 -19
  88. package/esm/managedServiceIdentityClient.d.ts.map +0 -1
  89. package/esm/managedServiceIdentityClient.js +0 -34
  90. package/esm/managedServiceIdentityClient.js.map +0 -1
  91. package/esm/managedServiceIdentityClientContext.d.ts +0 -16
  92. package/esm/managedServiceIdentityClientContext.d.ts.map +0 -1
  93. package/esm/managedServiceIdentityClientContext.js +0 -56
  94. package/esm/managedServiceIdentityClientContext.js.map +0 -1
  95. package/esm/models/index.d.ts +0 -332
  96. package/esm/models/index.d.ts.map +0 -1
  97. package/esm/models/index.js +0 -10
  98. package/esm/models/index.js.map +0 -1
  99. package/esm/models/mappers.d.ts +0 -9
  100. package/esm/models/mappers.d.ts.map +0 -1
  101. package/esm/models/mappers.js +0 -197
  102. package/esm/models/mappers.js.map +0 -1
  103. package/esm/models/operationsMappers.d.ts +0 -2
  104. package/esm/models/operationsMappers.d.ts.map +0 -1
  105. package/esm/models/operationsMappers.js +0 -11
  106. package/esm/models/operationsMappers.js.map +0 -1
  107. package/esm/models/parameters.d.ts +0 -8
  108. package/esm/models/parameters.d.ts.map +0 -1
  109. package/esm/models/parameters.js +0 -71
  110. package/esm/models/parameters.js.map +0 -1
  111. package/esm/models/userAssignedIdentitiesMappers.d.ts +0 -2
  112. package/esm/models/userAssignedIdentitiesMappers.d.ts.map +0 -1
  113. package/esm/models/userAssignedIdentitiesMappers.js +0 -11
  114. package/esm/models/userAssignedIdentitiesMappers.js.map +0 -1
  115. package/esm/operations/index.d.ts +0 -3
  116. package/esm/operations/index.d.ts.map +0 -1
  117. package/esm/operations/index.js +0 -12
  118. package/esm/operations/index.js.map +0 -1
  119. package/esm/operations/operations.d.ts +0 -46
  120. package/esm/operations/operations.d.ts.map +0 -1
  121. package/esm/operations/operations.js +0 -77
  122. package/esm/operations/operations.js.map +0 -1
  123. package/esm/operations/userAssignedIdentities.d.ts +0 -172
  124. package/esm/operations/userAssignedIdentities.d.ts.map +0 -1
  125. package/esm/operations/userAssignedIdentities.js +0 -272
  126. package/esm/operations/userAssignedIdentities.js.map +0 -1
  127. package/lib/managedServiceIdentityClient.ts +0 -44
  128. package/lib/managedServiceIdentityClientContext.ts +0 -62
  129. package/lib/models/index.ts +0 -358
  130. package/lib/models/mappers.ts +0 -204
  131. package/lib/models/operationsMappers.ts +0 -17
  132. package/lib/models/parameters.ts +0 -73
  133. package/lib/models/userAssignedIdentitiesMappers.ts +0 -17
  134. package/lib/operations/operations.ts +0 -123
  135. package/lib/operations/userAssignedIdentities.ts +0 -479
@@ -0,0 +1,87 @@
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
+
9
+ import * as coreClient from "@azure/core-client";
10
+ import * as coreAuth from "@azure/core-auth";
11
+ import {
12
+ SystemAssignedIdentitiesImpl,
13
+ OperationsImpl,
14
+ UserAssignedIdentitiesImpl
15
+ } from "./operations";
16
+ import {
17
+ SystemAssignedIdentities,
18
+ Operations,
19
+ UserAssignedIdentities
20
+ } from "./operationsInterfaces";
21
+ import { ManagedServiceIdentityClientOptionalParams } from "./models";
22
+
23
+ export class ManagedServiceIdentityClient extends coreClient.ServiceClient {
24
+ $host: string;
25
+ apiVersion: string;
26
+ subscriptionId: string;
27
+
28
+ /**
29
+ * Initializes a new instance of the ManagedServiceIdentityClient class.
30
+ * @param credentials Subscription credentials which uniquely identify client subscription.
31
+ * @param subscriptionId The Id of the Subscription to which the identity belongs.
32
+ * @param options The parameter options
33
+ */
34
+ constructor(
35
+ credentials: coreAuth.TokenCredential,
36
+ subscriptionId: string,
37
+ options?: ManagedServiceIdentityClientOptionalParams
38
+ ) {
39
+ if (credentials === undefined) {
40
+ throw new Error("'credentials' cannot be null");
41
+ }
42
+ if (subscriptionId === undefined) {
43
+ throw new Error("'subscriptionId' cannot be null");
44
+ }
45
+
46
+ // Initializing default values for options
47
+ if (!options) {
48
+ options = {};
49
+ }
50
+ const defaults: ManagedServiceIdentityClientOptionalParams = {
51
+ requestContentType: "application/json; charset=utf-8",
52
+ credential: credentials
53
+ };
54
+
55
+ const packageDetails = `azsdk-js-arm-msi/2.0.0`;
56
+ const userAgentPrefix =
57
+ options.userAgentOptions && options.userAgentOptions.userAgentPrefix
58
+ ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
59
+ : `${packageDetails}`;
60
+
61
+ if (!options.credentialScopes) {
62
+ options.credentialScopes = ["https://management.azure.com/.default"];
63
+ }
64
+ const optionsWithDefaults = {
65
+ ...defaults,
66
+ ...options,
67
+ userAgentOptions: {
68
+ userAgentPrefix
69
+ },
70
+ baseUri: options.endpoint || "https://management.azure.com"
71
+ };
72
+ super(optionsWithDefaults);
73
+ // Parameter assignments
74
+ this.subscriptionId = subscriptionId;
75
+
76
+ // Assigning values to Constant parameters
77
+ this.$host = options.$host || "https://management.azure.com";
78
+ this.apiVersion = options.apiVersion || "2018-11-30";
79
+ this.systemAssignedIdentities = new SystemAssignedIdentitiesImpl(this);
80
+ this.operations = new OperationsImpl(this);
81
+ this.userAssignedIdentities = new UserAssignedIdentitiesImpl(this);
82
+ }
83
+
84
+ systemAssignedIdentities: SystemAssignedIdentities;
85
+ operations: Operations;
86
+ userAssignedIdentities: UserAssignedIdentities;
87
+ }
@@ -0,0 +1,248 @@
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
+
9
+ import * as coreClient from "@azure/core-client";
10
+
11
+ /** Common fields that are returned in the response for all Azure Resource Manager resources */
12
+ export interface Resource {
13
+ /**
14
+ * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
15
+ * NOTE: This property will not be serialized. It can only be populated by the server.
16
+ */
17
+ readonly id?: string;
18
+ /**
19
+ * The name of the resource
20
+ * NOTE: This property will not be serialized. It can only be populated by the server.
21
+ */
22
+ readonly name?: string;
23
+ /**
24
+ * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
25
+ * NOTE: This property will not be serialized. It can only be populated by the server.
26
+ */
27
+ readonly type?: string;
28
+ }
29
+
30
+ /** An error response from the ManagedServiceIdentity service. */
31
+ export interface CloudError {
32
+ /** A list of additional details about the error. */
33
+ error?: CloudErrorBody;
34
+ }
35
+
36
+ /** An error response from the ManagedServiceIdentity service. */
37
+ export interface CloudErrorBody {
38
+ /** An identifier for the error. */
39
+ code?: string;
40
+ /** A message describing the error, intended to be suitable for display in a user interface. */
41
+ message?: string;
42
+ /** The target of the particular error. For example, the name of the property in error. */
43
+ target?: string;
44
+ /** A list of additional details about the error. */
45
+ details?: CloudErrorBody[];
46
+ }
47
+
48
+ /** A list of operations supported by Microsoft.ManagedIdentity Resource Provider. */
49
+ export interface OperationListResult {
50
+ /** A list of operations supported by Microsoft.ManagedIdentity Resource Provider. */
51
+ value?: Operation[];
52
+ /** The url to get the next page of results, if any. */
53
+ nextLink?: string;
54
+ }
55
+
56
+ /** Operation supported by the Microsoft.ManagedIdentity REST API. */
57
+ export interface Operation {
58
+ /** The name of the REST Operation. This is of the format {provider}/{resource}/{operation}. */
59
+ name?: string;
60
+ /** The object that describes the operation. */
61
+ display?: OperationDisplay;
62
+ }
63
+
64
+ /** The object that describes the operation. */
65
+ export interface OperationDisplay {
66
+ /** Friendly name of the resource provider. */
67
+ provider?: string;
68
+ /** The type of operation. For example: read, write, delete. */
69
+ operation?: string;
70
+ /** The resource type on which the operation is performed. */
71
+ resource?: string;
72
+ /** A description of the operation. */
73
+ description?: string;
74
+ }
75
+
76
+ /** Values returned by the List operation. */
77
+ export interface UserAssignedIdentitiesListResult {
78
+ /** The collection of userAssignedIdentities returned by the listing operation. */
79
+ value?: Identity[];
80
+ /** The url to get the next page of results, if any. */
81
+ nextLink?: string;
82
+ }
83
+
84
+ /** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
85
+ export type ProxyResource = Resource & {};
86
+
87
+ /** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
88
+ export type TrackedResource = Resource & {
89
+ /** Resource tags. */
90
+ tags?: { [propertyName: string]: string };
91
+ /** The geo-location where the resource lives */
92
+ location: string;
93
+ };
94
+
95
+ /** Describes an identity resource. */
96
+ export type IdentityUpdate = Resource & {
97
+ /** The geo-location where the resource lives */
98
+ location?: string;
99
+ /** Resource tags */
100
+ tags?: { [propertyName: string]: string };
101
+ /**
102
+ * The id of the tenant which the identity belongs to.
103
+ * NOTE: This property will not be serialized. It can only be populated by the server.
104
+ */
105
+ readonly tenantId?: string;
106
+ /**
107
+ * The id of the service principal object associated with the created identity.
108
+ * NOTE: This property will not be serialized. It can only be populated by the server.
109
+ */
110
+ readonly principalId?: string;
111
+ /**
112
+ * The id of the app associated with the identity. This is a random generated UUID by MSI.
113
+ * NOTE: This property will not be serialized. It can only be populated by the server.
114
+ */
115
+ readonly clientId?: string;
116
+ };
117
+
118
+ /** Describes a system assigned identity resource. */
119
+ export type SystemAssignedIdentity = ProxyResource & {
120
+ /** The geo-location where the resource lives */
121
+ location: string;
122
+ /** Resource tags */
123
+ tags?: { [propertyName: string]: string };
124
+ /**
125
+ * The id of the tenant which the identity belongs to.
126
+ * NOTE: This property will not be serialized. It can only be populated by the server.
127
+ */
128
+ readonly tenantId?: string;
129
+ /**
130
+ * The id of the service principal object associated with the created identity.
131
+ * NOTE: This property will not be serialized. It can only be populated by the server.
132
+ */
133
+ readonly principalId?: string;
134
+ /**
135
+ * The id of the app associated with the identity. This is a random generated UUID by MSI.
136
+ * NOTE: This property will not be serialized. It can only be populated by the server.
137
+ */
138
+ readonly clientId?: string;
139
+ /**
140
+ * The ManagedServiceIdentity DataPlane URL that can be queried to obtain the identity credentials.
141
+ * NOTE: This property will not be serialized. It can only be populated by the server.
142
+ */
143
+ readonly clientSecretUrl?: string;
144
+ };
145
+
146
+ /** Describes an identity resource. */
147
+ export type Identity = TrackedResource & {
148
+ /**
149
+ * The id of the tenant which the identity belongs to.
150
+ * NOTE: This property will not be serialized. It can only be populated by the server.
151
+ */
152
+ readonly tenantId?: string;
153
+ /**
154
+ * The id of the service principal object associated with the created identity.
155
+ * NOTE: This property will not be serialized. It can only be populated by the server.
156
+ */
157
+ readonly principalId?: string;
158
+ /**
159
+ * The id of the app associated with the identity. This is a random generated UUID by MSI.
160
+ * NOTE: This property will not be serialized. It can only be populated by the server.
161
+ */
162
+ readonly clientId?: string;
163
+ };
164
+
165
+ /** Optional parameters. */
166
+ export interface SystemAssignedIdentitiesGetByScopeOptionalParams
167
+ extends coreClient.OperationOptions {}
168
+
169
+ /** Contains response data for the getByScope operation. */
170
+ export type SystemAssignedIdentitiesGetByScopeResponse = SystemAssignedIdentity;
171
+
172
+ /** Optional parameters. */
173
+ export interface OperationsListOptionalParams
174
+ extends coreClient.OperationOptions {}
175
+
176
+ /** Contains response data for the list operation. */
177
+ export type OperationsListResponse = OperationListResult;
178
+
179
+ /** Optional parameters. */
180
+ export interface OperationsListNextOptionalParams
181
+ extends coreClient.OperationOptions {}
182
+
183
+ /** Contains response data for the listNext operation. */
184
+ export type OperationsListNextResponse = OperationListResult;
185
+
186
+ /** Optional parameters. */
187
+ export interface UserAssignedIdentitiesListBySubscriptionOptionalParams
188
+ extends coreClient.OperationOptions {}
189
+
190
+ /** Contains response data for the listBySubscription operation. */
191
+ export type UserAssignedIdentitiesListBySubscriptionResponse = UserAssignedIdentitiesListResult;
192
+
193
+ /** Optional parameters. */
194
+ export interface UserAssignedIdentitiesListByResourceGroupOptionalParams
195
+ extends coreClient.OperationOptions {}
196
+
197
+ /** Contains response data for the listByResourceGroup operation. */
198
+ export type UserAssignedIdentitiesListByResourceGroupResponse = UserAssignedIdentitiesListResult;
199
+
200
+ /** Optional parameters. */
201
+ export interface UserAssignedIdentitiesCreateOrUpdateOptionalParams
202
+ extends coreClient.OperationOptions {}
203
+
204
+ /** Contains response data for the createOrUpdate operation. */
205
+ export type UserAssignedIdentitiesCreateOrUpdateResponse = Identity;
206
+
207
+ /** Optional parameters. */
208
+ export interface UserAssignedIdentitiesUpdateOptionalParams
209
+ extends coreClient.OperationOptions {}
210
+
211
+ /** Contains response data for the update operation. */
212
+ export type UserAssignedIdentitiesUpdateResponse = Identity;
213
+
214
+ /** Optional parameters. */
215
+ export interface UserAssignedIdentitiesGetOptionalParams
216
+ extends coreClient.OperationOptions {}
217
+
218
+ /** Contains response data for the get operation. */
219
+ export type UserAssignedIdentitiesGetResponse = Identity;
220
+
221
+ /** Optional parameters. */
222
+ export interface UserAssignedIdentitiesDeleteOptionalParams
223
+ extends coreClient.OperationOptions {}
224
+
225
+ /** Optional parameters. */
226
+ export interface UserAssignedIdentitiesListBySubscriptionNextOptionalParams
227
+ extends coreClient.OperationOptions {}
228
+
229
+ /** Contains response data for the listBySubscriptionNext operation. */
230
+ export type UserAssignedIdentitiesListBySubscriptionNextResponse = UserAssignedIdentitiesListResult;
231
+
232
+ /** Optional parameters. */
233
+ export interface UserAssignedIdentitiesListByResourceGroupNextOptionalParams
234
+ extends coreClient.OperationOptions {}
235
+
236
+ /** Contains response data for the listByResourceGroupNext operation. */
237
+ export type UserAssignedIdentitiesListByResourceGroupNextResponse = UserAssignedIdentitiesListResult;
238
+
239
+ /** Optional parameters. */
240
+ export interface ManagedServiceIdentityClientOptionalParams
241
+ extends coreClient.ServiceClientOptions {
242
+ /** server parameter */
243
+ $host?: string;
244
+ /** Api Version */
245
+ apiVersion?: string;
246
+ /** Overrides client endpoint. */
247
+ endpoint?: string;
248
+ }
@@ -0,0 +1,364 @@
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
+
9
+ import * as coreClient from "@azure/core-client";
10
+
11
+ export const Resource: coreClient.CompositeMapper = {
12
+ type: {
13
+ name: "Composite",
14
+ className: "Resource",
15
+ modelProperties: {
16
+ id: {
17
+ serializedName: "id",
18
+ readOnly: true,
19
+ type: {
20
+ name: "String"
21
+ }
22
+ },
23
+ name: {
24
+ serializedName: "name",
25
+ readOnly: true,
26
+ type: {
27
+ name: "String"
28
+ }
29
+ },
30
+ type: {
31
+ serializedName: "type",
32
+ readOnly: true,
33
+ type: {
34
+ name: "String"
35
+ }
36
+ }
37
+ }
38
+ }
39
+ };
40
+
41
+ export const CloudError: coreClient.CompositeMapper = {
42
+ type: {
43
+ name: "Composite",
44
+ className: "CloudError",
45
+ modelProperties: {
46
+ error: {
47
+ serializedName: "error",
48
+ type: {
49
+ name: "Composite",
50
+ className: "CloudErrorBody"
51
+ }
52
+ }
53
+ }
54
+ }
55
+ };
56
+
57
+ export const CloudErrorBody: coreClient.CompositeMapper = {
58
+ type: {
59
+ name: "Composite",
60
+ className: "CloudErrorBody",
61
+ modelProperties: {
62
+ code: {
63
+ serializedName: "code",
64
+ type: {
65
+ name: "String"
66
+ }
67
+ },
68
+ message: {
69
+ serializedName: "message",
70
+ type: {
71
+ name: "String"
72
+ }
73
+ },
74
+ target: {
75
+ serializedName: "target",
76
+ type: {
77
+ name: "String"
78
+ }
79
+ },
80
+ details: {
81
+ serializedName: "details",
82
+ type: {
83
+ name: "Sequence",
84
+ element: {
85
+ type: {
86
+ name: "Composite",
87
+ className: "CloudErrorBody"
88
+ }
89
+ }
90
+ }
91
+ }
92
+ }
93
+ }
94
+ };
95
+
96
+ export const OperationListResult: coreClient.CompositeMapper = {
97
+ type: {
98
+ name: "Composite",
99
+ className: "OperationListResult",
100
+ modelProperties: {
101
+ value: {
102
+ serializedName: "value",
103
+ type: {
104
+ name: "Sequence",
105
+ element: {
106
+ type: {
107
+ name: "Composite",
108
+ className: "Operation"
109
+ }
110
+ }
111
+ }
112
+ },
113
+ nextLink: {
114
+ serializedName: "nextLink",
115
+ type: {
116
+ name: "String"
117
+ }
118
+ }
119
+ }
120
+ }
121
+ };
122
+
123
+ export const Operation: coreClient.CompositeMapper = {
124
+ type: {
125
+ name: "Composite",
126
+ className: "Operation",
127
+ modelProperties: {
128
+ name: {
129
+ serializedName: "name",
130
+ type: {
131
+ name: "String"
132
+ }
133
+ },
134
+ display: {
135
+ serializedName: "display",
136
+ type: {
137
+ name: "Composite",
138
+ className: "OperationDisplay"
139
+ }
140
+ }
141
+ }
142
+ }
143
+ };
144
+
145
+ export const OperationDisplay: coreClient.CompositeMapper = {
146
+ type: {
147
+ name: "Composite",
148
+ className: "OperationDisplay",
149
+ modelProperties: {
150
+ provider: {
151
+ serializedName: "provider",
152
+ type: {
153
+ name: "String"
154
+ }
155
+ },
156
+ operation: {
157
+ serializedName: "operation",
158
+ type: {
159
+ name: "String"
160
+ }
161
+ },
162
+ resource: {
163
+ serializedName: "resource",
164
+ type: {
165
+ name: "String"
166
+ }
167
+ },
168
+ description: {
169
+ serializedName: "description",
170
+ type: {
171
+ name: "String"
172
+ }
173
+ }
174
+ }
175
+ }
176
+ };
177
+
178
+ export const UserAssignedIdentitiesListResult: coreClient.CompositeMapper = {
179
+ type: {
180
+ name: "Composite",
181
+ className: "UserAssignedIdentitiesListResult",
182
+ modelProperties: {
183
+ value: {
184
+ serializedName: "value",
185
+ type: {
186
+ name: "Sequence",
187
+ element: {
188
+ type: {
189
+ name: "Composite",
190
+ className: "Identity"
191
+ }
192
+ }
193
+ }
194
+ },
195
+ nextLink: {
196
+ serializedName: "nextLink",
197
+ type: {
198
+ name: "String"
199
+ }
200
+ }
201
+ }
202
+ }
203
+ };
204
+
205
+ export const ProxyResource: coreClient.CompositeMapper = {
206
+ type: {
207
+ name: "Composite",
208
+ className: "ProxyResource",
209
+ modelProperties: {
210
+ ...Resource.type.modelProperties
211
+ }
212
+ }
213
+ };
214
+
215
+ export const TrackedResource: coreClient.CompositeMapper = {
216
+ type: {
217
+ name: "Composite",
218
+ className: "TrackedResource",
219
+ modelProperties: {
220
+ ...Resource.type.modelProperties,
221
+ tags: {
222
+ serializedName: "tags",
223
+ type: {
224
+ name: "Dictionary",
225
+ value: { type: { name: "String" } }
226
+ }
227
+ },
228
+ location: {
229
+ serializedName: "location",
230
+ required: true,
231
+ type: {
232
+ name: "String"
233
+ }
234
+ }
235
+ }
236
+ }
237
+ };
238
+
239
+ export const IdentityUpdate: coreClient.CompositeMapper = {
240
+ type: {
241
+ name: "Composite",
242
+ className: "IdentityUpdate",
243
+ modelProperties: {
244
+ ...Resource.type.modelProperties,
245
+ location: {
246
+ serializedName: "location",
247
+ type: {
248
+ name: "String"
249
+ }
250
+ },
251
+ tags: {
252
+ serializedName: "tags",
253
+ type: {
254
+ name: "Dictionary",
255
+ value: { type: { name: "String" } }
256
+ }
257
+ },
258
+ tenantId: {
259
+ serializedName: "properties.tenantId",
260
+ readOnly: true,
261
+ type: {
262
+ name: "Uuid"
263
+ }
264
+ },
265
+ principalId: {
266
+ serializedName: "properties.principalId",
267
+ readOnly: true,
268
+ type: {
269
+ name: "Uuid"
270
+ }
271
+ },
272
+ clientId: {
273
+ serializedName: "properties.clientId",
274
+ readOnly: true,
275
+ type: {
276
+ name: "Uuid"
277
+ }
278
+ }
279
+ }
280
+ }
281
+ };
282
+
283
+ export const SystemAssignedIdentity: coreClient.CompositeMapper = {
284
+ type: {
285
+ name: "Composite",
286
+ className: "SystemAssignedIdentity",
287
+ modelProperties: {
288
+ ...ProxyResource.type.modelProperties,
289
+ location: {
290
+ serializedName: "location",
291
+ required: true,
292
+ type: {
293
+ name: "String"
294
+ }
295
+ },
296
+ tags: {
297
+ serializedName: "tags",
298
+ type: {
299
+ name: "Dictionary",
300
+ value: { type: { name: "String" } }
301
+ }
302
+ },
303
+ tenantId: {
304
+ serializedName: "properties.tenantId",
305
+ readOnly: true,
306
+ type: {
307
+ name: "Uuid"
308
+ }
309
+ },
310
+ principalId: {
311
+ serializedName: "properties.principalId",
312
+ readOnly: true,
313
+ type: {
314
+ name: "Uuid"
315
+ }
316
+ },
317
+ clientId: {
318
+ serializedName: "properties.clientId",
319
+ readOnly: true,
320
+ type: {
321
+ name: "Uuid"
322
+ }
323
+ },
324
+ clientSecretUrl: {
325
+ serializedName: "properties.clientSecretUrl",
326
+ readOnly: true,
327
+ type: {
328
+ name: "String"
329
+ }
330
+ }
331
+ }
332
+ }
333
+ };
334
+
335
+ export const Identity: coreClient.CompositeMapper = {
336
+ type: {
337
+ name: "Composite",
338
+ className: "Identity",
339
+ modelProperties: {
340
+ ...TrackedResource.type.modelProperties,
341
+ tenantId: {
342
+ serializedName: "properties.tenantId",
343
+ readOnly: true,
344
+ type: {
345
+ name: "Uuid"
346
+ }
347
+ },
348
+ principalId: {
349
+ serializedName: "properties.principalId",
350
+ readOnly: true,
351
+ type: {
352
+ name: "Uuid"
353
+ }
354
+ },
355
+ clientId: {
356
+ serializedName: "properties.clientId",
357
+ readOnly: true,
358
+ type: {
359
+ name: "Uuid"
360
+ }
361
+ }
362
+ }
363
+ }
364
+ };