@azure/arm-msi 1.2.1 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/{LICENSE.txt → LICENSE} +2 -2
- package/README.md +69 -80
- package/dist/index.js +1029 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/managedServiceIdentityClient.d.ts +20 -0
- package/dist-esm/src/managedServiceIdentityClient.d.ts.map +1 -0
- package/dist-esm/src/managedServiceIdentityClient.js +53 -0
- package/dist-esm/src/managedServiceIdentityClient.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +212 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +9 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +14 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/dist-esm/src/models/mappers.js +325 -0
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +13 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +113 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +4 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +11 -0
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +32 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +120 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operations/systemAssignedIdentities.d.ts +20 -0
- package/dist-esm/src/operations/systemAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operations/systemAssignedIdentities.js +48 -0
- package/dist-esm/src/operations/systemAssignedIdentities.js.map +1 -0
- package/dist-esm/src/operations/userAssignedIdentities.d.ts +83 -0
- package/dist-esm/src/operations/userAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operations/userAssignedIdentities.js +359 -0
- package/dist-esm/src/operations/userAssignedIdentities.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +11 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts +12 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js +9 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts +47 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js +9 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +66 -33
- package/review/arm-msi.api.md +218 -0
- package/rollup.config.js +184 -27
- package/src/index.ts +12 -0
- package/src/managedServiceIdentityClient.ts +74 -37
- package/src/models/index.ts +194 -304
- package/src/models/mappers.ts +245 -85
- package/src/models/parameters.ts +83 -24
- package/src/operations/index.ts +4 -5
- package/src/operations/operations.ts +87 -73
- package/src/operations/systemAssignedIdentities.ts +65 -0
- package/src/operations/userAssignedIdentities.ts +278 -307
- package/src/operationsInterfaces/index.ts +11 -0
- package/src/operationsInterfaces/operations.ts +22 -0
- package/src/operationsInterfaces/systemAssignedIdentities.ts +26 -0
- package/src/operationsInterfaces/userAssignedIdentities.ts +91 -0
- package/tsconfig.json +4 -4
- package/types/arm-msi.d.ts +330 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-msi.js +0 -830
- package/dist/arm-msi.js.map +0 -1
- package/dist/arm-msi.min.js +0 -1
- package/dist/arm-msi.min.js.map +0 -1
- package/esm/managedServiceIdentityClient.d.ts +0 -25
- package/esm/managedServiceIdentityClient.d.ts.map +0 -1
- package/esm/managedServiceIdentityClient.js +0 -39
- package/esm/managedServiceIdentityClient.js.map +0 -1
- package/esm/managedServiceIdentityClientContext.d.ts +0 -22
- package/esm/managedServiceIdentityClientContext.d.ts.map +0 -1
- package/esm/managedServiceIdentityClientContext.js +0 -61
- package/esm/managedServiceIdentityClientContext.js.map +0 -1
- package/esm/models/index.d.ts +0 -332
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -10
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -9
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js +0 -197
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js +0 -11
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -8
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -71
- package/esm/models/parameters.js.map +0 -1
- package/esm/models/userAssignedIdentitiesMappers.d.ts +0 -2
- package/esm/models/userAssignedIdentitiesMappers.d.ts.map +0 -1
- package/esm/models/userAssignedIdentitiesMappers.js +0 -11
- package/esm/models/userAssignedIdentitiesMappers.js.map +0 -1
- package/esm/operations/index.d.ts +0 -3
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js +0 -12
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -46
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -77
- package/esm/operations/operations.js.map +0 -1
- package/esm/operations/userAssignedIdentities.d.ts +0 -172
- package/esm/operations/userAssignedIdentities.d.ts.map +0 -1
- package/esm/operations/userAssignedIdentities.js +0 -272
- package/esm/operations/userAssignedIdentities.js.map +0 -1
- package/src/managedServiceIdentityClientContext.ts +0 -68
- package/src/models/operationsMappers.ts +0 -17
- package/src/models/userAssignedIdentitiesMappers.ts +0 -17
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/systemAssignedIdentities.ts","../src/operations/operations.ts","../src/operations/userAssignedIdentities.ts","../src/managedServiceIdentityClient.ts"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\nexport const Resource: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Resource\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const CloudError: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CloudError\",\n modelProperties: {\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"CloudErrorBody\"\n }\n }\n }\n }\n};\n\nexport const CloudErrorBody: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CloudErrorBody\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n },\n target: {\n serializedName: \"target\",\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"details\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"CloudErrorBody\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const OperationListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Operation\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const Operation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Operation\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\"\n }\n }\n }\n }\n};\n\nexport const OperationDisplay: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"resource\",\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"description\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const UserAssignedIdentitiesListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"UserAssignedIdentitiesListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Identity\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ProxyResource: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ProxyResource\",\n modelProperties: {\n ...Resource.type.modelProperties\n }\n }\n};\n\nexport const TrackedResource: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"TrackedResource\",\n modelProperties: {\n ...Resource.type.modelProperties,\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n location: {\n serializedName: \"location\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const IdentityUpdate: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"IdentityUpdate\",\n modelProperties: {\n ...Resource.type.modelProperties,\n location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n readOnly: true,\n type: {\n name: \"Uuid\"\n }\n },\n principalId: {\n serializedName: \"properties.principalId\",\n readOnly: true,\n type: {\n name: \"Uuid\"\n }\n },\n clientId: {\n serializedName: \"properties.clientId\",\n readOnly: true,\n type: {\n name: \"Uuid\"\n }\n }\n }\n }\n};\n\nexport const SystemAssignedIdentity: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SystemAssignedIdentity\",\n modelProperties: {\n ...ProxyResource.type.modelProperties,\n location: {\n serializedName: \"location\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n tenantId: {\n serializedName: \"properties.tenantId\",\n readOnly: true,\n type: {\n name: \"Uuid\"\n }\n },\n principalId: {\n serializedName: \"properties.principalId\",\n readOnly: true,\n type: {\n name: \"Uuid\"\n }\n },\n clientId: {\n serializedName: \"properties.clientId\",\n readOnly: true,\n type: {\n name: \"Uuid\"\n }\n },\n clientSecretUrl: {\n serializedName: \"properties.clientSecretUrl\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const Identity: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Identity\",\n modelProperties: {\n ...TrackedResource.type.modelProperties,\n tenantId: {\n serializedName: \"properties.tenantId\",\n readOnly: true,\n type: {\n name: \"Uuid\"\n }\n },\n principalId: {\n serializedName: \"properties.principalId\",\n readOnly: true,\n type: {\n name: \"Uuid\"\n }\n },\n clientId: {\n serializedName: \"properties.clientId\",\n readOnly: true,\n type: {\n name: \"Uuid\"\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport {\n OperationParameter,\n OperationURLParameter,\n OperationQueryParameter\n} from \"@azure/core-client\";\nimport {\n Identity as IdentityMapper,\n IdentityUpdate as IdentityUpdateMapper\n} from \"../models/mappers\";\n\nexport const accept: OperationParameter = {\n parameterPath: \"accept\",\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Accept\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const $host: OperationURLParameter = {\n parameterPath: \"$host\",\n mapper: {\n serializedName: \"$host\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const scope: OperationURLParameter = {\n parameterPath: \"scope\",\n mapper: {\n serializedName: \"scope\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const apiVersion: OperationQueryParameter = {\n parameterPath: \"apiVersion\",\n mapper: {\n defaultValue: \"2018-11-30\",\n isConstant: true,\n serializedName: \"api-version\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const nextLink: OperationURLParameter = {\n parameterPath: \"nextLink\",\n mapper: {\n serializedName: \"nextLink\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const subscriptionId: OperationURLParameter = {\n parameterPath: \"subscriptionId\",\n mapper: {\n serializedName: \"subscriptionId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const resourceGroupName: OperationURLParameter = {\n parameterPath: \"resourceGroupName\",\n mapper: {\n serializedName: \"resourceGroupName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const contentType: OperationParameter = {\n parameterPath: [\"options\", \"contentType\"],\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Content-Type\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const parameters: OperationParameter = {\n parameterPath: \"parameters\",\n mapper: IdentityMapper\n};\n\nexport const resourceName: OperationURLParameter = {\n parameterPath: \"resourceName\",\n mapper: {\n serializedName: \"resourceName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const parameters1: OperationParameter = {\n parameterPath: \"parameters\",\n mapper: IdentityUpdateMapper\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { SystemAssignedIdentities } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { ManagedServiceIdentityClient } from \"../managedServiceIdentityClient\";\nimport {\n SystemAssignedIdentitiesGetByScopeOptionalParams,\n SystemAssignedIdentitiesGetByScopeResponse\n} from \"../models\";\n\n/** Class containing SystemAssignedIdentities operations. */\nexport class SystemAssignedIdentitiesImpl implements SystemAssignedIdentities {\n private readonly client: ManagedServiceIdentityClient;\n\n /**\n * Initialize a new instance of the class SystemAssignedIdentities class.\n * @param client Reference to the service client\n */\n constructor(client: ManagedServiceIdentityClient) {\n this.client = client;\n }\n\n /**\n * Gets the systemAssignedIdentity available under the specified RP scope.\n * @param scope The resource provider scope of the resource. Parent resource being extended by Managed\n * Identities.\n * @param options The options parameters.\n */\n getByScope(\n scope: string,\n options?: SystemAssignedIdentitiesGetByScopeOptionalParams\n ): Promise<SystemAssignedIdentitiesGetByScopeResponse> {\n return this.client.sendOperationRequest(\n { scope, options },\n getByScopeOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst getByScopeOperationSpec: coreClient.OperationSpec = {\n path: \"/{scope}/providers/Microsoft.ManagedIdentity/identities/default\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SystemAssignedIdentity\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.scope],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { Operations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { ManagedServiceIdentityClient } from \"../managedServiceIdentityClient\";\nimport {\n Operation,\n OperationsListNextOptionalParams,\n OperationsListOptionalParams,\n OperationsListResponse,\n OperationsListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Operations operations. */\nexport class OperationsImpl implements Operations {\n private readonly client: ManagedServiceIdentityClient;\n\n /**\n * Initialize a new instance of the class Operations class.\n * @param client Reference to the service client\n */\n constructor(client: ManagedServiceIdentityClient) {\n this.client = client;\n }\n\n /**\n * Lists available operations for the Microsoft.ManagedIdentity provider\n * @param options The options parameters.\n */\n public list(\n options?: OperationsListOptionalParams\n ): PagedAsyncIterableIterator<Operation> {\n const iter = this.listPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(options);\n }\n };\n }\n\n private async *listPagingPage(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation[]> {\n let result = await this._list(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Lists available operations for the Microsoft.ManagedIdentity provider\n * @param options The options parameters.\n */\n private _list(\n options?: OperationsListOptionalParams\n ): Promise<OperationsListResponse> {\n return this.client.sendOperationRequest({ options }, listOperationSpec);\n }\n\n /**\n * ListNext\n * @param nextLink The nextLink from the previous successful call to the List method.\n * @param options The options parameters.\n */\n private _listNext(\n nextLink: string,\n options?: OperationsListNextOptionalParams\n ): Promise<OperationsListNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.ManagedIdentity/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.nextLink],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { UserAssignedIdentities } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { ManagedServiceIdentityClient } from \"../managedServiceIdentityClient\";\nimport {\n Identity,\n UserAssignedIdentitiesListBySubscriptionNextOptionalParams,\n UserAssignedIdentitiesListBySubscriptionOptionalParams,\n UserAssignedIdentitiesListByResourceGroupNextOptionalParams,\n UserAssignedIdentitiesListByResourceGroupOptionalParams,\n UserAssignedIdentitiesListBySubscriptionResponse,\n UserAssignedIdentitiesListByResourceGroupResponse,\n UserAssignedIdentitiesCreateOrUpdateOptionalParams,\n UserAssignedIdentitiesCreateOrUpdateResponse,\n IdentityUpdate,\n UserAssignedIdentitiesUpdateOptionalParams,\n UserAssignedIdentitiesUpdateResponse,\n UserAssignedIdentitiesGetOptionalParams,\n UserAssignedIdentitiesGetResponse,\n UserAssignedIdentitiesDeleteOptionalParams,\n UserAssignedIdentitiesListBySubscriptionNextResponse,\n UserAssignedIdentitiesListByResourceGroupNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing UserAssignedIdentities operations. */\nexport class UserAssignedIdentitiesImpl implements UserAssignedIdentities {\n private readonly client: ManagedServiceIdentityClient;\n\n /**\n * Initialize a new instance of the class UserAssignedIdentities class.\n * @param client Reference to the service client\n */\n constructor(client: ManagedServiceIdentityClient) {\n this.client = client;\n }\n\n /**\n * Lists all the userAssignedIdentities available under the specified subscription.\n * @param options The options parameters.\n */\n public listBySubscription(\n options?: UserAssignedIdentitiesListBySubscriptionOptionalParams\n ): PagedAsyncIterableIterator<Identity> {\n const iter = this.listBySubscriptionPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listBySubscriptionPagingPage(options);\n }\n };\n }\n\n private async *listBySubscriptionPagingPage(\n options?: UserAssignedIdentitiesListBySubscriptionOptionalParams\n ): AsyncIterableIterator<Identity[]> {\n let result = await this._listBySubscription(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listBySubscriptionNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listBySubscriptionPagingAll(\n options?: UserAssignedIdentitiesListBySubscriptionOptionalParams\n ): AsyncIterableIterator<Identity> {\n for await (const page of this.listBySubscriptionPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Lists all the userAssignedIdentities available under the specified ResourceGroup.\n * @param resourceGroupName The name of the Resource Group to which the identity belongs.\n * @param options The options parameters.\n */\n public listByResourceGroup(\n resourceGroupName: string,\n options?: UserAssignedIdentitiesListByResourceGroupOptionalParams\n ): PagedAsyncIterableIterator<Identity> {\n const iter = this.listByResourceGroupPagingAll(resourceGroupName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listByResourceGroupPagingPage(resourceGroupName, options);\n }\n };\n }\n\n private async *listByResourceGroupPagingPage(\n resourceGroupName: string,\n options?: UserAssignedIdentitiesListByResourceGroupOptionalParams\n ): AsyncIterableIterator<Identity[]> {\n let result = await this._listByResourceGroup(resourceGroupName, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listByResourceGroupNext(\n resourceGroupName,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listByResourceGroupPagingAll(\n resourceGroupName: string,\n options?: UserAssignedIdentitiesListByResourceGroupOptionalParams\n ): AsyncIterableIterator<Identity> {\n for await (const page of this.listByResourceGroupPagingPage(\n resourceGroupName,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * Lists all the userAssignedIdentities available under the specified subscription.\n * @param options The options parameters.\n */\n private _listBySubscription(\n options?: UserAssignedIdentitiesListBySubscriptionOptionalParams\n ): Promise<UserAssignedIdentitiesListBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionOperationSpec\n );\n }\n\n /**\n * Lists all the userAssignedIdentities available under the specified ResourceGroup.\n * @param resourceGroupName The name of the Resource Group to which the identity belongs.\n * @param options The options parameters.\n */\n private _listByResourceGroup(\n resourceGroupName: string,\n options?: UserAssignedIdentitiesListByResourceGroupOptionalParams\n ): Promise<UserAssignedIdentitiesListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, options },\n listByResourceGroupOperationSpec\n );\n }\n\n /**\n * Create or update an identity in the specified subscription and resource group.\n * @param resourceGroupName The name of the Resource Group to which the identity belongs.\n * @param resourceName The name of the identity resource.\n * @param parameters Parameters to create or update the identity\n * @param options The options parameters.\n */\n createOrUpdate(\n resourceGroupName: string,\n resourceName: string,\n parameters: Identity,\n options?: UserAssignedIdentitiesCreateOrUpdateOptionalParams\n ): Promise<UserAssignedIdentitiesCreateOrUpdateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, resourceName, parameters, options },\n createOrUpdateOperationSpec\n );\n }\n\n /**\n * Update an identity in the specified subscription and resource group.\n * @param resourceGroupName The name of the Resource Group to which the identity belongs.\n * @param resourceName The name of the identity resource.\n * @param parameters Parameters to update the identity\n * @param options The options parameters.\n */\n update(\n resourceGroupName: string,\n resourceName: string,\n parameters: IdentityUpdate,\n options?: UserAssignedIdentitiesUpdateOptionalParams\n ): Promise<UserAssignedIdentitiesUpdateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, resourceName, parameters, options },\n updateOperationSpec\n );\n }\n\n /**\n * Gets the identity.\n * @param resourceGroupName The name of the Resource Group to which the identity belongs.\n * @param resourceName The name of the identity resource.\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n resourceName: string,\n options?: UserAssignedIdentitiesGetOptionalParams\n ): Promise<UserAssignedIdentitiesGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, resourceName, options },\n getOperationSpec\n );\n }\n\n /**\n * Deletes the identity.\n * @param resourceGroupName The name of the Resource Group to which the identity belongs.\n * @param resourceName The name of the identity resource.\n * @param options The options parameters.\n */\n delete(\n resourceGroupName: string,\n resourceName: string,\n options?: UserAssignedIdentitiesDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { resourceGroupName, resourceName, options },\n deleteOperationSpec\n );\n }\n\n /**\n * ListBySubscriptionNext\n * @param nextLink The nextLink from the previous successful call to the ListBySubscription method.\n * @param options The options parameters.\n */\n private _listBySubscriptionNext(\n nextLink: string,\n options?: UserAssignedIdentitiesListBySubscriptionNextOptionalParams\n ): Promise<UserAssignedIdentitiesListBySubscriptionNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listBySubscriptionNextOperationSpec\n );\n }\n\n /**\n * ListByResourceGroupNext\n * @param resourceGroupName The name of the Resource Group to which the identity belongs.\n * @param nextLink The nextLink from the previous successful call to the ListByResourceGroup method.\n * @param options The options parameters.\n */\n private _listByResourceGroupNext(\n resourceGroupName: string,\n nextLink: string,\n options?: UserAssignedIdentitiesListByResourceGroupNextOptionalParams\n ): Promise<UserAssignedIdentitiesListByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, nextLink, options },\n listByResourceGroupNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.ManagedIdentity/userAssignedIdentities\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.UserAssignedIdentitiesListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.UserAssignedIdentitiesListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst createOrUpdateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.Identity\n },\n 201: {\n bodyMapper: Mappers.Identity\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.parameters,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.resourceName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst updateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}\",\n httpMethod: \"PATCH\",\n responses: {\n 200: {\n bodyMapper: Mappers.Identity\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.parameters1,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.resourceName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.Identity\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.resourceName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n 204: {},\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.resourceName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listBySubscriptionNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.UserAssignedIdentitiesListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.UserAssignedIdentitiesListResult\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\nimport * as coreAuth from \"@azure/core-auth\";\nimport {\n SystemAssignedIdentitiesImpl,\n OperationsImpl,\n UserAssignedIdentitiesImpl\n} from \"./operations\";\nimport {\n SystemAssignedIdentities,\n Operations,\n UserAssignedIdentities\n} from \"./operationsInterfaces\";\nimport { ManagedServiceIdentityClientOptionalParams } from \"./models\";\n\nexport class ManagedServiceIdentityClient extends coreClient.ServiceClient {\n $host: string;\n apiVersion: string;\n subscriptionId: string;\n\n /**\n * Initializes a new instance of the ManagedServiceIdentityClient class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param subscriptionId The Id of the Subscription to which the identity belongs.\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n subscriptionId: string,\n options?: ManagedServiceIdentityClientOptionalParams\n ) {\n if (credentials === undefined) {\n throw new Error(\"'credentials' cannot be null\");\n }\n if (subscriptionId === undefined) {\n throw new Error(\"'subscriptionId' cannot be null\");\n }\n\n // Initializing default values for options\n if (!options) {\n options = {};\n }\n const defaults: ManagedServiceIdentityClientOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-arm-msi/2.0.0`;\n const userAgentPrefix =\n options.userAgentOptions && options.userAgentOptions.userAgentPrefix\n ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`\n : `${packageDetails}`;\n\n if (!options.credentialScopes) {\n options.credentialScopes = [\"https://management.azure.com/.default\"];\n }\n const optionsWithDefaults = {\n ...defaults,\n ...options,\n userAgentOptions: {\n userAgentPrefix\n },\n baseUri: options.endpoint || \"https://management.azure.com\"\n };\n super(optionsWithDefaults);\n // Parameter assignments\n this.subscriptionId = subscriptionId;\n\n // Assigning values to Constant parameters\n this.$host = options.$host || \"https://management.azure.com\";\n this.apiVersion = options.apiVersion || \"2018-11-30\";\n this.systemAssignedIdentities = new SystemAssignedIdentitiesImpl(this);\n this.operations = new OperationsImpl(this);\n this.userAssignedIdentities = new UserAssignedIdentitiesImpl(this);\n }\n\n systemAssignedIdentities: SystemAssignedIdentities;\n operations: Operations;\n userAssignedIdentities: UserAssignedIdentities;\n}\n"],"names":["IdentityMapper","IdentityUpdateMapper","coreClient.createSerializer","Mappers.SystemAssignedIdentity","Mappers.CloudError","Parameters.apiVersion","Parameters.$host","Parameters.scope","Parameters.accept","__asyncValues","__asyncDelegator","serializer","Mappers.OperationListResult","Parameters.nextLink","Mappers.UserAssignedIdentitiesListResult","Parameters.subscriptionId","Parameters.resourceGroupName","Mappers.Identity","Parameters.parameters","Parameters.resourceName","Parameters.contentType","Parameters.parameters1","coreClient.ServiceClient"],"mappings":"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"}
|
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var coreClient=require("@azure/core-client"),tslib=require("tslib");const Resource={type:{name:"Composite",className:"Resource",modelProperties:{id:{serializedName:"id",readOnly:!0,type:{name:"String"}},name:{serializedName:"name",readOnly:!0,type:{name:"String"}},type:{serializedName:"type",readOnly:!0,type:{name:"String"}}}}},CloudError={type:{name:"Composite",className:"CloudError",modelProperties:{error:{serializedName:"error",type:{name:"Composite",className:"CloudErrorBody"}}}}},CloudErrorBody={type:{name:"Composite",className:"CloudErrorBody",modelProperties:{code:{serializedName:"code",type:{name:"String"}},message:{serializedName:"message",type:{name:"String"}},target:{serializedName:"target",type:{name:"String"}},details:{serializedName:"details",type:{name:"Sequence",element:{type:{name:"Composite",className:"CloudErrorBody"}}}}}}},OperationListResult={type:{name:"Composite",className:"OperationListResult",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"Operation"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},Operation={type:{name:"Composite",className:"Operation",modelProperties:{name:{serializedName:"name",type:{name:"String"}},display:{serializedName:"display",type:{name:"Composite",className:"OperationDisplay"}}}}},OperationDisplay={type:{name:"Composite",className:"OperationDisplay",modelProperties:{provider:{serializedName:"provider",type:{name:"String"}},operation:{serializedName:"operation",type:{name:"String"}},resource:{serializedName:"resource",type:{name:"String"}},description:{serializedName:"description",type:{name:"String"}}}}},UserAssignedIdentitiesListResult={type:{name:"Composite",className:"UserAssignedIdentitiesListResult",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"Identity"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},ProxyResource={type:{name:"Composite",className:"ProxyResource",modelProperties:Object.assign({},Resource.type.modelProperties)}},TrackedResource={type:{name:"Composite",className:"TrackedResource",modelProperties:Object.assign(Object.assign({},Resource.type.modelProperties),{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},location:{serializedName:"location",required:!0,type:{name:"String"}}})}},IdentityUpdate={type:{name:"Composite",className:"IdentityUpdate",modelProperties:Object.assign(Object.assign({},Resource.type.modelProperties),{location:{serializedName:"location",type:{name:"String"}},tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},tenantId:{serializedName:"properties.tenantId",readOnly:!0,type:{name:"Uuid"}},principalId:{serializedName:"properties.principalId",readOnly:!0,type:{name:"Uuid"}},clientId:{serializedName:"properties.clientId",readOnly:!0,type:{name:"Uuid"}}})}},SystemAssignedIdentity={type:{name:"Composite",className:"SystemAssignedIdentity",modelProperties:Object.assign(Object.assign({},ProxyResource.type.modelProperties),{location:{serializedName:"location",required:!0,type:{name:"String"}},tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},tenantId:{serializedName:"properties.tenantId",readOnly:!0,type:{name:"Uuid"}},principalId:{serializedName:"properties.principalId",readOnly:!0,type:{name:"Uuid"}},clientId:{serializedName:"properties.clientId",readOnly:!0,type:{name:"Uuid"}},clientSecretUrl:{serializedName:"properties.clientSecretUrl",readOnly:!0,type:{name:"String"}}})}},Identity={type:{name:"Composite",className:"Identity",modelProperties:Object.assign(Object.assign({},TrackedResource.type.modelProperties),{tenantId:{serializedName:"properties.tenantId",readOnly:!0,type:{name:"Uuid"}},principalId:{serializedName:"properties.principalId",readOnly:!0,type:{name:"Uuid"}},clientId:{serializedName:"properties.clientId",readOnly:!0,type:{name:"Uuid"}}})}};var Mappers=Object.freeze({__proto__:null,Resource:Resource,CloudError:CloudError,CloudErrorBody:CloudErrorBody,OperationListResult:OperationListResult,Operation:Operation,OperationDisplay:OperationDisplay,UserAssignedIdentitiesListResult:UserAssignedIdentitiesListResult,ProxyResource:ProxyResource,TrackedResource:TrackedResource,IdentityUpdate:IdentityUpdate,SystemAssignedIdentity:SystemAssignedIdentity,Identity:Identity});const accept={parameterPath:"accept",mapper:{defaultValue:"application/json",isConstant:!0,serializedName:"Accept",type:{name:"String"}}},$host={parameterPath:"$host",mapper:{serializedName:"$host",required:!0,type:{name:"String"}},skipEncoding:!0},scope={parameterPath:"scope",mapper:{serializedName:"scope",required:!0,type:{name:"String"}},skipEncoding:!0},apiVersion={parameterPath:"apiVersion",mapper:{defaultValue:"2018-11-30",isConstant:!0,serializedName:"api-version",type:{name:"String"}}},nextLink={parameterPath:"nextLink",mapper:{serializedName:"nextLink",required:!0,type:{name:"String"}},skipEncoding:!0},subscriptionId={parameterPath:"subscriptionId",mapper:{serializedName:"subscriptionId",required:!0,type:{name:"String"}}},resourceGroupName={parameterPath:"resourceGroupName",mapper:{serializedName:"resourceGroupName",required:!0,type:{name:"String"}}},contentType={parameterPath:["options","contentType"],mapper:{defaultValue:"application/json",isConstant:!0,serializedName:"Content-Type",type:{name:"String"}}},parameters={parameterPath:"parameters",mapper:Identity},resourceName={parameterPath:"resourceName",mapper:{serializedName:"resourceName",required:!0,type:{name:"String"}}},parameters1={parameterPath:"parameters",mapper:IdentityUpdate};class SystemAssignedIdentitiesImpl{constructor(e){this.client=e}getByScope(e,t){return this.client.sendOperationRequest({scope:e,options:t},getByScopeOperationSpec)}}const serializer=coreClient.createSerializer(Mappers,!1),getByScopeOperationSpec={path:"/{scope}/providers/Microsoft.ManagedIdentity/identities/default",httpMethod:"GET",responses:{200:{bodyMapper:SystemAssignedIdentity},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,scope],headerParameters:[accept],serializer:serializer};class OperationsImpl{constructor(e){this.client=e}list(e){const t=this.listPagingAll(e);return{next(){return t.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listPagingPage(e)}}listPagingPage(r){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._list(r));yield yield tslib.__await(e.value||[]);let t=e.nextLink;for(;t;)e=yield tslib.__await(this._listNext(t,r)),t=e.nextLink,yield yield tslib.__await(e.value||[])})}listPagingAll(a){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,i=tslib.__asyncValues(this.listPagingPage(a));!(r=yield tslib.__await(i.next())).done;){var s=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(s)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=i.return)&&(yield tslib.__await(e.call(i)))}finally{if(t)throw t.error}}})}_list(e){return this.client.sendOperationRequest({options:e},listOperationSpec)}_listNext(e,t){return this.client.sendOperationRequest({nextLink:e,options:t},listNextOperationSpec)}}const serializer$1=coreClient.createSerializer(Mappers,!1),listOperationSpec={path:"/providers/Microsoft.ManagedIdentity/operations",httpMethod:"GET",responses:{200:{bodyMapper:OperationListResult},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host],headerParameters:[accept],serializer:serializer$1},listNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:OperationListResult},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,nextLink],headerParameters:[accept],serializer:serializer$1};class UserAssignedIdentitiesImpl{constructor(e){this.client=e}listBySubscription(e){const t=this.listBySubscriptionPagingAll(e);return{next(){return t.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listBySubscriptionPagingPage(e)}}listBySubscriptionPagingPage(r){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listBySubscription(r));yield yield tslib.__await(e.value||[]);let t=e.nextLink;for(;t;)e=yield tslib.__await(this._listBySubscriptionNext(t,r)),t=e.nextLink,yield yield tslib.__await(e.value||[])})}listBySubscriptionPagingAll(a){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,i=tslib.__asyncValues(this.listBySubscriptionPagingPage(a));!(r=yield tslib.__await(i.next())).done;){var s=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(s)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=i.return)&&(yield tslib.__await(e.call(i)))}finally{if(t)throw t.error}}})}listByResourceGroup(e,t){const r=this.listByResourceGroupPagingAll(e,t);return{next(){return r.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listByResourceGroupPagingPage(e,t)}}listByResourceGroupPagingPage(r,i){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listByResourceGroup(r,i));yield yield tslib.__await(e.value||[]);let t=e.nextLink;for(;t;)e=yield tslib.__await(this._listByResourceGroupNext(r,t,i)),t=e.nextLink,yield yield tslib.__await(e.value||[])})}listByResourceGroupPagingAll(a,n){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,i=tslib.__asyncValues(this.listByResourceGroupPagingPage(a,n));!(r=yield tslib.__await(i.next())).done;){var s=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(s)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=i.return)&&(yield tslib.__await(e.call(i)))}finally{if(t)throw t.error}}})}_listBySubscription(e){return this.client.sendOperationRequest({options:e},listBySubscriptionOperationSpec)}_listByResourceGroup(e,t){return this.client.sendOperationRequest({resourceGroupName:e,options:t},listByResourceGroupOperationSpec)}createOrUpdate(e,t,r,i){return this.client.sendOperationRequest({resourceGroupName:e,resourceName:t,parameters:r,options:i},createOrUpdateOperationSpec)}update(e,t,r,i){return this.client.sendOperationRequest({resourceGroupName:e,resourceName:t,parameters:r,options:i},updateOperationSpec)}get(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,resourceName:t,options:r},getOperationSpec)}delete(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,resourceName:t,options:r},deleteOperationSpec)}_listBySubscriptionNext(e,t){return this.client.sendOperationRequest({nextLink:e,options:t},listBySubscriptionNextOperationSpec)}_listByResourceGroupNext(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,nextLink:t,options:r},listByResourceGroupNextOperationSpec)}}const serializer$2=coreClient.createSerializer(Mappers,!1),listBySubscriptionOperationSpec={path:"/subscriptions/{subscriptionId}/providers/Microsoft.ManagedIdentity/userAssignedIdentities",httpMethod:"GET",responses:{200:{bodyMapper:UserAssignedIdentitiesListResult},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId],headerParameters:[accept],serializer:serializer$2},listByResourceGroupOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities",httpMethod:"GET",responses:{200:{bodyMapper:UserAssignedIdentitiesListResult},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer$2},createOrUpdateOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",httpMethod:"PUT",responses:{200:{bodyMapper:Identity},201:{bodyMapper:Identity},default:{bodyMapper:CloudError}},requestBody:parameters,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,resourceName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$2},updateOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",httpMethod:"PATCH",responses:{200:{bodyMapper:Identity},default:{bodyMapper:CloudError}},requestBody:parameters1,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,resourceName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$2},getOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",httpMethod:"GET",responses:{200:{bodyMapper:Identity},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,resourceName],headerParameters:[accept],serializer:serializer$2},deleteOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",httpMethod:"DELETE",responses:{200:{},204:{},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,resourceName],headerParameters:[accept],serializer:serializer$2},listBySubscriptionNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:UserAssignedIdentitiesListResult},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,nextLink,subscriptionId],headerParameters:[accept],serializer:serializer$2},listByResourceGroupNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:UserAssignedIdentitiesListResult},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,nextLink,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer$2};class ManagedServiceIdentityClient extends coreClient.ServiceClient{constructor(e,t,r){if(void 0===e)throw new Error("'credentials' cannot be null");if(void 0===t)throw new Error("'subscriptionId' cannot be null");var i={requestContentType:"application/json; charset=utf-8",credential:e},e="azsdk-js-arm-msi/2.0.0",e=(r=r||{}).userAgentOptions&&r.userAgentOptions.userAgentPrefix?r.userAgentOptions.userAgentPrefix+" "+e:e;r.credentialScopes||(r.credentialScopes=["https://management.azure.com/.default"]),super(Object.assign(Object.assign(Object.assign({},i),r),{userAgentOptions:{userAgentPrefix:e},baseUri:r.endpoint||"https://management.azure.com"})),this.subscriptionId=t,this.$host=r.$host||"https://management.azure.com",this.apiVersion=r.apiVersion||"2018-11-30",this.systemAssignedIdentities=new SystemAssignedIdentitiesImpl(this),this.operations=new OperationsImpl(this),this.userAssignedIdentities=new UserAssignedIdentitiesImpl(this)}}exports.ManagedServiceIdentityClient=ManagedServiceIdentityClient;
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/systemAssignedIdentities.ts","../src/operations/operations.ts","../src/operations/userAssignedIdentities.ts","../src/managedServiceIdentityClient.ts"],"names":["Resource","type","name","className","modelProperties","id","serializedName","readOnly","CloudError","error","CloudErrorBody","code","message","target","details","element","OperationListResult","value","nextLink","Operation","display","OperationDisplay","provider","operation","resource","description","UserAssignedIdentitiesListResult","ProxyResource","Object","assign","TrackedResource","tags","location","required","IdentityUpdate","tenantId","principalId","clientId","SystemAssignedIdentity","clientSecretUrl","Identity","accept","parameterPath","mapper","defaultValue","isConstant","$host","skipEncoding","scope","apiVersion","subscriptionId","resourceGroupName","contentType","parameters","IdentityMapper","resourceName","parameters1","IdentityUpdateMapper","SystemAssignedIdentitiesImpl","constructor","client","this","getByScope","options","sendOperationRequest","getByScopeOperationSpec","serializer","coreClient.createSerializer","Mappers","path","httpMethod","responses","200","bodyMapper","Mappers.SystemAssignedIdentity","default","Mappers.CloudError","queryParameters","Parameters.apiVersion","urlParameters","Parameters.$host","Parameters.scope","headerParameters","Parameters.accept","OperationsImpl","list","iter","listPagingAll","next","Symbol","asyncIterator","byPage","listPagingPage","let","result","tslib","__await","_list","continuationToken","_listNext","_c","_b","__asyncValues","done","page","__asyncDelegator","listOperationSpec","listNextOperationSpec","Mappers.OperationListResult","Parameters.nextLink","UserAssignedIdentitiesImpl","listBySubscription","listBySubscriptionPagingAll","listBySubscriptionPagingPage","_listBySubscription","_listBySubscriptionNext","listByResourceGroup","listByResourceGroupPagingAll","listByResourceGroupPagingPage","_listByResourceGroup","_listByResourceGroupNext","listBySubscriptionOperationSpec","listByResourceGroupOperationSpec","createOrUpdate","createOrUpdateOperationSpec","update","updateOperationSpec","get","getOperationSpec","delete","deleteOperationSpec","listBySubscriptionNextOperationSpec","listByResourceGroupNextOperationSpec","Mappers.UserAssignedIdentitiesListResult","Parameters.subscriptionId","Parameters.resourceGroupName","Mappers.Identity","201","requestBody","Parameters.parameters","Parameters.resourceName","Parameters.contentType","mediaType","Parameters.parameters1","204","ManagedServiceIdentityClient","coreClient.ServiceClient","credentials","undefined","Error","defaults","requestContentType","credential","packageDetails","userAgentPrefix","userAgentOptions","credentialScopes","super","baseUri","endpoint","systemAssignedIdentities","operations","userAssignedIdentities"],"mappings":"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"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AASA,cAAc,UAAU,CAAC;AACzB,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAC9E,cAAc,wBAAwB,CAAC"}
|
@@ -0,0 +1,12 @@
|
|
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
|
+
/// <reference lib="esnext.asynciterable" />
|
9
|
+
export * from "./models";
|
10
|
+
export { ManagedServiceIdentityClient } from "./managedServiceIdentityClient";
|
11
|
+
export * from "./operationsInterfaces";
|
12
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,4CAA4C;AAC5C,cAAc,UAAU,CAAC;AACzB,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAC9E,cAAc,wBAAwB,CAAC"}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import * as coreClient from "@azure/core-client";
|
2
|
+
import * as coreAuth from "@azure/core-auth";
|
3
|
+
import { SystemAssignedIdentities, Operations, UserAssignedIdentities } from "./operationsInterfaces";
|
4
|
+
import { ManagedServiceIdentityClientOptionalParams } from "./models";
|
5
|
+
export declare class ManagedServiceIdentityClient extends coreClient.ServiceClient {
|
6
|
+
$host: string;
|
7
|
+
apiVersion: string;
|
8
|
+
subscriptionId: string;
|
9
|
+
/**
|
10
|
+
* Initializes a new instance of the ManagedServiceIdentityClient class.
|
11
|
+
* @param credentials Subscription credentials which uniquely identify client subscription.
|
12
|
+
* @param subscriptionId The Id of the Subscription to which the identity belongs.
|
13
|
+
* @param options The parameter options
|
14
|
+
*/
|
15
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: ManagedServiceIdentityClientOptionalParams);
|
16
|
+
systemAssignedIdentities: SystemAssignedIdentities;
|
17
|
+
operations: Operations;
|
18
|
+
userAssignedIdentities: UserAssignedIdentities;
|
19
|
+
}
|
20
|
+
//# sourceMappingURL=managedServiceIdentityClient.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"managedServiceIdentityClient.d.ts","sourceRoot":"","sources":["../../src/managedServiceIdentityClient.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,QAAQ,MAAM,kBAAkB,CAAC;AAM7C,OAAO,EACL,wBAAwB,EACxB,UAAU,EACV,sBAAsB,EACvB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,0CAA0C,EAAE,MAAM,UAAU,CAAC;AAEtE,qBAAa,4BAA6B,SAAQ,UAAU,CAAC,aAAa;IACxE,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IAEvB;;;;;OAKG;gBAED,WAAW,EAAE,QAAQ,CAAC,eAAe,EACrC,cAAc,EAAE,MAAM,EACtB,OAAO,CAAC,EAAE,0CAA0C;IA+CtD,wBAAwB,EAAE,wBAAwB,CAAC;IACnD,UAAU,EAAE,UAAU,CAAC;IACvB,sBAAsB,EAAE,sBAAsB,CAAC;CAChD"}
|
@@ -0,0 +1,53 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
3
|
+
* Licensed under the MIT License.
|
4
|
+
*
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
7
|
+
*/
|
8
|
+
import * as coreClient from "@azure/core-client";
|
9
|
+
import { SystemAssignedIdentitiesImpl, OperationsImpl, UserAssignedIdentitiesImpl } from "./operations";
|
10
|
+
export class ManagedServiceIdentityClient extends coreClient.ServiceClient {
|
11
|
+
/**
|
12
|
+
* Initializes a new instance of the ManagedServiceIdentityClient class.
|
13
|
+
* @param credentials Subscription credentials which uniquely identify client subscription.
|
14
|
+
* @param subscriptionId The Id of the Subscription to which the identity belongs.
|
15
|
+
* @param options The parameter options
|
16
|
+
*/
|
17
|
+
constructor(credentials, subscriptionId, options) {
|
18
|
+
if (credentials === undefined) {
|
19
|
+
throw new Error("'credentials' cannot be null");
|
20
|
+
}
|
21
|
+
if (subscriptionId === undefined) {
|
22
|
+
throw new Error("'subscriptionId' cannot be null");
|
23
|
+
}
|
24
|
+
// Initializing default values for options
|
25
|
+
if (!options) {
|
26
|
+
options = {};
|
27
|
+
}
|
28
|
+
const defaults = {
|
29
|
+
requestContentType: "application/json; charset=utf-8",
|
30
|
+
credential: credentials
|
31
|
+
};
|
32
|
+
const packageDetails = `azsdk-js-arm-msi/2.0.0`;
|
33
|
+
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
34
|
+
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
35
|
+
: `${packageDetails}`;
|
36
|
+
if (!options.credentialScopes) {
|
37
|
+
options.credentialScopes = ["https://management.azure.com/.default"];
|
38
|
+
}
|
39
|
+
const optionsWithDefaults = Object.assign(Object.assign(Object.assign({}, defaults), options), { userAgentOptions: {
|
40
|
+
userAgentPrefix
|
41
|
+
}, baseUri: options.endpoint || "https://management.azure.com" });
|
42
|
+
super(optionsWithDefaults);
|
43
|
+
// Parameter assignments
|
44
|
+
this.subscriptionId = subscriptionId;
|
45
|
+
// Assigning values to Constant parameters
|
46
|
+
this.$host = options.$host || "https://management.azure.com";
|
47
|
+
this.apiVersion = options.apiVersion || "2018-11-30";
|
48
|
+
this.systemAssignedIdentities = new SystemAssignedIdentitiesImpl(this);
|
49
|
+
this.operations = new OperationsImpl(this);
|
50
|
+
this.userAssignedIdentities = new UserAssignedIdentitiesImpl(this);
|
51
|
+
}
|
52
|
+
}
|
53
|
+
//# sourceMappingURL=managedServiceIdentityClient.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"managedServiceIdentityClient.js","sourceRoot":"","sources":["../../src/managedServiceIdentityClient.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,OAAO,EACL,4BAA4B,EAC5B,cAAc,EACd,0BAA0B,EAC3B,MAAM,cAAc,CAAC;AAQtB,MAAM,OAAO,4BAA6B,SAAQ,UAAU,CAAC,aAAa;IAKxE;;;;;OAKG;IACH,YACE,WAAqC,EACrC,cAAsB,EACtB,OAAoD;QAEpD,IAAI,WAAW,KAAK,SAAS,EAAE;YAC7B,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAC;SACjD;QACD,IAAI,cAAc,KAAK,SAAS,EAAE;YAChC,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;SACpD;QAED,0CAA0C;QAC1C,IAAI,CAAC,OAAO,EAAE;YACZ,OAAO,GAAG,EAAE,CAAC;SACd;QACD,MAAM,QAAQ,GAA+C;YAC3D,kBAAkB,EAAE,iCAAiC;YACrD,UAAU,EAAE,WAAW;SACxB,CAAC;QAEF,MAAM,cAAc,GAAG,wBAAwB,CAAC;QAChD,MAAM,eAAe,GACnB,OAAO,CAAC,gBAAgB,IAAI,OAAO,CAAC,gBAAgB,CAAC,eAAe;YAClE,CAAC,CAAC,GAAG,OAAO,CAAC,gBAAgB,CAAC,eAAe,IAAI,cAAc,EAAE;YACjE,CAAC,CAAC,GAAG,cAAc,EAAE,CAAC;QAE1B,IAAI,CAAC,OAAO,CAAC,gBAAgB,EAAE;YAC7B,OAAO,CAAC,gBAAgB,GAAG,CAAC,uCAAuC,CAAC,CAAC;SACtE;QACD,MAAM,mBAAmB,iDACpB,QAAQ,GACR,OAAO,KACV,gBAAgB,EAAE;gBAChB,eAAe;aAChB,EACD,OAAO,EAAE,OAAO,CAAC,QAAQ,IAAI,8BAA8B,GAC5D,CAAC;QACF,KAAK,CAAC,mBAAmB,CAAC,CAAC;QAC3B,wBAAwB;QACxB,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QAErC,0CAA0C;QAC1C,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,IAAI,8BAA8B,CAAC;QAC7D,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU,IAAI,YAAY,CAAC;QACrD,IAAI,CAAC,wBAAwB,GAAG,IAAI,4BAA4B,CAAC,IAAI,CAAC,CAAC;QACvE,IAAI,CAAC,UAAU,GAAG,IAAI,cAAc,CAAC,IAAI,CAAC,CAAC;QAC3C,IAAI,CAAC,sBAAsB,GAAG,IAAI,0BAA0B,CAAC,IAAI,CAAC,CAAC;IACrE,CAAC;CAKF"}
|
@@ -0,0 +1,212 @@
|
|
1
|
+
import * as coreClient from "@azure/core-client";
|
2
|
+
/** Common fields that are returned in the response for all Azure Resource Manager resources */
|
3
|
+
export interface Resource {
|
4
|
+
/**
|
5
|
+
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
6
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
7
|
+
*/
|
8
|
+
readonly id?: string;
|
9
|
+
/**
|
10
|
+
* The name of the resource
|
11
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
12
|
+
*/
|
13
|
+
readonly name?: string;
|
14
|
+
/**
|
15
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
16
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
17
|
+
*/
|
18
|
+
readonly type?: string;
|
19
|
+
}
|
20
|
+
/** An error response from the ManagedServiceIdentity service. */
|
21
|
+
export interface CloudError {
|
22
|
+
/** A list of additional details about the error. */
|
23
|
+
error?: CloudErrorBody;
|
24
|
+
}
|
25
|
+
/** An error response from the ManagedServiceIdentity service. */
|
26
|
+
export interface CloudErrorBody {
|
27
|
+
/** An identifier for the error. */
|
28
|
+
code?: string;
|
29
|
+
/** A message describing the error, intended to be suitable for display in a user interface. */
|
30
|
+
message?: string;
|
31
|
+
/** The target of the particular error. For example, the name of the property in error. */
|
32
|
+
target?: string;
|
33
|
+
/** A list of additional details about the error. */
|
34
|
+
details?: CloudErrorBody[];
|
35
|
+
}
|
36
|
+
/** A list of operations supported by Microsoft.ManagedIdentity Resource Provider. */
|
37
|
+
export interface OperationListResult {
|
38
|
+
/** A list of operations supported by Microsoft.ManagedIdentity Resource Provider. */
|
39
|
+
value?: Operation[];
|
40
|
+
/** The url to get the next page of results, if any. */
|
41
|
+
nextLink?: string;
|
42
|
+
}
|
43
|
+
/** Operation supported by the Microsoft.ManagedIdentity REST API. */
|
44
|
+
export interface Operation {
|
45
|
+
/** The name of the REST Operation. This is of the format {provider}/{resource}/{operation}. */
|
46
|
+
name?: string;
|
47
|
+
/** The object that describes the operation. */
|
48
|
+
display?: OperationDisplay;
|
49
|
+
}
|
50
|
+
/** The object that describes the operation. */
|
51
|
+
export interface OperationDisplay {
|
52
|
+
/** Friendly name of the resource provider. */
|
53
|
+
provider?: string;
|
54
|
+
/** The type of operation. For example: read, write, delete. */
|
55
|
+
operation?: string;
|
56
|
+
/** The resource type on which the operation is performed. */
|
57
|
+
resource?: string;
|
58
|
+
/** A description of the operation. */
|
59
|
+
description?: string;
|
60
|
+
}
|
61
|
+
/** Values returned by the List operation. */
|
62
|
+
export interface UserAssignedIdentitiesListResult {
|
63
|
+
/** The collection of userAssignedIdentities returned by the listing operation. */
|
64
|
+
value?: Identity[];
|
65
|
+
/** The url to get the next page of results, if any. */
|
66
|
+
nextLink?: string;
|
67
|
+
}
|
68
|
+
/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
|
69
|
+
export declare type ProxyResource = Resource & {};
|
70
|
+
/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
|
71
|
+
export declare type TrackedResource = Resource & {
|
72
|
+
/** Resource tags. */
|
73
|
+
tags?: {
|
74
|
+
[propertyName: string]: string;
|
75
|
+
};
|
76
|
+
/** The geo-location where the resource lives */
|
77
|
+
location: string;
|
78
|
+
};
|
79
|
+
/** Describes an identity resource. */
|
80
|
+
export declare type IdentityUpdate = Resource & {
|
81
|
+
/** The geo-location where the resource lives */
|
82
|
+
location?: string;
|
83
|
+
/** Resource tags */
|
84
|
+
tags?: {
|
85
|
+
[propertyName: string]: string;
|
86
|
+
};
|
87
|
+
/**
|
88
|
+
* The id of the tenant which the identity belongs to.
|
89
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
90
|
+
*/
|
91
|
+
readonly tenantId?: string;
|
92
|
+
/**
|
93
|
+
* The id of the service principal object associated with the created identity.
|
94
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
95
|
+
*/
|
96
|
+
readonly principalId?: string;
|
97
|
+
/**
|
98
|
+
* The id of the app associated with the identity. This is a random generated UUID by MSI.
|
99
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
100
|
+
*/
|
101
|
+
readonly clientId?: string;
|
102
|
+
};
|
103
|
+
/** Describes a system assigned identity resource. */
|
104
|
+
export declare type SystemAssignedIdentity = ProxyResource & {
|
105
|
+
/** The geo-location where the resource lives */
|
106
|
+
location: string;
|
107
|
+
/** Resource tags */
|
108
|
+
tags?: {
|
109
|
+
[propertyName: string]: string;
|
110
|
+
};
|
111
|
+
/**
|
112
|
+
* The id of the tenant which the identity belongs to.
|
113
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
114
|
+
*/
|
115
|
+
readonly tenantId?: string;
|
116
|
+
/**
|
117
|
+
* The id of the service principal object associated with the created identity.
|
118
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
119
|
+
*/
|
120
|
+
readonly principalId?: string;
|
121
|
+
/**
|
122
|
+
* The id of the app associated with the identity. This is a random generated UUID by MSI.
|
123
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
124
|
+
*/
|
125
|
+
readonly clientId?: string;
|
126
|
+
/**
|
127
|
+
* The ManagedServiceIdentity DataPlane URL that can be queried to obtain the identity credentials.
|
128
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
129
|
+
*/
|
130
|
+
readonly clientSecretUrl?: string;
|
131
|
+
};
|
132
|
+
/** Describes an identity resource. */
|
133
|
+
export declare type Identity = TrackedResource & {
|
134
|
+
/**
|
135
|
+
* The id of the tenant which the identity belongs to.
|
136
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
137
|
+
*/
|
138
|
+
readonly tenantId?: string;
|
139
|
+
/**
|
140
|
+
* The id of the service principal object associated with the created identity.
|
141
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
142
|
+
*/
|
143
|
+
readonly principalId?: string;
|
144
|
+
/**
|
145
|
+
* The id of the app associated with the identity. This is a random generated UUID by MSI.
|
146
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
147
|
+
*/
|
148
|
+
readonly clientId?: string;
|
149
|
+
};
|
150
|
+
/** Optional parameters. */
|
151
|
+
export interface SystemAssignedIdentitiesGetByScopeOptionalParams extends coreClient.OperationOptions {
|
152
|
+
}
|
153
|
+
/** Contains response data for the getByScope operation. */
|
154
|
+
export declare type SystemAssignedIdentitiesGetByScopeResponse = SystemAssignedIdentity;
|
155
|
+
/** Optional parameters. */
|
156
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
157
|
+
}
|
158
|
+
/** Contains response data for the list operation. */
|
159
|
+
export declare type OperationsListResponse = OperationListResult;
|
160
|
+
/** Optional parameters. */
|
161
|
+
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
162
|
+
}
|
163
|
+
/** Contains response data for the listNext operation. */
|
164
|
+
export declare type OperationsListNextResponse = OperationListResult;
|
165
|
+
/** Optional parameters. */
|
166
|
+
export interface UserAssignedIdentitiesListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
167
|
+
}
|
168
|
+
/** Contains response data for the listBySubscription operation. */
|
169
|
+
export declare type UserAssignedIdentitiesListBySubscriptionResponse = UserAssignedIdentitiesListResult;
|
170
|
+
/** Optional parameters. */
|
171
|
+
export interface UserAssignedIdentitiesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
172
|
+
}
|
173
|
+
/** Contains response data for the listByResourceGroup operation. */
|
174
|
+
export declare type UserAssignedIdentitiesListByResourceGroupResponse = UserAssignedIdentitiesListResult;
|
175
|
+
/** Optional parameters. */
|
176
|
+
export interface UserAssignedIdentitiesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
177
|
+
}
|
178
|
+
/** Contains response data for the createOrUpdate operation. */
|
179
|
+
export declare type UserAssignedIdentitiesCreateOrUpdateResponse = Identity;
|
180
|
+
/** Optional parameters. */
|
181
|
+
export interface UserAssignedIdentitiesUpdateOptionalParams extends coreClient.OperationOptions {
|
182
|
+
}
|
183
|
+
/** Contains response data for the update operation. */
|
184
|
+
export declare type UserAssignedIdentitiesUpdateResponse = Identity;
|
185
|
+
/** Optional parameters. */
|
186
|
+
export interface UserAssignedIdentitiesGetOptionalParams extends coreClient.OperationOptions {
|
187
|
+
}
|
188
|
+
/** Contains response data for the get operation. */
|
189
|
+
export declare type UserAssignedIdentitiesGetResponse = Identity;
|
190
|
+
/** Optional parameters. */
|
191
|
+
export interface UserAssignedIdentitiesDeleteOptionalParams extends coreClient.OperationOptions {
|
192
|
+
}
|
193
|
+
/** Optional parameters. */
|
194
|
+
export interface UserAssignedIdentitiesListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
195
|
+
}
|
196
|
+
/** Contains response data for the listBySubscriptionNext operation. */
|
197
|
+
export declare type UserAssignedIdentitiesListBySubscriptionNextResponse = UserAssignedIdentitiesListResult;
|
198
|
+
/** Optional parameters. */
|
199
|
+
export interface UserAssignedIdentitiesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
200
|
+
}
|
201
|
+
/** Contains response data for the listByResourceGroupNext operation. */
|
202
|
+
export declare type UserAssignedIdentitiesListByResourceGroupNextResponse = UserAssignedIdentitiesListResult;
|
203
|
+
/** Optional parameters. */
|
204
|
+
export interface ManagedServiceIdentityClientOptionalParams extends coreClient.ServiceClientOptions {
|
205
|
+
/** server parameter */
|
206
|
+
$host?: string;
|
207
|
+
/** Api Version */
|
208
|
+
apiVersion?: string;
|
209
|
+
/** Overrides client endpoint. */
|
210
|
+
endpoint?: string;
|
211
|
+
}
|
212
|
+
//# sourceMappingURL=index.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
3
|
+
* Licensed under the MIT License.
|
4
|
+
*
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
7
|
+
*/
|
8
|
+
export {};
|
9
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import * as coreClient from "@azure/core-client";
|
2
|
+
export declare const Resource: coreClient.CompositeMapper;
|
3
|
+
export declare const CloudError: coreClient.CompositeMapper;
|
4
|
+
export declare const CloudErrorBody: coreClient.CompositeMapper;
|
5
|
+
export declare const OperationListResult: coreClient.CompositeMapper;
|
6
|
+
export declare const Operation: coreClient.CompositeMapper;
|
7
|
+
export declare const OperationDisplay: coreClient.CompositeMapper;
|
8
|
+
export declare const UserAssignedIdentitiesListResult: coreClient.CompositeMapper;
|
9
|
+
export declare const ProxyResource: coreClient.CompositeMapper;
|
10
|
+
export declare const TrackedResource: coreClient.CompositeMapper;
|
11
|
+
export declare const IdentityUpdate: coreClient.CompositeMapper;
|
12
|
+
export declare const SystemAssignedIdentity: coreClient.CompositeMapper;
|
13
|
+
export declare const Identity: coreClient.CompositeMapper;
|
14
|
+
//# sourceMappingURL=mappers.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eA4BjC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eAcnC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eAqCvC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,eAyB5C,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eAoBlC,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,UAAU,CAAC,eA+BzC,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,UAAU,CAAC,eAyBzD,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eAQtC,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC,eAsBxC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eA0CvC,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,UAAU,CAAC,eAkD/C,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eA6BjC,CAAC"}
|