@azure/arm-msi 1.2.1 → 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 (129) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/{LICENSE.txt → LICENSE} +2 -2
  3. package/README.md +69 -80
  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 +67 -24
  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 +74 -37
  69. package/src/models/index.ts +194 -304
  70. package/src/models/mappers.ts +245 -85
  71. package/src/models/parameters.ts +83 -24
  72. package/src/operations/index.ts +4 -5
  73. package/src/operations/operations.ts +87 -73
  74. package/src/operations/systemAssignedIdentities.ts +65 -0
  75. package/src/operations/userAssignedIdentities.ts +278 -307
  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 -830
  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 -25
  88. package/esm/managedServiceIdentityClient.d.ts.map +0 -1
  89. package/esm/managedServiceIdentityClient.js +0 -39
  90. package/esm/managedServiceIdentityClient.js.map +0 -1
  91. package/esm/managedServiceIdentityClientContext.d.ts +0 -22
  92. package/esm/managedServiceIdentityClientContext.d.ts.map +0 -1
  93. package/esm/managedServiceIdentityClientContext.js +0 -61
  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/src/managedServiceIdentityClientContext.ts +0 -68
  128. package/src/models/operationsMappers.ts +0 -17
  129. package/src/models/userAssignedIdentitiesMappers.ts +0 -17
@@ -1,50 +1,87 @@
1
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.
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
5
4
  *
6
5
  * Code generated by Microsoft (R) AutoRest Code Generator.
7
- * Changes may cause incorrect behavior and will be lost if the code is
8
- * regenerated.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
9
7
  */
10
8
 
11
- import * as msRest from "@azure/ms-rest-js";
12
- import { TokenCredential } from "@azure/core-auth";
13
- import * as Models from "./models";
14
- import * as Mappers from "./models/mappers";
15
- import * as operations from "./operations";
16
- import { ManagedServiceIdentityClientContext } from "./managedServiceIdentityClientContext";
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";
17
22
 
18
-
19
- class ManagedServiceIdentityClient extends ManagedServiceIdentityClientContext {
20
- // Operation groups
21
- operations: operations.Operations;
22
- userAssignedIdentities: operations.UserAssignedIdentities;
23
+ export class ManagedServiceIdentityClient extends coreClient.ServiceClient {
24
+ $host: string;
25
+ apiVersion: string;
26
+ subscriptionId: string;
23
27
 
24
28
  /**
25
29
  * Initializes a new instance of the ManagedServiceIdentityClient class.
26
- * @param credentials Credentials needed for the client to connect to Azure. Credentials
27
- * implementing the TokenCredential interface from the @azure/identity package are recommended. For
28
- * more information about these credentials, see
29
- * {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
30
- * ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
31
- * @azure/ms-rest-browserauth are also supported.
30
+ * @param credentials Subscription credentials which uniquely identify client subscription.
32
31
  * @param subscriptionId The Id of the Subscription to which the identity belongs.
33
- * @param [options] The parameter options
32
+ * @param options The parameter options
34
33
  */
35
- constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.ManagedServiceIdentityClientOptions) {
36
- super(credentials, subscriptionId, options);
37
- this.operations = new operations.Operations(this);
38
- this.userAssignedIdentities = new operations.UserAssignedIdentities(this);
39
- }
40
- }
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
+ };
41
54
 
