@azure/arm-msi 1.2.1 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/{LICENSE.txt → LICENSE} +2 -2
- package/README.md +69 -80
- package/dist/index.js +1029 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/managedServiceIdentityClient.d.ts +20 -0
- package/dist-esm/src/managedServiceIdentityClient.d.ts.map +1 -0
- package/dist-esm/src/managedServiceIdentityClient.js +53 -0
- package/dist-esm/src/managedServiceIdentityClient.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +212 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +9 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +14 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/dist-esm/src/models/mappers.js +325 -0
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +13 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +113 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +4 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +11 -0
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +32 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +120 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operations/systemAssignedIdentities.d.ts +20 -0
- package/dist-esm/src/operations/systemAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operations/systemAssignedIdentities.js +48 -0
- package/dist-esm/src/operations/systemAssignedIdentities.js.map +1 -0
- package/dist-esm/src/operations/userAssignedIdentities.d.ts +83 -0
- package/dist-esm/src/operations/userAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operations/userAssignedIdentities.js +359 -0
- package/dist-esm/src/operations/userAssignedIdentities.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +11 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts +12 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js +9 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts +47 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js +9 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +66 -33
- package/review/arm-msi.api.md +218 -0
- package/rollup.config.js +184 -27
- package/src/index.ts +12 -0
- package/src/managedServiceIdentityClient.ts +74 -37
- package/src/models/index.ts +194 -304
- package/src/models/mappers.ts +245 -85
- package/src/models/parameters.ts +83 -24
- package/src/operations/index.ts +4 -5
- package/src/operations/operations.ts +87 -73
- package/src/operations/systemAssignedIdentities.ts +65 -0
- package/src/operations/userAssignedIdentities.ts +278 -307
- package/src/operationsInterfaces/index.ts +11 -0
- package/src/operationsInterfaces/operations.ts +22 -0
- package/src/operationsInterfaces/systemAssignedIdentities.ts +26 -0
- package/src/operationsInterfaces/userAssignedIdentities.ts +91 -0
- package/tsconfig.json +4 -4
- package/types/arm-msi.d.ts +330 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-msi.js +0 -830
- package/dist/arm-msi.js.map +0 -1
- package/dist/arm-msi.min.js +0 -1
- package/dist/arm-msi.min.js.map +0 -1
- package/esm/managedServiceIdentityClient.d.ts +0 -25
- package/esm/managedServiceIdentityClient.d.ts.map +0 -1
- package/esm/managedServiceIdentityClient.js +0 -39
- package/esm/managedServiceIdentityClient.js.map +0 -1
- package/esm/managedServiceIdentityClientContext.d.ts +0 -22
- package/esm/managedServiceIdentityClientContext.d.ts.map +0 -1
- package/esm/managedServiceIdentityClientContext.js +0 -61
- package/esm/managedServiceIdentityClientContext.js.map +0 -1
- package/esm/models/index.d.ts +0 -332
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -10
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -9
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js +0 -197
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js +0 -11
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -8
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -71
- package/esm/models/parameters.js.map +0 -1
- package/esm/models/userAssignedIdentitiesMappers.d.ts +0 -2
- package/esm/models/userAssignedIdentitiesMappers.d.ts.map +0 -1
- package/esm/models/userAssignedIdentitiesMappers.js +0 -11
- package/esm/models/userAssignedIdentitiesMappers.js.map +0 -1
- package/esm/operations/index.d.ts +0 -3
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js +0 -12
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -46
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -77
- package/esm/operations/operations.js.map +0 -1
- package/esm/operations/userAssignedIdentities.d.ts +0 -172
- package/esm/operations/userAssignedIdentities.d.ts.map +0 -1
- package/esm/operations/userAssignedIdentities.js +0 -272
- package/esm/operations/userAssignedIdentities.js.map +0 -1
- package/src/managedServiceIdentityClientContext.ts +0 -68
- package/src/models/operationsMappers.ts +0 -17
- package/src/models/userAssignedIdentitiesMappers.ts +0 -17
@@ -1,50 +1,87 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
3
|
-
* Licensed under the MIT License.
|
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
|
12
|
-
import
|
13
|
-
import
|
14
|
-
|
15
|
-
|
16
|
-
|
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
|
-
|
20
|
-
|
21
|
-
|
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
|
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
|
32
|
+
* @param options The parameter options
|
34
33
|
*/
|
35
|
-
constructor(
|
36
|
-
|
37
|
-
|
38
|
-
|
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
|
-
|
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
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
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
|
+
}
|
package/src/models/index.ts
CHANGED
@@ -1,358 +1,248 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
3
|
-
* Licensed under the MIT License.
|
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
|
12
|
-
import * as msRest from "@azure/ms-rest-js";
|
9
|
+
import * as coreClient from "@azure/core-client";
|
13
10
|
|
14
|
-
|
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
|
-
*
|
27
|
-
*
|
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
|
-
*
|
33
|
-
*
|
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
|
-
*
|
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
|
-
*
|
47
|
-
*
|
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
|
-
*
|
54
|
-
*
|
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
|
-
*
|
61
|
-
*
|
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
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
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
|
-
*
|
94
|
-
*
|
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
|
-
|
128
|
+
readonly tenantId?: string;
|
97
129
|
/**
|
98
|
-
*
|
99
|
-
*
|
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
|
-
|
133
|
+
readonly principalId?: string;
|
102
134
|
/**
|
103
|
-
*
|
104
|
-
*
|
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
|
-
|
138
|
+
readonly clientId?: string;
|
107
139
|
/**
|
108
|
-
*
|
109
|
-
*
|
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
|
-
|
112
|
-
}
|
143
|
+
readonly clientSecretUrl?: string;
|
144
|
+
};
|
113
145
|
|
114
|
-
/**
|
115
|
-
|
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
|
-
*
|
125
|
-
* This
|
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
|
-
|
152
|
+
readonly tenantId?: string;
|
128
153
|
/**
|
129
|
-
*
|
130
|
-
*
|
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
|
-
|
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
|
-
*
|
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
|
-
|
145
|
-
}
|
162
|
+
readonly clientId?: string;
|
163
|
+
};
|
146
164
|
|
165
|
+
/** Optional parameters. */
|
166
|
+
export interface SystemAssignedIdentitiesGetByScopeOptionalParams
|
167
|
+
extends coreClient.OperationOptions {}
|
147
168
|
|
148
|
-
/**
|
149
|
-
|
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
|
-
|
168
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
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
|
+
}
|