@azure/arm-changeanalysis 2.0.1 → 2.0.2-alpha.20220907.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Release History
2
2
 
3
+ ## 2.0.2 (Unreleased)
4
+
5
+ ### Features Added
6
+
7
+ ### Breaking Changes
8
+
9
+ ### Bugs Fixed
10
+
11
+ ### Other Changes
12
+
3
13
  ## 2.0.1 (2022-04-11)
4
14
 
5
15
  - Bug fix
package/dist/index.js CHANGED
@@ -1098,7 +1098,7 @@ class AzureChangeAnalysisManagementClient extends coreClient__namespace.ServiceC
1098
1098
  requestContentType: "application/json; charset=utf-8",
1099
1099
  credential: credentials
1100
1100
  };
1101
- const packageDetails = `azsdk-js-arm-changeanalysis/2.0.1`;
1101
+ const packageDetails = `azsdk-js-arm-changeanalysis/2.0.2`;
1102
1102
  const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
1103
1103
  ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
1104
1104
  : `${packageDetails}`;
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../src/models/index.ts","../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/operations.ts","../src/operations/resourceChanges.ts","../src/operations/changes.ts","../src/azureChangeAnalysisManagementClient.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\n/** The resource provider operation list. */\nexport interface ResourceProviderOperationList {\n /** Resource provider operations list. */\n value?: ResourceProviderOperationDefinition[];\n /** The URI that can be used to request the next page for list of Azure operations. */\n nextLink?: string;\n}\n\n/** The resource provider operation definition. */\nexport interface ResourceProviderOperationDefinition {\n /** The resource provider operation name. */\n name?: string;\n /** The resource provider operation details. */\n display?: ResourceProviderOperationDisplay;\n}\n\n/** The resource provider operation details. */\nexport interface ResourceProviderOperationDisplay {\n /** Name of the resource provider. */\n provider?: string;\n /** Name of the resource type. */\n resource?: string;\n /** Name of the resource provider operation. */\n operation?: string;\n /** Description of the resource provider operation. */\n description?: string;\n}\n\n/** Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.). */\nexport interface ErrorResponse {\n /** The error object. */\n error?: ErrorDetail;\n}\n\n/** The error detail. */\nexport interface ErrorDetail {\n /**\n * The error code.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly code?: string;\n /**\n * The error message.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly message?: string;\n /**\n * The error target.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly target?: string;\n /**\n * The error details.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly details?: ErrorDetail[];\n /**\n * The error additional info.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly additionalInfo?: ErrorAdditionalInfo[];\n}\n\n/** The resource management error additional info. */\nexport interface ErrorAdditionalInfo {\n /**\n * The additional info type.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The additional info.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly info?: Record<string, unknown>;\n}\n\n/** The list of detected changes. */\nexport interface ChangeList {\n /** The list of changes. */\n value?: Change[];\n /** The URI that can be used to request the next page of changes. */\n nextLink?: string;\n}\n\n/** The properties of a change. */\nexport interface ChangeProperties {\n /** The resource id that the change is attached to. */\n resourceId?: string;\n /** The time when the change is detected. */\n timeStamp?: Date;\n /**\n * The list of identities who might initiated the change.\n * The identity could be user name (email address) or the object ID of the Service Principal.\n */\n initiatedByList?: string[];\n /** The type of the change. */\n changeType?: ChangeType;\n /** The list of detailed changes at json property level. */\n propertyChanges?: PropertyChange[];\n}\n\n/** Data of a property change. */\nexport interface PropertyChange {\n /** The type of the change. */\n changeType?: ChangeType;\n /** The change category. */\n changeCategory?: ChangeCategory;\n /** The json path of the changed property. */\n jsonPath?: string;\n /** The enhanced display name of the json path. E.g., the json path value[0].properties will be translated to something meaningful like slots[\"Staging\"].properties. */\n displayName?: string;\n level?: Level;\n /** The description of the changed property. */\n description?: string;\n /** The value of the property before the change. */\n oldValue?: string;\n /** The value of the property after the change. */\n newValue?: string;\n /** The boolean indicating whether the oldValue and newValue are masked. The values are masked if it contains sensitive information that the user doesn't have access to. */\n isDataMasked?: boolean;\n}\n\n/** Common fields that are returned in the response for all Azure Resource Manager resources */\nexport interface Resource {\n /**\n * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The name of the resource\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * The type of the resource. E.g. \"Microsoft.Compute/virtualMachines\" or \"Microsoft.Storage/storageAccounts\"\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n}\n\n/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */\nexport type ProxyResource = Resource & {};\n\n/** The detected change. */\nexport type Change = ProxyResource & {\n /** The properties of a change. */\n properties?: ChangeProperties;\n};\n\n/** Known values of {@link ChangeType} that the service accepts. */\nexport enum KnownChangeType {\n Add = \"Add\",\n Remove = \"Remove\",\n Update = \"Update\"\n}\n\n/**\n * Defines values for ChangeType. \\\n * {@link KnownChangeType} can be used interchangeably with ChangeType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Add** \\\n * **Remove** \\\n * **Update**\n */\nexport type ChangeType = string;\n\n/** Known values of {@link Level} that the service accepts. */\nexport enum KnownLevel {\n Noisy = \"Noisy\",\n Normal = \"Normal\",\n Important = \"Important\"\n}\n\n/**\n * Defines values for Level. \\\n * {@link KnownLevel} can be used interchangeably with Level,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Noisy** \\\n * **Normal** \\\n * **Important**\n */\nexport type Level = string;\n/** Defines values for ChangeCategory. */\nexport type ChangeCategory = \"User\" | \"System\";\n\n/** Optional parameters. */\nexport interface OperationsListOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the list operation. */\nexport type OperationsListResponse = ResourceProviderOperationList;\n\n/** Optional parameters. */\nexport interface OperationsListNextOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the listNext operation. */\nexport type OperationsListNextResponse = ResourceProviderOperationList;\n\n/** Optional parameters. */\nexport interface ResourceChangesListOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the list operation. */\nexport type ResourceChangesListResponse = ChangeList;\n\n/** Optional parameters. */\nexport interface ResourceChangesListNextOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the listNext operation. */\nexport type ResourceChangesListNextResponse = ChangeList;\n\n/** Optional parameters. */\nexport interface ChangesListChangesByResourceGroupOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the listChangesByResourceGroup operation. */\nexport type ChangesListChangesByResourceGroupResponse = ChangeList;\n\n/** Optional parameters. */\nexport interface ChangesListChangesBySubscriptionOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the listChangesBySubscription operation. */\nexport type ChangesListChangesBySubscriptionResponse = ChangeList;\n\n/** Optional parameters. */\nexport interface ChangesListChangesByResourceGroupNextOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the listChangesByResourceGroupNext operation. */\nexport type ChangesListChangesByResourceGroupNextResponse = ChangeList;\n\n/** Optional parameters. */\nexport interface ChangesListChangesBySubscriptionNextOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the listChangesBySubscriptionNext operation. */\nexport type ChangesListChangesBySubscriptionNextResponse = ChangeList;\n\n/** Optional parameters. */\nexport interface AzureChangeAnalysisManagementClientOptionalParams\n extends coreClient.ServiceClientOptions {\n /** server parameter */\n $host?: string;\n /** Api Version */\n apiVersion?: string;\n /** Overrides client endpoint. */\n endpoint?: string;\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\";\n\nexport const ResourceProviderOperationList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDefinition\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ResourceProviderOperationDefinition: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDefinition\",\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: \"ResourceProviderOperationDisplay\"\n }\n }\n }\n }\n};\n\nexport const ResourceProviderOperationDisplay: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDisplay\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"resource\",\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\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 ErrorResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ErrorResponse\",\n modelProperties: {\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"ErrorDetail\"\n }\n }\n }\n }\n};\n\nexport const ErrorDetail: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ErrorDetail\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n target: {\n serializedName: \"target\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"details\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ErrorDetail\"\n }\n }\n }\n },\n additionalInfo: {\n serializedName: \"additionalInfo\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ErrorAdditionalInfo\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ErrorAdditionalInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ErrorAdditionalInfo\",\n modelProperties: {\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n info: {\n serializedName: \"info\",\n readOnly: true,\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"any\" } }\n }\n }\n }\n }\n};\n\nexport const ChangeList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ChangeList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Change\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ChangeProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ChangeProperties\",\n modelProperties: {\n resourceId: {\n serializedName: \"resourceId\",\n type: {\n name: \"String\"\n }\n },\n timeStamp: {\n serializedName: \"timeStamp\",\n type: {\n name: \"DateTime\"\n }\n },\n initiatedByList: {\n serializedName: \"initiatedByList\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n changeType: {\n serializedName: \"changeType\",\n type: {\n name: \"String\"\n }\n },\n propertyChanges: {\n serializedName: \"propertyChanges\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"PropertyChange\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const PropertyChange: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"PropertyChange\",\n modelProperties: {\n changeType: {\n serializedName: \"changeType\",\n type: {\n name: \"String\"\n }\n },\n changeCategory: {\n serializedName: \"changeCategory\",\n type: {\n name: \"Enum\",\n allowedValues: [\"User\", \"System\"]\n }\n },\n jsonPath: {\n serializedName: \"jsonPath\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n },\n level: {\n serializedName: \"level\",\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"description\",\n type: {\n name: \"String\"\n }\n },\n oldValue: {\n serializedName: \"oldValue\",\n type: {\n name: \"String\"\n }\n },\n newValue: {\n serializedName: \"newValue\",\n type: {\n name: \"String\"\n }\n },\n isDataMasked: {\n serializedName: \"isDataMasked\",\n type: {\n name: \"Boolean\"\n }\n }\n }\n }\n};\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 ProxyResource: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ProxyResource\",\n modelProperties: {\n ...Resource.type.modelProperties\n }\n }\n};\n\nexport const Change: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Change\",\n modelProperties: {\n ...ProxyResource.type.modelProperties,\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"ChangeProperties\"\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\";\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 apiVersion: OperationQueryParameter = {\n parameterPath: \"apiVersion\",\n mapper: {\n defaultValue: \"2021-04-01\",\n isConstant: true,\n serializedName: \"api-version\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const skipToken: OperationQueryParameter = {\n parameterPath: [\"options\", \"skipToken\"],\n mapper: {\n serializedName: \"$skipToken\",\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 resourceId: OperationURLParameter = {\n parameterPath: \"resourceId\",\n mapper: {\n serializedName: \"resourceId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const startTime: OperationQueryParameter = {\n parameterPath: \"startTime\",\n mapper: {\n serializedName: \"$startTime\",\n required: true,\n type: {\n name: \"DateTime\"\n }\n }\n};\n\nexport const endTime: OperationQueryParameter = {\n parameterPath: \"endTime\",\n mapper: {\n serializedName: \"$endTime\",\n required: true,\n type: {\n name: \"DateTime\"\n }\n }\n};\n\nexport const subscriptionId: OperationURLParameter = {\n parameterPath: \"subscriptionId\",\n mapper: {\n constraints: {\n MinLength: 1\n },\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 constraints: {\n MaxLength: 90,\n MinLength: 1\n },\n serializedName: \"resourceGroupName\",\n required: true,\n type: {\n name: \"String\"\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 { 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 { AzureChangeAnalysisManagementClient } from \"../azureChangeAnalysisManagementClient\";\nimport {\n ResourceProviderOperationDefinition,\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: AzureChangeAnalysisManagementClient;\n\n /**\n * Initialize a new instance of the class Operations class.\n * @param client Reference to the service client\n */\n constructor(client: AzureChangeAnalysisManagementClient) {\n this.client = client;\n }\n\n /**\n * Lists all the supported operations by the Microsoft.ChangeAnalysis resource provider along with\n * their descriptions.\n * @param options The options parameters.\n */\n public list(\n options?: OperationsListOptionalParams\n ): PagedAsyncIterableIterator<ResourceProviderOperationDefinition> {\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<ResourceProviderOperationDefinition[]> {\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<ResourceProviderOperationDefinition> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Lists all the supported operations by the Microsoft.ChangeAnalysis resource provider along with\n * their descriptions.\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.ChangeAnalysis/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ResourceProviderOperationList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skipToken],\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.ResourceProviderOperationList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skipToken],\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 { ResourceChanges } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { AzureChangeAnalysisManagementClient } from \"../azureChangeAnalysisManagementClient\";\nimport {\n Change,\n ResourceChangesListNextOptionalParams,\n ResourceChangesListOptionalParams,\n ResourceChangesListResponse,\n ResourceChangesListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing ResourceChanges operations. */\nexport class ResourceChangesImpl implements ResourceChanges {\n private readonly client: AzureChangeAnalysisManagementClient;\n\n /**\n * Initialize a new instance of the class ResourceChanges class.\n * @param client Reference to the service client\n */\n constructor(client: AzureChangeAnalysisManagementClient) {\n this.client = client;\n }\n\n /**\n * List the changes of a resource within the specified time range. Customer data will be masked if the\n * user doesn't have access.\n * @param resourceId The identifier of the resource.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The options parameters.\n */\n public list(\n resourceId: string,\n startTime: Date,\n endTime: Date,\n options?: ResourceChangesListOptionalParams\n ): PagedAsyncIterableIterator<Change> {\n const iter = this.listPagingAll(resourceId, startTime, endTime, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(resourceId, startTime, endTime, options);\n }\n };\n }\n\n private async *listPagingPage(\n resourceId: string,\n startTime: Date,\n endTime: Date,\n options?: ResourceChangesListOptionalParams\n ): AsyncIterableIterator<Change[]> {\n let result = await this._list(resourceId, startTime, endTime, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(\n resourceId,\n startTime,\n endTime,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n resourceId: string,\n startTime: Date,\n endTime: Date,\n options?: ResourceChangesListOptionalParams\n ): AsyncIterableIterator<Change> {\n for await (const page of this.listPagingPage(\n resourceId,\n startTime,\n endTime,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * List the changes of a resource within the specified time range. Customer data will be masked if the\n * user doesn't have access.\n * @param resourceId The identifier of the resource.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The options parameters.\n */\n private _list(\n resourceId: string,\n startTime: Date,\n endTime: Date,\n options?: ResourceChangesListOptionalParams\n ): Promise<ResourceChangesListResponse> {\n return this.client.sendOperationRequest(\n { resourceId, startTime, endTime, options },\n listOperationSpec\n );\n }\n\n /**\n * ListNext\n * @param resourceId The identifier of the resource.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\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 resourceId: string,\n startTime: Date,\n endTime: Date,\n nextLink: string,\n options?: ResourceChangesListNextOptionalParams\n ): Promise<ResourceChangesListNextResponse> {\n return this.client.sendOperationRequest(\n { resourceId, startTime, endTime, nextLink, options },\n listNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/{resourceId}/providers/Microsoft.ChangeAnalysis/resourceChanges\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skipToken,\n Parameters.startTime,\n Parameters.endTime\n ],\n urlParameters: [Parameters.$host, Parameters.resourceId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skipToken,\n Parameters.startTime,\n Parameters.endTime\n ],\n urlParameters: [Parameters.$host, Parameters.nextLink, Parameters.resourceId],\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 { Changes } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { AzureChangeAnalysisManagementClient } from \"../azureChangeAnalysisManagementClient\";\nimport {\n Change,\n ChangesListChangesByResourceGroupNextOptionalParams,\n ChangesListChangesByResourceGroupOptionalParams,\n ChangesListChangesBySubscriptionNextOptionalParams,\n ChangesListChangesBySubscriptionOptionalParams,\n ChangesListChangesByResourceGroupResponse,\n ChangesListChangesBySubscriptionResponse,\n ChangesListChangesByResourceGroupNextResponse,\n ChangesListChangesBySubscriptionNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Changes operations. */\nexport class ChangesImpl implements Changes {\n private readonly client: AzureChangeAnalysisManagementClient;\n\n /**\n * Initialize a new instance of the class Changes class.\n * @param client Reference to the service client\n */\n constructor(client: AzureChangeAnalysisManagementClient) {\n this.client = client;\n }\n\n /**\n * List the changes of a resource group within the specified time range. Customer data will always be\n * masked.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The options parameters.\n */\n public listChangesByResourceGroup(\n resourceGroupName: string,\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesByResourceGroupOptionalParams\n ): PagedAsyncIterableIterator<Change> {\n const iter = this.listChangesByResourceGroupPagingAll(\n resourceGroupName,\n startTime,\n endTime,\n options\n );\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listChangesByResourceGroupPagingPage(\n resourceGroupName,\n startTime,\n endTime,\n options\n );\n }\n };\n }\n\n private async *listChangesByResourceGroupPagingPage(\n resourceGroupName: string,\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesByResourceGroupOptionalParams\n ): AsyncIterableIterator<Change[]> {\n let result = await this._listChangesByResourceGroup(\n resourceGroupName,\n startTime,\n endTime,\n options\n );\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listChangesByResourceGroupNext(\n resourceGroupName,\n startTime,\n endTime,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listChangesByResourceGroupPagingAll(\n resourceGroupName: string,\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesByResourceGroupOptionalParams\n ): AsyncIterableIterator<Change> {\n for await (const page of this.listChangesByResourceGroupPagingPage(\n resourceGroupName,\n startTime,\n endTime,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * List the changes of a subscription within the specified time range. Customer data will always be\n * masked.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The options parameters.\n */\n public listChangesBySubscription(\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesBySubscriptionOptionalParams\n ): PagedAsyncIterableIterator<Change> {\n const iter = this.listChangesBySubscriptionPagingAll(\n startTime,\n endTime,\n options\n );\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listChangesBySubscriptionPagingPage(\n startTime,\n endTime,\n options\n );\n }\n };\n }\n\n private async *listChangesBySubscriptionPagingPage(\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesBySubscriptionOptionalParams\n ): AsyncIterableIterator<Change[]> {\n let result = await this._listChangesBySubscription(\n startTime,\n endTime,\n options\n );\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listChangesBySubscriptionNext(\n startTime,\n endTime,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listChangesBySubscriptionPagingAll(\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesBySubscriptionOptionalParams\n ): AsyncIterableIterator<Change> {\n for await (const page of this.listChangesBySubscriptionPagingPage(\n startTime,\n endTime,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * List the changes of a resource group within the specified time range. Customer data will always be\n * masked.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The options parameters.\n */\n private _listChangesByResourceGroup(\n resourceGroupName: string,\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesByResourceGroupOptionalParams\n ): Promise<ChangesListChangesByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, startTime, endTime, options },\n listChangesByResourceGroupOperationSpec\n );\n }\n\n /**\n * List the changes of a subscription within the specified time range. Customer data will always be\n * masked.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The options parameters.\n */\n private _listChangesBySubscription(\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesBySubscriptionOptionalParams\n ): Promise<ChangesListChangesBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { startTime, endTime, options },\n listChangesBySubscriptionOperationSpec\n );\n }\n\n /**\n * ListChangesByResourceGroupNext\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param nextLink The nextLink from the previous successful call to the ListChangesByResourceGroup\n * method.\n * @param options The options parameters.\n */\n private _listChangesByResourceGroupNext(\n resourceGroupName: string,\n startTime: Date,\n endTime: Date,\n nextLink: string,\n options?: ChangesListChangesByResourceGroupNextOptionalParams\n ): Promise<ChangesListChangesByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, startTime, endTime, nextLink, options },\n listChangesByResourceGroupNextOperationSpec\n );\n }\n\n /**\n * ListChangesBySubscriptionNext\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param nextLink The nextLink from the previous successful call to the ListChangesBySubscription\n * method.\n * @param options The options parameters.\n */\n private _listChangesBySubscriptionNext(\n startTime: Date,\n endTime: Date,\n nextLink: string,\n options?: ChangesListChangesBySubscriptionNextOptionalParams\n ): Promise<ChangesListChangesBySubscriptionNextResponse> {\n return this.client.sendOperationRequest(\n { startTime, endTime, nextLink, options },\n listChangesBySubscriptionNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listChangesByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ChangeAnalysis/changes\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skipToken,\n Parameters.startTime,\n Parameters.endTime\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listChangesBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.ChangeAnalysis/changes\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skipToken,\n Parameters.startTime,\n Parameters.endTime\n ],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listChangesByResourceGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skipToken,\n Parameters.startTime,\n Parameters.endTime\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listChangesBySubscriptionNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skipToken,\n Parameters.startTime,\n Parameters.endTime\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId\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 { OperationsImpl, ResourceChangesImpl, ChangesImpl } from \"./operations\";\nimport { Operations, ResourceChanges, Changes } from \"./operationsInterfaces\";\nimport { AzureChangeAnalysisManagementClientOptionalParams } from \"./models\";\n\nexport class AzureChangeAnalysisManagementClient extends coreClient.ServiceClient {\n $host: string;\n apiVersion: string;\n subscriptionId: string;\n\n /**\n * Initializes a new instance of the AzureChangeAnalysisManagementClient class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param subscriptionId The ID of the target subscription.\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n subscriptionId: string,\n options?: AzureChangeAnalysisManagementClientOptionalParams\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: AzureChangeAnalysisManagementClientOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-arm-changeanalysis/2.0.1`;\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:\n options.endpoint ?? options.baseUri ?? \"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 || \"2021-04-01\";\n this.operations = new OperationsImpl(this);\n this.resourceChanges = new ResourceChangesImpl(this);\n this.changes = new ChangesImpl(this);\n }\n\n operations: Operations;\n resourceChanges: ResourceChanges;\n changes: Changes;\n}\n"],"names":["KnownChangeType","KnownLevel","__await","__asyncValues","__asyncDelegator","listOperationSpec","listNextOperationSpec","serializer","coreClient","Mappers.ResourceProviderOperationList","Mappers.ErrorResponse","Parameters.apiVersion","Parameters.skipToken","Parameters.$host","Parameters.accept","Parameters.nextLink","Mappers.ChangeList","Parameters.startTime","Parameters.endTime","Parameters.resourceId","Parameters.subscriptionId","Parameters.resourceGroupName"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sources":["../src/models/index.ts","../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/operations.ts","../src/operations/resourceChanges.ts","../src/operations/changes.ts","../src/azureChangeAnalysisManagementClient.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\n/** The resource provider operation list. */\nexport interface ResourceProviderOperationList {\n /** Resource provider operations list. */\n value?: ResourceProviderOperationDefinition[];\n /** The URI that can be used to request the next page for list of Azure operations. */\n nextLink?: string;\n}\n\n/** The resource provider operation definition. */\nexport interface ResourceProviderOperationDefinition {\n /** The resource provider operation name. */\n name?: string;\n /** The resource provider operation details. */\n display?: ResourceProviderOperationDisplay;\n}\n\n/** The resource provider operation details. */\nexport interface ResourceProviderOperationDisplay {\n /** Name of the resource provider. */\n provider?: string;\n /** Name of the resource type. */\n resource?: string;\n /** Name of the resource provider operation. */\n operation?: string;\n /** Description of the resource provider operation. */\n description?: string;\n}\n\n/** Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.). */\nexport interface ErrorResponse {\n /** The error object. */\n error?: ErrorDetail;\n}\n\n/** The error detail. */\nexport interface ErrorDetail {\n /**\n * The error code.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly code?: string;\n /**\n * The error message.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly message?: string;\n /**\n * The error target.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly target?: string;\n /**\n * The error details.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly details?: ErrorDetail[];\n /**\n * The error additional info.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly additionalInfo?: ErrorAdditionalInfo[];\n}\n\n/** The resource management error additional info. */\nexport interface ErrorAdditionalInfo {\n /**\n * The additional info type.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /**\n * The additional info.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly info?: Record<string, unknown>;\n}\n\n/** The list of detected changes. */\nexport interface ChangeList {\n /** The list of changes. */\n value?: Change[];\n /** The URI that can be used to request the next page of changes. */\n nextLink?: string;\n}\n\n/** The properties of a change. */\nexport interface ChangeProperties {\n /** The resource id that the change is attached to. */\n resourceId?: string;\n /** The time when the change is detected. */\n timeStamp?: Date;\n /**\n * The list of identities who might initiated the change.\n * The identity could be user name (email address) or the object ID of the Service Principal.\n */\n initiatedByList?: string[];\n /** The type of the change. */\n changeType?: ChangeType;\n /** The list of detailed changes at json property level. */\n propertyChanges?: PropertyChange[];\n}\n\n/** Data of a property change. */\nexport interface PropertyChange {\n /** The type of the change. */\n changeType?: ChangeType;\n /** The change category. */\n changeCategory?: ChangeCategory;\n /** The json path of the changed property. */\n jsonPath?: string;\n /** The enhanced display name of the json path. E.g., the json path value[0].properties will be translated to something meaningful like slots[\"Staging\"].properties. */\n displayName?: string;\n level?: Level;\n /** The description of the changed property. */\n description?: string;\n /** The value of the property before the change. */\n oldValue?: string;\n /** The value of the property after the change. */\n newValue?: string;\n /** The boolean indicating whether the oldValue and newValue are masked. The values are masked if it contains sensitive information that the user doesn't have access to. */\n isDataMasked?: boolean;\n}\n\n/** Common fields that are returned in the response for all Azure Resource Manager resources */\nexport interface Resource {\n /**\n * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * The name of the resource\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * The type of the resource. E.g. \"Microsoft.Compute/virtualMachines\" or \"Microsoft.Storage/storageAccounts\"\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n}\n\n/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */\nexport type ProxyResource = Resource & {};\n\n/** The detected change. */\nexport type Change = ProxyResource & {\n /** The properties of a change. */\n properties?: ChangeProperties;\n};\n\n/** Known values of {@link ChangeType} that the service accepts. */\nexport enum KnownChangeType {\n Add = \"Add\",\n Remove = \"Remove\",\n Update = \"Update\"\n}\n\n/**\n * Defines values for ChangeType. \\\n * {@link KnownChangeType} can be used interchangeably with ChangeType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Add** \\\n * **Remove** \\\n * **Update**\n */\nexport type ChangeType = string;\n\n/** Known values of {@link Level} that the service accepts. */\nexport enum KnownLevel {\n Noisy = \"Noisy\",\n Normal = \"Normal\",\n Important = \"Important\"\n}\n\n/**\n * Defines values for Level. \\\n * {@link KnownLevel} can be used interchangeably with Level,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Noisy** \\\n * **Normal** \\\n * **Important**\n */\nexport type Level = string;\n/** Defines values for ChangeCategory. */\nexport type ChangeCategory = \"User\" | \"System\";\n\n/** Optional parameters. */\nexport interface OperationsListOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the list operation. */\nexport type OperationsListResponse = ResourceProviderOperationList;\n\n/** Optional parameters. */\nexport interface OperationsListNextOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the listNext operation. */\nexport type OperationsListNextResponse = ResourceProviderOperationList;\n\n/** Optional parameters. */\nexport interface ResourceChangesListOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the list operation. */\nexport type ResourceChangesListResponse = ChangeList;\n\n/** Optional parameters. */\nexport interface ResourceChangesListNextOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the listNext operation. */\nexport type ResourceChangesListNextResponse = ChangeList;\n\n/** Optional parameters. */\nexport interface ChangesListChangesByResourceGroupOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the listChangesByResourceGroup operation. */\nexport type ChangesListChangesByResourceGroupResponse = ChangeList;\n\n/** Optional parameters. */\nexport interface ChangesListChangesBySubscriptionOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the listChangesBySubscription operation. */\nexport type ChangesListChangesBySubscriptionResponse = ChangeList;\n\n/** Optional parameters. */\nexport interface ChangesListChangesByResourceGroupNextOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the listChangesByResourceGroupNext operation. */\nexport type ChangesListChangesByResourceGroupNextResponse = ChangeList;\n\n/** Optional parameters. */\nexport interface ChangesListChangesBySubscriptionNextOptionalParams\n extends coreClient.OperationOptions {\n /** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */\n skipToken?: string;\n}\n\n/** Contains response data for the listChangesBySubscriptionNext operation. */\nexport type ChangesListChangesBySubscriptionNextResponse = ChangeList;\n\n/** Optional parameters. */\nexport interface AzureChangeAnalysisManagementClientOptionalParams\n extends coreClient.ServiceClientOptions {\n /** server parameter */\n $host?: string;\n /** Api Version */\n apiVersion?: string;\n /** Overrides client endpoint. */\n endpoint?: string;\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\";\n\nexport const ResourceProviderOperationList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDefinition\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ResourceProviderOperationDefinition: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDefinition\",\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: \"ResourceProviderOperationDisplay\"\n }\n }\n }\n }\n};\n\nexport const ResourceProviderOperationDisplay: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDisplay\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"resource\",\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\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 ErrorResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ErrorResponse\",\n modelProperties: {\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"ErrorDetail\"\n }\n }\n }\n }\n};\n\nexport const ErrorDetail: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ErrorDetail\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n target: {\n serializedName: \"target\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"details\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ErrorDetail\"\n }\n }\n }\n },\n additionalInfo: {\n serializedName: \"additionalInfo\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ErrorAdditionalInfo\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ErrorAdditionalInfo: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ErrorAdditionalInfo\",\n modelProperties: {\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n info: {\n serializedName: \"info\",\n readOnly: true,\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"any\" } }\n }\n }\n }\n }\n};\n\nexport const ChangeList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ChangeList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Change\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ChangeProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ChangeProperties\",\n modelProperties: {\n resourceId: {\n serializedName: \"resourceId\",\n type: {\n name: \"String\"\n }\n },\n timeStamp: {\n serializedName: \"timeStamp\",\n type: {\n name: \"DateTime\"\n }\n },\n initiatedByList: {\n serializedName: \"initiatedByList\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n changeType: {\n serializedName: \"changeType\",\n type: {\n name: \"String\"\n }\n },\n propertyChanges: {\n serializedName: \"propertyChanges\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"PropertyChange\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const PropertyChange: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"PropertyChange\",\n modelProperties: {\n changeType: {\n serializedName: \"changeType\",\n type: {\n name: \"String\"\n }\n },\n changeCategory: {\n serializedName: \"changeCategory\",\n type: {\n name: \"Enum\",\n allowedValues: [\"User\", \"System\"]\n }\n },\n jsonPath: {\n serializedName: \"jsonPath\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n },\n level: {\n serializedName: \"level\",\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"description\",\n type: {\n name: \"String\"\n }\n },\n oldValue: {\n serializedName: \"oldValue\",\n type: {\n name: \"String\"\n }\n },\n newValue: {\n serializedName: \"newValue\",\n type: {\n name: \"String\"\n }\n },\n isDataMasked: {\n serializedName: \"isDataMasked\",\n type: {\n name: \"Boolean\"\n }\n }\n }\n }\n};\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 ProxyResource: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ProxyResource\",\n modelProperties: {\n ...Resource.type.modelProperties\n }\n }\n};\n\nexport const Change: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Change\",\n modelProperties: {\n ...ProxyResource.type.modelProperties,\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"ChangeProperties\"\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\";\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 apiVersion: OperationQueryParameter = {\n parameterPath: \"apiVersion\",\n mapper: {\n defaultValue: \"2021-04-01\",\n isConstant: true,\n serializedName: \"api-version\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const skipToken: OperationQueryParameter = {\n parameterPath: [\"options\", \"skipToken\"],\n mapper: {\n serializedName: \"$skipToken\",\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 resourceId: OperationURLParameter = {\n parameterPath: \"resourceId\",\n mapper: {\n serializedName: \"resourceId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const startTime: OperationQueryParameter = {\n parameterPath: \"startTime\",\n mapper: {\n serializedName: \"$startTime\",\n required: true,\n type: {\n name: \"DateTime\"\n }\n }\n};\n\nexport const endTime: OperationQueryParameter = {\n parameterPath: \"endTime\",\n mapper: {\n serializedName: \"$endTime\",\n required: true,\n type: {\n name: \"DateTime\"\n }\n }\n};\n\nexport const subscriptionId: OperationURLParameter = {\n parameterPath: \"subscriptionId\",\n mapper: {\n constraints: {\n MinLength: 1\n },\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 constraints: {\n MaxLength: 90,\n MinLength: 1\n },\n serializedName: \"resourceGroupName\",\n required: true,\n type: {\n name: \"String\"\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 { 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 { AzureChangeAnalysisManagementClient } from \"../azureChangeAnalysisManagementClient\";\nimport {\n ResourceProviderOperationDefinition,\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: AzureChangeAnalysisManagementClient;\n\n /**\n * Initialize a new instance of the class Operations class.\n * @param client Reference to the service client\n */\n constructor(client: AzureChangeAnalysisManagementClient) {\n this.client = client;\n }\n\n /**\n * Lists all the supported operations by the Microsoft.ChangeAnalysis resource provider along with\n * their descriptions.\n * @param options The options parameters.\n */\n public list(\n options?: OperationsListOptionalParams\n ): PagedAsyncIterableIterator<ResourceProviderOperationDefinition> {\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<ResourceProviderOperationDefinition[]> {\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<ResourceProviderOperationDefinition> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Lists all the supported operations by the Microsoft.ChangeAnalysis resource provider along with\n * their descriptions.\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.ChangeAnalysis/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ResourceProviderOperationList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skipToken],\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.ResourceProviderOperationList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion, Parameters.skipToken],\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 { ResourceChanges } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { AzureChangeAnalysisManagementClient } from \"../azureChangeAnalysisManagementClient\";\nimport {\n Change,\n ResourceChangesListNextOptionalParams,\n ResourceChangesListOptionalParams,\n ResourceChangesListResponse,\n ResourceChangesListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing ResourceChanges operations. */\nexport class ResourceChangesImpl implements ResourceChanges {\n private readonly client: AzureChangeAnalysisManagementClient;\n\n /**\n * Initialize a new instance of the class ResourceChanges class.\n * @param client Reference to the service client\n */\n constructor(client: AzureChangeAnalysisManagementClient) {\n this.client = client;\n }\n\n /**\n * List the changes of a resource within the specified time range. Customer data will be masked if the\n * user doesn't have access.\n * @param resourceId The identifier of the resource.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The options parameters.\n */\n public list(\n resourceId: string,\n startTime: Date,\n endTime: Date,\n options?: ResourceChangesListOptionalParams\n ): PagedAsyncIterableIterator<Change> {\n const iter = this.listPagingAll(resourceId, startTime, endTime, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(resourceId, startTime, endTime, options);\n }\n };\n }\n\n private async *listPagingPage(\n resourceId: string,\n startTime: Date,\n endTime: Date,\n options?: ResourceChangesListOptionalParams\n ): AsyncIterableIterator<Change[]> {\n let result = await this._list(resourceId, startTime, endTime, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(\n resourceId,\n startTime,\n endTime,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n resourceId: string,\n startTime: Date,\n endTime: Date,\n options?: ResourceChangesListOptionalParams\n ): AsyncIterableIterator<Change> {\n for await (const page of this.listPagingPage(\n resourceId,\n startTime,\n endTime,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * List the changes of a resource within the specified time range. Customer data will be masked if the\n * user doesn't have access.\n * @param resourceId The identifier of the resource.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The options parameters.\n */\n private _list(\n resourceId: string,\n startTime: Date,\n endTime: Date,\n options?: ResourceChangesListOptionalParams\n ): Promise<ResourceChangesListResponse> {\n return this.client.sendOperationRequest(\n { resourceId, startTime, endTime, options },\n listOperationSpec\n );\n }\n\n /**\n * ListNext\n * @param resourceId The identifier of the resource.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\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 resourceId: string,\n startTime: Date,\n endTime: Date,\n nextLink: string,\n options?: ResourceChangesListNextOptionalParams\n ): Promise<ResourceChangesListNextResponse> {\n return this.client.sendOperationRequest(\n { resourceId, startTime, endTime, nextLink, options },\n listNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/{resourceId}/providers/Microsoft.ChangeAnalysis/resourceChanges\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skipToken,\n Parameters.startTime,\n Parameters.endTime\n ],\n urlParameters: [Parameters.$host, Parameters.resourceId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skipToken,\n Parameters.startTime,\n Parameters.endTime\n ],\n urlParameters: [Parameters.$host, Parameters.nextLink, Parameters.resourceId],\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 { Changes } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { AzureChangeAnalysisManagementClient } from \"../azureChangeAnalysisManagementClient\";\nimport {\n Change,\n ChangesListChangesByResourceGroupNextOptionalParams,\n ChangesListChangesByResourceGroupOptionalParams,\n ChangesListChangesBySubscriptionNextOptionalParams,\n ChangesListChangesBySubscriptionOptionalParams,\n ChangesListChangesByResourceGroupResponse,\n ChangesListChangesBySubscriptionResponse,\n ChangesListChangesByResourceGroupNextResponse,\n ChangesListChangesBySubscriptionNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Changes operations. */\nexport class ChangesImpl implements Changes {\n private readonly client: AzureChangeAnalysisManagementClient;\n\n /**\n * Initialize a new instance of the class Changes class.\n * @param client Reference to the service client\n */\n constructor(client: AzureChangeAnalysisManagementClient) {\n this.client = client;\n }\n\n /**\n * List the changes of a resource group within the specified time range. Customer data will always be\n * masked.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The options parameters.\n */\n public listChangesByResourceGroup(\n resourceGroupName: string,\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesByResourceGroupOptionalParams\n ): PagedAsyncIterableIterator<Change> {\n const iter = this.listChangesByResourceGroupPagingAll(\n resourceGroupName,\n startTime,\n endTime,\n options\n );\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listChangesByResourceGroupPagingPage(\n resourceGroupName,\n startTime,\n endTime,\n options\n );\n }\n };\n }\n\n private async *listChangesByResourceGroupPagingPage(\n resourceGroupName: string,\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesByResourceGroupOptionalParams\n ): AsyncIterableIterator<Change[]> {\n let result = await this._listChangesByResourceGroup(\n resourceGroupName,\n startTime,\n endTime,\n options\n );\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listChangesByResourceGroupNext(\n resourceGroupName,\n startTime,\n endTime,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listChangesByResourceGroupPagingAll(\n resourceGroupName: string,\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesByResourceGroupOptionalParams\n ): AsyncIterableIterator<Change> {\n for await (const page of this.listChangesByResourceGroupPagingPage(\n resourceGroupName,\n startTime,\n endTime,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * List the changes of a subscription within the specified time range. Customer data will always be\n * masked.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The options parameters.\n */\n public listChangesBySubscription(\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesBySubscriptionOptionalParams\n ): PagedAsyncIterableIterator<Change> {\n const iter = this.listChangesBySubscriptionPagingAll(\n startTime,\n endTime,\n options\n );\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listChangesBySubscriptionPagingPage(\n startTime,\n endTime,\n options\n );\n }\n };\n }\n\n private async *listChangesBySubscriptionPagingPage(\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesBySubscriptionOptionalParams\n ): AsyncIterableIterator<Change[]> {\n let result = await this._listChangesBySubscription(\n startTime,\n endTime,\n options\n );\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listChangesBySubscriptionNext(\n startTime,\n endTime,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listChangesBySubscriptionPagingAll(\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesBySubscriptionOptionalParams\n ): AsyncIterableIterator<Change> {\n for await (const page of this.listChangesBySubscriptionPagingPage(\n startTime,\n endTime,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * List the changes of a resource group within the specified time range. Customer data will always be\n * masked.\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The options parameters.\n */\n private _listChangesByResourceGroup(\n resourceGroupName: string,\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesByResourceGroupOptionalParams\n ): Promise<ChangesListChangesByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, startTime, endTime, options },\n listChangesByResourceGroupOperationSpec\n );\n }\n\n /**\n * List the changes of a subscription within the specified time range. Customer data will always be\n * masked.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param options The options parameters.\n */\n private _listChangesBySubscription(\n startTime: Date,\n endTime: Date,\n options?: ChangesListChangesBySubscriptionOptionalParams\n ): Promise<ChangesListChangesBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { startTime, endTime, options },\n listChangesBySubscriptionOperationSpec\n );\n }\n\n /**\n * ListChangesByResourceGroupNext\n * @param resourceGroupName The name of the resource group. The name is case insensitive.\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param nextLink The nextLink from the previous successful call to the ListChangesByResourceGroup\n * method.\n * @param options The options parameters.\n */\n private _listChangesByResourceGroupNext(\n resourceGroupName: string,\n startTime: Date,\n endTime: Date,\n nextLink: string,\n options?: ChangesListChangesByResourceGroupNextOptionalParams\n ): Promise<ChangesListChangesByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, startTime, endTime, nextLink, options },\n listChangesByResourceGroupNextOperationSpec\n );\n }\n\n /**\n * ListChangesBySubscriptionNext\n * @param startTime Specifies the start time of the changes request.\n * @param endTime Specifies the end time of the changes request.\n * @param nextLink The nextLink from the previous successful call to the ListChangesBySubscription\n * method.\n * @param options The options parameters.\n */\n private _listChangesBySubscriptionNext(\n startTime: Date,\n endTime: Date,\n nextLink: string,\n options?: ChangesListChangesBySubscriptionNextOptionalParams\n ): Promise<ChangesListChangesBySubscriptionNextResponse> {\n return this.client.sendOperationRequest(\n { startTime, endTime, nextLink, options },\n listChangesBySubscriptionNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listChangesByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ChangeAnalysis/changes\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skipToken,\n Parameters.startTime,\n Parameters.endTime\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listChangesBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.ChangeAnalysis/changes\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skipToken,\n Parameters.startTime,\n Parameters.endTime\n ],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listChangesByResourceGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skipToken,\n Parameters.startTime,\n Parameters.endTime\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listChangesBySubscriptionNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ChangeList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.skipToken,\n Parameters.startTime,\n Parameters.endTime\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId\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 { OperationsImpl, ResourceChangesImpl, ChangesImpl } from \"./operations\";\nimport { Operations, ResourceChanges, Changes } from \"./operationsInterfaces\";\nimport { AzureChangeAnalysisManagementClientOptionalParams } from \"./models\";\n\nexport class AzureChangeAnalysisManagementClient extends coreClient.ServiceClient {\n $host: string;\n apiVersion: string;\n subscriptionId: string;\n\n /**\n * Initializes a new instance of the AzureChangeAnalysisManagementClient class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param subscriptionId The ID of the target subscription.\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n subscriptionId: string,\n options?: AzureChangeAnalysisManagementClientOptionalParams\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: AzureChangeAnalysisManagementClientOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-arm-changeanalysis/2.0.2`;\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:\n options.endpoint ?? options.baseUri ?? \"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 || \"2021-04-01\";\n this.operations = new OperationsImpl(this);\n this.resourceChanges = new ResourceChangesImpl(this);\n this.changes = new ChangesImpl(this);\n }\n\n operations: Operations;\n resourceChanges: ResourceChanges;\n changes: Changes;\n}\n"],"names":["KnownChangeType","KnownLevel","__await","__asyncValues","__asyncDelegator","listOperationSpec","listNextOperationSpec","serializer","coreClient","Mappers.ResourceProviderOperationList","Mappers.ErrorResponse","Parameters.apiVersion","Parameters.skipToken","Parameters.$host","Parameters.accept","Parameters.nextLink","Mappers.ChangeList","Parameters.startTime","Parameters.endTime","Parameters.resourceId","Parameters.subscriptionId","Parameters.resourceGroupName"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;;;;AAMG;AA2JH;AACYA,iCAIX;AAJD,CAAA,UAAY,eAAe,EAAA;AACzB,IAAA,eAAA,CAAA,KAAA,CAAA,GAAA,KAAW,CAAA;AACX,IAAA,eAAA,CAAA,QAAA,CAAA,GAAA,QAAiB,CAAA;AACjB,IAAA,eAAA,CAAA,QAAA,CAAA,GAAA,QAAiB,CAAA;AACnB,CAAC,EAJWA,uBAAe,KAAfA,uBAAe,GAI1B,EAAA,CAAA,CAAA,CAAA;AAaD;AACYC,4BAIX;AAJD,CAAA,UAAY,UAAU,EAAA;AACpB,IAAA,UAAA,CAAA,OAAA,CAAA,GAAA,OAAe,CAAA;AACf,IAAA,UAAA,CAAA,QAAA,CAAA,GAAA,QAAiB,CAAA;AACjB,IAAA,UAAA,CAAA,WAAA,CAAA,GAAA,WAAuB,CAAA;AACzB,CAAC,EAJWA,kBAAU,KAAVA,kBAAU,GAIrB,EAAA,CAAA,CAAA;;ACxLD;;;;;;AAMG;AAII,MAAM,6BAA6B,GAA+B;AACvE,IAAA,IAAI,EAAE;AACJ,QAAA,IAAI,EAAE,WAAW;AACjB,QAAA,SAAS,EAAE,+BAA+B;AAC1C,QAAA,eAAe,EAAE;AACf,YAAA,KAAK,EAAE;AACL,gBAAA,cAAc,EAAE,OAAO;AACvB,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,UAAU;AAChB,oBAAA,OAAO,EAAE;AACP,wBAAA,IAAI,EAAE;AACJ,4BAAA,IAAI,EAAE,WAAW;AACjB,4BAAA,SAAS,EAAE,qCAAqC;AACjD,yBAAA;AACF,qBAAA;AACF,iBAAA;AACF,aAAA;AACD,YAAA,QAAQ,EAAE;AACR,gBAAA,cAAc,EAAE,UAAU;AAC1B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACF,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,mCAAmC,GAA+B;AAC7E,IAAA,IAAI,EAAE;AACJ,QAAA,IAAI,EAAE,WAAW;AACjB,QAAA,SAAS,EAAE,qCAAqC;AAChD,QAAA,eAAe,EAAE;AACf,YAAA,IAAI,EAAE;AACJ,gBAAA,cAAc,EAAE,MAAM;AACtB,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,OAAO,EAAE;AACP,gBAAA,cAAc,EAAE,SAAS;AACzB,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,WAAW;AACjB,oBAAA,SAAS,EAAE,kCAAkC;AAC9C,iBAAA;AACF,aAAA;AACF,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,gCAAgC,GAA+B;AAC1E,IAAA,IAAI,EAAE;AACJ,QAAA,IAAI,EAAE,WAAW;AACjB,QAAA,SAAS,EAAE,kCAAkC;AAC7C,QAAA,eAAe,EAAE;AACf,YAAA,QAAQ,EAAE;AACR,gBAAA,cAAc,EAAE,UAAU;AAC1B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,QAAQ,EAAE;AACR,gBAAA,cAAc,EAAE,UAAU;AAC1B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,SAAS,EAAE;AACT,gBAAA,cAAc,EAAE,WAAW;AAC3B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,WAAW,EAAE;AACX,gBAAA,cAAc,EAAE,aAAa;AAC7B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACF,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,aAAa,GAA+B;AACvD,IAAA,IAAI,EAAE;AACJ,QAAA,IAAI,EAAE,WAAW;AACjB,QAAA,SAAS,EAAE,eAAe;AAC1B,QAAA,eAAe,EAAE;AACf,YAAA,KAAK,EAAE;AACL,gBAAA,cAAc,EAAE,OAAO;AACvB,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,WAAW;AACjB,oBAAA,SAAS,EAAE,aAAa;AACzB,iBAAA;AACF,aAAA;AACF,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,WAAW,GAA+B;AACrD,IAAA,IAAI,EAAE;AACJ,QAAA,IAAI,EAAE,WAAW;AACjB,QAAA,SAAS,EAAE,aAAa;AACxB,QAAA,eAAe,EAAE;AACf,YAAA,IAAI,EAAE;AACJ,gBAAA,cAAc,EAAE,MAAM;AACtB,gBAAA,QAAQ,EAAE,IAAI;AACd,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,OAAO,EAAE;AACP,gBAAA,cAAc,EAAE,SAAS;AACzB,gBAAA,QAAQ,EAAE,IAAI;AACd,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,MAAM,EAAE;AACN,gBAAA,cAAc,EAAE,QAAQ;AACxB,gBAAA,QAAQ,EAAE,IAAI;AACd,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,OAAO,EAAE;AACP,gBAAA,cAAc,EAAE,SAAS;AACzB,gBAAA,QAAQ,EAAE,IAAI;AACd,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,UAAU;AAChB,oBAAA,OAAO,EAAE;AACP,wBAAA,IAAI,EAAE;AACJ,4BAAA,IAAI,EAAE,WAAW;AACjB,4BAAA,SAAS,EAAE,aAAa;AACzB,yBAAA;AACF,qBAAA;AACF,iBAAA;AACF,aAAA;AACD,YAAA,cAAc,EAAE;AACd,gBAAA,cAAc,EAAE,gBAAgB;AAChC,gBAAA,QAAQ,EAAE,IAAI;AACd,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,UAAU;AAChB,oBAAA,OAAO,EAAE;AACP,wBAAA,IAAI,EAAE;AACJ,4BAAA,IAAI,EAAE,WAAW;AACjB,4BAAA,SAAS,EAAE,qBAAqB;AACjC,yBAAA;AACF,qBAAA;AACF,iBAAA;AACF,aAAA;AACF,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,mBAAmB,GAA+B;AAC7D,IAAA,IAAI,EAAE;AACJ,QAAA,IAAI,EAAE,WAAW;AACjB,QAAA,SAAS,EAAE,qBAAqB;AAChC,QAAA,eAAe,EAAE;AACf,YAAA,IAAI,EAAE;AACJ,gBAAA,cAAc,EAAE,MAAM;AACtB,gBAAA,QAAQ,EAAE,IAAI;AACd,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,IAAI,EAAE;AACJ,gBAAA,cAAc,EAAE,MAAM;AACtB,gBAAA,QAAQ,EAAE,IAAI;AACd,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,YAAY;oBAClB,KAAK,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE;AACjC,iBAAA;AACF,aAAA;AACF,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,UAAU,GAA+B;AACpD,IAAA,IAAI,EAAE;AACJ,QAAA,IAAI,EAAE,WAAW;AACjB,QAAA,SAAS,EAAE,YAAY;AACvB,QAAA,eAAe,EAAE;AACf,YAAA,KAAK,EAAE;AACL,gBAAA,cAAc,EAAE,OAAO;AACvB,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,UAAU;AAChB,oBAAA,OAAO,EAAE;AACP,wBAAA,IAAI,EAAE;AACJ,4BAAA,IAAI,EAAE,WAAW;AACjB,4BAAA,SAAS,EAAE,QAAQ;AACpB,yBAAA;AACF,qBAAA;AACF,iBAAA;AACF,aAAA;AACD,YAAA,QAAQ,EAAE;AACR,gBAAA,cAAc,EAAE,UAAU;AAC1B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACF,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,gBAAgB,GAA+B;AAC1D,IAAA,IAAI,EAAE;AACJ,QAAA,IAAI,EAAE,WAAW;AACjB,QAAA,SAAS,EAAE,kBAAkB;AAC7B,QAAA,eAAe,EAAE;AACf,YAAA,UAAU,EAAE;AACV,gBAAA,cAAc,EAAE,YAAY;AAC5B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,SAAS,EAAE;AACT,gBAAA,cAAc,EAAE,WAAW;AAC3B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,UAAU;AACjB,iBAAA;AACF,aAAA;AACD,YAAA,eAAe,EAAE;AACf,gBAAA,cAAc,EAAE,iBAAiB;AACjC,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,UAAU;AAChB,oBAAA,OAAO,EAAE;AACP,wBAAA,IAAI,EAAE;AACJ,4BAAA,IAAI,EAAE,QAAQ;AACf,yBAAA;AACF,qBAAA;AACF,iBAAA;AACF,aAAA;AACD,YAAA,UAAU,EAAE;AACV,gBAAA,cAAc,EAAE,YAAY;AAC5B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,eAAe,EAAE;AACf,gBAAA,cAAc,EAAE,iBAAiB;AACjC,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,UAAU;AAChB,oBAAA,OAAO,EAAE;AACP,wBAAA,IAAI,EAAE;AACJ,4BAAA,IAAI,EAAE,WAAW;AACjB,4BAAA,SAAS,EAAE,gBAAgB;AAC5B,yBAAA;AACF,qBAAA;AACF,iBAAA;AACF,aAAA;AACF,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,cAAc,GAA+B;AACxD,IAAA,IAAI,EAAE;AACJ,QAAA,IAAI,EAAE,WAAW;AACjB,QAAA,SAAS,EAAE,gBAAgB;AAC3B,QAAA,eAAe,EAAE;AACf,YAAA,UAAU,EAAE;AACV,gBAAA,cAAc,EAAE,YAAY;AAC5B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,cAAc,EAAE;AACd,gBAAA,cAAc,EAAE,gBAAgB;AAChC,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,MAAM;AACZ,oBAAA,aAAa,EAAE,CAAC,MAAM,EAAE,QAAQ,CAAC;AAClC,iBAAA;AACF,aAAA;AACD,YAAA,QAAQ,EAAE;AACR,gBAAA,cAAc,EAAE,UAAU;AAC1B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,WAAW,EAAE;AACX,gBAAA,cAAc,EAAE,aAAa;AAC7B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,KAAK,EAAE;AACL,gBAAA,cAAc,EAAE,OAAO;AACvB,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,WAAW,EAAE;AACX,gBAAA,cAAc,EAAE,aAAa;AAC7B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,QAAQ,EAAE;AACR,gBAAA,cAAc,EAAE,UAAU;AAC1B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,QAAQ,EAAE;AACR,gBAAA,cAAc,EAAE,UAAU;AAC1B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,YAAY,EAAE;AACZ,gBAAA,cAAc,EAAE,cAAc;AAC9B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,SAAS;AAChB,iBAAA;AACF,aAAA;AACF,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,QAAQ,GAA+B;AAClD,IAAA,IAAI,EAAE;AACJ,QAAA,IAAI,EAAE,WAAW;AACjB,QAAA,SAAS,EAAE,UAAU;AACrB,QAAA,eAAe,EAAE;AACf,YAAA,EAAE,EAAE;AACF,gBAAA,cAAc,EAAE,IAAI;AACpB,gBAAA,QAAQ,EAAE,IAAI;AACd,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,IAAI,EAAE;AACJ,gBAAA,cAAc,EAAE,MAAM;AACtB,gBAAA,QAAQ,EAAE,IAAI;AACd,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACD,YAAA,IAAI,EAAE;AACJ,gBAAA,cAAc,EAAE,MAAM;AACtB,gBAAA,QAAQ,EAAE,IAAI;AACd,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,QAAQ;AACf,iBAAA;AACF,aAAA;AACF,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,aAAa,GAA+B;AACvD,IAAA,IAAI,EAAE;AACJ,QAAA,IAAI,EAAE,WAAW;AACjB,QAAA,SAAS,EAAE,eAAe;AAC1B,QAAA,eAAe,oBACV,QAAQ,CAAC,IAAI,CAAC,eAAe,CACjC;AACF,KAAA;CACF,CAAC;AAEK,MAAM,MAAM,GAA+B;AAChD,IAAA,IAAI,EAAE;AACJ,QAAA,IAAI,EAAE,WAAW;AACjB,QAAA,SAAS,EAAE,QAAQ;QACnB,eAAe,EAAA,MAAA,CAAA,MAAA,CAAA,MAAA,CAAA,MAAA,CAAA,EAAA,EACV,aAAa,CAAC,IAAI,CAAC,eAAe,CAAA,EAAA,EACrC,UAAU,EAAE;AACV,gBAAA,cAAc,EAAE,YAAY;AAC5B,gBAAA,IAAI,EAAE;AACJ,oBAAA,IAAI,EAAE,WAAW;AACjB,oBAAA,SAAS,EAAE,kBAAkB;AAC9B,iBAAA;aACF,EACF,CAAA;AACF,KAAA;CACF;;;;;;;;;;;;;;;;;;AChYD;;;;;;AAMG;AAQI,MAAM,MAAM,GAAuB;AACxC,IAAA,aAAa,EAAE,QAAQ;AACvB,IAAA,MAAM,EAAE;AACN,QAAA,YAAY,EAAE,kBAAkB;AAChC,QAAA,UAAU,EAAE,IAAI;AAChB,QAAA,cAAc,EAAE,QAAQ;AACxB,QAAA,IAAI,EAAE;AACJ,YAAA,IAAI,EAAE,QAAQ;AACf,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,KAAK,GAA0B;AAC1C,IAAA,aAAa,EAAE,OAAO;AACtB,IAAA,MAAM,EAAE;AACN,QAAA,cAAc,EAAE,OAAO;AACvB,QAAA,QAAQ,EAAE,IAAI;AACd,QAAA,IAAI,EAAE;AACJ,YAAA,IAAI,EAAE,QAAQ;AACf,SAAA;AACF,KAAA;AACD,IAAA,YAAY,EAAE,IAAI;CACnB,CAAC;AAEK,MAAM,UAAU,GAA4B;AACjD,IAAA,aAAa,EAAE,YAAY;AAC3B,IAAA,MAAM,EAAE;AACN,QAAA,YAAY,EAAE,YAAY;AAC1B,QAAA,UAAU,EAAE,IAAI;AAChB,QAAA,cAAc,EAAE,aAAa;AAC7B,QAAA,IAAI,EAAE;AACJ,YAAA,IAAI,EAAE,QAAQ;AACf,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,SAAS,GAA4B;AAChD,IAAA,aAAa,EAAE,CAAC,SAAS,EAAE,WAAW,CAAC;AACvC,IAAA,MAAM,EAAE;AACN,QAAA,cAAc,EAAE,YAAY;AAC5B,QAAA,IAAI,EAAE;AACJ,YAAA,IAAI,EAAE,QAAQ;AACf,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,QAAQ,GAA0B;AAC7C,IAAA,aAAa,EAAE,UAAU;AACzB,IAAA,MAAM,EAAE;AACN,QAAA,cAAc,EAAE,UAAU;AAC1B,QAAA,QAAQ,EAAE,IAAI;AACd,QAAA,IAAI,EAAE;AACJ,YAAA,IAAI,EAAE,QAAQ;AACf,SAAA;AACF,KAAA;AACD,IAAA,YAAY,EAAE,IAAI;CACnB,CAAC;AAEK,MAAM,UAAU,GAA0B;AAC/C,IAAA,aAAa,EAAE,YAAY;AAC3B,IAAA,MAAM,EAAE;AACN,QAAA,cAAc,EAAE,YAAY;AAC5B,QAAA,QAAQ,EAAE,IAAI;AACd,QAAA,IAAI,EAAE;AACJ,YAAA,IAAI,EAAE,QAAQ;AACf,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,SAAS,GAA4B;AAChD,IAAA,aAAa,EAAE,WAAW;AAC1B,IAAA,MAAM,EAAE;AACN,QAAA,cAAc,EAAE,YAAY;AAC5B,QAAA,QAAQ,EAAE,IAAI;AACd,QAAA,IAAI,EAAE;AACJ,YAAA,IAAI,EAAE,UAAU;AACjB,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,OAAO,GAA4B;AAC9C,IAAA,aAAa,EAAE,SAAS;AACxB,IAAA,MAAM,EAAE;AACN,QAAA,cAAc,EAAE,UAAU;AAC1B,QAAA,QAAQ,EAAE,IAAI;AACd,QAAA,IAAI,EAAE;AACJ,YAAA,IAAI,EAAE,UAAU;AACjB,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,cAAc,GAA0B;AACnD,IAAA,aAAa,EAAE,gBAAgB;AAC/B,IAAA,MAAM,EAAE;AACN,QAAA,WAAW,EAAE;AACX,YAAA,SAAS,EAAE,CAAC;AACb,SAAA;AACD,QAAA,cAAc,EAAE,gBAAgB;AAChC,QAAA,QAAQ,EAAE,IAAI;AACd,QAAA,IAAI,EAAE;AACJ,YAAA,IAAI,EAAE,QAAQ;AACf,SAAA;AACF,KAAA;CACF,CAAC;AAEK,MAAM,iBAAiB,GAA0B;AACtD,IAAA,aAAa,EAAE,mBAAmB;AAClC,IAAA,MAAM,EAAE;AACN,QAAA,WAAW,EAAE;AACX,YAAA,SAAS,EAAE,EAAE;AACb,YAAA,SAAS,EAAE,CAAC;AACb,SAAA;AACD,QAAA,cAAc,EAAE,mBAAmB;AACnC,QAAA,QAAQ,EAAE,IAAI;AACd,QAAA,IAAI,EAAE;AACJ,YAAA,IAAI,EAAE,QAAQ;AACf,SAAA;AACF,KAAA;CACF;;ACpID;;;;;;AAMG;AAgBH;AACA;MACa,cAAc,CAAA;AAGzB;;;AAGG;AACH,IAAA,WAAA,CAAY,MAA2C,EAAA;AACrD,QAAA,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;KACtB;AAED;;;;AAIG;AACI,IAAA,IAAI,CACT,OAAsC,EAAA;QAEtC,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;QACzC,OAAO;YACL,IAAI,GAAA;AACF,gBAAA,OAAO,IAAI,CAAC,IAAI,EAAE,CAAC;aACpB;YACD,CAAC,MAAM,CAAC,aAAa,CAAC,GAAA;AACpB,gBAAA,OAAO,IAAI,CAAC;aACb;YACD,MAAM,EAAE,MAAK;AACX,gBAAA,OAAO,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;aACrC;SACF,CAAC;KACH;AAEc,IAAA,cAAc,CAC3B,OAAsC,EAAA;;YAEtC,IAAI,MAAM,GAAG,MAAAC,aAAA,CAAM,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAA,CAAC;AACvC,YAAA,MAAA,MAAAA,aAAA,CAAM,MAAM,CAAC,KAAK,IAAI,EAAE,CAAA,CAAC;AACzB,YAAA,IAAI,iBAAiB,GAAG,MAAM,CAAC,QAAQ,CAAC;AACxC,YAAA,OAAO,iBAAiB,EAAE;gBACxB,MAAM,GAAG,MAAMA,aAAA,CAAA,IAAI,CAAC,SAAS,CAAC,iBAAiB,EAAE,OAAO,CAAC,CAAA,CAAC;AAC1D,gBAAA,iBAAiB,GAAG,MAAM,CAAC,QAAQ,CAAC;AACpC,gBAAA,MAAA,MAAAA,aAAA,CAAM,MAAM,CAAC,KAAK,IAAI,EAAE,CAAA,CAAC;AAC1B,aAAA;SACF,CAAA,CAAA;AAAA,KAAA;AAEc,IAAA,aAAa,CAC1B,OAAsC,EAAA;;;;gBAEtC,KAAyB,IAAA,EAAA,GAAAC,mBAAA,CAAA,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAA,EAAA,EAAA,EAAA,EAAA,GAAA,MAAAD,aAAA,CAAA,EAAA,CAAA,IAAA,EAAA,CAAA,EAAA,CAAA,EAAA,CAAA,IAAA,GAAA;oBAA1C,MAAM,IAAI,WAAA,CAAA;oBACnB,MAAAA,aAAA,CAAA,OAAOE,sBAAA,CAAAD,oBAAA,IAAI,CAAA,CAAA,CAAA,CAAC;AACb,iBAAA;;;;;;;;;SACF,CAAA,CAAA;AAAA,KAAA;AAED;;;;AAIG;AACK,IAAA,KAAK,CACX,OAAsC,EAAA;AAEtC,QAAA,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,EAAE,OAAO,EAAE,EAAEE,mBAAiB,CAAC,CAAC;KACzE;AAED;;;;AAIG;IACK,SAAS,CACf,QAAgB,EAChB,OAA0C,EAAA;AAE1C,QAAA,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,QAAQ,EAAE,OAAO,EAAE,EACrBC,uBAAqB,CACtB,CAAC;KACH;AACF,CAAA;AACD;AACA,MAAMC,YAAU,GAAGC,qBAAU,CAAC,gBAAgB,CAAC,OAAO,cAAc,KAAK,CAAC,CAAC;AAE3E,MAAMH,mBAAiB,GAA6B;AAClD,IAAA,IAAI,EAAE,gDAAgD;AACtD,IAAA,UAAU,EAAE,KAAK;AACjB,IAAA,SAAS,EAAE;AACT,QAAA,GAAG,EAAE;YACH,UAAU,EAAEI,6BAAqC;AAClD,SAAA;AACD,QAAA,OAAO,EAAE;YACP,UAAU,EAAEC,aAAqB;AAClC,SAAA;AACF,KAAA;IACD,eAAe,EAAE,CAACC,UAAqB,EAAEC,SAAoB,CAAC;AAC9D,IAAA,aAAa,EAAE,CAACC,KAAgB,CAAC;AACjC,IAAA,gBAAgB,EAAE,CAACC,MAAiB,CAAC;gBACrCP,YAAU;CACX,CAAC;AACF,MAAMD,uBAAqB,GAA6B;AACtD,IAAA,IAAI,EAAE,YAAY;AAClB,IAAA,UAAU,EAAE,KAAK;AACjB,IAAA,SAAS,EAAE;AACT,QAAA,GAAG,EAAE;YACH,UAAU,EAAEG,6BAAqC;AAClD,SAAA;AACD,QAAA,OAAO,EAAE;YACP,UAAU,EAAEC,aAAqB;AAClC,SAAA;AACF,KAAA;IACD,eAAe,EAAE,CAACC,UAAqB,EAAEC,SAAoB,CAAC;IAC9D,aAAa,EAAE,CAACC,KAAgB,EAAEE,QAAmB,CAAC;AACtD,IAAA,gBAAgB,EAAE,CAACD,MAAiB,CAAC;gBACrCP,YAAU;CACX;;AC1ID;;;;;;AAMG;AAgBH;AACA;MACa,mBAAmB,CAAA;AAG9B;;;AAGG;AACH,IAAA,WAAA,CAAY,MAA2C,EAAA;AACrD,QAAA,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;KACtB;AAED;;;;;;;AAOG;AACI,IAAA,IAAI,CACT,UAAkB,EAClB,SAAe,EACf,OAAa,EACb,OAA2C,EAAA;AAE3C,QAAA,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,UAAU,EAAE,SAAS,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;QACzE,OAAO;YACL,IAAI,GAAA;AACF,gBAAA,OAAO,IAAI,CAAC,IAAI,EAAE,CAAC;aACpB;YACD,CAAC,MAAM,CAAC,aAAa,CAAC,GAAA;AACpB,gBAAA,OAAO,IAAI,CAAC;aACb;YACD,MAAM,EAAE,MAAK;AACX,gBAAA,OAAO,IAAI,CAAC,cAAc,CAAC,UAAU,EAAE,SAAS,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;aACrE;SACF,CAAC;KACH;AAEc,IAAA,cAAc,CAC3B,UAAkB,EAClB,SAAe,EACf,OAAa,EACb,OAA2C,EAAA;;AAE3C,YAAA,IAAI,MAAM,GAAG,MAAAL,aAAA,CAAM,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,SAAS,EAAE,OAAO,EAAE,OAAO,CAAC,CAAA,CAAC;AACvE,YAAA,MAAA,MAAAA,aAAA,CAAM,MAAM,CAAC,KAAK,IAAI,EAAE,CAAA,CAAC;AACzB,YAAA,IAAI,iBAAiB,GAAG,MAAM,CAAC,QAAQ,CAAC;AACxC,YAAA,OAAO,iBAAiB,EAAE;AACxB,gBAAA,MAAM,GAAG,MAAMA,aAAA,CAAA,IAAI,CAAC,SAAS,CAC3B,UAAU,EACV,SAAS,EACT,OAAO,EACP,iBAAiB,EACjB,OAAO,CACR,CAAA,CAAC;AACF,gBAAA,iBAAiB,GAAG,MAAM,CAAC,QAAQ,CAAC;AACpC,gBAAA,MAAA,MAAAA,aAAA,CAAM,MAAM,CAAC,KAAK,IAAI,EAAE,CAAA,CAAC;AAC1B,aAAA;SACF,CAAA,CAAA;AAAA,KAAA;AAEc,IAAA,aAAa,CAC1B,UAAkB,EAClB,SAAe,EACf,OAAa,EACb,OAA2C,EAAA;;;;AAE3C,gBAAA,KAAyB,IAAA,EAAA,GAAAC,mBAAA,CAAA,IAAI,CAAC,cAAc,CAC1C,UAAU,EACV,SAAS,EACT,OAAO,EACP,OAAO,CACR,CAAA,EAAA,EAAA,EAAA,EAAA,GAAA,MAAAD,aAAA,CAAA,EAAA,CAAA,IAAA,EAAA,CAAA,EAAA,CAAA,EAAA,CAAA,IAAA,GAAA;oBALU,MAAM,IAAI,WAAA,CAAA;oBAMnB,MAAAA,aAAA,CAAA,OAAOE,sBAAA,CAAAD,oBAAA,IAAI,CAAA,CAAA,CAAA,CAAC;AACb,iBAAA;;;;;;;;;SACF,CAAA,CAAA;AAAA,KAAA;AAED;;;;;;;AAOG;AACK,IAAA,KAAK,CACX,UAAkB,EAClB,SAAe,EACf,OAAa,EACb,OAA2C,EAAA;AAE3C,QAAA,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,UAAU,EAAE,SAAS,EAAE,OAAO,EAAE,OAAO,EAAE,EAC3C,iBAAiB,CAClB,CAAC;KACH;AAED;;;;;;;AAOG;IACK,SAAS,CACf,UAAkB,EAClB,SAAe,EACf,OAAa,EACb,QAAgB,EAChB,OAA+C,EAAA;QAE/C,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,UAAU,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,EACrD,qBAAqB,CACtB,CAAC;KACH;AACF,CAAA;AACD;AACA,MAAMI,YAAU,GAAGC,qBAAU,CAAC,gBAAgB,CAAC,OAAO,cAAc,KAAK,CAAC,CAAC;AAE3E,MAAM,iBAAiB,GAA6B;AAClD,IAAA,IAAI,EAAE,kEAAkE;AACxE,IAAA,UAAU,EAAE,MAAM;AAClB,IAAA,SAAS,EAAE;AACT,QAAA,GAAG,EAAE;YACH,UAAU,EAAEQ,UAAkB;AAC/B,SAAA;AACD,QAAA,OAAO,EAAE;YACP,UAAU,EAAEN,aAAqB;AAClC,SAAA;AACF,KAAA;AACD,IAAA,eAAe,EAAE;AACf,QAAAC,UAAqB;AACrB,QAAAC,SAAoB;AACpB,QAAAK,SAAoB;AACpB,QAAAC,OAAkB;AACnB,KAAA;IACD,aAAa,EAAE,CAACL,KAAgB,EAAEM,UAAqB,CAAC;AACxD,IAAA,gBAAgB,EAAE,CAACL,MAAiB,CAAC;gBACrCP,YAAU;CACX,CAAC;AACF,MAAM,qBAAqB,GAA6B;AACtD,IAAA,IAAI,EAAE,YAAY;AAClB,IAAA,UAAU,EAAE,KAAK;AACjB,IAAA,SAAS,EAAE;AACT,QAAA,GAAG,EAAE;YACH,UAAU,EAAES,UAAkB;AAC/B,SAAA;AACD,QAAA,OAAO,EAAE;YACP,UAAU,EAAEN,aAAqB;AAClC,SAAA;AACF,KAAA;AACD,IAAA,eAAe,EAAE;AACf,QAAAC,UAAqB;AACrB,QAAAC,SAAoB;AACpB,QAAAK,SAAoB;AACpB,QAAAC,OAAkB;AACnB,KAAA;AACD,IAAA,aAAa,EAAE,CAACL,KAAgB,EAAEE,QAAmB,EAAEI,UAAqB,CAAC;AAC7E,IAAA,gBAAgB,EAAE,CAACL,MAAiB,CAAC;gBACrCP,YAAU;CACX;;AC1LD;;;;;;AAMG;AAoBH;AACA;MACa,WAAW,CAAA;AAGtB;;;AAGG;AACH,IAAA,WAAA,CAAY,MAA2C,EAAA;AACrD,QAAA,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;KACtB;AAED;;;;;;;AAOG;AACI,IAAA,0BAA0B,CAC/B,iBAAyB,EACzB,SAAe,EACf,OAAa,EACb,OAAyD,EAAA;AAEzD,QAAA,MAAM,IAAI,GAAG,IAAI,CAAC,mCAAmC,CACnD,iBAAiB,EACjB,SAAS,EACT,OAAO,EACP,OAAO,CACR,CAAC;QACF,OAAO;YACL,IAAI,GAAA;AACF,gBAAA,OAAO,IAAI,CAAC,IAAI,EAAE,CAAC;aACpB;YACD,CAAC,MAAM,CAAC,aAAa,CAAC,GAAA;AACpB,gBAAA,OAAO,IAAI,CAAC;aACb;YACD,MAAM,EAAE,MAAK;AACX,gBAAA,OAAO,IAAI,CAAC,oCAAoC,CAC9C,iBAAiB,EACjB,SAAS,EACT,OAAO,EACP,OAAO,CACR,CAAC;aACH;SACF,CAAC;KACH;AAEc,IAAA,oCAAoC,CACjD,iBAAyB,EACzB,SAAe,EACf,OAAa,EACb,OAAyD,EAAA;;AAEzD,YAAA,IAAI,MAAM,GAAG,MAAAL,aAAA,CAAM,IAAI,CAAC,2BAA2B,CACjD,iBAAiB,EACjB,SAAS,EACT,OAAO,EACP,OAAO,CACR,CAAA,CAAC;AACF,YAAA,MAAA,MAAAA,aAAA,CAAM,MAAM,CAAC,KAAK,IAAI,EAAE,CAAA,CAAC;AACzB,YAAA,IAAI,iBAAiB,GAAG,MAAM,CAAC,QAAQ,CAAC;AACxC,YAAA,OAAO,iBAAiB,EAAE;AACxB,gBAAA,MAAM,GAAG,MAAMA,aAAA,CAAA,IAAI,CAAC,+BAA+B,CACjD,iBAAiB,EACjB,SAAS,EACT,OAAO,EACP,iBAAiB,EACjB,OAAO,CACR,CAAA,CAAC;AACF,gBAAA,iBAAiB,GAAG,MAAM,CAAC,QAAQ,CAAC;AACpC,gBAAA,MAAA,MAAAA,aAAA,CAAM,MAAM,CAAC,KAAK,IAAI,EAAE,CAAA,CAAC;AAC1B,aAAA;SACF,CAAA,CAAA;AAAA,KAAA;AAEc,IAAA,mCAAmC,CAChD,iBAAyB,EACzB,SAAe,EACf,OAAa,EACb,OAAyD,EAAA;;;;AAEzD,gBAAA,KAAyB,IAAA,EAAA,GAAAC,mBAAA,CAAA,IAAI,CAAC,oCAAoC,CAChE,iBAAiB,EACjB,SAAS,EACT,OAAO,EACP,OAAO,CACR,CAAA,EAAA,EAAA,EAAA,EAAA,GAAA,MAAAD,aAAA,CAAA,EAAA,CAAA,IAAA,EAAA,CAAA,EAAA,CAAA,EAAA,CAAA,IAAA,GAAA;oBALU,MAAM,IAAI,WAAA,CAAA;oBAMnB,MAAAA,aAAA,CAAA,OAAOE,sBAAA,CAAAD,oBAAA,IAAI,CAAA,CAAA,CAAA,CAAC;AACb,iBAAA;;;;;;;;;SACF,CAAA,CAAA;AAAA,KAAA;AAED;;;;;;AAMG;AACI,IAAA,yBAAyB,CAC9B,SAAe,EACf,OAAa,EACb,OAAwD,EAAA;AAExD,QAAA,MAAM,IAAI,GAAG,IAAI,CAAC,kCAAkC,CAClD,SAAS,EACT,OAAO,EACP,OAAO,CACR,CAAC;QACF,OAAO;YACL,IAAI,GAAA;AACF,gBAAA,OAAO,IAAI,CAAC,IAAI,EAAE,CAAC;aACpB;YACD,CAAC,MAAM,CAAC,aAAa,CAAC,GAAA;AACpB,gBAAA,OAAO,IAAI,CAAC;aACb;YACD,MAAM,EAAE,MAAK;gBACX,OAAO,IAAI,CAAC,mCAAmC,CAC7C,SAAS,EACT,OAAO,EACP,OAAO,CACR,CAAC;aACH;SACF,CAAC;KACH;AAEc,IAAA,mCAAmC,CAChD,SAAe,EACf,OAAa,EACb,OAAwD,EAAA;;AAExD,YAAA,IAAI,MAAM,GAAG,MAAMD,aAAA,CAAA,IAAI,CAAC,0BAA0B,CAChD,SAAS,EACT,OAAO,EACP,OAAO,CACR,CAAA,CAAC;AACF,YAAA,MAAA,MAAAA,aAAA,CAAM,MAAM,CAAC,KAAK,IAAI,EAAE,CAAA,CAAC;AACzB,YAAA,IAAI,iBAAiB,GAAG,MAAM,CAAC,QAAQ,CAAC;AACxC,YAAA,OAAO,iBAAiB,EAAE;AACxB,gBAAA,MAAM,GAAG,MAAAA,aAAA,CAAM,IAAI,CAAC,8BAA8B,CAChD,SAAS,EACT,OAAO,EACP,iBAAiB,EACjB,OAAO,CACR,CAAA,CAAC;AACF,gBAAA,iBAAiB,GAAG,MAAM,CAAC,QAAQ,CAAC;AACpC,gBAAA,MAAA,MAAAA,aAAA,CAAM,MAAM,CAAC,KAAK,IAAI,EAAE,CAAA,CAAC;AAC1B,aAAA;SACF,CAAA,CAAA;AAAA,KAAA;AAEc,IAAA,kCAAkC,CAC/C,SAAe,EACf,OAAa,EACb,OAAwD,EAAA;;;;AAExD,gBAAA,KAAyB,IAAA,EAAA,GAAAC,mBAAA,CAAA,IAAI,CAAC,mCAAmC,CAC/D,SAAS,EACT,OAAO,EACP,OAAO,CACR,CAAA,EAAA,EAAA,EAAA,EAAA,GAAA,MAAAD,aAAA,CAAA,EAAA,CAAA,IAAA,EAAA,CAAA,EAAA,CAAA,EAAA,CAAA,IAAA,GAAA;oBAJU,MAAM,IAAI,WAAA,CAAA;oBAKnB,MAAAA,aAAA,CAAA,OAAOE,sBAAA,CAAAD,oBAAA,IAAI,CAAA,CAAA,CAAA,CAAC;AACb,iBAAA;;;;;;;;;SACF,CAAA,CAAA;AAAA,KAAA;AAED;;;;;;;AAOG;AACK,IAAA,2BAA2B,CACjC,iBAAyB,EACzB,SAAe,EACf,OAAa,EACb,OAAyD,EAAA;AAEzD,QAAA,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,iBAAiB,EAAE,SAAS,EAAE,OAAO,EAAE,OAAO,EAAE,EAClD,uCAAuC,CACxC,CAAC;KACH;AAED;;;;;;AAMG;AACK,IAAA,0BAA0B,CAChC,SAAe,EACf,OAAa,EACb,OAAwD,EAAA;AAExD,QAAA,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,SAAS,EAAE,OAAO,EAAE,OAAO,EAAE,EAC/B,sCAAsC,CACvC,CAAC;KACH;AAED;;;;;;;;AAQG;IACK,+BAA+B,CACrC,iBAAyB,EACzB,SAAe,EACf,OAAa,EACb,QAAgB,EAChB,OAA6D,EAAA;QAE7D,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,iBAAiB,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,EAC5D,2CAA2C,CAC5C,CAAC;KACH;AAED;;;;;;;AAOG;AACK,IAAA,8BAA8B,CACpC,SAAe,EACf,OAAa,EACb,QAAgB,EAChB,OAA4D,EAAA;AAE5D,QAAA,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,EACzC,0CAA0C,CAC3C,CAAC;KACH;AACF,CAAA;AACD;AACA,MAAM,UAAU,GAAGK,qBAAU,CAAC,gBAAgB,CAAC,OAAO,cAAc,KAAK,CAAC,CAAC;AAE3E,MAAM,uCAAuC,GAA6B;AACxE,IAAA,IAAI,EACF,+GAA+G;AACjH,IAAA,UAAU,EAAE,KAAK;AACjB,IAAA,SAAS,EAAE;AACT,QAAA,GAAG,EAAE;YACH,UAAU,EAAEQ,UAAkB;AAC/B,SAAA;AACD,QAAA,OAAO,EAAE;YACP,UAAU,EAAEN,aAAqB;AAClC,SAAA;AACF,KAAA;AACD,IAAA,eAAe,EAAE;AACf,QAAAC,UAAqB;AACrB,QAAAC,SAAoB;AACpB,QAAAK,SAAoB;AACpB,QAAAC,OAAkB;AACnB,KAAA;AACD,IAAA,aAAa,EAAE;AACb,QAAAL,KAAgB;AAChB,QAAAO,cAAyB;AACzB,QAAAC,iBAA4B;AAC7B,KAAA;AACD,IAAA,gBAAgB,EAAE,CAACP,MAAiB,CAAC;IACrC,UAAU;CACX,CAAC;AACF,MAAM,sCAAsC,GAA6B;AACvE,IAAA,IAAI,EACF,4EAA4E;AAC9E,IAAA,UAAU,EAAE,KAAK;AACjB,IAAA,SAAS,EAAE;AACT,QAAA,GAAG,EAAE;YACH,UAAU,EAAEE,UAAkB;AAC/B,SAAA;AACD,QAAA,OAAO,EAAE;YACP,UAAU,EAAEN,aAAqB;AAClC,SAAA;AACF,KAAA;AACD,IAAA,eAAe,EAAE;AACf,QAAAC,UAAqB;AACrB,QAAAC,SAAoB;AACpB,QAAAK,SAAoB;AACpB,QAAAC,OAAkB;AACnB,KAAA;IACD,aAAa,EAAE,CAACL,KAAgB,EAAEO,cAAyB,CAAC;AAC5D,IAAA,gBAAgB,EAAE,CAACN,MAAiB,CAAC;IACrC,UAAU;CACX,CAAC;AACF,MAAM,2CAA2C,GAA6B;AAC5E,IAAA,IAAI,EAAE,YAAY;AAClB,IAAA,UAAU,EAAE,KAAK;AACjB,IAAA,SAAS,EAAE;AACT,QAAA,GAAG,EAAE;YACH,UAAU,EAAEE,UAAkB;AAC/B,SAAA;AACD,QAAA,OAAO,EAAE;YACP,UAAU,EAAEN,aAAqB;AAClC,SAAA;AACF,KAAA;AACD,IAAA,eAAe,EAAE;AACf,QAAAC,UAAqB;AACrB,QAAAC,SAAoB;AACpB,QAAAK,SAAoB;AACpB,QAAAC,OAAkB;AACnB,KAAA;AACD,IAAA,aAAa,EAAE;AACb,QAAAL,KAAgB;AAChB,QAAAE,QAAmB;AACnB,QAAAK,cAAyB;AACzB,QAAAC,iBAA4B;AAC7B,KAAA;AACD,IAAA,gBAAgB,EAAE,CAACP,MAAiB,CAAC;IACrC,UAAU;CACX,CAAC;AACF,MAAM,0CAA0C,GAA6B;AAC3E,IAAA,IAAI,EAAE,YAAY;AAClB,IAAA,UAAU,EAAE,KAAK;AACjB,IAAA,SAAS,EAAE;AACT,QAAA,GAAG,EAAE;YACH,UAAU,EAAEE,UAAkB;AAC/B,SAAA;AACD,QAAA,OAAO,EAAE;YACP,UAAU,EAAEN,aAAqB;AAClC,SAAA;AACF,KAAA;AACD,IAAA,eAAe,EAAE;AACf,QAAAC,UAAqB;AACrB,QAAAC,SAAoB;AACpB,QAAAK,SAAoB;AACpB,QAAAC,OAAkB;AACnB,KAAA;AACD,IAAA,aAAa,EAAE;AACb,QAAAL,KAAgB;AAChB,QAAAE,QAAmB;AACnB,QAAAK,cAAyB;AAC1B,KAAA;AACD,IAAA,gBAAgB,EAAE,CAACN,MAAiB,CAAC;IACrC,UAAU;CACX;;ACrXD;;;;;;AAMG;AAQU,MAAA,mCAAoC,SAAQN,qBAAU,CAAC,aAAa,CAAA;AAK/E;;;;;AAKG;AACH,IAAA,WAAA,CACE,WAAqC,EACrC,cAAsB,EACtB,OAA2D,EAAA;;QAE3D,IAAI,WAAW,KAAK,SAAS,EAAE;AAC7B,YAAA,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAC;AACjD,SAAA;QACD,IAAI,cAAc,KAAK,SAAS,EAAE;AAChC,YAAA,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;AACpD,SAAA;;QAGD,IAAI,CAAC,OAAO,EAAE;YACZ,OAAO,GAAG,EAAE,CAAC;AACd,SAAA;AACD,QAAA,MAAM,QAAQ,GAAsD;AAClE,YAAA,kBAAkB,EAAE,iCAAiC;AACrD,YAAA,UAAU,EAAE,WAAW;SACxB,CAAC;QAEF,MAAM,cAAc,GAAG,CAAA,iCAAA,CAAmC,CAAC;QAC3D,MAAM,eAAe,GACnB,OAAO,CAAC,gBAAgB,IAAI,OAAO,CAAC,gBAAgB,CAAC,eAAe;cAChE,GAAG,OAAO,CAAC,gBAAgB,CAAC,eAAe,CAAI,CAAA,EAAA,cAAc,CAAE,CAAA;AACjE,cAAE,CAAA,EAAG,cAAc,CAAA,CAAE,CAAC;AAE1B,QAAA,IAAI,CAAC,OAAO,CAAC,gBAAgB,EAAE;AAC7B,YAAA,OAAO,CAAC,gBAAgB,GAAG,CAAC,uCAAuC,CAAC,CAAC;AACtE,SAAA;AACD,QAAA,MAAM,mBAAmB,GACpB,MAAA,CAAA,MAAA,CAAA,MAAA,CAAA,MAAA,CAAA,MAAA,CAAA,MAAA,CAAA,EAAA,EAAA,QAAQ,GACR,OAAO,CAAA,EAAA,EACV,gBAAgB,EAAE;gBAChB,eAAe;AAChB,aAAA,EACD,OAAO,EACL,CAAA,EAAA,GAAA,CAAA,EAAA,GAAA,OAAO,CAAC,QAAQ,MAAI,IAAA,IAAA,EAAA,KAAA,KAAA,CAAA,GAAA,EAAA,GAAA,OAAO,CAAC,OAAO,MAAI,IAAA,IAAA,EAAA,KAAA,KAAA,CAAA,GAAA,EAAA,GAAA,8BAA8B,GACxE,CAAC;QACF,KAAK,CAAC,mBAAmB,CAAC,CAAC;;AAE3B,QAAA,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;;QAGrC,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,IAAI,8BAA8B,CAAC;QAC7D,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU,IAAI,YAAY,CAAC;QACrD,IAAI,CAAC,UAAU,GAAG,IAAI,cAAc,CAAC,IAAI,CAAC,CAAC;QAC3C,IAAI,CAAC,eAAe,GAAG,IAAI,mBAAmB,CAAC,IAAI,CAAC,CAAC;QACrD,IAAI,CAAC,OAAO,GAAG,IAAI,WAAW,CAAC,IAAI,CAAC,CAAC;KACtC;AAKF;;;;"}
package/dist/index.min.js CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var coreClient=require("@azure/core-client"),tslib=require("tslib");function _interopNamespace(t){if(t&&t.__esModule)return t;var i=Object.create(null);return t&&Object.keys(t).forEach(function(e){var r;"default"!==e&&(r=Object.getOwnPropertyDescriptor(t,e),Object.defineProperty(i,e,r.get?r:{enumerable:!0,get:function(){return t[e]}}))}),i.default=t,Object.freeze(i)}var coreClient__namespace=_interopNamespace(coreClient);exports.KnownChangeType=void 0,function(e){e.Add="Add",e.Remove="Remove",e.Update="Update"}(exports.KnownChangeType||(exports.KnownChangeType={})),exports.KnownLevel=void 0,function(e){e.Noisy="Noisy",e.Normal="Normal",e.Important="Important"}(exports.KnownLevel||(exports.KnownLevel={}));const ResourceProviderOperationList={type:{name:"Composite",className:"ResourceProviderOperationList",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"ResourceProviderOperationDefinition"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},ResourceProviderOperationDefinition={type:{name:"Composite",className:"ResourceProviderOperationDefinition",modelProperties:{name:{serializedName:"name",type:{name:"String"}},display:{serializedName:"display",type:{name:"Composite",className:"ResourceProviderOperationDisplay"}}}}},ResourceProviderOperationDisplay={type:{name:"Composite",className:"ResourceProviderOperationDisplay",modelProperties:{provider:{serializedName:"provider",type:{name:"String"}},resource:{serializedName:"resource",type:{name:"String"}},operation:{serializedName:"operation",type:{name:"String"}},description:{serializedName:"description",type:{name:"String"}}}}},ErrorResponse={type:{name:"Composite",className:"ErrorResponse",modelProperties:{error:{serializedName:"error",type:{name:"Composite",className:"ErrorDetail"}}}}},ErrorDetail={type:{name:"Composite",className:"ErrorDetail",modelProperties:{code:{serializedName:"code",readOnly:!0,type:{name:"String"}},message:{serializedName:"message",readOnly:!0,type:{name:"String"}},target:{serializedName:"target",readOnly:!0,type:{name:"String"}},details:{serializedName:"details",readOnly:!0,type:{name:"Sequence",element:{type:{name:"Composite",className:"ErrorDetail"}}}},additionalInfo:{serializedName:"additionalInfo",readOnly:!0,type:{name:"Sequence",element:{type:{name:"Composite",className:"ErrorAdditionalInfo"}}}}}}},ErrorAdditionalInfo={type:{name:"Composite",className:"ErrorAdditionalInfo",modelProperties:{type:{serializedName:"type",readOnly:!0,type:{name:"String"}},info:{serializedName:"info",readOnly:!0,type:{name:"Dictionary",value:{type:{name:"any"}}}}}}},ChangeList={type:{name:"Composite",className:"ChangeList",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"Change"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},ChangeProperties={type:{name:"Composite",className:"ChangeProperties",modelProperties:{resourceId:{serializedName:"resourceId",type:{name:"String"}},timeStamp:{serializedName:"timeStamp",type:{name:"DateTime"}},initiatedByList:{serializedName:"initiatedByList",type:{name:"Sequence",element:{type:{name:"String"}}}},changeType:{serializedName:"changeType",type:{name:"String"}},propertyChanges:{serializedName:"propertyChanges",type:{name:"Sequence",element:{type:{name:"Composite",className:"PropertyChange"}}}}}}},PropertyChange={type:{name:"Composite",className:"PropertyChange",modelProperties:{changeType:{serializedName:"changeType",type:{name:"String"}},changeCategory:{serializedName:"changeCategory",type:{name:"Enum",allowedValues:["User","System"]}},jsonPath:{serializedName:"jsonPath",type:{name:"String"}},displayName:{serializedName:"displayName",type:{name:"String"}},level:{serializedName:"level",type:{name:"String"}},description:{serializedName:"description",type:{name:"String"}},oldValue:{serializedName:"oldValue",type:{name:"String"}},newValue:{serializedName:"newValue",type:{name:"String"}},isDataMasked:{serializedName:"isDataMasked",type:{name:"Boolean"}}}}},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"}}}}},ProxyResource={type:{name:"Composite",className:"ProxyResource",modelProperties:Object.assign({},Resource.type.modelProperties)}},Change={type:{name:"Composite",className:"Change",modelProperties:Object.assign(Object.assign({},ProxyResource.type.modelProperties),{properties:{serializedName:"properties",type:{name:"Composite",className:"ChangeProperties"}}})}};var Mappers=Object.freeze({__proto__:null,ResourceProviderOperationList:ResourceProviderOperationList,ResourceProviderOperationDefinition:ResourceProviderOperationDefinition,ResourceProviderOperationDisplay:ResourceProviderOperationDisplay,ErrorResponse:ErrorResponse,ErrorDetail:ErrorDetail,ErrorAdditionalInfo:ErrorAdditionalInfo,ChangeList:ChangeList,ChangeProperties:ChangeProperties,PropertyChange:PropertyChange,Resource:Resource,ProxyResource:ProxyResource,Change:Change});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},apiVersion={parameterPath:"apiVersion",mapper:{defaultValue:"2021-04-01",isConstant:!0,serializedName:"api-version",type:{name:"String"}}},skipToken={parameterPath:["options","skipToken"],mapper:{serializedName:"$skipToken",type:{name:"String"}}},nextLink={parameterPath:"nextLink",mapper:{serializedName:"nextLink",required:!0,type:{name:"String"}},skipEncoding:!0},resourceId={parameterPath:"resourceId",mapper:{serializedName:"resourceId",required:!0,type:{name:"String"}}},startTime={parameterPath:"startTime",mapper:{serializedName:"$startTime",required:!0,type:{name:"DateTime"}}},endTime={parameterPath:"endTime",mapper:{serializedName:"$endTime",required:!0,type:{name:"DateTime"}}},subscriptionId={parameterPath:"subscriptionId",mapper:{constraints:{MinLength:1},serializedName:"subscriptionId",required:!0,type:{name:"String"}}},resourceGroupName={parameterPath:"resourceGroupName",mapper:{constraints:{MaxLength:90,MinLength:1},serializedName:"resourceGroupName",required:!0,type:{name:"String"}}};class OperationsImpl{constructor(e){this.client=e}list(e){const r=this.listPagingAll(e);return{next(){return r.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listPagingPage(e)}}listPagingPage(t){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._list(t));yield yield tslib.__await(e.value||[]);let r=e.nextLink;for(;r;)e=yield tslib.__await(this._listNext(r,t)),r=e.nextLink,yield yield tslib.__await(e.value||[])})}listPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var r,e;try{for(var t,i=tslib.__asyncValues(this.listPagingPage(s));!(t=yield tslib.__await(i.next())).done;){var a=t.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(a)))}}catch(e){r={error:e}}finally{try{t&&!t.done&&(e=i.return)&&(yield tslib.__await(e.call(i)))}finally{if(r)throw r.error}}})}_list(e){return this.client.sendOperationRequest({options:e},listOperationSpec$1)}_listNext(e,r){return this.client.sendOperationRequest({nextLink:e,options:r},listNextOperationSpec$1)}}const serializer$2=coreClient__namespace.createSerializer(Mappers,!1),listOperationSpec$1={path:"/providers/Microsoft.ChangeAnalysis/operations",httpMethod:"GET",responses:{200:{bodyMapper:ResourceProviderOperationList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken],urlParameters:[$host],headerParameters:[accept],serializer:serializer$2},listNextOperationSpec$1={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:ResourceProviderOperationList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken],urlParameters:[$host,nextLink],headerParameters:[accept],serializer:serializer$2};class ResourceChangesImpl{constructor(e){this.client=e}list(e,r,t,i){const a=this.listPagingAll(e,r,t,i);return{next(){return a.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listPagingPage(e,r,t,i)}}listPagingPage(t,i,a,s){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._list(t,i,a,s));yield yield tslib.__await(e.value||[]);let r=e.nextLink;for(;r;)e=yield tslib.__await(this._listNext(t,i,a,r,s)),r=e.nextLink,yield yield tslib.__await(e.value||[])})}listPagingAll(s,n,o,l){return tslib.__asyncGenerator(this,arguments,function*(){var r,e;try{for(var t,i=tslib.__asyncValues(this.listPagingPage(s,n,o,l));!(t=yield tslib.__await(i.next())).done;){var a=t.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(a)))}}catch(e){r={error:e}}finally{try{t&&!t.done&&(e=i.return)&&(yield tslib.__await(e.call(i)))}finally{if(r)throw r.error}}})}_list(e,r,t,i){return this.client.sendOperationRequest({resourceId:e,startTime:r,endTime:t,options:i},listOperationSpec)}_listNext(e,r,t,i,a){return this.client.sendOperationRequest({resourceId:e,startTime:r,endTime:t,nextLink:i,options:a},listNextOperationSpec)}}const serializer$1=coreClient__namespace.createSerializer(Mappers,!1),listOperationSpec={path:"/{resourceId}/providers/Microsoft.ChangeAnalysis/resourceChanges",httpMethod:"POST",responses:{200:{bodyMapper:ChangeList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken,startTime,endTime],urlParameters:[$host,resourceId],headerParameters:[accept],serializer:serializer$1},listNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:ChangeList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken,startTime,endTime],urlParameters:[$host,nextLink,resourceId],headerParameters:[accept],serializer:serializer$1};class ChangesImpl{constructor(e){this.client=e}listChangesByResourceGroup(e,r,t,i){const a=this.listChangesByResourceGroupPagingAll(e,r,t,i);return{next(){return a.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listChangesByResourceGroupPagingPage(e,r,t,i)}}listChangesByResourceGroupPagingPage(t,i,a,s){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listChangesByResourceGroup(t,i,a,s));yield yield tslib.__await(e.value||[]);let r=e.nextLink;for(;r;)e=yield tslib.__await(this._listChangesByResourceGroupNext(t,i,a,r,s)),r=e.nextLink,yield yield tslib.__await(e.value||[])})}listChangesByResourceGroupPagingAll(s,n,o,l){return tslib.__asyncGenerator(this,arguments,function*(){var r,e;try{for(var t,i=tslib.__asyncValues(this.listChangesByResourceGroupPagingPage(s,n,o,l));!(t=yield tslib.__await(i.next())).done;){var a=t.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(a)))}}catch(e){r={error:e}}finally{try{t&&!t.done&&(e=i.return)&&(yield tslib.__await(e.call(i)))}finally{if(r)throw r.error}}})}listChangesBySubscription(e,r,t){const i=this.listChangesBySubscriptionPagingAll(e,r,t);return{next(){return i.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listChangesBySubscriptionPagingPage(e,r,t)}}listChangesBySubscriptionPagingPage(t,i,a){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listChangesBySubscription(t,i,a));yield yield tslib.__await(e.value||[]);let r=e.nextLink;for(;r;)e=yield tslib.__await(this._listChangesBySubscriptionNext(t,i,r,a)),r=e.nextLink,yield yield tslib.__await(e.value||[])})}listChangesBySubscriptionPagingAll(s,n,o){return tslib.__asyncGenerator(this,arguments,function*(){var r,e;try{for(var t,i=tslib.__asyncValues(this.listChangesBySubscriptionPagingPage(s,n,o));!(t=yield tslib.__await(i.next())).done;){var a=t.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(a)))}}catch(e){r={error:e}}finally{try{t&&!t.done&&(e=i.return)&&(yield tslib.__await(e.call(i)))}finally{if(r)throw r.error}}})}_listChangesByResourceGroup(e,r,t,i){return this.client.sendOperationRequest({resourceGroupName:e,startTime:r,endTime:t,options:i},listChangesByResourceGroupOperationSpec)}_listChangesBySubscription(e,r,t){return this.client.sendOperationRequest({startTime:e,endTime:r,options:t},listChangesBySubscriptionOperationSpec)}_listChangesByResourceGroupNext(e,r,t,i,a){return this.client.sendOperationRequest({resourceGroupName:e,startTime:r,endTime:t,nextLink:i,options:a},listChangesByResourceGroupNextOperationSpec)}_listChangesBySubscriptionNext(e,r,t,i){return this.client.sendOperationRequest({startTime:e,endTime:r,nextLink:t,options:i},listChangesBySubscriptionNextOperationSpec)}}const serializer=coreClient__namespace.createSerializer(Mappers,!1),listChangesByResourceGroupOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ChangeAnalysis/changes",httpMethod:"GET",responses:{200:{bodyMapper:ChangeList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken,startTime,endTime],urlParameters:[$host,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer},listChangesBySubscriptionOperationSpec={path:"/subscriptions/{subscriptionId}/providers/Microsoft.ChangeAnalysis/changes",httpMethod:"GET",responses:{200:{bodyMapper:ChangeList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken,startTime,endTime],urlParameters:[$host,subscriptionId],headerParameters:[accept],serializer:serializer},listChangesByResourceGroupNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:ChangeList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken,startTime,endTime],urlParameters:[$host,nextLink,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer},listChangesBySubscriptionNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:ChangeList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken,startTime,endTime],urlParameters:[$host,nextLink,subscriptionId],headerParameters:[accept],serializer:serializer};class AzureChangeAnalysisManagementClient extends coreClient__namespace.ServiceClient{constructor(e,r,t){if(void 0===e)throw new Error("'credentials' cannot be null");if(void 0===r)throw new Error("'subscriptionId' cannot be null");var e={requestContentType:"application/json; charset=utf-8",credential:e},i="azsdk-js-arm-changeanalysis/2.0.1",i=(t=t||{}).userAgentOptions&&t.userAgentOptions.userAgentPrefix?t.userAgentOptions.userAgentPrefix+" "+i:i,e=(t.credentialScopes||(t.credentialScopes=["https://management.azure.com/.default"]),Object.assign(Object.assign(Object.assign({},e),t),{userAgentOptions:{userAgentPrefix:i},baseUri:null!=(i=null!=(e=t.endpoint)?e:t.baseUri)?i:"https://management.azure.com"}));super(e),this.subscriptionId=r,this.$host=t.$host||"https://management.azure.com",this.apiVersion=t.apiVersion||"2021-04-01",this.operations=new OperationsImpl(this),this.resourceChanges=new ResourceChangesImpl(this),this.changes=new ChangesImpl(this)}}exports.AzureChangeAnalysisManagementClient=AzureChangeAnalysisManagementClient;
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var coreClient=require("@azure/core-client"),tslib=require("tslib");function _interopNamespace(t){var i;return t&&t.__esModule?t:(i=Object.create(null),t&&Object.keys(t).forEach(function(e){var r;"default"!==e&&(r=Object.getOwnPropertyDescriptor(t,e),Object.defineProperty(i,e,r.get?r:{enumerable:!0,get:function(){return t[e]}}))}),i.default=t,Object.freeze(i))}var coreClient__namespace=_interopNamespace(coreClient);exports.KnownChangeType=void 0,function(e){e.Add="Add",e.Remove="Remove",e.Update="Update"}(exports.KnownChangeType||(exports.KnownChangeType={})),exports.KnownLevel=void 0,function(e){e.Noisy="Noisy",e.Normal="Normal",e.Important="Important"}(exports.KnownLevel||(exports.KnownLevel={}));const ResourceProviderOperationList={type:{name:"Composite",className:"ResourceProviderOperationList",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"ResourceProviderOperationDefinition"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},ResourceProviderOperationDefinition={type:{name:"Composite",className:"ResourceProviderOperationDefinition",modelProperties:{name:{serializedName:"name",type:{name:"String"}},display:{serializedName:"display",type:{name:"Composite",className:"ResourceProviderOperationDisplay"}}}}},ResourceProviderOperationDisplay={type:{name:"Composite",className:"ResourceProviderOperationDisplay",modelProperties:{provider:{serializedName:"provider",type:{name:"String"}},resource:{serializedName:"resource",type:{name:"String"}},operation:{serializedName:"operation",type:{name:"String"}},description:{serializedName:"description",type:{name:"String"}}}}},ErrorResponse={type:{name:"Composite",className:"ErrorResponse",modelProperties:{error:{serializedName:"error",type:{name:"Composite",className:"ErrorDetail"}}}}},ErrorDetail={type:{name:"Composite",className:"ErrorDetail",modelProperties:{code:{serializedName:"code",readOnly:!0,type:{name:"String"}},message:{serializedName:"message",readOnly:!0,type:{name:"String"}},target:{serializedName:"target",readOnly:!0,type:{name:"String"}},details:{serializedName:"details",readOnly:!0,type:{name:"Sequence",element:{type:{name:"Composite",className:"ErrorDetail"}}}},additionalInfo:{serializedName:"additionalInfo",readOnly:!0,type:{name:"Sequence",element:{type:{name:"Composite",className:"ErrorAdditionalInfo"}}}}}}},ErrorAdditionalInfo={type:{name:"Composite",className:"ErrorAdditionalInfo",modelProperties:{type:{serializedName:"type",readOnly:!0,type:{name:"String"}},info:{serializedName:"info",readOnly:!0,type:{name:"Dictionary",value:{type:{name:"any"}}}}}}},ChangeList={type:{name:"Composite",className:"ChangeList",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"Change"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},ChangeProperties={type:{name:"Composite",className:"ChangeProperties",modelProperties:{resourceId:{serializedName:"resourceId",type:{name:"String"}},timeStamp:{serializedName:"timeStamp",type:{name:"DateTime"}},initiatedByList:{serializedName:"initiatedByList",type:{name:"Sequence",element:{type:{name:"String"}}}},changeType:{serializedName:"changeType",type:{name:"String"}},propertyChanges:{serializedName:"propertyChanges",type:{name:"Sequence",element:{type:{name:"Composite",className:"PropertyChange"}}}}}}},PropertyChange={type:{name:"Composite",className:"PropertyChange",modelProperties:{changeType:{serializedName:"changeType",type:{name:"String"}},changeCategory:{serializedName:"changeCategory",type:{name:"Enum",allowedValues:["User","System"]}},jsonPath:{serializedName:"jsonPath",type:{name:"String"}},displayName:{serializedName:"displayName",type:{name:"String"}},level:{serializedName:"level",type:{name:"String"}},description:{serializedName:"description",type:{name:"String"}},oldValue:{serializedName:"oldValue",type:{name:"String"}},newValue:{serializedName:"newValue",type:{name:"String"}},isDataMasked:{serializedName:"isDataMasked",type:{name:"Boolean"}}}}},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"}}}}},ProxyResource={type:{name:"Composite",className:"ProxyResource",modelProperties:Object.assign({},Resource.type.modelProperties)}},Change={type:{name:"Composite",className:"Change",modelProperties:Object.assign(Object.assign({},ProxyResource.type.modelProperties),{properties:{serializedName:"properties",type:{name:"Composite",className:"ChangeProperties"}}})}};var Mappers=Object.freeze({__proto__:null,ResourceProviderOperationList:ResourceProviderOperationList,ResourceProviderOperationDefinition:ResourceProviderOperationDefinition,ResourceProviderOperationDisplay:ResourceProviderOperationDisplay,ErrorResponse:ErrorResponse,ErrorDetail:ErrorDetail,ErrorAdditionalInfo:ErrorAdditionalInfo,ChangeList:ChangeList,ChangeProperties:ChangeProperties,PropertyChange:PropertyChange,Resource:Resource,ProxyResource:ProxyResource,Change:Change});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},apiVersion={parameterPath:"apiVersion",mapper:{defaultValue:"2021-04-01",isConstant:!0,serializedName:"api-version",type:{name:"String"}}},skipToken={parameterPath:["options","skipToken"],mapper:{serializedName:"$skipToken",type:{name:"String"}}},nextLink={parameterPath:"nextLink",mapper:{serializedName:"nextLink",required:!0,type:{name:"String"}},skipEncoding:!0},resourceId={parameterPath:"resourceId",mapper:{serializedName:"resourceId",required:!0,type:{name:"String"}}},startTime={parameterPath:"startTime",mapper:{serializedName:"$startTime",required:!0,type:{name:"DateTime"}}},endTime={parameterPath:"endTime",mapper:{serializedName:"$endTime",required:!0,type:{name:"DateTime"}}},subscriptionId={parameterPath:"subscriptionId",mapper:{constraints:{MinLength:1},serializedName:"subscriptionId",required:!0,type:{name:"String"}}},resourceGroupName={parameterPath:"resourceGroupName",mapper:{constraints:{MaxLength:90,MinLength:1},serializedName:"resourceGroupName",required:!0,type:{name:"String"}}};class OperationsImpl{constructor(e){this.client=e}list(e){const r=this.listPagingAll(e);return{next(){return r.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listPagingPage(e)}}listPagingPage(t){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._list(t));yield yield tslib.__await(e.value||[]);let r=e.nextLink;for(;r;)e=yield tslib.__await(this._listNext(r,t)),r=e.nextLink,yield yield tslib.__await(e.value||[])})}listPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var r,e;try{for(var t,i=tslib.__asyncValues(this.listPagingPage(s));!(t=yield tslib.__await(i.next())).done;){var a=t.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(a)))}}catch(e){r={error:e}}finally{try{t&&!t.done&&(e=i.return)&&(yield tslib.__await(e.call(i)))}finally{if(r)throw r.error}}})}_list(e){return this.client.sendOperationRequest({options:e},listOperationSpec$1)}_listNext(e,r){return this.client.sendOperationRequest({nextLink:e,options:r},listNextOperationSpec$1)}}const serializer$2=coreClient__namespace.createSerializer(Mappers,!1),listOperationSpec$1={path:"/providers/Microsoft.ChangeAnalysis/operations",httpMethod:"GET",responses:{200:{bodyMapper:ResourceProviderOperationList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken],urlParameters:[$host],headerParameters:[accept],serializer:serializer$2},listNextOperationSpec$1={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:ResourceProviderOperationList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken],urlParameters:[$host,nextLink],headerParameters:[accept],serializer:serializer$2};class ResourceChangesImpl{constructor(e){this.client=e}list(e,r,t,i){const a=this.listPagingAll(e,r,t,i);return{next(){return a.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listPagingPage(e,r,t,i)}}listPagingPage(t,i,a,s){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._list(t,i,a,s));yield yield tslib.__await(e.value||[]);let r=e.nextLink;for(;r;)e=yield tslib.__await(this._listNext(t,i,a,r,s)),r=e.nextLink,yield yield tslib.__await(e.value||[])})}listPagingAll(s,n,o,l){return tslib.__asyncGenerator(this,arguments,function*(){var r,e;try{for(var t,i=tslib.__asyncValues(this.listPagingPage(s,n,o,l));!(t=yield tslib.__await(i.next())).done;){var a=t.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(a)))}}catch(e){r={error:e}}finally{try{t&&!t.done&&(e=i.return)&&(yield tslib.__await(e.call(i)))}finally{if(r)throw r.error}}})}_list(e,r,t,i){return this.client.sendOperationRequest({resourceId:e,startTime:r,endTime:t,options:i},listOperationSpec)}_listNext(e,r,t,i,a){return this.client.sendOperationRequest({resourceId:e,startTime:r,endTime:t,nextLink:i,options:a},listNextOperationSpec)}}const serializer$1=coreClient__namespace.createSerializer(Mappers,!1),listOperationSpec={path:"/{resourceId}/providers/Microsoft.ChangeAnalysis/resourceChanges",httpMethod:"POST",responses:{200:{bodyMapper:ChangeList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken,startTime,endTime],urlParameters:[$host,resourceId],headerParameters:[accept],serializer:serializer$1},listNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:ChangeList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken,startTime,endTime],urlParameters:[$host,nextLink,resourceId],headerParameters:[accept],serializer:serializer$1};class ChangesImpl{constructor(e){this.client=e}listChangesByResourceGroup(e,r,t,i){const a=this.listChangesByResourceGroupPagingAll(e,r,t,i);return{next(){return a.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listChangesByResourceGroupPagingPage(e,r,t,i)}}listChangesByResourceGroupPagingPage(t,i,a,s){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listChangesByResourceGroup(t,i,a,s));yield yield tslib.__await(e.value||[]);let r=e.nextLink;for(;r;)e=yield tslib.__await(this._listChangesByResourceGroupNext(t,i,a,r,s)),r=e.nextLink,yield yield tslib.__await(e.value||[])})}listChangesByResourceGroupPagingAll(s,n,o,l){return tslib.__asyncGenerator(this,arguments,function*(){var r,e;try{for(var t,i=tslib.__asyncValues(this.listChangesByResourceGroupPagingPage(s,n,o,l));!(t=yield tslib.__await(i.next())).done;){var a=t.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(a)))}}catch(e){r={error:e}}finally{try{t&&!t.done&&(e=i.return)&&(yield tslib.__await(e.call(i)))}finally{if(r)throw r.error}}})}listChangesBySubscription(e,r,t){const i=this.listChangesBySubscriptionPagingAll(e,r,t);return{next(){return i.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listChangesBySubscriptionPagingPage(e,r,t)}}listChangesBySubscriptionPagingPage(t,i,a){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listChangesBySubscription(t,i,a));yield yield tslib.__await(e.value||[]);let r=e.nextLink;for(;r;)e=yield tslib.__await(this._listChangesBySubscriptionNext(t,i,r,a)),r=e.nextLink,yield yield tslib.__await(e.value||[])})}listChangesBySubscriptionPagingAll(s,n,o){return tslib.__asyncGenerator(this,arguments,function*(){var r,e;try{for(var t,i=tslib.__asyncValues(this.listChangesBySubscriptionPagingPage(s,n,o));!(t=yield tslib.__await(i.next())).done;){var a=t.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(a)))}}catch(e){r={error:e}}finally{try{t&&!t.done&&(e=i.return)&&(yield tslib.__await(e.call(i)))}finally{if(r)throw r.error}}})}_listChangesByResourceGroup(e,r,t,i){return this.client.sendOperationRequest({resourceGroupName:e,startTime:r,endTime:t,options:i},listChangesByResourceGroupOperationSpec)}_listChangesBySubscription(e,r,t){return this.client.sendOperationRequest({startTime:e,endTime:r,options:t},listChangesBySubscriptionOperationSpec)}_listChangesByResourceGroupNext(e,r,t,i,a){return this.client.sendOperationRequest({resourceGroupName:e,startTime:r,endTime:t,nextLink:i,options:a},listChangesByResourceGroupNextOperationSpec)}_listChangesBySubscriptionNext(e,r,t,i){return this.client.sendOperationRequest({startTime:e,endTime:r,nextLink:t,options:i},listChangesBySubscriptionNextOperationSpec)}}const serializer=coreClient__namespace.createSerializer(Mappers,!1),listChangesByResourceGroupOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ChangeAnalysis/changes",httpMethod:"GET",responses:{200:{bodyMapper:ChangeList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken,startTime,endTime],urlParameters:[$host,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer},listChangesBySubscriptionOperationSpec={path:"/subscriptions/{subscriptionId}/providers/Microsoft.ChangeAnalysis/changes",httpMethod:"GET",responses:{200:{bodyMapper:ChangeList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken,startTime,endTime],urlParameters:[$host,subscriptionId],headerParameters:[accept],serializer:serializer},listChangesByResourceGroupNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:ChangeList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken,startTime,endTime],urlParameters:[$host,nextLink,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer},listChangesBySubscriptionNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:ChangeList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion,skipToken,startTime,endTime],urlParameters:[$host,nextLink,subscriptionId],headerParameters:[accept],serializer:serializer};class AzureChangeAnalysisManagementClient extends coreClient__namespace.ServiceClient{constructor(e,r,t){if(void 0===e)throw new Error("'credentials' cannot be null");if(void 0===r)throw new Error("'subscriptionId' cannot be null");var e={requestContentType:"application/json; charset=utf-8",credential:e},i="azsdk-js-arm-changeanalysis/2.0.2",i=(t=t||{}).userAgentOptions&&t.userAgentOptions.userAgentPrefix?t.userAgentOptions.userAgentPrefix+" "+i:i,e=(t.credentialScopes||(t.credentialScopes=["https://management.azure.com/.default"]),Object.assign(Object.assign(Object.assign({},e),t),{userAgentOptions:{userAgentPrefix:i},baseUri:null!=(i=null!=(e=t.endpoint)?e:t.baseUri)?i:"https://management.azure.com"}));super(e),this.subscriptionId=r,this.$host=t.$host||"https://management.azure.com",this.apiVersion=t.apiVersion||"2021-04-01",this.operations=new OperationsImpl(this),this.resourceChanges=new ResourceChangesImpl(this),this.changes=new ChangesImpl(this)}}exports.AzureChangeAnalysisManagementClient=AzureChangeAnalysisManagementClient;
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/models/index.ts","../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/operations.ts","../src/operations/resourceChanges.ts","../src/operations/changes.ts","../src/azureChangeAnalysisManagementClient.ts"],"names":["KnownChangeType","KnownLevel","ResourceProviderOperationList","type","name","className","modelProperties","value","serializedName","element","nextLink","ResourceProviderOperationDefinition","display","ResourceProviderOperationDisplay","provider","resource","operation","description","ErrorResponse","error","ErrorDetail","code","readOnly","message","target","details","additionalInfo","ErrorAdditionalInfo","info","ChangeList","ChangeProperties","resourceId","timeStamp","initiatedByList","changeType","propertyChanges","PropertyChange","changeCategory","allowedValues","jsonPath","displayName","level","oldValue","newValue","isDataMasked","Resource","id","ProxyResource","Object","assign","Change","properties","accept","parameterPath","mapper","defaultValue","isConstant","$host","required","skipEncoding","apiVersion","skipToken","startTime","endTime","subscriptionId","constraints","MinLength","resourceGroupName","MaxLength","OperationsImpl","constructor","client","this","list","options","iter","listPagingAll","next","Symbol","asyncIterator","byPage","listPagingPage","let","result","__await","_list","continuationToken","_listNext","_c","_b","__asyncValues","done","page","__asyncDelegator","sendOperationRequest","listOperationSpec","listNextOperationSpec","serializer","coreClient","createSerializer","Mappers","path","httpMethod","responses","200","bodyMapper","Mappers.ResourceProviderOperationList","default","Mappers.ErrorResponse","queryParameters","Parameters.apiVersion","Parameters.skipToken","urlParameters","Parameters.$host","headerParameters","Parameters.accept","Parameters.nextLink","ResourceChangesImpl","Mappers.ChangeList","Parameters.startTime","Parameters.endTime","Parameters.resourceId","ChangesImpl","listChangesByResourceGroup","listChangesByResourceGroupPagingAll","listChangesByResourceGroupPagingPage","_listChangesByResourceGroup","_listChangesByResourceGroupNext","listChangesBySubscription","listChangesBySubscriptionPagingAll","listChangesBySubscriptionPagingPage","_listChangesBySubscription","_listChangesBySubscriptionNext","listChangesByResourceGroupOperationSpec","listChangesBySubscriptionOperationSpec","listChangesByResourceGroupNextOperationSpec","listChangesBySubscriptionNextOperationSpec","Parameters.subscriptionId","Parameters.resourceGroupName","AzureChangeAnalysisManagementClient","ServiceClient","credentials","undefined","Error","defaults","requestContentType","credential","packageDetails","userAgentPrefix","userAgentOptions","optionsWithDefaults","credentialScopes","baseUri","_a","endpoint","super","operations","resourceChanges","changes"],"mappings":"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"}
1
+ {"version":3,"sources":["../src/models/index.ts","../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/operations.ts","../src/operations/resourceChanges.ts","../src/operations/changes.ts","../src/azureChangeAnalysisManagementClient.ts"],"names":["KnownChangeType","KnownLevel","ResourceProviderOperationList","type","name","className","modelProperties","value","serializedName","element","nextLink","ResourceProviderOperationDefinition","display","ResourceProviderOperationDisplay","provider","resource","operation","description","ErrorResponse","error","ErrorDetail","code","readOnly","message","target","details","additionalInfo","ErrorAdditionalInfo","info","ChangeList","ChangeProperties","resourceId","timeStamp","initiatedByList","changeType","propertyChanges","PropertyChange","changeCategory","allowedValues","jsonPath","displayName","level","oldValue","newValue","isDataMasked","Resource","id","ProxyResource","Object","assign","Change","properties","accept","parameterPath","mapper","defaultValue","isConstant","$host","required","skipEncoding","apiVersion","skipToken","startTime","endTime","subscriptionId","constraints","MinLength","resourceGroupName","MaxLength","OperationsImpl","constructor","client","this","list","options","iter","listPagingAll","next","Symbol","asyncIterator","byPage","listPagingPage","let","result","yield","__await","_list","continuationToken","_listNext","_c","_b","__asyncValues","done","page","__asyncDelegator","sendOperationRequest","listOperationSpec","listNextOperationSpec","serializer","coreClient","createSerializer","Mappers","path","httpMethod","responses","200","bodyMapper","Mappers.ResourceProviderOperationList","default","Mappers.ErrorResponse","queryParameters","Parameters.apiVersion","Parameters.skipToken","urlParameters","Parameters.$host","headerParameters","Parameters.accept","Parameters.nextLink","ResourceChangesImpl","Mappers.ChangeList","Parameters.startTime","Parameters.endTime","Parameters.resourceId","ChangesImpl","listChangesByResourceGroup","listChangesByResourceGroupPagingAll","listChangesByResourceGroupPagingPage","_listChangesByResourceGroup","_listChangesByResourceGroupNext","listChangesBySubscription","listChangesBySubscriptionPagingAll","listChangesBySubscriptionPagingPage","_listChangesBySubscription","_listChangesBySubscriptionNext","listChangesByResourceGroupOperationSpec","listChangesBySubscriptionOperationSpec","listChangesByResourceGroupNextOperationSpec","listChangesBySubscriptionNextOperationSpec","Parameters.subscriptionId","Parameters.resourceGroupName","AzureChangeAnalysisManagementClient","ServiceClient","credentials","undefined","Error","defaults","requestContentType","credential","packageDetails","userAgentPrefix","userAgentOptions","optionsWithDefaults","credentialScopes","baseUri","_a","endpoint","super","operations","resourceChanges","changes"],"mappings":"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BL,KAAM,CACJC,KAAM,WACNK,QAAS,CACPN,KAAM,CACJC,KAAM,QACP,CACF,CACF,CACF,EACD8B,WAAY,CACV1B,eAAgB,aAChBL,KAAM,CACJC,KAAM,QACP,CACF,EACD+B,gBAAiB,CACf3B,eAAgB,kBAChBL,KAAM,CACJC,KAAM,WACNK,QAAS,CACPN,KAAM,CACJC,KAAM,YACNC,UAAW,gBACZ,CACF,CACF,CACF,CACF,CACF,C,EAGU+B,eAA6C,CACxDjC,KAAM,CACJC,KAAM,YACNC,UAAW,iBACXC,gBAAiB,CACf4B,WAAY,CACV1B,eAAgB,aAChBL,KAAM,CACJC,KAAM,QACP,CACF,EACDiC,eAAgB,CACd7B,eAAgB,iBAChBL,KAAM,CACJC,KAAM,OACNkC,cAAe,CAAC,OAAQ,SACzB,CACF,EACDC,SAAU,CACR/B,eAAgB,WAChBL,KAAM,CACJC,KAAM,QACP,CACF,EACDoC,YAAa,CACXhC,eAAgB,cAChBL,KAAM,CACJC,KAAM,QACP,CACF,EACDqC,MAAO,CACLjC,eAAgB,QAChBL,KAAM,CACJC,KAAM,QACP,CACF,EACDa,YAAa,CACXT,eAAgB,cAChBL,KAAM,CACJC,KAAM,QACP,CACF,EACDsC,SAAU,CACRlC,eAAgB,WAChBL,KAAM,CACJC,KAAM,QACP,CACF,EACDuC,SAAU,CACRnC,eAAgB,WAChBL,KAAM,CACJC,KAAM,QACP,CACF,EACDwC,aAAc,CACZpC,eAAgB,eAChBL,KAAM,CACJC,KAAM,SACP,CACF,CACF,CACF,C,EAGUyC,SAAuC,CAClD1C,KAAM,CACJC,KAAM,YACNC,UAAW,WACXC,gBAAiB,CACfwC,GAAI,CACFtC,eAAgB,KAChBc,SAAU,CAAA,EACVnB,KAAM,CACJC,KAAM,QACP,CACF,EACDA,KAAM,CACJI,eAAgB,OAChBc,SAAU,CAAA,EACVnB,KAAM,CACJC,KAAM,QACP,CACF,EACDD,KAAM,CACJK,eAAgB,OAChBc,SAAU,CAAA,EACVnB,KAAM,CACJC,KAAM,QACP,CACF,CACF,CACF,C,EAGU2C,cAA4C,CACvD5C,KAAM,CACJ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"}
@@ -30,7 +30,7 @@ export class AzureChangeAnalysisManagementClient extends coreClient.ServiceClien
30
30
  requestContentType: "application/json; charset=utf-8",
31
31
  credential: credentials
32
32
  };
33
- const packageDetails = `azsdk-js-arm-changeanalysis/2.0.1`;
33
+ const packageDetails = `azsdk-js-arm-changeanalysis/2.0.2`;
34
34
  const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
35
35
  ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
36
36
  : `${packageDetails}`;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "sdk-type": "mgmt",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "A generated SDK for AzureChangeAnalysisManagementClient.",
6
- "version": "2.0.1",
6
+ "version": "2.0.2-alpha.20220907.1",
7
7
  "engines": {
8
8
  "node": ">=12.0.0"
9
9
  },
@@ -26,7 +26,7 @@
26
26
  "module": "./dist-esm/src/index.js",
27
27
  "types": "./types/arm-changeanalysis.d.ts",
28
28
  "devDependencies": {
29
- "@microsoft/api-extractor": "^7.18.11",
29
+ "@microsoft/api-extractor": "7.18.11",
30
30
  "@rollup/plugin-commonjs": "^21.0.1",
31
31
  "@rollup/plugin-json": "^4.1.0",
32
32
  "@rollup/plugin-multi-entry": "^4.1.0",
@@ -44,7 +44,7 @@ export class AzureChangeAnalysisManagementClient extends coreClient.ServiceClien
44
44
  credential: credentials
45
45
  };
46
46
 
47
- const packageDetails = `azsdk-js-arm-changeanalysis/2.0.1`;
47
+ const packageDetails = `azsdk-js-arm-changeanalysis/2.0.2`;
48
48
  const userAgentPrefix =
49
49
  options.userAgentOptions && options.userAgentOptions.userAgentPrefix
50
50
  ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.22.1"
8
+ "packageVersion": "7.18.11"
9
9
  }
10
10
  ]
11
11
  }