42
- // Operation Specifications
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}`;
43
60
 
44
- export {
45
- ManagedServiceIdentityClient,
46
- ManagedServiceIdentityClientContext,
47
- Models as ManagedServiceIdentityModels,
48
- Mappers as ManagedServiceIdentityMappers
49
- };
50
- export * from "./operations";
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
+ }
@@ -1,358 +1,248 @@
1
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.
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
5
4
  *
6
5
  * Code generated by Microsoft (R) AutoRest Code Generator.
7
- * Changes may cause incorrect behavior and will be lost if the code is
8
- * regenerated.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
9
7
  */
10
8
 
11
- import { BaseResource, CloudError, AzureServiceClientOptions } from "@azure/ms-rest-azure-js";
12
- import * as msRest from "@azure/ms-rest-js";
9
+ import * as coreClient from "@azure/core-client";
13
10
 
14
- export { BaseResource, CloudError };
15
-
16
-
17
- /**
18
- * @interface
19
- * An interface representing Identity.
20
- * Describes an identity resource.
21
- *
22
- * @extends BaseResource
23
- */
24
- export interface Identity extends BaseResource {
11
+ /** Common fields that are returned in the response for all Azure Resource Manager resources */
12
+ export interface Resource {
25
13
  /**
26
- * @member {string} [id] The id of the created identity.
27
- * **NOTE: This property will not be serialized. It can only be populated by
28
- * the server.**
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.
29
16
  */
30
17
  readonly id?: string;
31
18
  /**
32
- * @member {string} [name] The name of the created identity.
33
- * **NOTE: This property will not be serialized. It can only be populated by
34
- * the server.**
19
+ * The name of the resource
20
+ * NOTE: This property will not be serialized. It can only be populated by the server.
35
21
  */
36
22
  readonly name?: string;
37
23
  /**
38
- * @member {string} [location] The Azure region where the identity lives.
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.
39
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 */
40
98
  location?: string;
41
- /**
42
- * @member {{ [propertyName: string]: string }} [tags] Resource tags
43
- */
99
+ /** Resource tags */
44
100
  tags?: { [propertyName: string]: string };
45
101
  /**
46
- * @member {string} [tenantId] The id of the tenant which the identity
47
- * belongs to.
48
- * **NOTE: This property will not be serialized. It can only be populated by
49
- * the server.**
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.
50
104
  */
51
105
  readonly tenantId?: string;
52
106
  /**
53
- * @member {string} [principalId] The id of the service principal object
54
- * associated with the created identity.
55
- * **NOTE: This property will not be serialized. It can only be populated by
56
- * the server.**
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.
57
109
  */
58
110
  readonly principalId?: string;
59
111
  /**
60
- * @member {string} [clientId] The id of the app associated with the
61
- * identity. This is a random generated UUID by MSI.
62
- * **NOTE: This property will not be serialized. It can only be populated by
63
- * the server.**
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.
64
114
  */
65
115
  readonly clientId?: string;
66
- /**
67
- * @member {string} [clientSecretUrl] The ManagedServiceIdentity DataPlane
68
- * URL that can be queried to obtain the identity credentials.
69
- * **NOTE: This property will not be serialized. It can only be populated by
70
- * the server.**
71
- */
72
- readonly clientSecretUrl?: string;
73
- /**
74
- * @member {UserAssignedIdentities} [type] The type of resource i.e.
75
- * Microsoft.ManagedIdentity/userAssignedIdentities. Possible values include:
76
- * 'Microsoft.ManagedIdentity/userAssignedIdentities'
77
- * **NOTE: This property will not be serialized. It can only be populated by
78
- * the server.**
79
- */
80
- readonly type?: UserAssignedIdentities;
81
- }
116
+ };
82
117
 
83
- /**
84
- * @interface
85
- * An interface representing OperationDisplay.
86
- * @summary Operation Display.
87
- *
88
- * The object that describes the operation.
89
- *
90
- */
91
- export interface OperationDisplay {
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 };
92
124
  /**
93
- * @member {string} [provider] Resource Provider Name. Friendly name of the
94
- * resource provider.
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.
95
127
  */
96
- provider?: string;
128
+ readonly tenantId?: string;
97
129
  /**
98
- * @member {string} [operation] Operation Type. The type of operation. For
99
- * example: read, write, delete.
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.
100
132
  */
101
- operation?: string;
133
+ readonly principalId?: string;
102
134
  /**
103
- * @member {string} [resource] Resource Type. The resource type on which the
104
- * operation is performed.
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.
105
137
  */
106
- resource?: string;
138
+ readonly clientId?: string;
107
139
  /**
108
- * @member {string} [description] Operation description. A description of the
109
- * operation.
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.
110
142
  */
111
- description?: string;
112
- }
143
+ readonly clientSecretUrl?: string;
144
+ };
113
145
 
114
- /**
115
- * @interface
116
- * An interface representing Operation.
117
- * @summary Microsoft.ManagedIdentity Operation.
118
- *
119
- * Operation supported by the Microsoft.ManagedIdentity REST API.
120
- *
121
- */
122
- export interface Operation {
146
+ /** Describes an identity resource. */
147
+ export type Identity = TrackedResource & {
123
148
  /**
124
- * @member {string} [name] Operation Name. The name of the REST Operation.
125
- * This is of the format {provider}/{resource}/{operation}.
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.
126
151
  */
127
- name?: string;
152
+ readonly tenantId?: string;
128
153
  /**
129
- * @member {OperationDisplay} [display] Operation Display. The object that
130
- * describes the operation.
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.
131
156
  */
132
- display?: OperationDisplay;
133
- }
134
-
135
- /**
136
- * @interface
137
- * An interface representing ManagedServiceIdentityClientOptions.
138
- * @extends AzureServiceClientOptions
139
- */
140
- export interface ManagedServiceIdentityClientOptions extends AzureServiceClientOptions {
157
+ readonly principalId?: string;
141
158
  /**
142
- * @member {string} [baseUri]
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.
143
161
  */
144
- baseUri?: string;
145
- }
162
+ readonly clientId?: string;
163
+ };
146
164
 
165
+ /** Optional parameters. */
166
+ export interface SystemAssignedIdentitiesGetByScopeOptionalParams
167
+ extends coreClient.OperationOptions {}
147
168
 
148
- /**
149
- * @interface
150
- * An interface representing the OperationListResult.
151
- * @summary Operations List.
152
- *
153
- * A list of operations supported by Microsoft.ManagedIdentity Resource
154
- * Provider.
155
- *
156
- * @extends Array<Operation>
157
- */
158
- export interface OperationListResult extends Array<Operation> {
159
- /**
160
- * @member {string} [nextLink] The url to get the next page of results, if
161
- * any.
162
- */
163
- nextLink?: string;
164
- }
169
+ /** Contains response data for the getByScope operation. */
170
+ export type SystemAssignedIdentitiesGetByScopeResponse = SystemAssignedIdentity;
165
171
 
166
- /**
167
- * @interface
168
- * An interface representing the UserAssignedIdentitiesListResult.
169
- * Values returned by the List operation.
170
- *
171
- * @extends Array<Identity>
172
- */
173
- export interface UserAssignedIdentitiesListResult extends Array<Identity> {
174
- /**
175
- * @member {string} [nextLink] The url to get the next page of results, if
176
- * any.
177
- */
178
- nextLink?: string;
179
- }
172
+ /** Optional parameters. */
173
+ export interface OperationsListOptionalParams
174
+ extends coreClient.OperationOptions {}
180
175
 
181
- /**
182
- * Defines values for UserAssignedIdentities.
183
- * Possible values include: 'Microsoft.ManagedIdentity/userAssignedIdentities'
184
- * @readonly
185
- * @enum {string}
186
- */
187
- export type UserAssignedIdentities = 'Microsoft.ManagedIdentity/userAssignedIdentities';
176
+ /** Contains response data for the list operation. */
177
+ export type OperationsListResponse = OperationListResult;
188
178
 
189
- /**
190
- * Contains response data for the list operation.
191
- */
192
- export type OperationsListResponse = OperationListResult & {
193
- /**
194
- * The underlying HTTP response.
195
- */
196
- _response: msRest.HttpResponse & {
197
- /**
198
- * The response body as text (string format)
199
- */
200
- bodyAsText: string;
201
- /**
202
- * The response body as parsed JSON or XML
203
- */
204
- parsedBody: OperationListResult;
205
- };
206
- };
179
+ /** Optional parameters. */
180
+ export interface OperationsListNextOptionalParams
181
+ extends coreClient.OperationOptions {}
207
182
 
208
- /**
209
- * Contains response data for the listNext operation.
210
- */
211
- export type OperationsListNextResponse = OperationListResult & {
212
- /**
213
- * The underlying HTTP response.
214
- */
215
- _response: msRest.HttpResponse & {
216
- /**
217
- * The response body as text (string format)
218
- */
219
- bodyAsText: string;
220
- /**
221
- * The response body as parsed JSON or XML
222
- */
223
- parsedBody: OperationListResult;
224
- };
225
- };
183
+ /** Contains response data for the listNext operation. */
184
+ export type OperationsListNextResponse = OperationListResult;
226
185
 
227
- /**
228
- * Contains response data for the listBySubscription operation.
229
- */
230
- export type UserAssignedIdentitiesListBySubscriptionResponse = UserAssignedIdentitiesListResult & {
231
- /**
232
- * The underlying HTTP response.
233
- */
234
- _response: msRest.HttpResponse & {
235
- /**
236
- * The response body as text (string format)
237
- */
238
- bodyAsText: string;
239
- /**
240
- * The response body as parsed JSON or XML
241
- */
242
- parsedBody: UserAssignedIdentitiesListResult;
243
- };
244
- };
186
+ /** Optional parameters. */
187
+ export interface UserAssignedIdentitiesListBySubscriptionOptionalParams
188
+ extends coreClient.OperationOptions {}
245
189
 
246
- /**
247
- * Contains response data for the listByResourceGroup operation.
248
- */
249
- export type UserAssignedIdentitiesListByResourceGroupResponse = UserAssignedIdentitiesListResult & {
250
- /**
251
- * The underlying HTTP response.
252
- */
253
- _response: msRest.HttpResponse & {
254
- /**
255
- * The response body as text (string format)
256
- */
257
- bodyAsText: string;
258
- /**
259
- * The response body as parsed JSON or XML
260
- */
261
- parsedBody: UserAssignedIdentitiesListResult;
262
- };
263
- };
190
+ /** Contains response data for the listBySubscription operation. */
191
+ export type UserAssignedIdentitiesListBySubscriptionResponse = UserAssignedIdentitiesListResult;
264
192
 
265
- /**
266
- * Contains response data for the createOrUpdate operation.
267
- */
268
- export type UserAssignedIdentitiesCreateOrUpdateResponse = Identity & {
269
- /**
270
- * The underlying HTTP response.
271
- */
272
- _response: msRest.HttpResponse & {
273
- /**
274
- * The response body as text (string format)
275
- */
276
- bodyAsText: string;
277
- /**
278
- * The response body as parsed JSON or XML
279
- */
280
- parsedBody: Identity;
281
- };
282
- };
193
+ /** Optional parameters. */
194
+ export interface UserAssignedIdentitiesListByResourceGroupOptionalParams
195
+ extends coreClient.OperationOptions {}
283
196
 
284
- /**
285
- * Contains response data for the update operation.
286
- */
287
- export type UserAssignedIdentitiesUpdateResponse = Identity & {
288
- /**
289
- * The underlying HTTP response.
290
- */
291
- _response: msRest.HttpResponse & {
292
- /**
293
- * The response body as text (string format)
294
- */
295
- bodyAsText: string;
296
- /**
297
- * The response body as parsed JSON or XML
298
- */
299
- parsedBody: Identity;
300
- };
301
- };
197
+ /** Contains response data for the listByResourceGroup operation. */
198
+ export type UserAssignedIdentitiesListByResourceGroupResponse = UserAssignedIdentitiesListResult;
302
199
 
303
- /**
304
- * Contains response data for the get operation.
305
- */
306
- export type UserAssignedIdentitiesGetResponse = Identity & {
307
- /**
308
- * The underlying HTTP response.
309
- */
310
- _response: msRest.HttpResponse & {
311
- /**
312
- * The response body as text (string format)
313
- */
314
- bodyAsText: string;
315
- /**
316
- * The response body as parsed JSON or XML
317
- */
318
- parsedBody: Identity;
319
- };
320
- };
200
+ /** Optional parameters. */
201
+ export interface UserAssignedIdentitiesCreateOrUpdateOptionalParams
202
+ extends coreClient.OperationOptions {}
321
203
 
322
- /**
323
- * Contains response data for the listBySubscriptionNext operation.
324
- */
325
- export type UserAssignedIdentitiesListBySubscriptionNextResponse = UserAssignedIdentitiesListResult & {
326
- /**
327
- * The underlying HTTP response.
328
- */
329
- _response: msRest.HttpResponse & {
330
- /**
331
- * The response body as text (string format)
332
- */
333
- bodyAsText: string;
334
- /**
335
- * The response body as parsed JSON or XML
336
- */
337
- parsedBody: UserAssignedIdentitiesListResult;
338
- };
339
- };
204
+ /** Contains response data for the createOrUpdate operation. */
205
+ export type UserAssignedIdentitiesCreateOrUpdateResponse = Identity;
340
206
 
341
- /**
342
- * Contains response data for the listByResourceGroupNext operation.
343
- */
344
- export type UserAssignedIdentitiesListByResourceGroupNextResponse = UserAssignedIdentitiesListResult & {
345
- /**
346
- * The underlying HTTP response.
347
- */
348
- _response: msRest.HttpResponse & {
349
- /**
350
- * The response body as text (string format)
351
- */
352
- bodyAsText: string;
353
- /**
354
- * The response body as parsed JSON or XML
355
- */
356
- parsedBody: UserAssignedIdentitiesListResult;
357
- };
358
- };
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
+ }