@azure/arm-mixedreality 4.0.0 → 4.0.1-alpha.20220120.3

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,10 @@
1
1
  # Release History
2
+
3
+ ## 4.0.1 (2022-01-20)
4
+
5
+ **Feature**
6
+
7
+ - Bump version
2
8
 
3
9
  ## 4.0.0 (2022-01-20)
4
10
 
package/dist/index.js CHANGED
@@ -1957,7 +1957,7 @@ class MixedRealityClient extends coreClient.ServiceClient {
1957
1957
  requestContentType: "application/json; charset=utf-8",
1958
1958
  credential: credentials
1959
1959
  };
1960
- const packageDetails = `azsdk-js-arm-mixedreality/4.0.0`;
1960
+ const packageDetails = `azsdk-js-arm-mixedreality/4.0.1`;
1961
1961
  const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
1962
1962
  ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
1963
1963
  : `${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/spatialAnchorsAccounts.ts","../src/operations/remoteRenderingAccounts.ts","../src/mixedRealityClient.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/** Result of the request to list Resource Provider operations. It contains a list of operations and a URL link to get the next set of results. */\nexport interface OperationPage {\n /** List of operations supported by the Resource Provider. */\n value?: Operation[];\n /** URL to get the next set of operation list results if there are any. */\n nextLink?: string;\n}\n\n/** REST API operation */\nexport interface Operation {\n /** Operation name: {provider}/{resource}/{operation} */\n name?: string;\n /** The object that represents the operation. */\n display?: OperationDisplay;\n /** Whether or not this is a data plane operation */\n isDataAction?: boolean;\n /** The origin */\n origin?: string;\n /** Properties of the operation */\n properties?: OperationProperties;\n}\n\n/** The object that represents the operation. */\nexport interface OperationDisplay {\n /** Service provider: Microsoft.ResourceProvider */\n provider: string;\n /** Resource on which the operation is performed: Profile, endpoint, etc. */\n resource: string;\n /** Operation type: Read, write, delete, etc. */\n operation: string;\n /** Description of operation */\n description: string;\n}\n\n/** Operation properties. */\nexport interface OperationProperties {\n /** Service specification. */\n serviceSpecification?: ServiceSpecification;\n}\n\n/** Service specification payload */\nexport interface ServiceSpecification {\n /** Specifications of the Log for Azure Monitoring */\n logSpecifications?: LogSpecification[];\n /** Specifications of the Metrics for Azure Monitoring */\n metricSpecifications?: MetricSpecification[];\n}\n\n/** Specifications of the Log for Azure Monitoring */\nexport interface LogSpecification {\n /** Name of the log */\n name?: string;\n /** Localized friendly display name of the log */\n displayName?: string;\n /** Blob duration of the log */\n blobDuration?: string;\n}\n\n/** Specifications of the Metrics for Azure Monitoring */\nexport interface MetricSpecification {\n /** Name of the metric */\n name?: string;\n /** Localized friendly display name of the metric */\n displayName?: string;\n /** Localized friendly description of the metric */\n displayDescription?: string;\n /** Unit that makes sense for the metric */\n unit?: string;\n /** Only provide one value for this field. Valid values: Average, Minimum, Maximum, Total, Count. */\n aggregationType?: string;\n /** Supported aggregation types. Valid values: Average, Minimum, Maximum, Total, Count. */\n supportedAggregationTypes?: string[];\n /** Supported time grains. Valid values: PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D */\n supportedTimeGrainTypes?: string[];\n /** Flag to indicate use of regional Mdm accounts */\n enableRegionalMdmAccount?: boolean;\n /** Source mdm account */\n sourceMdmAccount?: string;\n /** Source mdm namespace */\n sourceMdmNamespace?: string;\n /** Metric filter regex pattern */\n metricFilterPattern?: string;\n /** Flag to determine is Zero is returned for time duration where no metric is emitted */\n fillGapWithZero?: boolean;\n /** Metric category */\n category?: string;\n /** Internal metric name. */\n internalMetricName?: string;\n /** Dimensions of the metric */\n dimensions?: MetricDimension[];\n /** Locked aggregation type of the metric */\n lockedAggregationType?: string;\n}\n\n/** Specifications of the Dimension of metrics */\nexport interface MetricDimension {\n /** Name of the dimension */\n name?: string;\n /** Localized friendly display name of the dimension */\n displayName?: string;\n /** Internal name of the dimension. */\n internalName?: string;\n}\n\n/** An Error response. */\nexport interface CloudError {\n /** An Error response. */\n error?: CloudErrorBody;\n}\n\n/** An error response from Azure. */\nexport interface CloudErrorBody {\n /** An identifier for the error. Codes are invariant and are intended to be consumed programmatically. */\n code?: string;\n /** A message describing the error, intended to be suitable for displaying in a user interface. */\n message?: string;\n /** The target of the particular error. For example, the name of the property in error. */\n target?: string;\n /** A list of additional details about the error. */\n details?: CloudErrorBody[];\n}\n\n/** Check Name Availability Request */\nexport interface CheckNameAvailabilityRequest {\n /** Resource Name To Verify */\n name: string;\n /** Fully qualified resource type which includes provider namespace */\n type: string;\n}\n\n/** Check Name Availability Response */\nexport interface CheckNameAvailabilityResponse {\n /** if name Available */\n nameAvailable: boolean;\n /** Resource Name To Verify */\n reason?: NameUnavailableReason;\n /** detail message */\n message?: string;\n}\n\n/** Result of the request to get resource collection. It contains a list of resources and a URL link to get the next set of results. */\nexport interface SpatialAnchorsAccountPage {\n /** List of resources supported by the Resource Provider. */\n value?: SpatialAnchorsAccount[];\n /** URL to get the next set of resource list results if there are any. */\n nextLink?: string;\n}\n\n/** Identity for the resource. */\nexport interface Identity {\n /**\n * The principal ID of resource identity.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly principalId?: string;\n /**\n * The tenant ID of resource.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly tenantId?: string;\n /** The identity type. */\n type?: \"SystemAssigned\";\n}\n\n/** The resource model definition representing SKU */\nexport interface Sku {\n /** The name of the SKU. Ex - P3. It is typically a letter+number code */\n name: string;\n /** This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. */\n tier?: SkuTier;\n /** The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. */\n size?: string;\n /** If the service has different generations of hardware, for the same SKU, then that can be captured here. */\n family?: string;\n /** If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. */\n capacity?: number;\n}\n\n/** Metadata pertaining to creation and last modification of the resource. */\nexport interface SystemData {\n /** The identity that created the resource. */\n createdBy?: string;\n /** The type of identity that created the resource. */\n createdByType?: CreatedByType;\n /** The timestamp of resource creation (UTC). */\n createdAt?: Date;\n /** The identity that last modified the resource. */\n lastModifiedBy?: string;\n /** The type of identity that last modified the resource. */\n lastModifiedByType?: CreatedByType;\n /** The timestamp of resource last modification (UTC) */\n lastModifiedAt?: Date;\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/** Developer Keys of account */\nexport interface AccountKeys {\n /**\n * value of primary key.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly primaryKey?: string;\n /**\n * value of secondary key.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly secondaryKey?: string;\n}\n\n/** Request for account key regeneration */\nexport interface AccountKeyRegenerateRequest {\n /** serial of key to be regenerated */\n serial?: Serial;\n}\n\n/** Result of the request to get resource collection. It contains a list of resources and a URL link to get the next set of results. */\nexport interface RemoteRenderingAccountPage {\n /** List of resources supported by the Resource Provider. */\n value?: RemoteRenderingAccount[];\n /** URL to get the next set of resource list results if there are any. */\n nextLink?: string;\n}\n\n/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */\nexport type TrackedResource = Resource & {\n /** Resource tags. */\n tags?: { [propertyName: string]: string };\n /** The geo-location where the resource lives */\n location: string;\n};\n\n/** SpatialAnchorsAccount Response. */\nexport type SpatialAnchorsAccount = TrackedResource & {\n /** The identity associated with this account */\n identity?: Identity;\n /** The plan associated with this account */\n plan?: Identity;\n /** The sku associated with this account */\n sku?: Sku;\n /** The kind of account, if supported */\n kind?: Sku;\n /**\n * System metadata for this account\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly systemData?: SystemData;\n /** The name of the storage account associated with this accountId */\n storageAccountName?: string;\n /**\n * unique id of certain account.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly accountId?: string;\n /**\n * Correspond domain name of certain Spatial Anchors Account\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly accountDomain?: string;\n};\n\n/** RemoteRenderingAccount Response. */\nexport type RemoteRenderingAccount = TrackedResource & {\n /** The identity associated with this account */\n identity?: Identity;\n /** The plan associated with this account */\n plan?: Identity;\n /** The sku associated with this account */\n sku?: Sku;\n /** The kind of account, if supported */\n kind?: Sku;\n /**\n * System metadata for this account\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly systemData?: SystemData;\n /** The name of the storage account associated with this accountId */\n storageAccountName?: string;\n /**\n * unique id of certain account.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly accountId?: string;\n /**\n * Correspond domain name of certain Spatial Anchors Account\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly accountDomain?: string;\n};\n\n/** Known values of {@link NameUnavailableReason} that the service accepts. */\nexport enum KnownNameUnavailableReason {\n Invalid = \"Invalid\",\n AlreadyExists = \"AlreadyExists\"\n}\n\n/**\n * Defines values for NameUnavailableReason. \\\n * {@link KnownNameUnavailableReason} can be used interchangeably with NameUnavailableReason,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Invalid** \\\n * **AlreadyExists**\n */\nexport type NameUnavailableReason = string;\n\n/** Known values of {@link CreatedByType} that the service accepts. */\nexport enum KnownCreatedByType {\n User = \"User\",\n Application = \"Application\",\n ManagedIdentity = \"ManagedIdentity\",\n Key = \"Key\"\n}\n\n/**\n * Defines values for CreatedByType. \\\n * {@link KnownCreatedByType} can be used interchangeably with CreatedByType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **User** \\\n * **Application** \\\n * **ManagedIdentity** \\\n * **Key**\n */\nexport type CreatedByType = string;\n/** Defines values for SkuTier. */\nexport type SkuTier = \"Free\" | \"Basic\" | \"Standard\" | \"Premium\";\n/** Defines values for Serial. */\nexport type Serial = 1 | 2;\n\n/** Optional parameters. */\nexport interface OperationsListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type OperationsListResponse = OperationPage;\n\n/** Optional parameters. */\nexport interface OperationsListNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listNext operation. */\nexport type OperationsListNextResponse = OperationPage;\n\n/** Optional parameters. */\nexport interface CheckNameAvailabilityLocalOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the checkNameAvailabilityLocal operation. */\nexport type CheckNameAvailabilityLocalResponse = CheckNameAvailabilityResponse;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsListBySubscriptionOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listBySubscription operation. */\nexport type SpatialAnchorsAccountsListBySubscriptionResponse = SpatialAnchorsAccountPage;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsListByResourceGroupOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listByResourceGroup operation. */\nexport type SpatialAnchorsAccountsListByResourceGroupResponse = SpatialAnchorsAccountPage;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsDeleteOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsGetOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the get operation. */\nexport type SpatialAnchorsAccountsGetResponse = SpatialAnchorsAccount;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsUpdateOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the update operation. */\nexport type SpatialAnchorsAccountsUpdateResponse = SpatialAnchorsAccount;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsCreateOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the create operation. */\nexport type SpatialAnchorsAccountsCreateResponse = SpatialAnchorsAccount;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsListKeysOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listKeys operation. */\nexport type SpatialAnchorsAccountsListKeysResponse = AccountKeys;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsRegenerateKeysOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the regenerateKeys operation. */\nexport type SpatialAnchorsAccountsRegenerateKeysResponse = AccountKeys;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsListBySubscriptionNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listBySubscriptionNext operation. */\nexport type SpatialAnchorsAccountsListBySubscriptionNextResponse = SpatialAnchorsAccountPage;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsListByResourceGroupNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listByResourceGroupNext operation. */\nexport type SpatialAnchorsAccountsListByResourceGroupNextResponse = SpatialAnchorsAccountPage;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsListBySubscriptionOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listBySubscription operation. */\nexport type RemoteRenderingAccountsListBySubscriptionResponse = RemoteRenderingAccountPage;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsListByResourceGroupOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listByResourceGroup operation. */\nexport type RemoteRenderingAccountsListByResourceGroupResponse = RemoteRenderingAccountPage;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsDeleteOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsGetOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the get operation. */\nexport type RemoteRenderingAccountsGetResponse = RemoteRenderingAccount;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsUpdateOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the update operation. */\nexport type RemoteRenderingAccountsUpdateResponse = RemoteRenderingAccount;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsCreateOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the create operation. */\nexport type RemoteRenderingAccountsCreateResponse = RemoteRenderingAccount;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsListKeysOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listKeys operation. */\nexport type RemoteRenderingAccountsListKeysResponse = AccountKeys;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsRegenerateKeysOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the regenerateKeys operation. */\nexport type RemoteRenderingAccountsRegenerateKeysResponse = AccountKeys;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsListBySubscriptionNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listBySubscriptionNext operation. */\nexport type RemoteRenderingAccountsListBySubscriptionNextResponse = RemoteRenderingAccountPage;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsListByResourceGroupNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listByResourceGroupNext operation. */\nexport type RemoteRenderingAccountsListByResourceGroupNextResponse = RemoteRenderingAccountPage;\n\n/** Optional parameters. */\nexport interface MixedRealityClientOptionalParams\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 OperationPage: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationPage\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Operation\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const Operation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Operation\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\"\n }\n },\n isDataAction: {\n serializedName: \"isDataAction\",\n type: {\n name: \"Boolean\"\n }\n },\n origin: {\n serializedName: \"origin\",\n type: {\n name: \"String\"\n }\n },\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"OperationProperties\"\n }\n }\n }\n }\n};\n\nexport const OperationDisplay: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"resource\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"description\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const OperationProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationProperties\",\n modelProperties: {\n serviceSpecification: {\n serializedName: \"serviceSpecification\",\n type: {\n name: \"Composite\",\n className: \"ServiceSpecification\"\n }\n }\n }\n }\n};\n\nexport const ServiceSpecification: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ServiceSpecification\",\n modelProperties: {\n logSpecifications: {\n serializedName: \"logSpecifications\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"LogSpecification\"\n }\n }\n }\n },\n metricSpecifications: {\n serializedName: \"metricSpecifications\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"MetricSpecification\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const LogSpecification: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"LogSpecification\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n },\n blobDuration: {\n serializedName: \"blobDuration\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const MetricSpecification: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"MetricSpecification\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n },\n displayDescription: {\n serializedName: \"displayDescription\",\n type: {\n name: \"String\"\n }\n },\n unit: {\n serializedName: \"unit\",\n type: {\n name: \"String\"\n }\n },\n aggregationType: {\n serializedName: \"aggregationType\",\n type: {\n name: \"String\"\n }\n },\n supportedAggregationTypes: {\n serializedName: \"supportedAggregationTypes\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n supportedTimeGrainTypes: {\n serializedName: \"supportedTimeGrainTypes\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n enableRegionalMdmAccount: {\n serializedName: \"enableRegionalMdmAccount\",\n type: {\n name: \"Boolean\"\n }\n },\n sourceMdmAccount: {\n serializedName: \"sourceMdmAccount\",\n type: {\n name: \"String\"\n }\n },\n sourceMdmNamespace: {\n serializedName: \"sourceMdmNamespace\",\n type: {\n name: \"String\"\n }\n },\n metricFilterPattern: {\n serializedName: \"metricFilterPattern\",\n type: {\n name: \"String\"\n }\n },\n fillGapWithZero: {\n serializedName: \"fillGapWithZero\",\n type: {\n name: \"Boolean\"\n }\n },\n category: {\n serializedName: \"category\",\n type: {\n name: \"String\"\n }\n },\n internalMetricName: {\n serializedName: \"internalMetricName\",\n type: {\n name: \"String\"\n }\n },\n dimensions: {\n serializedName: \"dimensions\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"MetricDimension\"\n }\n }\n }\n },\n lockedAggregationType: {\n serializedName: \"lockedAggregationType\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const MetricDimension: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"MetricDimension\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n },\n internalName: {\n serializedName: \"internalName\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const CloudError: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CloudError\",\n modelProperties: {\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"CloudErrorBody\"\n }\n }\n }\n }\n};\n\nexport const CloudErrorBody: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CloudErrorBody\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n },\n target: {\n serializedName: \"target\",\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"details\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"CloudErrorBody\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const CheckNameAvailabilityRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CheckNameAvailabilityRequest\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const CheckNameAvailabilityResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CheckNameAvailabilityResponse\",\n modelProperties: {\n nameAvailable: {\n serializedName: \"nameAvailable\",\n required: true,\n type: {\n name: \"Boolean\"\n }\n },\n reason: {\n serializedName: \"reason\",\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SpatialAnchorsAccountPage: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SpatialAnchorsAccountPage\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SpatialAnchorsAccount\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const Identity: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Identity\",\n modelProperties: {\n principalId: {\n serializedName: \"principalId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"tenantId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n defaultValue: \"SystemAssigned\",\n isConstant: true,\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const Sku: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Sku\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n tier: {\n serializedName: \"tier\",\n type: {\n name: \"Enum\",\n allowedValues: [\"Free\", \"Basic\", \"Standard\", \"Premium\"]\n }\n },\n size: {\n serializedName: \"size\",\n type: {\n name: \"String\"\n }\n },\n family: {\n serializedName: \"family\",\n type: {\n name: \"String\"\n }\n },\n capacity: {\n serializedName: \"capacity\",\n type: {\n name: \"Number\"\n }\n }\n }\n }\n};\n\nexport const SystemData: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SystemData\",\n modelProperties: {\n createdBy: {\n serializedName: \"createdBy\",\n type: {\n name: \"String\"\n }\n },\n createdByType: {\n serializedName: \"createdByType\",\n type: {\n name: \"String\"\n }\n },\n createdAt: {\n serializedName: \"createdAt\",\n type: {\n name: \"DateTime\"\n }\n },\n lastModifiedBy: {\n serializedName: \"lastModifiedBy\",\n type: {\n name: \"String\"\n }\n },\n lastModifiedByType: {\n serializedName: \"lastModifiedByType\",\n type: {\n name: \"String\"\n }\n },\n lastModifiedAt: {\n serializedName: \"lastModifiedAt\",\n type: {\n name: \"DateTime\"\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 AccountKeys: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AccountKeys\",\n modelProperties: {\n primaryKey: {\n serializedName: \"primaryKey\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n secondaryKey: {\n serializedName: \"secondaryKey\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const AccountKeyRegenerateRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AccountKeyRegenerateRequest\",\n modelProperties: {\n serial: {\n defaultValue: \"1\",\n serializedName: \"serial\",\n type: {\n name: \"Enum\",\n allowedValues: [1, 2]\n }\n }\n }\n }\n};\n\nexport const RemoteRenderingAccountPage: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"RemoteRenderingAccountPage\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"RemoteRenderingAccount\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const TrackedResource: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"TrackedResource\",\n modelProperties: {\n ...Resource.type.modelProperties,\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n location: {\n serializedName: \"location\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SpatialAnchorsAccount: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SpatialAnchorsAccount\",\n modelProperties: {\n ...TrackedResource.type.modelProperties,\n identity: {\n serializedName: \"identity\",\n type: {\n name: \"Composite\",\n className: \"Identity\"\n }\n },\n plan: {\n serializedName: \"plan\",\n type: {\n name: \"Composite\",\n className: \"Identity\"\n }\n },\n sku: {\n serializedName: \"sku\",\n type: {\n name: \"Composite\",\n className: \"Sku\"\n }\n },\n kind: {\n serializedName: \"kind\",\n type: {\n name: \"Composite\",\n className: \"Sku\"\n }\n },\n systemData: {\n serializedName: \"systemData\",\n type: {\n name: \"Composite\",\n className: \"SystemData\"\n }\n },\n storageAccountName: {\n serializedName: \"properties.storageAccountName\",\n type: {\n name: \"String\"\n }\n },\n accountId: {\n serializedName: \"properties.accountId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n accountDomain: {\n serializedName: \"properties.accountDomain\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const RemoteRenderingAccount: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"RemoteRenderingAccount\",\n modelProperties: {\n ...TrackedResource.type.modelProperties,\n identity: {\n serializedName: \"identity\",\n type: {\n name: \"Composite\",\n className: \"Identity\"\n }\n },\n plan: {\n serializedName: \"plan\",\n type: {\n name: \"Composite\",\n className: \"Identity\"\n }\n },\n sku: {\n serializedName: \"sku\",\n type: {\n name: \"Composite\",\n className: \"Sku\"\n }\n },\n kind: {\n serializedName: \"kind\",\n type: {\n name: \"Composite\",\n className: \"Sku\"\n }\n },\n systemData: {\n serializedName: \"systemData\",\n type: {\n name: \"Composite\",\n className: \"SystemData\"\n }\n },\n storageAccountName: {\n serializedName: \"properties.storageAccountName\",\n type: {\n name: \"String\"\n }\n },\n accountId: {\n serializedName: \"properties.accountId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n accountDomain: {\n serializedName: \"properties.accountDomain\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport {\n OperationParameter,\n OperationURLParameter,\n OperationQueryParameter\n} from \"@azure/core-client\";\nimport {\n CheckNameAvailabilityRequest as CheckNameAvailabilityRequestMapper,\n SpatialAnchorsAccount as SpatialAnchorsAccountMapper,\n AccountKeyRegenerateRequest as AccountKeyRegenerateRequestMapper,\n RemoteRenderingAccount as RemoteRenderingAccountMapper\n} from \"../models/mappers\";\n\nexport const accept: OperationParameter = {\n parameterPath: \"accept\",\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Accept\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const $host: OperationURLParameter = {\n parameterPath: \"$host\",\n mapper: {\n serializedName: \"$host\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const apiVersion: OperationQueryParameter = {\n parameterPath: \"apiVersion\",\n mapper: {\n defaultValue: \"2021-01-01\",\n isConstant: true,\n serializedName: \"api-version\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const nextLink: OperationURLParameter = {\n parameterPath: \"nextLink\",\n mapper: {\n serializedName: \"nextLink\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const contentType: OperationParameter = {\n parameterPath: [\"options\", \"contentType\"],\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Content-Type\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const checkNameAvailability: OperationParameter = {\n parameterPath: \"checkNameAvailability\",\n mapper: CheckNameAvailabilityRequestMapper\n};\n\nexport const subscriptionId: OperationURLParameter = {\n parameterPath: \"subscriptionId\",\n mapper: {\n serializedName: \"subscriptionId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const location: OperationURLParameter = {\n parameterPath: \"location\",\n mapper: {\n constraints: {\n Pattern: new RegExp(\"^[-\\\\w\\\\._\\\\(\\\\)]+$\"),\n MaxLength: 90,\n MinLength: 1\n },\n serializedName: \"location\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const resourceGroupName: OperationURLParameter = {\n parameterPath: \"resourceGroupName\",\n mapper: {\n constraints: {\n Pattern: new RegExp(\"^[-\\\\w\\\\._\\\\(\\\\)]+$\"),\n MaxLength: 90,\n MinLength: 1\n },\n serializedName: \"resourceGroupName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const accountName: OperationURLParameter = {\n parameterPath: \"accountName\",\n mapper: {\n constraints: {\n Pattern: new RegExp(\"^[-\\\\w\\\\._\\\\(\\\\)]+$\"),\n MaxLength: 90,\n MinLength: 1\n },\n serializedName: \"accountName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const spatialAnchorsAccount: OperationParameter = {\n parameterPath: \"spatialAnchorsAccount\",\n mapper: SpatialAnchorsAccountMapper\n};\n\nexport const regenerate: OperationParameter = {\n parameterPath: \"regenerate\",\n mapper: AccountKeyRegenerateRequestMapper\n};\n\nexport const remoteRenderingAccount: OperationParameter = {\n parameterPath: \"remoteRenderingAccount\",\n mapper: RemoteRenderingAccountMapper\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 { MixedRealityClient } from \"../mixedRealityClient\";\nimport {\n Operation,\n OperationsListNextOptionalParams,\n OperationsListOptionalParams,\n OperationsListResponse,\n OperationsListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Operations operations. */\nexport class OperationsImpl implements Operations {\n private readonly client: MixedRealityClient;\n\n /**\n * Initialize a new instance of the class Operations class.\n * @param client Reference to the service client\n */\n constructor(client: MixedRealityClient) {\n this.client = client;\n }\n\n /**\n * Exposing Available Operations\n * @param options The options parameters.\n */\n public list(\n options?: OperationsListOptionalParams\n ): PagedAsyncIterableIterator<Operation> {\n const iter = this.listPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(options);\n }\n };\n }\n\n private async *listPagingPage(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation[]> {\n let result = await this._list(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Exposing Available Operations\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.MixedReality/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.nextLink],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { SpatialAnchorsAccounts } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { MixedRealityClient } from \"../mixedRealityClient\";\nimport {\n SpatialAnchorsAccount,\n SpatialAnchorsAccountsListBySubscriptionNextOptionalParams,\n SpatialAnchorsAccountsListBySubscriptionOptionalParams,\n SpatialAnchorsAccountsListByResourceGroupNextOptionalParams,\n SpatialAnchorsAccountsListByResourceGroupOptionalParams,\n SpatialAnchorsAccountsListBySubscriptionResponse,\n SpatialAnchorsAccountsListByResourceGroupResponse,\n SpatialAnchorsAccountsDeleteOptionalParams,\n SpatialAnchorsAccountsGetOptionalParams,\n SpatialAnchorsAccountsGetResponse,\n SpatialAnchorsAccountsUpdateOptionalParams,\n SpatialAnchorsAccountsUpdateResponse,\n SpatialAnchorsAccountsCreateOptionalParams,\n SpatialAnchorsAccountsCreateResponse,\n SpatialAnchorsAccountsListKeysOptionalParams,\n SpatialAnchorsAccountsListKeysResponse,\n AccountKeyRegenerateRequest,\n SpatialAnchorsAccountsRegenerateKeysOptionalParams,\n SpatialAnchorsAccountsRegenerateKeysResponse,\n SpatialAnchorsAccountsListBySubscriptionNextResponse,\n SpatialAnchorsAccountsListByResourceGroupNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing SpatialAnchorsAccounts operations. */\nexport class SpatialAnchorsAccountsImpl implements SpatialAnchorsAccounts {\n private readonly client: MixedRealityClient;\n\n /**\n * Initialize a new instance of the class SpatialAnchorsAccounts class.\n * @param client Reference to the service client\n */\n constructor(client: MixedRealityClient) {\n this.client = client;\n }\n\n /**\n * List Spatial Anchors Accounts by Subscription\n * @param options The options parameters.\n */\n public listBySubscription(\n options?: SpatialAnchorsAccountsListBySubscriptionOptionalParams\n ): PagedAsyncIterableIterator<SpatialAnchorsAccount> {\n const iter = this.listBySubscriptionPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listBySubscriptionPagingPage(options);\n }\n };\n }\n\n private async *listBySubscriptionPagingPage(\n options?: SpatialAnchorsAccountsListBySubscriptionOptionalParams\n ): AsyncIterableIterator<SpatialAnchorsAccount[]> {\n let result = await this._listBySubscription(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listBySubscriptionNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listBySubscriptionPagingAll(\n options?: SpatialAnchorsAccountsListBySubscriptionOptionalParams\n ): AsyncIterableIterator<SpatialAnchorsAccount> {\n for await (const page of this.listBySubscriptionPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * List Resources by Resource Group\n * @param resourceGroupName Name of an Azure resource group.\n * @param options The options parameters.\n */\n public listByResourceGroup(\n resourceGroupName: string,\n options?: SpatialAnchorsAccountsListByResourceGroupOptionalParams\n ): PagedAsyncIterableIterator<SpatialAnchorsAccount> {\n const iter = this.listByResourceGroupPagingAll(resourceGroupName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listByResourceGroupPagingPage(resourceGroupName, options);\n }\n };\n }\n\n private async *listByResourceGroupPagingPage(\n resourceGroupName: string,\n options?: SpatialAnchorsAccountsListByResourceGroupOptionalParams\n ): AsyncIterableIterator<SpatialAnchorsAccount[]> {\n let result = await this._listByResourceGroup(resourceGroupName, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listByResourceGroupNext(\n resourceGroupName,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listByResourceGroupPagingAll(\n resourceGroupName: string,\n options?: SpatialAnchorsAccountsListByResourceGroupOptionalParams\n ): AsyncIterableIterator<SpatialAnchorsAccount> {\n for await (const page of this.listByResourceGroupPagingPage(\n resourceGroupName,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * List Spatial Anchors Accounts by Subscription\n * @param options The options parameters.\n */\n private _listBySubscription(\n options?: SpatialAnchorsAccountsListBySubscriptionOptionalParams\n ): Promise<SpatialAnchorsAccountsListBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionOperationSpec\n );\n }\n\n /**\n * List Resources by Resource Group\n * @param resourceGroupName Name of an Azure resource group.\n * @param options The options parameters.\n */\n private _listByResourceGroup(\n resourceGroupName: string,\n options?: SpatialAnchorsAccountsListByResourceGroupOptionalParams\n ): Promise<SpatialAnchorsAccountsListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, options },\n listByResourceGroupOperationSpec\n );\n }\n\n /**\n * Delete a Spatial Anchors Account.\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param options The options parameters.\n */\n delete(\n resourceGroupName: string,\n accountName: string,\n options?: SpatialAnchorsAccountsDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, options },\n deleteOperationSpec\n );\n }\n\n /**\n * Retrieve a Spatial Anchors Account.\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n accountName: string,\n options?: SpatialAnchorsAccountsGetOptionalParams\n ): Promise<SpatialAnchorsAccountsGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, options },\n getOperationSpec\n );\n }\n\n /**\n * Updating a Spatial Anchors Account\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param spatialAnchorsAccount Spatial Anchors Account parameter.\n * @param options The options parameters.\n */\n update(\n resourceGroupName: string,\n accountName: string,\n spatialAnchorsAccount: SpatialAnchorsAccount,\n options?: SpatialAnchorsAccountsUpdateOptionalParams\n ): Promise<SpatialAnchorsAccountsUpdateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, spatialAnchorsAccount, options },\n updateOperationSpec\n );\n }\n\n /**\n * Creating or Updating a Spatial Anchors Account.\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param spatialAnchorsAccount Spatial Anchors Account parameter.\n * @param options The options parameters.\n */\n create(\n resourceGroupName: string,\n accountName: string,\n spatialAnchorsAccount: SpatialAnchorsAccount,\n options?: SpatialAnchorsAccountsCreateOptionalParams\n ): Promise<SpatialAnchorsAccountsCreateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, spatialAnchorsAccount, options },\n createOperationSpec\n );\n }\n\n /**\n * List Both of the 2 Keys of a Spatial Anchors Account\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param options The options parameters.\n */\n listKeys(\n resourceGroupName: string,\n accountName: string,\n options?: SpatialAnchorsAccountsListKeysOptionalParams\n ): Promise<SpatialAnchorsAccountsListKeysResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, options },\n listKeysOperationSpec\n );\n }\n\n /**\n * Regenerate specified Key of a Spatial Anchors Account\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param regenerate Required information for key regeneration.\n * @param options The options parameters.\n */\n regenerateKeys(\n resourceGroupName: string,\n accountName: string,\n regenerate: AccountKeyRegenerateRequest,\n options?: SpatialAnchorsAccountsRegenerateKeysOptionalParams\n ): Promise<SpatialAnchorsAccountsRegenerateKeysResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, regenerate, options },\n regenerateKeysOperationSpec\n );\n }\n\n /**\n * ListBySubscriptionNext\n * @param nextLink The nextLink from the previous successful call to the ListBySubscription method.\n * @param options The options parameters.\n */\n private _listBySubscriptionNext(\n nextLink: string,\n options?: SpatialAnchorsAccountsListBySubscriptionNextOptionalParams\n ): Promise<SpatialAnchorsAccountsListBySubscriptionNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listBySubscriptionNextOperationSpec\n );\n }\n\n /**\n * ListByResourceGroupNext\n * @param resourceGroupName Name of an Azure resource group.\n * @param nextLink The nextLink from the previous successful call to the ListByResourceGroup method.\n * @param options The options parameters.\n */\n private _listByResourceGroupNext(\n resourceGroupName: string,\n nextLink: string,\n options?: SpatialAnchorsAccountsListByResourceGroupNextOptionalParams\n ): Promise<SpatialAnchorsAccountsListByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, nextLink, options },\n listByResourceGroupNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/spatialAnchorsAccounts\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SpatialAnchorsAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SpatialAnchorsAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n 204: {},\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SpatialAnchorsAccount\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst updateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}\",\n httpMethod: \"PATCH\",\n responses: {\n 200: {\n bodyMapper: Mappers.SpatialAnchorsAccount\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.spatialAnchorsAccount,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst createOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.SpatialAnchorsAccount\n },\n 201: {\n bodyMapper: Mappers.SpatialAnchorsAccount\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.spatialAnchorsAccount,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst listKeysOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}/listKeys\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.AccountKeys\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst regenerateKeysOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}/regenerateKeys\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.AccountKeys\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.regenerate,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst listBySubscriptionNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SpatialAnchorsAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SpatialAnchorsAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { RemoteRenderingAccounts } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { MixedRealityClient } from \"../mixedRealityClient\";\nimport {\n RemoteRenderingAccount,\n RemoteRenderingAccountsListBySubscriptionNextOptionalParams,\n RemoteRenderingAccountsListBySubscriptionOptionalParams,\n RemoteRenderingAccountsListByResourceGroupNextOptionalParams,\n RemoteRenderingAccountsListByResourceGroupOptionalParams,\n RemoteRenderingAccountsListBySubscriptionResponse,\n RemoteRenderingAccountsListByResourceGroupResponse,\n RemoteRenderingAccountsDeleteOptionalParams,\n RemoteRenderingAccountsGetOptionalParams,\n RemoteRenderingAccountsGetResponse,\n RemoteRenderingAccountsUpdateOptionalParams,\n RemoteRenderingAccountsUpdateResponse,\n RemoteRenderingAccountsCreateOptionalParams,\n RemoteRenderingAccountsCreateResponse,\n RemoteRenderingAccountsListKeysOptionalParams,\n RemoteRenderingAccountsListKeysResponse,\n AccountKeyRegenerateRequest,\n RemoteRenderingAccountsRegenerateKeysOptionalParams,\n RemoteRenderingAccountsRegenerateKeysResponse,\n RemoteRenderingAccountsListBySubscriptionNextResponse,\n RemoteRenderingAccountsListByResourceGroupNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing RemoteRenderingAccounts operations. */\nexport class RemoteRenderingAccountsImpl implements RemoteRenderingAccounts {\n private readonly client: MixedRealityClient;\n\n /**\n * Initialize a new instance of the class RemoteRenderingAccounts class.\n * @param client Reference to the service client\n */\n constructor(client: MixedRealityClient) {\n this.client = client;\n }\n\n /**\n * List Remote Rendering Accounts by Subscription\n * @param options The options parameters.\n */\n public listBySubscription(\n options?: RemoteRenderingAccountsListBySubscriptionOptionalParams\n ): PagedAsyncIterableIterator<RemoteRenderingAccount> {\n const iter = this.listBySubscriptionPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listBySubscriptionPagingPage(options);\n }\n };\n }\n\n private async *listBySubscriptionPagingPage(\n options?: RemoteRenderingAccountsListBySubscriptionOptionalParams\n ): AsyncIterableIterator<RemoteRenderingAccount[]> {\n let result = await this._listBySubscription(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listBySubscriptionNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listBySubscriptionPagingAll(\n options?: RemoteRenderingAccountsListBySubscriptionOptionalParams\n ): AsyncIterableIterator<RemoteRenderingAccount> {\n for await (const page of this.listBySubscriptionPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * List Resources by Resource Group\n * @param resourceGroupName Name of an Azure resource group.\n * @param options The options parameters.\n */\n public listByResourceGroup(\n resourceGroupName: string,\n options?: RemoteRenderingAccountsListByResourceGroupOptionalParams\n ): PagedAsyncIterableIterator<RemoteRenderingAccount> {\n const iter = this.listByResourceGroupPagingAll(resourceGroupName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listByResourceGroupPagingPage(resourceGroupName, options);\n }\n };\n }\n\n private async *listByResourceGroupPagingPage(\n resourceGroupName: string,\n options?: RemoteRenderingAccountsListByResourceGroupOptionalParams\n ): AsyncIterableIterator<RemoteRenderingAccount[]> {\n let result = await this._listByResourceGroup(resourceGroupName, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listByResourceGroupNext(\n resourceGroupName,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listByResourceGroupPagingAll(\n resourceGroupName: string,\n options?: RemoteRenderingAccountsListByResourceGroupOptionalParams\n ): AsyncIterableIterator<RemoteRenderingAccount> {\n for await (const page of this.listByResourceGroupPagingPage(\n resourceGroupName,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * List Remote Rendering Accounts by Subscription\n * @param options The options parameters.\n */\n private _listBySubscription(\n options?: RemoteRenderingAccountsListBySubscriptionOptionalParams\n ): Promise<RemoteRenderingAccountsListBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionOperationSpec\n );\n }\n\n /**\n * List Resources by Resource Group\n * @param resourceGroupName Name of an Azure resource group.\n * @param options The options parameters.\n */\n private _listByResourceGroup(\n resourceGroupName: string,\n options?: RemoteRenderingAccountsListByResourceGroupOptionalParams\n ): Promise<RemoteRenderingAccountsListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, options },\n listByResourceGroupOperationSpec\n );\n }\n\n /**\n * Delete a Remote Rendering Account.\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param options The options parameters.\n */\n delete(\n resourceGroupName: string,\n accountName: string,\n options?: RemoteRenderingAccountsDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, options },\n deleteOperationSpec\n );\n }\n\n /**\n * Retrieve a Remote Rendering Account.\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n accountName: string,\n options?: RemoteRenderingAccountsGetOptionalParams\n ): Promise<RemoteRenderingAccountsGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, options },\n getOperationSpec\n );\n }\n\n /**\n * Updating a Remote Rendering Account\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param remoteRenderingAccount Remote Rendering Account parameter.\n * @param options The options parameters.\n */\n update(\n resourceGroupName: string,\n accountName: string,\n remoteRenderingAccount: RemoteRenderingAccount,\n options?: RemoteRenderingAccountsUpdateOptionalParams\n ): Promise<RemoteRenderingAccountsUpdateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, remoteRenderingAccount, options },\n updateOperationSpec\n );\n }\n\n /**\n * Creating or Updating a Remote Rendering Account.\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param remoteRenderingAccount Remote Rendering Account parameter.\n * @param options The options parameters.\n */\n create(\n resourceGroupName: string,\n accountName: string,\n remoteRenderingAccount: RemoteRenderingAccount,\n options?: RemoteRenderingAccountsCreateOptionalParams\n ): Promise<RemoteRenderingAccountsCreateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, remoteRenderingAccount, options },\n createOperationSpec\n );\n }\n\n /**\n * List Both of the 2 Keys of a Remote Rendering Account\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param options The options parameters.\n */\n listKeys(\n resourceGroupName: string,\n accountName: string,\n options?: RemoteRenderingAccountsListKeysOptionalParams\n ): Promise<RemoteRenderingAccountsListKeysResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, options },\n listKeysOperationSpec\n );\n }\n\n /**\n * Regenerate specified Key of a Remote Rendering Account\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param regenerate Required information for key regeneration.\n * @param options The options parameters.\n */\n regenerateKeys(\n resourceGroupName: string,\n accountName: string,\n regenerate: AccountKeyRegenerateRequest,\n options?: RemoteRenderingAccountsRegenerateKeysOptionalParams\n ): Promise<RemoteRenderingAccountsRegenerateKeysResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, regenerate, options },\n regenerateKeysOperationSpec\n );\n }\n\n /**\n * ListBySubscriptionNext\n * @param nextLink The nextLink from the previous successful call to the ListBySubscription method.\n * @param options The options parameters.\n */\n private _listBySubscriptionNext(\n nextLink: string,\n options?: RemoteRenderingAccountsListBySubscriptionNextOptionalParams\n ): Promise<RemoteRenderingAccountsListBySubscriptionNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listBySubscriptionNextOperationSpec\n );\n }\n\n /**\n * ListByResourceGroupNext\n * @param resourceGroupName Name of an Azure resource group.\n * @param nextLink The nextLink from the previous successful call to the ListByResourceGroup method.\n * @param options The options parameters.\n */\n private _listByResourceGroupNext(\n resourceGroupName: string,\n nextLink: string,\n options?: RemoteRenderingAccountsListByResourceGroupNextOptionalParams\n ): Promise<RemoteRenderingAccountsListByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, nextLink, options },\n listByResourceGroupNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/remoteRenderingAccounts\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.RemoteRenderingAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.RemoteRenderingAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n 204: {},\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.RemoteRenderingAccount\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst updateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}\",\n httpMethod: \"PATCH\",\n responses: {\n 200: {\n bodyMapper: Mappers.RemoteRenderingAccount\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.remoteRenderingAccount,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst createOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.RemoteRenderingAccount\n },\n 201: {\n bodyMapper: Mappers.RemoteRenderingAccount\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.remoteRenderingAccount,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst listKeysOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}/listKeys\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.AccountKeys\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst regenerateKeysOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}/regenerateKeys\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.AccountKeys\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.regenerate,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst listBySubscriptionNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.RemoteRenderingAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.RemoteRenderingAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\nimport * as coreAuth from \"@azure/core-auth\";\nimport {\n OperationsImpl,\n SpatialAnchorsAccountsImpl,\n RemoteRenderingAccountsImpl\n} from \"./operations\";\nimport {\n Operations,\n SpatialAnchorsAccounts,\n RemoteRenderingAccounts\n} from \"./operationsInterfaces\";\nimport * as Parameters from \"./models/parameters\";\nimport * as Mappers from \"./models/mappers\";\nimport {\n MixedRealityClientOptionalParams,\n CheckNameAvailabilityRequest,\n CheckNameAvailabilityLocalOptionalParams,\n CheckNameAvailabilityLocalResponse\n} from \"./models\";\n\nexport class MixedRealityClient extends coreClient.ServiceClient {\n $host: string;\n apiVersion: string;\n subscriptionId: string;\n\n /**\n * Initializes a new instance of the MixedRealityClient class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param subscriptionId The Azure subscription ID. This is a GUID-formatted string (e.g.\n * 00000000-0000-0000-0000-000000000000)\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n subscriptionId: string,\n options?: MixedRealityClientOptionalParams\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: MixedRealityClientOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-arm-mixedreality/4.0.0`;\n const userAgentPrefix =\n options.userAgentOptions && options.userAgentOptions.userAgentPrefix\n ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`\n : `${packageDetails}`;\n\n if (!options.credentialScopes) {\n options.credentialScopes = [\"https://management.azure.com/.default\"];\n }\n const optionsWithDefaults = {\n ...defaults,\n ...options,\n userAgentOptions: {\n userAgentPrefix\n },\n baseUri: options.endpoint || \"https://management.azure.com\"\n };\n super(optionsWithDefaults);\n // Parameter assignments\n this.subscriptionId = subscriptionId;\n\n // Assigning values to Constant parameters\n this.$host = options.$host || \"https://management.azure.com\";\n this.apiVersion = options.apiVersion || \"2021-01-01\";\n this.operations = new OperationsImpl(this);\n this.spatialAnchorsAccounts = new SpatialAnchorsAccountsImpl(this);\n this.remoteRenderingAccounts = new RemoteRenderingAccountsImpl(this);\n }\n\n /**\n * Check Name Availability for local uniqueness\n * @param location The location in which uniqueness will be verified.\n * @param checkNameAvailability Check Name Availability Request.\n * @param options The options parameters.\n */\n checkNameAvailabilityLocal(\n location: string,\n checkNameAvailability: CheckNameAvailabilityRequest,\n options?: CheckNameAvailabilityLocalOptionalParams\n ): Promise<CheckNameAvailabilityLocalResponse> {\n return this.sendOperationRequest(\n { location, checkNameAvailability, options },\n checkNameAvailabilityLocalOperationSpec\n );\n }\n\n operations: Operations;\n spatialAnchorsAccounts: SpatialAnchorsAccounts;\n remoteRenderingAccounts: RemoteRenderingAccounts;\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst checkNameAvailabilityLocalOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/locations/{location}/checkNameAvailability\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.CheckNameAvailabilityResponse\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.checkNameAvailability,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.location\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\n"],"names":["KnownNameUnavailableReason","KnownCreatedByType","CheckNameAvailabilityRequestMapper","SpatialAnchorsAccountMapper","AccountKeyRegenerateRequestMapper","RemoteRenderingAccountMapper","__asyncValues","__asyncDelegator","coreClient.createSerializer","Mappers.OperationPage","Mappers.CloudError","Parameters.apiVersion","Parameters.$host","Parameters.accept","Parameters.nextLink","serializer","Mappers.SpatialAnchorsAccountPage","Parameters.subscriptionId","Parameters.resourceGroupName","Parameters.accountName","Mappers.SpatialAnchorsAccount","Parameters.spatialAnchorsAccount","Parameters.contentType","Mappers.AccountKeys","Parameters.regenerate","listBySubscriptionOperationSpec","listByResourceGroupOperationSpec","deleteOperationSpec","getOperationSpec","updateOperationSpec","createOperationSpec","listKeysOperationSpec","regenerateKeysOperationSpec","listBySubscriptionNextOperationSpec","listByResourceGroupNextOperationSpec","Mappers.RemoteRenderingAccountPage","Mappers.RemoteRenderingAccount","Parameters.remoteRenderingAccount","coreClient.ServiceClient","Mappers.CheckNameAvailabilityResponse","Parameters.checkNameAvailability","Parameters.location"],"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/spatialAnchorsAccounts.ts","../src/operations/remoteRenderingAccounts.ts","../src/mixedRealityClient.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/** Result of the request to list Resource Provider operations. It contains a list of operations and a URL link to get the next set of results. */\nexport interface OperationPage {\n /** List of operations supported by the Resource Provider. */\n value?: Operation[];\n /** URL to get the next set of operation list results if there are any. */\n nextLink?: string;\n}\n\n/** REST API operation */\nexport interface Operation {\n /** Operation name: {provider}/{resource}/{operation} */\n name?: string;\n /** The object that represents the operation. */\n display?: OperationDisplay;\n /** Whether or not this is a data plane operation */\n isDataAction?: boolean;\n /** The origin */\n origin?: string;\n /** Properties of the operation */\n properties?: OperationProperties;\n}\n\n/** The object that represents the operation. */\nexport interface OperationDisplay {\n /** Service provider: Microsoft.ResourceProvider */\n provider: string;\n /** Resource on which the operation is performed: Profile, endpoint, etc. */\n resource: string;\n /** Operation type: Read, write, delete, etc. */\n operation: string;\n /** Description of operation */\n description: string;\n}\n\n/** Operation properties. */\nexport interface OperationProperties {\n /** Service specification. */\n serviceSpecification?: ServiceSpecification;\n}\n\n/** Service specification payload */\nexport interface ServiceSpecification {\n /** Specifications of the Log for Azure Monitoring */\n logSpecifications?: LogSpecification[];\n /** Specifications of the Metrics for Azure Monitoring */\n metricSpecifications?: MetricSpecification[];\n}\n\n/** Specifications of the Log for Azure Monitoring */\nexport interface LogSpecification {\n /** Name of the log */\n name?: string;\n /** Localized friendly display name of the log */\n displayName?: string;\n /** Blob duration of the log */\n blobDuration?: string;\n}\n\n/** Specifications of the Metrics for Azure Monitoring */\nexport interface MetricSpecification {\n /** Name of the metric */\n name?: string;\n /** Localized friendly display name of the metric */\n displayName?: string;\n /** Localized friendly description of the metric */\n displayDescription?: string;\n /** Unit that makes sense for the metric */\n unit?: string;\n /** Only provide one value for this field. Valid values: Average, Minimum, Maximum, Total, Count. */\n aggregationType?: string;\n /** Supported aggregation types. Valid values: Average, Minimum, Maximum, Total, Count. */\n supportedAggregationTypes?: string[];\n /** Supported time grains. Valid values: PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H, P1D */\n supportedTimeGrainTypes?: string[];\n /** Flag to indicate use of regional Mdm accounts */\n enableRegionalMdmAccount?: boolean;\n /** Source mdm account */\n sourceMdmAccount?: string;\n /** Source mdm namespace */\n sourceMdmNamespace?: string;\n /** Metric filter regex pattern */\n metricFilterPattern?: string;\n /** Flag to determine is Zero is returned for time duration where no metric is emitted */\n fillGapWithZero?: boolean;\n /** Metric category */\n category?: string;\n /** Internal metric name. */\n internalMetricName?: string;\n /** Dimensions of the metric */\n dimensions?: MetricDimension[];\n /** Locked aggregation type of the metric */\n lockedAggregationType?: string;\n}\n\n/** Specifications of the Dimension of metrics */\nexport interface MetricDimension {\n /** Name of the dimension */\n name?: string;\n /** Localized friendly display name of the dimension */\n displayName?: string;\n /** Internal name of the dimension. */\n internalName?: string;\n}\n\n/** An Error response. */\nexport interface CloudError {\n /** An Error response. */\n error?: CloudErrorBody;\n}\n\n/** An error response from Azure. */\nexport interface CloudErrorBody {\n /** An identifier for the error. Codes are invariant and are intended to be consumed programmatically. */\n code?: string;\n /** A message describing the error, intended to be suitable for displaying in a user interface. */\n message?: string;\n /** The target of the particular error. For example, the name of the property in error. */\n target?: string;\n /** A list of additional details about the error. */\n details?: CloudErrorBody[];\n}\n\n/** Check Name Availability Request */\nexport interface CheckNameAvailabilityRequest {\n /** Resource Name To Verify */\n name: string;\n /** Fully qualified resource type which includes provider namespace */\n type: string;\n}\n\n/** Check Name Availability Response */\nexport interface CheckNameAvailabilityResponse {\n /** if name Available */\n nameAvailable: boolean;\n /** Resource Name To Verify */\n reason?: NameUnavailableReason;\n /** detail message */\n message?: string;\n}\n\n/** Result of the request to get resource collection. It contains a list of resources and a URL link to get the next set of results. */\nexport interface SpatialAnchorsAccountPage {\n /** List of resources supported by the Resource Provider. */\n value?: SpatialAnchorsAccount[];\n /** URL to get the next set of resource list results if there are any. */\n nextLink?: string;\n}\n\n/** Identity for the resource. */\nexport interface Identity {\n /**\n * The principal ID of resource identity.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly principalId?: string;\n /**\n * The tenant ID of resource.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly tenantId?: string;\n /** The identity type. */\n type?: \"SystemAssigned\";\n}\n\n/** The resource model definition representing SKU */\nexport interface Sku {\n /** The name of the SKU. Ex - P3. It is typically a letter+number code */\n name: string;\n /** This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. */\n tier?: SkuTier;\n /** The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. */\n size?: string;\n /** If the service has different generations of hardware, for the same SKU, then that can be captured here. */\n family?: string;\n /** If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. */\n capacity?: number;\n}\n\n/** Metadata pertaining to creation and last modification of the resource. */\nexport interface SystemData {\n /** The identity that created the resource. */\n createdBy?: string;\n /** The type of identity that created the resource. */\n createdByType?: CreatedByType;\n /** The timestamp of resource creation (UTC). */\n createdAt?: Date;\n /** The identity that last modified the resource. */\n lastModifiedBy?: string;\n /** The type of identity that last modified the resource. */\n lastModifiedByType?: CreatedByType;\n /** The timestamp of resource last modification (UTC) */\n lastModifiedAt?: Date;\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/** Developer Keys of account */\nexport interface AccountKeys {\n /**\n * value of primary key.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly primaryKey?: string;\n /**\n * value of secondary key.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly secondaryKey?: string;\n}\n\n/** Request for account key regeneration */\nexport interface AccountKeyRegenerateRequest {\n /** serial of key to be regenerated */\n serial?: Serial;\n}\n\n/** Result of the request to get resource collection. It contains a list of resources and a URL link to get the next set of results. */\nexport interface RemoteRenderingAccountPage {\n /** List of resources supported by the Resource Provider. */\n value?: RemoteRenderingAccount[];\n /** URL to get the next set of resource list results if there are any. */\n nextLink?: string;\n}\n\n/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */\nexport type TrackedResource = Resource & {\n /** Resource tags. */\n tags?: { [propertyName: string]: string };\n /** The geo-location where the resource lives */\n location: string;\n};\n\n/** SpatialAnchorsAccount Response. */\nexport type SpatialAnchorsAccount = TrackedResource & {\n /** The identity associated with this account */\n identity?: Identity;\n /** The plan associated with this account */\n plan?: Identity;\n /** The sku associated with this account */\n sku?: Sku;\n /** The kind of account, if supported */\n kind?: Sku;\n /**\n * System metadata for this account\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly systemData?: SystemData;\n /** The name of the storage account associated with this accountId */\n storageAccountName?: string;\n /**\n * unique id of certain account.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly accountId?: string;\n /**\n * Correspond domain name of certain Spatial Anchors Account\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly accountDomain?: string;\n};\n\n/** RemoteRenderingAccount Response. */\nexport type RemoteRenderingAccount = TrackedResource & {\n /** The identity associated with this account */\n identity?: Identity;\n /** The plan associated with this account */\n plan?: Identity;\n /** The sku associated with this account */\n sku?: Sku;\n /** The kind of account, if supported */\n kind?: Sku;\n /**\n * System metadata for this account\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly systemData?: SystemData;\n /** The name of the storage account associated with this accountId */\n storageAccountName?: string;\n /**\n * unique id of certain account.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly accountId?: string;\n /**\n * Correspond domain name of certain Spatial Anchors Account\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly accountDomain?: string;\n};\n\n/** Known values of {@link NameUnavailableReason} that the service accepts. */\nexport enum KnownNameUnavailableReason {\n Invalid = \"Invalid\",\n AlreadyExists = \"AlreadyExists\"\n}\n\n/**\n * Defines values for NameUnavailableReason. \\\n * {@link KnownNameUnavailableReason} can be used interchangeably with NameUnavailableReason,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Invalid** \\\n * **AlreadyExists**\n */\nexport type NameUnavailableReason = string;\n\n/** Known values of {@link CreatedByType} that the service accepts. */\nexport enum KnownCreatedByType {\n User = \"User\",\n Application = \"Application\",\n ManagedIdentity = \"ManagedIdentity\",\n Key = \"Key\"\n}\n\n/**\n * Defines values for CreatedByType. \\\n * {@link KnownCreatedByType} can be used interchangeably with CreatedByType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **User** \\\n * **Application** \\\n * **ManagedIdentity** \\\n * **Key**\n */\nexport type CreatedByType = string;\n/** Defines values for SkuTier. */\nexport type SkuTier = \"Free\" | \"Basic\" | \"Standard\" | \"Premium\";\n/** Defines values for Serial. */\nexport type Serial = 1 | 2;\n\n/** Optional parameters. */\nexport interface OperationsListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type OperationsListResponse = OperationPage;\n\n/** Optional parameters. */\nexport interface OperationsListNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listNext operation. */\nexport type OperationsListNextResponse = OperationPage;\n\n/** Optional parameters. */\nexport interface CheckNameAvailabilityLocalOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the checkNameAvailabilityLocal operation. */\nexport type CheckNameAvailabilityLocalResponse = CheckNameAvailabilityResponse;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsListBySubscriptionOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listBySubscription operation. */\nexport type SpatialAnchorsAccountsListBySubscriptionResponse = SpatialAnchorsAccountPage;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsListByResourceGroupOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listByResourceGroup operation. */\nexport type SpatialAnchorsAccountsListByResourceGroupResponse = SpatialAnchorsAccountPage;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsDeleteOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsGetOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the get operation. */\nexport type SpatialAnchorsAccountsGetResponse = SpatialAnchorsAccount;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsUpdateOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the update operation. */\nexport type SpatialAnchorsAccountsUpdateResponse = SpatialAnchorsAccount;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsCreateOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the create operation. */\nexport type SpatialAnchorsAccountsCreateResponse = SpatialAnchorsAccount;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsListKeysOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listKeys operation. */\nexport type SpatialAnchorsAccountsListKeysResponse = AccountKeys;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsRegenerateKeysOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the regenerateKeys operation. */\nexport type SpatialAnchorsAccountsRegenerateKeysResponse = AccountKeys;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsListBySubscriptionNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listBySubscriptionNext operation. */\nexport type SpatialAnchorsAccountsListBySubscriptionNextResponse = SpatialAnchorsAccountPage;\n\n/** Optional parameters. */\nexport interface SpatialAnchorsAccountsListByResourceGroupNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listByResourceGroupNext operation. */\nexport type SpatialAnchorsAccountsListByResourceGroupNextResponse = SpatialAnchorsAccountPage;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsListBySubscriptionOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listBySubscription operation. */\nexport type RemoteRenderingAccountsListBySubscriptionResponse = RemoteRenderingAccountPage;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsListByResourceGroupOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listByResourceGroup operation. */\nexport type RemoteRenderingAccountsListByResourceGroupResponse = RemoteRenderingAccountPage;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsDeleteOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsGetOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the get operation. */\nexport type RemoteRenderingAccountsGetResponse = RemoteRenderingAccount;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsUpdateOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the update operation. */\nexport type RemoteRenderingAccountsUpdateResponse = RemoteRenderingAccount;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsCreateOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the create operation. */\nexport type RemoteRenderingAccountsCreateResponse = RemoteRenderingAccount;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsListKeysOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listKeys operation. */\nexport type RemoteRenderingAccountsListKeysResponse = AccountKeys;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsRegenerateKeysOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the regenerateKeys operation. */\nexport type RemoteRenderingAccountsRegenerateKeysResponse = AccountKeys;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsListBySubscriptionNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listBySubscriptionNext operation. */\nexport type RemoteRenderingAccountsListBySubscriptionNextResponse = RemoteRenderingAccountPage;\n\n/** Optional parameters. */\nexport interface RemoteRenderingAccountsListByResourceGroupNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listByResourceGroupNext operation. */\nexport type RemoteRenderingAccountsListByResourceGroupNextResponse = RemoteRenderingAccountPage;\n\n/** Optional parameters. */\nexport interface MixedRealityClientOptionalParams\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 OperationPage: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationPage\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Operation\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const Operation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Operation\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\"\n }\n },\n isDataAction: {\n serializedName: \"isDataAction\",\n type: {\n name: \"Boolean\"\n }\n },\n origin: {\n serializedName: \"origin\",\n type: {\n name: \"String\"\n }\n },\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"OperationProperties\"\n }\n }\n }\n }\n};\n\nexport const OperationDisplay: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"resource\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"description\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const OperationProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationProperties\",\n modelProperties: {\n serviceSpecification: {\n serializedName: \"serviceSpecification\",\n type: {\n name: \"Composite\",\n className: \"ServiceSpecification\"\n }\n }\n }\n }\n};\n\nexport const ServiceSpecification: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ServiceSpecification\",\n modelProperties: {\n logSpecifications: {\n serializedName: \"logSpecifications\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"LogSpecification\"\n }\n }\n }\n },\n metricSpecifications: {\n serializedName: \"metricSpecifications\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"MetricSpecification\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const LogSpecification: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"LogSpecification\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n },\n blobDuration: {\n serializedName: \"blobDuration\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const MetricSpecification: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"MetricSpecification\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n },\n displayDescription: {\n serializedName: \"displayDescription\",\n type: {\n name: \"String\"\n }\n },\n unit: {\n serializedName: \"unit\",\n type: {\n name: \"String\"\n }\n },\n aggregationType: {\n serializedName: \"aggregationType\",\n type: {\n name: \"String\"\n }\n },\n supportedAggregationTypes: {\n serializedName: \"supportedAggregationTypes\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n supportedTimeGrainTypes: {\n serializedName: \"supportedTimeGrainTypes\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n enableRegionalMdmAccount: {\n serializedName: \"enableRegionalMdmAccount\",\n type: {\n name: \"Boolean\"\n }\n },\n sourceMdmAccount: {\n serializedName: \"sourceMdmAccount\",\n type: {\n name: \"String\"\n }\n },\n sourceMdmNamespace: {\n serializedName: \"sourceMdmNamespace\",\n type: {\n name: \"String\"\n }\n },\n metricFilterPattern: {\n serializedName: \"metricFilterPattern\",\n type: {\n name: \"String\"\n }\n },\n fillGapWithZero: {\n serializedName: \"fillGapWithZero\",\n type: {\n name: \"Boolean\"\n }\n },\n category: {\n serializedName: \"category\",\n type: {\n name: \"String\"\n }\n },\n internalMetricName: {\n serializedName: \"internalMetricName\",\n type: {\n name: \"String\"\n }\n },\n dimensions: {\n serializedName: \"dimensions\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"MetricDimension\"\n }\n }\n }\n },\n lockedAggregationType: {\n serializedName: \"lockedAggregationType\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const MetricDimension: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"MetricDimension\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n displayName: {\n serializedName: \"displayName\",\n type: {\n name: \"String\"\n }\n },\n internalName: {\n serializedName: \"internalName\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const CloudError: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CloudError\",\n modelProperties: {\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"CloudErrorBody\"\n }\n }\n }\n }\n};\n\nexport const CloudErrorBody: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CloudErrorBody\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n },\n target: {\n serializedName: \"target\",\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"details\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"CloudErrorBody\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const CheckNameAvailabilityRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CheckNameAvailabilityRequest\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const CheckNameAvailabilityResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CheckNameAvailabilityResponse\",\n modelProperties: {\n nameAvailable: {\n serializedName: \"nameAvailable\",\n required: true,\n type: {\n name: \"Boolean\"\n }\n },\n reason: {\n serializedName: \"reason\",\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SpatialAnchorsAccountPage: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SpatialAnchorsAccountPage\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"SpatialAnchorsAccount\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const Identity: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Identity\",\n modelProperties: {\n principalId: {\n serializedName: \"principalId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n tenantId: {\n serializedName: \"tenantId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n defaultValue: \"SystemAssigned\",\n isConstant: true,\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const Sku: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Sku\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n tier: {\n serializedName: \"tier\",\n type: {\n name: \"Enum\",\n allowedValues: [\"Free\", \"Basic\", \"Standard\", \"Premium\"]\n }\n },\n size: {\n serializedName: \"size\",\n type: {\n name: \"String\"\n }\n },\n family: {\n serializedName: \"family\",\n type: {\n name: \"String\"\n }\n },\n capacity: {\n serializedName: \"capacity\",\n type: {\n name: \"Number\"\n }\n }\n }\n }\n};\n\nexport const SystemData: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SystemData\",\n modelProperties: {\n createdBy: {\n serializedName: \"createdBy\",\n type: {\n name: \"String\"\n }\n },\n createdByType: {\n serializedName: \"createdByType\",\n type: {\n name: \"String\"\n }\n },\n createdAt: {\n serializedName: \"createdAt\",\n type: {\n name: \"DateTime\"\n }\n },\n lastModifiedBy: {\n serializedName: \"lastModifiedBy\",\n type: {\n name: \"String\"\n }\n },\n lastModifiedByType: {\n serializedName: \"lastModifiedByType\",\n type: {\n name: \"String\"\n }\n },\n lastModifiedAt: {\n serializedName: \"lastModifiedAt\",\n type: {\n name: \"DateTime\"\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 AccountKeys: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AccountKeys\",\n modelProperties: {\n primaryKey: {\n serializedName: \"primaryKey\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n secondaryKey: {\n serializedName: \"secondaryKey\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const AccountKeyRegenerateRequest: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AccountKeyRegenerateRequest\",\n modelProperties: {\n serial: {\n defaultValue: \"1\",\n serializedName: \"serial\",\n type: {\n name: \"Enum\",\n allowedValues: [1, 2]\n }\n }\n }\n }\n};\n\nexport const RemoteRenderingAccountPage: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"RemoteRenderingAccountPage\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"RemoteRenderingAccount\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const TrackedResource: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"TrackedResource\",\n modelProperties: {\n ...Resource.type.modelProperties,\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n location: {\n serializedName: \"location\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SpatialAnchorsAccount: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SpatialAnchorsAccount\",\n modelProperties: {\n ...TrackedResource.type.modelProperties,\n identity: {\n serializedName: \"identity\",\n type: {\n name: \"Composite\",\n className: \"Identity\"\n }\n },\n plan: {\n serializedName: \"plan\",\n type: {\n name: \"Composite\",\n className: \"Identity\"\n }\n },\n sku: {\n serializedName: \"sku\",\n type: {\n name: \"Composite\",\n className: \"Sku\"\n }\n },\n kind: {\n serializedName: \"kind\",\n type: {\n name: \"Composite\",\n className: \"Sku\"\n }\n },\n systemData: {\n serializedName: \"systemData\",\n type: {\n name: \"Composite\",\n className: \"SystemData\"\n }\n },\n storageAccountName: {\n serializedName: \"properties.storageAccountName\",\n type: {\n name: \"String\"\n }\n },\n accountId: {\n serializedName: \"properties.accountId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n accountDomain: {\n serializedName: \"properties.accountDomain\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const RemoteRenderingAccount: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"RemoteRenderingAccount\",\n modelProperties: {\n ...TrackedResource.type.modelProperties,\n identity: {\n serializedName: \"identity\",\n type: {\n name: \"Composite\",\n className: \"Identity\"\n }\n },\n plan: {\n serializedName: \"plan\",\n type: {\n name: \"Composite\",\n className: \"Identity\"\n }\n },\n sku: {\n serializedName: \"sku\",\n type: {\n name: \"Composite\",\n className: \"Sku\"\n }\n },\n kind: {\n serializedName: \"kind\",\n type: {\n name: \"Composite\",\n className: \"Sku\"\n }\n },\n systemData: {\n serializedName: \"systemData\",\n type: {\n name: \"Composite\",\n className: \"SystemData\"\n }\n },\n storageAccountName: {\n serializedName: \"properties.storageAccountName\",\n type: {\n name: \"String\"\n }\n },\n accountId: {\n serializedName: \"properties.accountId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n accountDomain: {\n serializedName: \"properties.accountDomain\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport {\n OperationParameter,\n OperationURLParameter,\n OperationQueryParameter\n} from \"@azure/core-client\";\nimport {\n CheckNameAvailabilityRequest as CheckNameAvailabilityRequestMapper,\n SpatialAnchorsAccount as SpatialAnchorsAccountMapper,\n AccountKeyRegenerateRequest as AccountKeyRegenerateRequestMapper,\n RemoteRenderingAccount as RemoteRenderingAccountMapper\n} from \"../models/mappers\";\n\nexport const accept: OperationParameter = {\n parameterPath: \"accept\",\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Accept\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const $host: OperationURLParameter = {\n parameterPath: \"$host\",\n mapper: {\n serializedName: \"$host\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const apiVersion: OperationQueryParameter = {\n parameterPath: \"apiVersion\",\n mapper: {\n defaultValue: \"2021-01-01\",\n isConstant: true,\n serializedName: \"api-version\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const nextLink: OperationURLParameter = {\n parameterPath: \"nextLink\",\n mapper: {\n serializedName: \"nextLink\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const contentType: OperationParameter = {\n parameterPath: [\"options\", \"contentType\"],\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Content-Type\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const checkNameAvailability: OperationParameter = {\n parameterPath: \"checkNameAvailability\",\n mapper: CheckNameAvailabilityRequestMapper\n};\n\nexport const subscriptionId: OperationURLParameter = {\n parameterPath: \"subscriptionId\",\n mapper: {\n serializedName: \"subscriptionId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const location: OperationURLParameter = {\n parameterPath: \"location\",\n mapper: {\n constraints: {\n Pattern: new RegExp(\"^[-\\\\w\\\\._\\\\(\\\\)]+$\"),\n MaxLength: 90,\n MinLength: 1\n },\n serializedName: \"location\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const resourceGroupName: OperationURLParameter = {\n parameterPath: \"resourceGroupName\",\n mapper: {\n constraints: {\n Pattern: new RegExp(\"^[-\\\\w\\\\._\\\\(\\\\)]+$\"),\n MaxLength: 90,\n MinLength: 1\n },\n serializedName: \"resourceGroupName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const accountName: OperationURLParameter = {\n parameterPath: \"accountName\",\n mapper: {\n constraints: {\n Pattern: new RegExp(\"^[-\\\\w\\\\._\\\\(\\\\)]+$\"),\n MaxLength: 90,\n MinLength: 1\n },\n serializedName: \"accountName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const spatialAnchorsAccount: OperationParameter = {\n parameterPath: \"spatialAnchorsAccount\",\n mapper: SpatialAnchorsAccountMapper\n};\n\nexport const regenerate: OperationParameter = {\n parameterPath: \"regenerate\",\n mapper: AccountKeyRegenerateRequestMapper\n};\n\nexport const remoteRenderingAccount: OperationParameter = {\n parameterPath: \"remoteRenderingAccount\",\n mapper: RemoteRenderingAccountMapper\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 { MixedRealityClient } from \"../mixedRealityClient\";\nimport {\n Operation,\n OperationsListNextOptionalParams,\n OperationsListOptionalParams,\n OperationsListResponse,\n OperationsListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Operations operations. */\nexport class OperationsImpl implements Operations {\n private readonly client: MixedRealityClient;\n\n /**\n * Initialize a new instance of the class Operations class.\n * @param client Reference to the service client\n */\n constructor(client: MixedRealityClient) {\n this.client = client;\n }\n\n /**\n * Exposing Available Operations\n * @param options The options parameters.\n */\n public list(\n options?: OperationsListOptionalParams\n ): PagedAsyncIterableIterator<Operation> {\n const iter = this.listPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(options);\n }\n };\n }\n\n private async *listPagingPage(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation[]> {\n let result = await this._list(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Exposing Available Operations\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.MixedReality/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.nextLink],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { SpatialAnchorsAccounts } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { MixedRealityClient } from \"../mixedRealityClient\";\nimport {\n SpatialAnchorsAccount,\n SpatialAnchorsAccountsListBySubscriptionNextOptionalParams,\n SpatialAnchorsAccountsListBySubscriptionOptionalParams,\n SpatialAnchorsAccountsListByResourceGroupNextOptionalParams,\n SpatialAnchorsAccountsListByResourceGroupOptionalParams,\n SpatialAnchorsAccountsListBySubscriptionResponse,\n SpatialAnchorsAccountsListByResourceGroupResponse,\n SpatialAnchorsAccountsDeleteOptionalParams,\n SpatialAnchorsAccountsGetOptionalParams,\n SpatialAnchorsAccountsGetResponse,\n SpatialAnchorsAccountsUpdateOptionalParams,\n SpatialAnchorsAccountsUpdateResponse,\n SpatialAnchorsAccountsCreateOptionalParams,\n SpatialAnchorsAccountsCreateResponse,\n SpatialAnchorsAccountsListKeysOptionalParams,\n SpatialAnchorsAccountsListKeysResponse,\n AccountKeyRegenerateRequest,\n SpatialAnchorsAccountsRegenerateKeysOptionalParams,\n SpatialAnchorsAccountsRegenerateKeysResponse,\n SpatialAnchorsAccountsListBySubscriptionNextResponse,\n SpatialAnchorsAccountsListByResourceGroupNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing SpatialAnchorsAccounts operations. */\nexport class SpatialAnchorsAccountsImpl implements SpatialAnchorsAccounts {\n private readonly client: MixedRealityClient;\n\n /**\n * Initialize a new instance of the class SpatialAnchorsAccounts class.\n * @param client Reference to the service client\n */\n constructor(client: MixedRealityClient) {\n this.client = client;\n }\n\n /**\n * List Spatial Anchors Accounts by Subscription\n * @param options The options parameters.\n */\n public listBySubscription(\n options?: SpatialAnchorsAccountsListBySubscriptionOptionalParams\n ): PagedAsyncIterableIterator<SpatialAnchorsAccount> {\n const iter = this.listBySubscriptionPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listBySubscriptionPagingPage(options);\n }\n };\n }\n\n private async *listBySubscriptionPagingPage(\n options?: SpatialAnchorsAccountsListBySubscriptionOptionalParams\n ): AsyncIterableIterator<SpatialAnchorsAccount[]> {\n let result = await this._listBySubscription(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listBySubscriptionNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listBySubscriptionPagingAll(\n options?: SpatialAnchorsAccountsListBySubscriptionOptionalParams\n ): AsyncIterableIterator<SpatialAnchorsAccount> {\n for await (const page of this.listBySubscriptionPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * List Resources by Resource Group\n * @param resourceGroupName Name of an Azure resource group.\n * @param options The options parameters.\n */\n public listByResourceGroup(\n resourceGroupName: string,\n options?: SpatialAnchorsAccountsListByResourceGroupOptionalParams\n ): PagedAsyncIterableIterator<SpatialAnchorsAccount> {\n const iter = this.listByResourceGroupPagingAll(resourceGroupName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listByResourceGroupPagingPage(resourceGroupName, options);\n }\n };\n }\n\n private async *listByResourceGroupPagingPage(\n resourceGroupName: string,\n options?: SpatialAnchorsAccountsListByResourceGroupOptionalParams\n ): AsyncIterableIterator<SpatialAnchorsAccount[]> {\n let result = await this._listByResourceGroup(resourceGroupName, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listByResourceGroupNext(\n resourceGroupName,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listByResourceGroupPagingAll(\n resourceGroupName: string,\n options?: SpatialAnchorsAccountsListByResourceGroupOptionalParams\n ): AsyncIterableIterator<SpatialAnchorsAccount> {\n for await (const page of this.listByResourceGroupPagingPage(\n resourceGroupName,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * List Spatial Anchors Accounts by Subscription\n * @param options The options parameters.\n */\n private _listBySubscription(\n options?: SpatialAnchorsAccountsListBySubscriptionOptionalParams\n ): Promise<SpatialAnchorsAccountsListBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionOperationSpec\n );\n }\n\n /**\n * List Resources by Resource Group\n * @param resourceGroupName Name of an Azure resource group.\n * @param options The options parameters.\n */\n private _listByResourceGroup(\n resourceGroupName: string,\n options?: SpatialAnchorsAccountsListByResourceGroupOptionalParams\n ): Promise<SpatialAnchorsAccountsListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, options },\n listByResourceGroupOperationSpec\n );\n }\n\n /**\n * Delete a Spatial Anchors Account.\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param options The options parameters.\n */\n delete(\n resourceGroupName: string,\n accountName: string,\n options?: SpatialAnchorsAccountsDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, options },\n deleteOperationSpec\n );\n }\n\n /**\n * Retrieve a Spatial Anchors Account.\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n accountName: string,\n options?: SpatialAnchorsAccountsGetOptionalParams\n ): Promise<SpatialAnchorsAccountsGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, options },\n getOperationSpec\n );\n }\n\n /**\n * Updating a Spatial Anchors Account\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param spatialAnchorsAccount Spatial Anchors Account parameter.\n * @param options The options parameters.\n */\n update(\n resourceGroupName: string,\n accountName: string,\n spatialAnchorsAccount: SpatialAnchorsAccount,\n options?: SpatialAnchorsAccountsUpdateOptionalParams\n ): Promise<SpatialAnchorsAccountsUpdateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, spatialAnchorsAccount, options },\n updateOperationSpec\n );\n }\n\n /**\n * Creating or Updating a Spatial Anchors Account.\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param spatialAnchorsAccount Spatial Anchors Account parameter.\n * @param options The options parameters.\n */\n create(\n resourceGroupName: string,\n accountName: string,\n spatialAnchorsAccount: SpatialAnchorsAccount,\n options?: SpatialAnchorsAccountsCreateOptionalParams\n ): Promise<SpatialAnchorsAccountsCreateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, spatialAnchorsAccount, options },\n createOperationSpec\n );\n }\n\n /**\n * List Both of the 2 Keys of a Spatial Anchors Account\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param options The options parameters.\n */\n listKeys(\n resourceGroupName: string,\n accountName: string,\n options?: SpatialAnchorsAccountsListKeysOptionalParams\n ): Promise<SpatialAnchorsAccountsListKeysResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, options },\n listKeysOperationSpec\n );\n }\n\n /**\n * Regenerate specified Key of a Spatial Anchors Account\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param regenerate Required information for key regeneration.\n * @param options The options parameters.\n */\n regenerateKeys(\n resourceGroupName: string,\n accountName: string,\n regenerate: AccountKeyRegenerateRequest,\n options?: SpatialAnchorsAccountsRegenerateKeysOptionalParams\n ): Promise<SpatialAnchorsAccountsRegenerateKeysResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, regenerate, options },\n regenerateKeysOperationSpec\n );\n }\n\n /**\n * ListBySubscriptionNext\n * @param nextLink The nextLink from the previous successful call to the ListBySubscription method.\n * @param options The options parameters.\n */\n private _listBySubscriptionNext(\n nextLink: string,\n options?: SpatialAnchorsAccountsListBySubscriptionNextOptionalParams\n ): Promise<SpatialAnchorsAccountsListBySubscriptionNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listBySubscriptionNextOperationSpec\n );\n }\n\n /**\n * ListByResourceGroupNext\n * @param resourceGroupName Name of an Azure resource group.\n * @param nextLink The nextLink from the previous successful call to the ListByResourceGroup method.\n * @param options The options parameters.\n */\n private _listByResourceGroupNext(\n resourceGroupName: string,\n nextLink: string,\n options?: SpatialAnchorsAccountsListByResourceGroupNextOptionalParams\n ): Promise<SpatialAnchorsAccountsListByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, nextLink, options },\n listByResourceGroupNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/spatialAnchorsAccounts\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SpatialAnchorsAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SpatialAnchorsAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n 204: {},\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SpatialAnchorsAccount\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst updateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}\",\n httpMethod: \"PATCH\",\n responses: {\n 200: {\n bodyMapper: Mappers.SpatialAnchorsAccount\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.spatialAnchorsAccount,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst createOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.SpatialAnchorsAccount\n },\n 201: {\n bodyMapper: Mappers.SpatialAnchorsAccount\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.spatialAnchorsAccount,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst listKeysOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}/listKeys\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.AccountKeys\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst regenerateKeysOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}/regenerateKeys\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.AccountKeys\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.regenerate,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst listBySubscriptionNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SpatialAnchorsAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SpatialAnchorsAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { RemoteRenderingAccounts } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { MixedRealityClient } from \"../mixedRealityClient\";\nimport {\n RemoteRenderingAccount,\n RemoteRenderingAccountsListBySubscriptionNextOptionalParams,\n RemoteRenderingAccountsListBySubscriptionOptionalParams,\n RemoteRenderingAccountsListByResourceGroupNextOptionalParams,\n RemoteRenderingAccountsListByResourceGroupOptionalParams,\n RemoteRenderingAccountsListBySubscriptionResponse,\n RemoteRenderingAccountsListByResourceGroupResponse,\n RemoteRenderingAccountsDeleteOptionalParams,\n RemoteRenderingAccountsGetOptionalParams,\n RemoteRenderingAccountsGetResponse,\n RemoteRenderingAccountsUpdateOptionalParams,\n RemoteRenderingAccountsUpdateResponse,\n RemoteRenderingAccountsCreateOptionalParams,\n RemoteRenderingAccountsCreateResponse,\n RemoteRenderingAccountsListKeysOptionalParams,\n RemoteRenderingAccountsListKeysResponse,\n AccountKeyRegenerateRequest,\n RemoteRenderingAccountsRegenerateKeysOptionalParams,\n RemoteRenderingAccountsRegenerateKeysResponse,\n RemoteRenderingAccountsListBySubscriptionNextResponse,\n RemoteRenderingAccountsListByResourceGroupNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing RemoteRenderingAccounts operations. */\nexport class RemoteRenderingAccountsImpl implements RemoteRenderingAccounts {\n private readonly client: MixedRealityClient;\n\n /**\n * Initialize a new instance of the class RemoteRenderingAccounts class.\n * @param client Reference to the service client\n */\n constructor(client: MixedRealityClient) {\n this.client = client;\n }\n\n /**\n * List Remote Rendering Accounts by Subscription\n * @param options The options parameters.\n */\n public listBySubscription(\n options?: RemoteRenderingAccountsListBySubscriptionOptionalParams\n ): PagedAsyncIterableIterator<RemoteRenderingAccount> {\n const iter = this.listBySubscriptionPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listBySubscriptionPagingPage(options);\n }\n };\n }\n\n private async *listBySubscriptionPagingPage(\n options?: RemoteRenderingAccountsListBySubscriptionOptionalParams\n ): AsyncIterableIterator<RemoteRenderingAccount[]> {\n let result = await this._listBySubscription(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listBySubscriptionNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listBySubscriptionPagingAll(\n options?: RemoteRenderingAccountsListBySubscriptionOptionalParams\n ): AsyncIterableIterator<RemoteRenderingAccount> {\n for await (const page of this.listBySubscriptionPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * List Resources by Resource Group\n * @param resourceGroupName Name of an Azure resource group.\n * @param options The options parameters.\n */\n public listByResourceGroup(\n resourceGroupName: string,\n options?: RemoteRenderingAccountsListByResourceGroupOptionalParams\n ): PagedAsyncIterableIterator<RemoteRenderingAccount> {\n const iter = this.listByResourceGroupPagingAll(resourceGroupName, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listByResourceGroupPagingPage(resourceGroupName, options);\n }\n };\n }\n\n private async *listByResourceGroupPagingPage(\n resourceGroupName: string,\n options?: RemoteRenderingAccountsListByResourceGroupOptionalParams\n ): AsyncIterableIterator<RemoteRenderingAccount[]> {\n let result = await this._listByResourceGroup(resourceGroupName, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listByResourceGroupNext(\n resourceGroupName,\n continuationToken,\n options\n );\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listByResourceGroupPagingAll(\n resourceGroupName: string,\n options?: RemoteRenderingAccountsListByResourceGroupOptionalParams\n ): AsyncIterableIterator<RemoteRenderingAccount> {\n for await (const page of this.listByResourceGroupPagingPage(\n resourceGroupName,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * List Remote Rendering Accounts by Subscription\n * @param options The options parameters.\n */\n private _listBySubscription(\n options?: RemoteRenderingAccountsListBySubscriptionOptionalParams\n ): Promise<RemoteRenderingAccountsListBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionOperationSpec\n );\n }\n\n /**\n * List Resources by Resource Group\n * @param resourceGroupName Name of an Azure resource group.\n * @param options The options parameters.\n */\n private _listByResourceGroup(\n resourceGroupName: string,\n options?: RemoteRenderingAccountsListByResourceGroupOptionalParams\n ): Promise<RemoteRenderingAccountsListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, options },\n listByResourceGroupOperationSpec\n );\n }\n\n /**\n * Delete a Remote Rendering Account.\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param options The options parameters.\n */\n delete(\n resourceGroupName: string,\n accountName: string,\n options?: RemoteRenderingAccountsDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, options },\n deleteOperationSpec\n );\n }\n\n /**\n * Retrieve a Remote Rendering Account.\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n accountName: string,\n options?: RemoteRenderingAccountsGetOptionalParams\n ): Promise<RemoteRenderingAccountsGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, options },\n getOperationSpec\n );\n }\n\n /**\n * Updating a Remote Rendering Account\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param remoteRenderingAccount Remote Rendering Account parameter.\n * @param options The options parameters.\n */\n update(\n resourceGroupName: string,\n accountName: string,\n remoteRenderingAccount: RemoteRenderingAccount,\n options?: RemoteRenderingAccountsUpdateOptionalParams\n ): Promise<RemoteRenderingAccountsUpdateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, remoteRenderingAccount, options },\n updateOperationSpec\n );\n }\n\n /**\n * Creating or Updating a Remote Rendering Account.\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param remoteRenderingAccount Remote Rendering Account parameter.\n * @param options The options parameters.\n */\n create(\n resourceGroupName: string,\n accountName: string,\n remoteRenderingAccount: RemoteRenderingAccount,\n options?: RemoteRenderingAccountsCreateOptionalParams\n ): Promise<RemoteRenderingAccountsCreateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, remoteRenderingAccount, options },\n createOperationSpec\n );\n }\n\n /**\n * List Both of the 2 Keys of a Remote Rendering Account\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param options The options parameters.\n */\n listKeys(\n resourceGroupName: string,\n accountName: string,\n options?: RemoteRenderingAccountsListKeysOptionalParams\n ): Promise<RemoteRenderingAccountsListKeysResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, options },\n listKeysOperationSpec\n );\n }\n\n /**\n * Regenerate specified Key of a Remote Rendering Account\n * @param resourceGroupName Name of an Azure resource group.\n * @param accountName Name of an Mixed Reality Account.\n * @param regenerate Required information for key regeneration.\n * @param options The options parameters.\n */\n regenerateKeys(\n resourceGroupName: string,\n accountName: string,\n regenerate: AccountKeyRegenerateRequest,\n options?: RemoteRenderingAccountsRegenerateKeysOptionalParams\n ): Promise<RemoteRenderingAccountsRegenerateKeysResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, accountName, regenerate, options },\n regenerateKeysOperationSpec\n );\n }\n\n /**\n * ListBySubscriptionNext\n * @param nextLink The nextLink from the previous successful call to the ListBySubscription method.\n * @param options The options parameters.\n */\n private _listBySubscriptionNext(\n nextLink: string,\n options?: RemoteRenderingAccountsListBySubscriptionNextOptionalParams\n ): Promise<RemoteRenderingAccountsListBySubscriptionNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listBySubscriptionNextOperationSpec\n );\n }\n\n /**\n * ListByResourceGroupNext\n * @param resourceGroupName Name of an Azure resource group.\n * @param nextLink The nextLink from the previous successful call to the ListByResourceGroup method.\n * @param options The options parameters.\n */\n private _listByResourceGroupNext(\n resourceGroupName: string,\n nextLink: string,\n options?: RemoteRenderingAccountsListByResourceGroupNextOptionalParams\n ): Promise<RemoteRenderingAccountsListByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, nextLink, options },\n listByResourceGroupNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/remoteRenderingAccounts\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.RemoteRenderingAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.RemoteRenderingAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n 204: {},\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.RemoteRenderingAccount\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst updateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}\",\n httpMethod: \"PATCH\",\n responses: {\n 200: {\n bodyMapper: Mappers.RemoteRenderingAccount\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.remoteRenderingAccount,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst createOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.RemoteRenderingAccount\n },\n 201: {\n bodyMapper: Mappers.RemoteRenderingAccount\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.remoteRenderingAccount,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst listKeysOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}/listKeys\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.AccountKeys\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst regenerateKeysOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}/regenerateKeys\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.AccountKeys\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.regenerate,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.accountName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst listBySubscriptionNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.RemoteRenderingAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.RemoteRenderingAccountPage\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.nextLink,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\nimport * as coreAuth from \"@azure/core-auth\";\nimport {\n OperationsImpl,\n SpatialAnchorsAccountsImpl,\n RemoteRenderingAccountsImpl\n} from \"./operations\";\nimport {\n Operations,\n SpatialAnchorsAccounts,\n RemoteRenderingAccounts\n} from \"./operationsInterfaces\";\nimport * as Parameters from \"./models/parameters\";\nimport * as Mappers from \"./models/mappers\";\nimport {\n MixedRealityClientOptionalParams,\n CheckNameAvailabilityRequest,\n CheckNameAvailabilityLocalOptionalParams,\n CheckNameAvailabilityLocalResponse\n} from \"./models\";\n\nexport class MixedRealityClient extends coreClient.ServiceClient {\n $host: string;\n apiVersion: string;\n subscriptionId: string;\n\n /**\n * Initializes a new instance of the MixedRealityClient class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param subscriptionId The Azure subscription ID. This is a GUID-formatted string (e.g.\n * 00000000-0000-0000-0000-000000000000)\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n subscriptionId: string,\n options?: MixedRealityClientOptionalParams\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: MixedRealityClientOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-arm-mixedreality/4.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: options.endpoint || \"https://management.azure.com\"\n };\n super(optionsWithDefaults);\n // Parameter assignments\n this.subscriptionId = subscriptionId;\n\n // Assigning values to Constant parameters\n this.$host = options.$host || \"https://management.azure.com\";\n this.apiVersion = options.apiVersion || \"2021-01-01\";\n this.operations = new OperationsImpl(this);\n this.spatialAnchorsAccounts = new SpatialAnchorsAccountsImpl(this);\n this.remoteRenderingAccounts = new RemoteRenderingAccountsImpl(this);\n }\n\n /**\n * Check Name Availability for local uniqueness\n * @param location The location in which uniqueness will be verified.\n * @param checkNameAvailability Check Name Availability Request.\n * @param options The options parameters.\n */\n checkNameAvailabilityLocal(\n location: string,\n checkNameAvailability: CheckNameAvailabilityRequest,\n options?: CheckNameAvailabilityLocalOptionalParams\n ): Promise<CheckNameAvailabilityLocalResponse> {\n return this.sendOperationRequest(\n { location, checkNameAvailability, options },\n checkNameAvailabilityLocalOperationSpec\n );\n }\n\n operations: Operations;\n spatialAnchorsAccounts: SpatialAnchorsAccounts;\n remoteRenderingAccounts: RemoteRenderingAccounts;\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst checkNameAvailabilityLocalOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/locations/{location}/checkNameAvailability\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.CheckNameAvailabilityResponse\n },\n default: {\n bodyMapper: Mappers.CloudError\n }\n },\n requestBody: Parameters.checkNameAvailability,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.location\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\n"],"names":["KnownNameUnavailableReason","KnownCreatedByType","CheckNameAvailabilityRequestMapper","SpatialAnchorsAccountMapper","AccountKeyRegenerateRequestMapper","RemoteRenderingAccountMapper","__asyncValues","__asyncDelegator","coreClient.createSerializer","Mappers.OperationPage","Mappers.CloudError","Parameters.apiVersion","Parameters.$host","Parameters.accept","Parameters.nextLink","serializer","Mappers.SpatialAnchorsAccountPage","Parameters.subscriptionId","Parameters.resourceGroupName","Parameters.accountName","Mappers.SpatialAnchorsAccount","Parameters.spatialAnchorsAccount","Parameters.contentType","Mappers.AccountKeys","Parameters.regenerate","listBySubscriptionOperationSpec","listByResourceGroupOperationSpec","deleteOperationSpec","getOperationSpec","updateOperationSpec","createOperationSpec","listKeysOperationSpec","regenerateKeysOperationSpec","listBySubscriptionNextOperationSpec","listByResourceGroupNextOperationSpec","Mappers.RemoteRenderingAccountPage","Mappers.RemoteRenderingAccount","Parameters.remoteRenderingAccount","coreClient.ServiceClient","Mappers.CheckNameAvailabilityResponse","Parameters.checkNameAvailability","Parameters.location"],"mappings":"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"}
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(e){e.Invalid="Invalid",e.AlreadyExists="AlreadyExists"}(exports.KnownNameUnavailableReason||(exports.KnownNameUnavailableReason={})),function(e){e.User="User",e.Application="Application",e.ManagedIdentity="ManagedIdentity",e.Key="Key"}(exports.KnownCreatedByType||(exports.KnownCreatedByType={}));const OperationPage={type:{name:"Composite",className:"OperationPage",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"Operation"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},Operation={type:{name:"Composite",className:"Operation",modelProperties:{name:{serializedName:"name",type:{name:"String"}},display:{serializedName:"display",type:{name:"Composite",className:"OperationDisplay"}},isDataAction:{serializedName:"isDataAction",type:{name:"Boolean"}},origin:{serializedName:"origin",type:{name:"String"}},properties:{serializedName:"properties",type:{name:"Composite",className:"OperationProperties"}}}}},OperationDisplay={type:{name:"Composite",className:"OperationDisplay",modelProperties:{provider:{serializedName:"provider",required:!0,type:{name:"String"}},resource:{serializedName:"resource",required:!0,type:{name:"String"}},operation:{serializedName:"operation",required:!0,type:{name:"String"}},description:{serializedName:"description",required:!0,type:{name:"String"}}}}},OperationProperties={type:{name:"Composite",className:"OperationProperties",modelProperties:{serviceSpecification:{serializedName:"serviceSpecification",type:{name:"Composite",className:"ServiceSpecification"}}}}},ServiceSpecification={type:{name:"Composite",className:"ServiceSpecification",modelProperties:{logSpecifications:{serializedName:"logSpecifications",type:{name:"Sequence",element:{type:{name:"Composite",className:"LogSpecification"}}}},metricSpecifications:{serializedName:"metricSpecifications",type:{name:"Sequence",element:{type:{name:"Composite",className:"MetricSpecification"}}}}}}},LogSpecification={type:{name:"Composite",className:"LogSpecification",modelProperties:{name:{serializedName:"name",type:{name:"String"}},displayName:{serializedName:"displayName",type:{name:"String"}},blobDuration:{serializedName:"blobDuration",type:{name:"String"}}}}},MetricSpecification={type:{name:"Composite",className:"MetricSpecification",modelProperties:{name:{serializedName:"name",type:{name:"String"}},displayName:{serializedName:"displayName",type:{name:"String"}},displayDescription:{serializedName:"displayDescription",type:{name:"String"}},unit:{serializedName:"unit",type:{name:"String"}},aggregationType:{serializedName:"aggregationType",type:{name:"String"}},supportedAggregationTypes:{serializedName:"supportedAggregationTypes",type:{name:"Sequence",element:{type:{name:"String"}}}},supportedTimeGrainTypes:{serializedName:"supportedTimeGrainTypes",type:{name:"Sequence",element:{type:{name:"String"}}}},enableRegionalMdmAccount:{serializedName:"enableRegionalMdmAccount",type:{name:"Boolean"}},sourceMdmAccount:{serializedName:"sourceMdmAccount",type:{name:"String"}},sourceMdmNamespace:{serializedName:"sourceMdmNamespace",type:{name:"String"}},metricFilterPattern:{serializedName:"metricFilterPattern",type:{name:"String"}},fillGapWithZero:{serializedName:"fillGapWithZero",type:{name:"Boolean"}},category:{serializedName:"category",type:{name:"String"}},internalMetricName:{serializedName:"internalMetricName",type:{name:"String"}},dimensions:{serializedName:"dimensions",type:{name:"Sequence",element:{type:{name:"Composite",className:"MetricDimension"}}}},lockedAggregationType:{serializedName:"lockedAggregationType",type:{name:"String"}}}}},MetricDimension={type:{name:"Composite",className:"MetricDimension",modelProperties:{name:{serializedName:"name",type:{name:"String"}},displayName:{serializedName:"displayName",type:{name:"String"}},internalName:{serializedName:"internalName",type:{name:"String"}}}}},CloudError={type:{name:"Composite",className:"CloudError",modelProperties:{error:{serializedName:"error",type:{name:"Composite",className:"CloudErrorBody"}}}}},CloudErrorBody={type:{name:"Composite",className:"CloudErrorBody",modelProperties:{code:{serializedName:"code",type:{name:"String"}},message:{serializedName:"message",type:{name:"String"}},target:{serializedName:"target",type:{name:"String"}},details:{serializedName:"details",type:{name:"Sequence",element:{type:{name:"Composite",className:"CloudErrorBody"}}}}}}},CheckNameAvailabilityRequest={type:{name:"Composite",className:"CheckNameAvailabilityRequest",modelProperties:{name:{serializedName:"name",required:!0,type:{name:"String"}},type:{serializedName:"type",required:!0,type:{name:"String"}}}}},CheckNameAvailabilityResponse={type:{name:"Composite",className:"CheckNameAvailabilityResponse",modelProperties:{nameAvailable:{serializedName:"nameAvailable",required:!0,type:{name:"Boolean"}},reason:{serializedName:"reason",type:{name:"String"}},message:{serializedName:"message",type:{name:"String"}}}}},SpatialAnchorsAccountPage={type:{name:"Composite",className:"SpatialAnchorsAccountPage",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"SpatialAnchorsAccount"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},Identity={type:{name:"Composite",className:"Identity",modelProperties:{principalId:{serializedName:"principalId",readOnly:!0,type:{name:"String"}},tenantId:{serializedName:"tenantId",readOnly:!0,type:{name:"String"}},type:{defaultValue:"SystemAssigned",isConstant:!0,serializedName:"type",type:{name:"String"}}}}},Sku={type:{name:"Composite",className:"Sku",modelProperties:{name:{serializedName:"name",required:!0,type:{name:"String"}},tier:{serializedName:"tier",type:{name:"Enum",allowedValues:["Free","Basic","Standard","Premium"]}},size:{serializedName:"size",type:{name:"String"}},family:{serializedName:"family",type:{name:"String"}},capacity:{serializedName:"capacity",type:{name:"Number"}}}}},SystemData={type:{name:"Composite",className:"SystemData",modelProperties:{createdBy:{serializedName:"createdBy",type:{name:"String"}},createdByType:{serializedName:"createdByType",type:{name:"String"}},createdAt:{serializedName:"createdAt",type:{name:"DateTime"}},lastModifiedBy:{serializedName:"lastModifiedBy",type:{name:"String"}},lastModifiedByType:{serializedName:"lastModifiedByType",type:{name:"String"}},lastModifiedAt:{serializedName:"lastModifiedAt",type:{name:"DateTime"}}}}},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"}}}}},AccountKeys={type:{name:"Composite",className:"AccountKeys",modelProperties:{primaryKey:{serializedName:"primaryKey",readOnly:!0,type:{name:"String"}},secondaryKey:{serializedName:"secondaryKey",readOnly:!0,type:{name:"String"}}}}},AccountKeyRegenerateRequest={type:{name:"Composite",className:"AccountKeyRegenerateRequest",modelProperties:{serial:{defaultValue:"1",serializedName:"serial",type:{name:"Enum",allowedValues:[1,2]}}}}},RemoteRenderingAccountPage={type:{name:"Composite",className:"RemoteRenderingAccountPage",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"RemoteRenderingAccount"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},TrackedResource={type:{name:"Composite",className:"TrackedResource",modelProperties:Object.assign(Object.assign({},Resource.type.modelProperties),{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},location:{serializedName:"location",required:!0,type:{name:"String"}}})}},SpatialAnchorsAccount={type:{name:"Composite",className:"SpatialAnchorsAccount",modelProperties:Object.assign(Object.assign({},TrackedResource.type.modelProperties),{identity:{serializedName:"identity",type:{name:"Composite",className:"Identity"}},plan:{serializedName:"plan",type:{name:"Composite",className:"Identity"}},sku:{serializedName:"sku",type:{name:"Composite",className:"Sku"}},kind:{serializedName:"kind",type:{name:"Composite",className:"Sku"}},systemData:{serializedName:"systemData",type:{name:"Composite",className:"SystemData"}},storageAccountName:{serializedName:"properties.storageAccountName",type:{name:"String"}},accountId:{serializedName:"properties.accountId",readOnly:!0,type:{name:"String"}},accountDomain:{serializedName:"properties.accountDomain",readOnly:!0,type:{name:"String"}}})}},RemoteRenderingAccount={type:{name:"Composite",className:"RemoteRenderingAccount",modelProperties:Object.assign(Object.assign({},TrackedResource.type.modelProperties),{identity:{serializedName:"identity",type:{name:"Composite",className:"Identity"}},plan:{serializedName:"plan",type:{name:"Composite",className:"Identity"}},sku:{serializedName:"sku",type:{name:"Composite",className:"Sku"}},kind:{serializedName:"kind",type:{name:"Composite",className:"Sku"}},systemData:{serializedName:"systemData",type:{name:"Composite",className:"SystemData"}},storageAccountName:{serializedName:"properties.storageAccountName",type:{name:"String"}},accountId:{serializedName:"properties.accountId",readOnly:!0,type:{name:"String"}},accountDomain:{serializedName:"properties.accountDomain",readOnly:!0,type:{name:"String"}}})}};var Mappers=Object.freeze({__proto__:null,OperationPage:OperationPage,Operation:Operation,OperationDisplay:OperationDisplay,OperationProperties:OperationProperties,ServiceSpecification:ServiceSpecification,LogSpecification:LogSpecification,MetricSpecification:MetricSpecification,MetricDimension:MetricDimension,CloudError:CloudError,CloudErrorBody:CloudErrorBody,CheckNameAvailabilityRequest:CheckNameAvailabilityRequest,CheckNameAvailabilityResponse:CheckNameAvailabilityResponse,SpatialAnchorsAccountPage:SpatialAnchorsAccountPage,Identity:Identity,Sku:Sku,SystemData:SystemData,Resource:Resource,AccountKeys:AccountKeys,AccountKeyRegenerateRequest:AccountKeyRegenerateRequest,RemoteRenderingAccountPage:RemoteRenderingAccountPage,TrackedResource:TrackedResource,SpatialAnchorsAccount:SpatialAnchorsAccount,RemoteRenderingAccount:RemoteRenderingAccount});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-01-01",isConstant:!0,serializedName:"api-version",type:{name:"String"}}},nextLink={parameterPath:"nextLink",mapper:{serializedName:"nextLink",required:!0,type:{name:"String"}},skipEncoding:!0},contentType={parameterPath:["options","contentType"],mapper:{defaultValue:"application/json",isConstant:!0,serializedName:"Content-Type",type:{name:"String"}}},checkNameAvailability={parameterPath:"checkNameAvailability",mapper:CheckNameAvailabilityRequest},subscriptionId={parameterPath:"subscriptionId",mapper:{serializedName:"subscriptionId",required:!0,type:{name:"String"}}},location={parameterPath:"location",mapper:{constraints:{Pattern:new RegExp("^[-\\w\\._\\(\\)]+$"),MaxLength:90,MinLength:1},serializedName:"location",required:!0,type:{name:"String"}}},resourceGroupName={parameterPath:"resourceGroupName",mapper:{constraints:{Pattern:new RegExp("^[-\\w\\._\\(\\)]+$"),MaxLength:90,MinLength:1},serializedName:"resourceGroupName",required:!0,type:{name:"String"}}},accountName={parameterPath:"accountName",mapper:{constraints:{Pattern:new RegExp("^[-\\w\\._\\(\\)]+$"),MaxLength:90,MinLength:1},serializedName:"accountName",required:!0,type:{name:"String"}}},spatialAnchorsAccount={parameterPath:"spatialAnchorsAccount",mapper:SpatialAnchorsAccount},regenerate={parameterPath:"regenerate",mapper:AccountKeyRegenerateRequest},remoteRenderingAccount={parameterPath:"remoteRenderingAccount",mapper:RemoteRenderingAccount};class OperationsImpl{constructor(e){this.client=e}list(e){const t=this.listPagingAll(e);return{next(){return t.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listPagingPage(e)}}listPagingPage(r){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._list(r));yield yield tslib.__await(e.value||[]);let t=e.nextLink;for(;t;)e=yield tslib.__await(this._listNext(t,r)),t=e.nextLink,yield yield tslib.__await(e.value||[])})}listPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,a=tslib.__asyncValues(this.listPagingPage(s));!(r=yield tslib.__await(a.next())).done;){var i=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(t)throw t.error}}})}_list(e){return this.client.sendOperationRequest({options:e},listOperationSpec)}_listNext(e,t){return this.client.sendOperationRequest({nextLink:e,options:t},listNextOperationSpec)}}const serializer=coreClient.createSerializer(Mappers,!1),listOperationSpec={path:"/providers/Microsoft.MixedReality/operations",httpMethod:"GET",responses:{200:{bodyMapper:OperationPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host],headerParameters:[accept],serializer:serializer},listNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:OperationPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,nextLink],headerParameters:[accept],serializer:serializer};class SpatialAnchorsAccountsImpl{constructor(e){this.client=e}listBySubscription(e){const t=this.listBySubscriptionPagingAll(e);return{next(){return t.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listBySubscriptionPagingPage(e)}}listBySubscriptionPagingPage(r){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listBySubscription(r));yield yield tslib.__await(e.value||[]);let t=e.nextLink;for(;t;)e=yield tslib.__await(this._listBySubscriptionNext(t,r)),t=e.nextLink,yield yield tslib.__await(e.value||[])})}listBySubscriptionPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,a=tslib.__asyncValues(this.listBySubscriptionPagingPage(s));!(r=yield tslib.__await(a.next())).done;){var i=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(t)throw t.error}}})}listByResourceGroup(e,t){const r=this.listByResourceGroupPagingAll(e,t);return{next(){return r.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listByResourceGroupPagingPage(e,t)}}listByResourceGroupPagingPage(r,a){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listByResourceGroup(r,a));yield yield tslib.__await(e.value||[]);let t=e.nextLink;for(;t;)e=yield tslib.__await(this._listByResourceGroupNext(r,t,a)),t=e.nextLink,yield yield tslib.__await(e.value||[])})}listByResourceGroupPagingAll(s,o){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,a=tslib.__asyncValues(this.listByResourceGroupPagingPage(s,o));!(r=yield tslib.__await(a.next())).done;){var i=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(t)throw t.error}}})}_listBySubscription(e){return this.client.sendOperationRequest({options:e},listBySubscriptionOperationSpec)}_listByResourceGroup(e,t){return this.client.sendOperationRequest({resourceGroupName:e,options:t},listByResourceGroupOperationSpec)}delete(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,options:r},deleteOperationSpec)}get(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,options:r},getOperationSpec)}update(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,spatialAnchorsAccount:r,options:a},updateOperationSpec)}create(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,spatialAnchorsAccount:r,options:a},createOperationSpec)}listKeys(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,options:r},listKeysOperationSpec)}regenerateKeys(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,regenerate:r,options:a},regenerateKeysOperationSpec)}_listBySubscriptionNext(e,t){return this.client.sendOperationRequest({nextLink:e,options:t},listBySubscriptionNextOperationSpec)}_listByResourceGroupNext(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,nextLink:t,options:r},listByResourceGroupNextOperationSpec)}}const serializer$1=coreClient.createSerializer(Mappers,!1),listBySubscriptionOperationSpec={path:"/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/spatialAnchorsAccounts",httpMethod:"GET",responses:{200:{bodyMapper:SpatialAnchorsAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId],headerParameters:[accept],serializer:serializer$1},listByResourceGroupOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts",httpMethod:"GET",responses:{200:{bodyMapper:SpatialAnchorsAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer$1},deleteOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}",httpMethod:"DELETE",responses:{200:{},204:{},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept],serializer:serializer$1},getOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}",httpMethod:"GET",responses:{200:{bodyMapper:SpatialAnchorsAccount},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept],serializer:serializer$1},updateOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}",httpMethod:"PATCH",responses:{200:{bodyMapper:SpatialAnchorsAccount},default:{bodyMapper:CloudError}},requestBody:spatialAnchorsAccount,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$1},createOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}",httpMethod:"PUT",responses:{200:{bodyMapper:SpatialAnchorsAccount},201:{bodyMapper:SpatialAnchorsAccount},default:{bodyMapper:CloudError}},requestBody:spatialAnchorsAccount,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$1},listKeysOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}/listKeys",httpMethod:"POST",responses:{200:{bodyMapper:AccountKeys},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept],serializer:serializer$1},regenerateKeysOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}/regenerateKeys",httpMethod:"POST",responses:{200:{bodyMapper:AccountKeys},default:{bodyMapper:CloudError}},requestBody:regenerate,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$1},listBySubscriptionNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:SpatialAnchorsAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,nextLink,subscriptionId],headerParameters:[accept],serializer:serializer$1},listByResourceGroupNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:SpatialAnchorsAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,nextLink,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer$1};class RemoteRenderingAccountsImpl{constructor(e){this.client=e}listBySubscription(e){const t=this.listBySubscriptionPagingAll(e);return{next(){return t.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listBySubscriptionPagingPage(e)}}listBySubscriptionPagingPage(r){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listBySubscription(r));yield yield tslib.__await(e.value||[]);let t=e.nextLink;for(;t;)e=yield tslib.__await(this._listBySubscriptionNext(t,r)),t=e.nextLink,yield yield tslib.__await(e.value||[])})}listBySubscriptionPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,a=tslib.__asyncValues(this.listBySubscriptionPagingPage(s));!(r=yield tslib.__await(a.next())).done;){var i=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(t)throw t.error}}})}listByResourceGroup(e,t){const r=this.listByResourceGroupPagingAll(e,t);return{next(){return r.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listByResourceGroupPagingPage(e,t)}}listByResourceGroupPagingPage(r,a){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listByResourceGroup(r,a));yield yield tslib.__await(e.value||[]);let t=e.nextLink;for(;t;)e=yield tslib.__await(this._listByResourceGroupNext(r,t,a)),t=e.nextLink,yield yield tslib.__await(e.value||[])})}listByResourceGroupPagingAll(s,o){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,a=tslib.__asyncValues(this.listByResourceGroupPagingPage(s,o));!(r=yield tslib.__await(a.next())).done;){var i=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(t)throw t.error}}})}_listBySubscription(e){return this.client.sendOperationRequest({options:e},listBySubscriptionOperationSpec$1)}_listByResourceGroup(e,t){return this.client.sendOperationRequest({resourceGroupName:e,options:t},listByResourceGroupOperationSpec$1)}delete(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,options:r},deleteOperationSpec$1)}get(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,options:r},getOperationSpec$1)}update(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,remoteRenderingAccount:r,options:a},updateOperationSpec$1)}create(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,remoteRenderingAccount:r,options:a},createOperationSpec$1)}listKeys(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,options:r},listKeysOperationSpec$1)}regenerateKeys(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,regenerate:r,options:a},regenerateKeysOperationSpec$1)}_listBySubscriptionNext(e,t){return this.client.sendOperationRequest({nextLink:e,options:t},listBySubscriptionNextOperationSpec$1)}_listByResourceGroupNext(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,nextLink:t,options:r},listByResourceGroupNextOperationSpec$1)}}const serializer$2=coreClient.createSerializer(Mappers,!1),listBySubscriptionOperationSpec$1={path:"/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/remoteRenderingAccounts",httpMethod:"GET",responses:{200:{bodyMapper:RemoteRenderingAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId],headerParameters:[accept],serializer:serializer$2},listByResourceGroupOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts",httpMethod:"GET",responses:{200:{bodyMapper:RemoteRenderingAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer$2},deleteOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}",httpMethod:"DELETE",responses:{200:{},204:{},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept],serializer:serializer$2},getOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}",httpMethod:"GET",responses:{200:{bodyMapper:RemoteRenderingAccount},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept],serializer:serializer$2},updateOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}",httpMethod:"PATCH",responses:{200:{bodyMapper:RemoteRenderingAccount},default:{bodyMapper:CloudError}},requestBody:remoteRenderingAccount,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$2},createOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}",httpMethod:"PUT",responses:{200:{bodyMapper:RemoteRenderingAccount},201:{bodyMapper:RemoteRenderingAccount},default:{bodyMapper:CloudError}},requestBody:remoteRenderingAccount,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$2},listKeysOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}/listKeys",httpMethod:"POST",responses:{200:{bodyMapper:AccountKeys},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept],serializer:serializer$2},regenerateKeysOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}/regenerateKeys",httpMethod:"POST",responses:{200:{bodyMapper:AccountKeys},default:{bodyMapper:CloudError}},requestBody:regenerate,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$2},listBySubscriptionNextOperationSpec$1={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:RemoteRenderingAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,nextLink,subscriptionId],headerParameters:[accept],serializer:serializer$2},listByResourceGroupNextOperationSpec$1={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:RemoteRenderingAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,nextLink,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer$2};class MixedRealityClient extends coreClient.ServiceClient{constructor(e,t,r){if(void 0===e)throw new Error("'credentials' cannot be null");if(void 0===t)throw new Error("'subscriptionId' cannot be null");var a={requestContentType:"application/json; charset=utf-8",credential:e},e="azsdk-js-arm-mixedreality/4.0.0",e=(r=r||{}).userAgentOptions&&r.userAgentOptions.userAgentPrefix?r.userAgentOptions.userAgentPrefix+" "+e:e;r.credentialScopes||(r.credentialScopes=["https://management.azure.com/.default"]),super(Object.assign(Object.assign(Object.assign({},a),r),{userAgentOptions:{userAgentPrefix:e},baseUri:r.endpoint||"https://management.azure.com"})),this.subscriptionId=t,this.$host=r.$host||"https://management.azure.com",this.apiVersion=r.apiVersion||"2021-01-01",this.operations=new OperationsImpl(this),this.spatialAnchorsAccounts=new SpatialAnchorsAccountsImpl(this),this.remoteRenderingAccounts=new RemoteRenderingAccountsImpl(this)}checkNameAvailabilityLocal(e,t,r){return this.sendOperationRequest({location:e,checkNameAvailability:t,options:r},checkNameAvailabilityLocalOperationSpec)}}const serializer$3=coreClient.createSerializer(Mappers,!1),checkNameAvailabilityLocalOperationSpec={path:"/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/locations/{location}/checkNameAvailability",httpMethod:"POST",responses:{200:{bodyMapper:CheckNameAvailabilityResponse},default:{bodyMapper:CloudError}},requestBody:checkNameAvailability,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,location],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$3};exports.MixedRealityClient=MixedRealityClient;
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var coreClient=require("@azure/core-client"),tslib=require("tslib");!function(e){e.Invalid="Invalid",e.AlreadyExists="AlreadyExists"}(exports.KnownNameUnavailableReason||(exports.KnownNameUnavailableReason={})),function(e){e.User="User",e.Application="Application",e.ManagedIdentity="ManagedIdentity",e.Key="Key"}(exports.KnownCreatedByType||(exports.KnownCreatedByType={}));const OperationPage={type:{name:"Composite",className:"OperationPage",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"Operation"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},Operation={type:{name:"Composite",className:"Operation",modelProperties:{name:{serializedName:"name",type:{name:"String"}},display:{serializedName:"display",type:{name:"Composite",className:"OperationDisplay"}},isDataAction:{serializedName:"isDataAction",type:{name:"Boolean"}},origin:{serializedName:"origin",type:{name:"String"}},properties:{serializedName:"properties",type:{name:"Composite",className:"OperationProperties"}}}}},OperationDisplay={type:{name:"Composite",className:"OperationDisplay",modelProperties:{provider:{serializedName:"provider",required:!0,type:{name:"String"}},resource:{serializedName:"resource",required:!0,type:{name:"String"}},operation:{serializedName:"operation",required:!0,type:{name:"String"}},description:{serializedName:"description",required:!0,type:{name:"String"}}}}},OperationProperties={type:{name:"Composite",className:"OperationProperties",modelProperties:{serviceSpecification:{serializedName:"serviceSpecification",type:{name:"Composite",className:"ServiceSpecification"}}}}},ServiceSpecification={type:{name:"Composite",className:"ServiceSpecification",modelProperties:{logSpecifications:{serializedName:"logSpecifications",type:{name:"Sequence",element:{type:{name:"Composite",className:"LogSpecification"}}}},metricSpecifications:{serializedName:"metricSpecifications",type:{name:"Sequence",element:{type:{name:"Composite",className:"MetricSpecification"}}}}}}},LogSpecification={type:{name:"Composite",className:"LogSpecification",modelProperties:{name:{serializedName:"name",type:{name:"String"}},displayName:{serializedName:"displayName",type:{name:"String"}},blobDuration:{serializedName:"blobDuration",type:{name:"String"}}}}},MetricSpecification={type:{name:"Composite",className:"MetricSpecification",modelProperties:{name:{serializedName:"name",type:{name:"String"}},displayName:{serializedName:"displayName",type:{name:"String"}},displayDescription:{serializedName:"displayDescription",type:{name:"String"}},unit:{serializedName:"unit",type:{name:"String"}},aggregationType:{serializedName:"aggregationType",type:{name:"String"}},supportedAggregationTypes:{serializedName:"supportedAggregationTypes",type:{name:"Sequence",element:{type:{name:"String"}}}},supportedTimeGrainTypes:{serializedName:"supportedTimeGrainTypes",type:{name:"Sequence",element:{type:{name:"String"}}}},enableRegionalMdmAccount:{serializedName:"enableRegionalMdmAccount",type:{name:"Boolean"}},sourceMdmAccount:{serializedName:"sourceMdmAccount",type:{name:"String"}},sourceMdmNamespace:{serializedName:"sourceMdmNamespace",type:{name:"String"}},metricFilterPattern:{serializedName:"metricFilterPattern",type:{name:"String"}},fillGapWithZero:{serializedName:"fillGapWithZero",type:{name:"Boolean"}},category:{serializedName:"category",type:{name:"String"}},internalMetricName:{serializedName:"internalMetricName",type:{name:"String"}},dimensions:{serializedName:"dimensions",type:{name:"Sequence",element:{type:{name:"Composite",className:"MetricDimension"}}}},lockedAggregationType:{serializedName:"lockedAggregationType",type:{name:"String"}}}}},MetricDimension={type:{name:"Composite",className:"MetricDimension",modelProperties:{name:{serializedName:"name",type:{name:"String"}},displayName:{serializedName:"displayName",type:{name:"String"}},internalName:{serializedName:"internalName",type:{name:"String"}}}}},CloudError={type:{name:"Composite",className:"CloudError",modelProperties:{error:{serializedName:"error",type:{name:"Composite",className:"CloudErrorBody"}}}}},CloudErrorBody={type:{name:"Composite",className:"CloudErrorBody",modelProperties:{code:{serializedName:"code",type:{name:"String"}},message:{serializedName:"message",type:{name:"String"}},target:{serializedName:"target",type:{name:"String"}},details:{serializedName:"details",type:{name:"Sequence",element:{type:{name:"Composite",className:"CloudErrorBody"}}}}}}},CheckNameAvailabilityRequest={type:{name:"Composite",className:"CheckNameAvailabilityRequest",modelProperties:{name:{serializedName:"name",required:!0,type:{name:"String"}},type:{serializedName:"type",required:!0,type:{name:"String"}}}}},CheckNameAvailabilityResponse={type:{name:"Composite",className:"CheckNameAvailabilityResponse",modelProperties:{nameAvailable:{serializedName:"nameAvailable",required:!0,type:{name:"Boolean"}},reason:{serializedName:"reason",type:{name:"String"}},message:{serializedName:"message",type:{name:"String"}}}}},SpatialAnchorsAccountPage={type:{name:"Composite",className:"SpatialAnchorsAccountPage",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"SpatialAnchorsAccount"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},Identity={type:{name:"Composite",className:"Identity",modelProperties:{principalId:{serializedName:"principalId",readOnly:!0,type:{name:"String"}},tenantId:{serializedName:"tenantId",readOnly:!0,type:{name:"String"}},type:{defaultValue:"SystemAssigned",isConstant:!0,serializedName:"type",type:{name:"String"}}}}},Sku={type:{name:"Composite",className:"Sku",modelProperties:{name:{serializedName:"name",required:!0,type:{name:"String"}},tier:{serializedName:"tier",type:{name:"Enum",allowedValues:["Free","Basic","Standard","Premium"]}},size:{serializedName:"size",type:{name:"String"}},family:{serializedName:"family",type:{name:"String"}},capacity:{serializedName:"capacity",type:{name:"Number"}}}}},SystemData={type:{name:"Composite",className:"SystemData",modelProperties:{createdBy:{serializedName:"createdBy",type:{name:"String"}},createdByType:{serializedName:"createdByType",type:{name:"String"}},createdAt:{serializedName:"createdAt",type:{name:"DateTime"}},lastModifiedBy:{serializedName:"lastModifiedBy",type:{name:"String"}},lastModifiedByType:{serializedName:"lastModifiedByType",type:{name:"String"}},lastModifiedAt:{serializedName:"lastModifiedAt",type:{name:"DateTime"}}}}},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"}}}}},AccountKeys={type:{name:"Composite",className:"AccountKeys",modelProperties:{primaryKey:{serializedName:"primaryKey",readOnly:!0,type:{name:"String"}},secondaryKey:{serializedName:"secondaryKey",readOnly:!0,type:{name:"String"}}}}},AccountKeyRegenerateRequest={type:{name:"Composite",className:"AccountKeyRegenerateRequest",modelProperties:{serial:{defaultValue:"1",serializedName:"serial",type:{name:"Enum",allowedValues:[1,2]}}}}},RemoteRenderingAccountPage={type:{name:"Composite",className:"RemoteRenderingAccountPage",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"RemoteRenderingAccount"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},TrackedResource={type:{name:"Composite",className:"TrackedResource",modelProperties:Object.assign(Object.assign({},Resource.type.modelProperties),{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},location:{serializedName:"location",required:!0,type:{name:"String"}}})}},SpatialAnchorsAccount={type:{name:"Composite",className:"SpatialAnchorsAccount",modelProperties:Object.assign(Object.assign({},TrackedResource.type.modelProperties),{identity:{serializedName:"identity",type:{name:"Composite",className:"Identity"}},plan:{serializedName:"plan",type:{name:"Composite",className:"Identity"}},sku:{serializedName:"sku",type:{name:"Composite",className:"Sku"}},kind:{serializedName:"kind",type:{name:"Composite",className:"Sku"}},systemData:{serializedName:"systemData",type:{name:"Composite",className:"SystemData"}},storageAccountName:{serializedName:"properties.storageAccountName",type:{name:"String"}},accountId:{serializedName:"properties.accountId",readOnly:!0,type:{name:"String"}},accountDomain:{serializedName:"properties.accountDomain",readOnly:!0,type:{name:"String"}}})}},RemoteRenderingAccount={type:{name:"Composite",className:"RemoteRenderingAccount",modelProperties:Object.assign(Object.assign({},TrackedResource.type.modelProperties),{identity:{serializedName:"identity",type:{name:"Composite",className:"Identity"}},plan:{serializedName:"plan",type:{name:"Composite",className:"Identity"}},sku:{serializedName:"sku",type:{name:"Composite",className:"Sku"}},kind:{serializedName:"kind",type:{name:"Composite",className:"Sku"}},systemData:{serializedName:"systemData",type:{name:"Composite",className:"SystemData"}},storageAccountName:{serializedName:"properties.storageAccountName",type:{name:"String"}},accountId:{serializedName:"properties.accountId",readOnly:!0,type:{name:"String"}},accountDomain:{serializedName:"properties.accountDomain",readOnly:!0,type:{name:"String"}}})}};var Mappers=Object.freeze({__proto__:null,OperationPage:OperationPage,Operation:Operation,OperationDisplay:OperationDisplay,OperationProperties:OperationProperties,ServiceSpecification:ServiceSpecification,LogSpecification:LogSpecification,MetricSpecification:MetricSpecification,MetricDimension:MetricDimension,CloudError:CloudError,CloudErrorBody:CloudErrorBody,CheckNameAvailabilityRequest:CheckNameAvailabilityRequest,CheckNameAvailabilityResponse:CheckNameAvailabilityResponse,SpatialAnchorsAccountPage:SpatialAnchorsAccountPage,Identity:Identity,Sku:Sku,SystemData:SystemData,Resource:Resource,AccountKeys:AccountKeys,AccountKeyRegenerateRequest:AccountKeyRegenerateRequest,RemoteRenderingAccountPage:RemoteRenderingAccountPage,TrackedResource:TrackedResource,SpatialAnchorsAccount:SpatialAnchorsAccount,RemoteRenderingAccount:RemoteRenderingAccount});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-01-01",isConstant:!0,serializedName:"api-version",type:{name:"String"}}},nextLink={parameterPath:"nextLink",mapper:{serializedName:"nextLink",required:!0,type:{name:"String"}},skipEncoding:!0},contentType={parameterPath:["options","contentType"],mapper:{defaultValue:"application/json",isConstant:!0,serializedName:"Content-Type",type:{name:"String"}}},checkNameAvailability={parameterPath:"checkNameAvailability",mapper:CheckNameAvailabilityRequest},subscriptionId={parameterPath:"subscriptionId",mapper:{serializedName:"subscriptionId",required:!0,type:{name:"String"}}},location={parameterPath:"location",mapper:{constraints:{Pattern:new RegExp("^[-\\w\\._\\(\\)]+$"),MaxLength:90,MinLength:1},serializedName:"location",required:!0,type:{name:"String"}}},resourceGroupName={parameterPath:"resourceGroupName",mapper:{constraints:{Pattern:new RegExp("^[-\\w\\._\\(\\)]+$"),MaxLength:90,MinLength:1},serializedName:"resourceGroupName",required:!0,type:{name:"String"}}},accountName={parameterPath:"accountName",mapper:{constraints:{Pattern:new RegExp("^[-\\w\\._\\(\\)]+$"),MaxLength:90,MinLength:1},serializedName:"accountName",required:!0,type:{name:"String"}}},spatialAnchorsAccount={parameterPath:"spatialAnchorsAccount",mapper:SpatialAnchorsAccount},regenerate={parameterPath:"regenerate",mapper:AccountKeyRegenerateRequest},remoteRenderingAccount={parameterPath:"remoteRenderingAccount",mapper:RemoteRenderingAccount};class OperationsImpl{constructor(e){this.client=e}list(e){const t=this.listPagingAll(e);return{next(){return t.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listPagingPage(e)}}listPagingPage(r){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._list(r));yield yield tslib.__await(e.value||[]);let t=e.nextLink;for(;t;)e=yield tslib.__await(this._listNext(t,r)),t=e.nextLink,yield yield tslib.__await(e.value||[])})}listPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,a=tslib.__asyncValues(this.listPagingPage(s));!(r=yield tslib.__await(a.next())).done;){var i=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(t)throw t.error}}})}_list(e){return this.client.sendOperationRequest({options:e},listOperationSpec)}_listNext(e,t){return this.client.sendOperationRequest({nextLink:e,options:t},listNextOperationSpec)}}const serializer=coreClient.createSerializer(Mappers,!1),listOperationSpec={path:"/providers/Microsoft.MixedReality/operations",httpMethod:"GET",responses:{200:{bodyMapper:OperationPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host],headerParameters:[accept],serializer:serializer},listNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:OperationPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,nextLink],headerParameters:[accept],serializer:serializer};class SpatialAnchorsAccountsImpl{constructor(e){this.client=e}listBySubscription(e){const t=this.listBySubscriptionPagingAll(e);return{next(){return t.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listBySubscriptionPagingPage(e)}}listBySubscriptionPagingPage(r){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listBySubscription(r));yield yield tslib.__await(e.value||[]);let t=e.nextLink;for(;t;)e=yield tslib.__await(this._listBySubscriptionNext(t,r)),t=e.nextLink,yield yield tslib.__await(e.value||[])})}listBySubscriptionPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,a=tslib.__asyncValues(this.listBySubscriptionPagingPage(s));!(r=yield tslib.__await(a.next())).done;){var i=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(t)throw t.error}}})}listByResourceGroup(e,t){const r=this.listByResourceGroupPagingAll(e,t);return{next(){return r.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listByResourceGroupPagingPage(e,t)}}listByResourceGroupPagingPage(r,a){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listByResourceGroup(r,a));yield yield tslib.__await(e.value||[]);let t=e.nextLink;for(;t;)e=yield tslib.__await(this._listByResourceGroupNext(r,t,a)),t=e.nextLink,yield yield tslib.__await(e.value||[])})}listByResourceGroupPagingAll(s,o){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,a=tslib.__asyncValues(this.listByResourceGroupPagingPage(s,o));!(r=yield tslib.__await(a.next())).done;){var i=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(t)throw t.error}}})}_listBySubscription(e){return this.client.sendOperationRequest({options:e},listBySubscriptionOperationSpec)}_listByResourceGroup(e,t){return this.client.sendOperationRequest({resourceGroupName:e,options:t},listByResourceGroupOperationSpec)}delete(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,options:r},deleteOperationSpec)}get(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,options:r},getOperationSpec)}update(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,spatialAnchorsAccount:r,options:a},updateOperationSpec)}create(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,spatialAnchorsAccount:r,options:a},createOperationSpec)}listKeys(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,options:r},listKeysOperationSpec)}regenerateKeys(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,regenerate:r,options:a},regenerateKeysOperationSpec)}_listBySubscriptionNext(e,t){return this.client.sendOperationRequest({nextLink:e,options:t},listBySubscriptionNextOperationSpec)}_listByResourceGroupNext(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,nextLink:t,options:r},listByResourceGroupNextOperationSpec)}}const serializer$1=coreClient.createSerializer(Mappers,!1),listBySubscriptionOperationSpec={path:"/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/spatialAnchorsAccounts",httpMethod:"GET",responses:{200:{bodyMapper:SpatialAnchorsAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId],headerParameters:[accept],serializer:serializer$1},listByResourceGroupOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts",httpMethod:"GET",responses:{200:{bodyMapper:SpatialAnchorsAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer$1},deleteOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}",httpMethod:"DELETE",responses:{200:{},204:{},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept],serializer:serializer$1},getOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}",httpMethod:"GET",responses:{200:{bodyMapper:SpatialAnchorsAccount},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept],serializer:serializer$1},updateOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}",httpMethod:"PATCH",responses:{200:{bodyMapper:SpatialAnchorsAccount},default:{bodyMapper:CloudError}},requestBody:spatialAnchorsAccount,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$1},createOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}",httpMethod:"PUT",responses:{200:{bodyMapper:SpatialAnchorsAccount},201:{bodyMapper:SpatialAnchorsAccount},default:{bodyMapper:CloudError}},requestBody:spatialAnchorsAccount,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$1},listKeysOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}/listKeys",httpMethod:"POST",responses:{200:{bodyMapper:AccountKeys},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept],serializer:serializer$1},regenerateKeysOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/spatialAnchorsAccounts/{accountName}/regenerateKeys",httpMethod:"POST",responses:{200:{bodyMapper:AccountKeys},default:{bodyMapper:CloudError}},requestBody:regenerate,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$1},listBySubscriptionNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:SpatialAnchorsAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,nextLink,subscriptionId],headerParameters:[accept],serializer:serializer$1},listByResourceGroupNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:SpatialAnchorsAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,nextLink,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer$1};class RemoteRenderingAccountsImpl{constructor(e){this.client=e}listBySubscription(e){const t=this.listBySubscriptionPagingAll(e);return{next(){return t.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listBySubscriptionPagingPage(e)}}listBySubscriptionPagingPage(r){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listBySubscription(r));yield yield tslib.__await(e.value||[]);let t=e.nextLink;for(;t;)e=yield tslib.__await(this._listBySubscriptionNext(t,r)),t=e.nextLink,yield yield tslib.__await(e.value||[])})}listBySubscriptionPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,a=tslib.__asyncValues(this.listBySubscriptionPagingPage(s));!(r=yield tslib.__await(a.next())).done;){var i=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(t)throw t.error}}})}listByResourceGroup(e,t){const r=this.listByResourceGroupPagingAll(e,t);return{next(){return r.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listByResourceGroupPagingPage(e,t)}}listByResourceGroupPagingPage(r,a){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listByResourceGroup(r,a));yield yield tslib.__await(e.value||[]);let t=e.nextLink;for(;t;)e=yield tslib.__await(this._listByResourceGroupNext(r,t,a)),t=e.nextLink,yield yield tslib.__await(e.value||[])})}listByResourceGroupPagingAll(s,o){return tslib.__asyncGenerator(this,arguments,function*(){var t,e;try{for(var r,a=tslib.__asyncValues(this.listByResourceGroupPagingPage(s,o));!(r=yield tslib.__await(a.next())).done;){var i=r.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(t)throw t.error}}})}_listBySubscription(e){return this.client.sendOperationRequest({options:e},listBySubscriptionOperationSpec$1)}_listByResourceGroup(e,t){return this.client.sendOperationRequest({resourceGroupName:e,options:t},listByResourceGroupOperationSpec$1)}delete(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,options:r},deleteOperationSpec$1)}get(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,options:r},getOperationSpec$1)}update(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,remoteRenderingAccount:r,options:a},updateOperationSpec$1)}create(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,remoteRenderingAccount:r,options:a},createOperationSpec$1)}listKeys(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,options:r},listKeysOperationSpec$1)}regenerateKeys(e,t,r,a){return this.client.sendOperationRequest({resourceGroupName:e,accountName:t,regenerate:r,options:a},regenerateKeysOperationSpec$1)}_listBySubscriptionNext(e,t){return this.client.sendOperationRequest({nextLink:e,options:t},listBySubscriptionNextOperationSpec$1)}_listByResourceGroupNext(e,t,r){return this.client.sendOperationRequest({resourceGroupName:e,nextLink:t,options:r},listByResourceGroupNextOperationSpec$1)}}const serializer$2=coreClient.createSerializer(Mappers,!1),listBySubscriptionOperationSpec$1={path:"/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/remoteRenderingAccounts",httpMethod:"GET",responses:{200:{bodyMapper:RemoteRenderingAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId],headerParameters:[accept],serializer:serializer$2},listByResourceGroupOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts",httpMethod:"GET",responses:{200:{bodyMapper:RemoteRenderingAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer$2},deleteOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}",httpMethod:"DELETE",responses:{200:{},204:{},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept],serializer:serializer$2},getOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}",httpMethod:"GET",responses:{200:{bodyMapper:RemoteRenderingAccount},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept],serializer:serializer$2},updateOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}",httpMethod:"PATCH",responses:{200:{bodyMapper:RemoteRenderingAccount},default:{bodyMapper:CloudError}},requestBody:remoteRenderingAccount,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$2},createOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}",httpMethod:"PUT",responses:{200:{bodyMapper:RemoteRenderingAccount},201:{bodyMapper:RemoteRenderingAccount},default:{bodyMapper:CloudError}},requestBody:remoteRenderingAccount,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$2},listKeysOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}/listKeys",httpMethod:"POST",responses:{200:{bodyMapper:AccountKeys},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept],serializer:serializer$2},regenerateKeysOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MixedReality/remoteRenderingAccounts/{accountName}/regenerateKeys",httpMethod:"POST",responses:{200:{bodyMapper:AccountKeys},default:{bodyMapper:CloudError}},requestBody:regenerate,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,accountName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$2},listBySubscriptionNextOperationSpec$1={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:RemoteRenderingAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,nextLink,subscriptionId],headerParameters:[accept],serializer:serializer$2},listByResourceGroupNextOperationSpec$1={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:RemoteRenderingAccountPage},default:{bodyMapper:CloudError}},queryParameters:[apiVersion],urlParameters:[$host,nextLink,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer$2};class MixedRealityClient extends coreClient.ServiceClient{constructor(e,t,r){if(void 0===e)throw new Error("'credentials' cannot be null");if(void 0===t)throw new Error("'subscriptionId' cannot be null");var a={requestContentType:"application/json; charset=utf-8",credential:e},e="azsdk-js-arm-mixedreality/4.0.1",e=(r=r||{}).userAgentOptions&&r.userAgentOptions.userAgentPrefix?r.userAgentOptions.userAgentPrefix+" "+e:e;r.credentialScopes||(r.credentialScopes=["https://management.azure.com/.default"]),super(Object.assign(Object.assign(Object.assign({},a),r),{userAgentOptions:{userAgentPrefix:e},baseUri:r.endpoint||"https://management.azure.com"})),this.subscriptionId=t,this.$host=r.$host||"https://management.azure.com",this.apiVersion=r.apiVersion||"2021-01-01",this.operations=new OperationsImpl(this),this.spatialAnchorsAccounts=new SpatialAnchorsAccountsImpl(this),this.remoteRenderingAccounts=new RemoteRenderingAccountsImpl(this)}checkNameAvailabilityLocal(e,t,r){return this.sendOperationRequest({location:e,checkNameAvailability:t,options:r},checkNameAvailabilityLocalOperationSpec)}}const serializer$3=coreClient.createSerializer(Mappers,!1),checkNameAvailabilityLocalOperationSpec={path:"/subscriptions/{subscriptionId}/providers/Microsoft.MixedReality/locations/{location}/checkNameAvailability",httpMethod:"POST",responses:{200:{bodyMapper:CheckNameAvailabilityResponse},default:{bodyMapper:CloudError}},requestBody:checkNameAvailability,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,location],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$3};exports.MixedRealityClient=MixedRealityClient;
@@ -32,7 +32,7 @@ export class MixedRealityClient extends coreClient.ServiceClient {
32
32
  requestContentType: "application/json; charset=utf-8",
33
33
  credential: credentials
34
34
  };
35
- const packageDetails = `azsdk-js-arm-mixedreality/4.0.0`;
35
+ const packageDetails = `azsdk-js-arm-mixedreality/4.0.1`;
36
36
  const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
37
37
  ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
38
38
  : `${packageDetails}`;
package/package.json CHANGED
@@ -3,8 +3,10 @@
3
3
  "sdk-type": "mgmt",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "A generated SDK for MixedRealityClient.",
6
- "version": "4.0.0",
7
- "engines": { "node": ">=12.0.0" },
6
+ "version": "4.0.1-alpha.20220120.3",
7
+ "engines": {
8
+ "node": ">=12.0.0"
9
+ },
8
10
  "dependencies": {
9
11
  "@azure/core-paging": "^1.2.0",
10
12
  "@azure/core-client": "^1.0.0",
@@ -12,7 +14,13 @@
12
14
  "@azure/core-rest-pipeline": "^1.1.0",
13
15
  "tslib": "^2.2.0"
14
16
  },
15
- "keywords": ["node", "azure", "typescript", "browser", "isomorphic"],
17
+ "keywords": [
18
+ "node",
19
+ "azure",
20
+ "typescript",
21
+ "browser",
22
+ "isomorphic"
23
+ ],
16
24
  "license": "MIT",
17
25
  "main": "./dist/index.js",
18
26
  "module": "./dist-esm/src/index.js",
@@ -39,7 +47,9 @@
39
47
  "type": "git",
40
48
  "url": "https://github.com/Azure/azure-sdk-for-js.git"
41
49
  },
42
- "bugs": { "url": "https://github.com/Azure/azure-sdk-for-js/issues" },
50
+ "bugs": {
51
+ "url": "https://github.com/Azure/azure-sdk-for-js/issues"
52
+ },
43
53
  "files": [
44
54
  "dist/**/*.js",
45
55
  "dist/**/*.js.map",
@@ -88,13 +98,18 @@
88
98
  "sideEffects": false,
89
99
  "//metadata": {
90
100
  "constantPaths": [
91
- { "path": "src/MixedRealityClient.ts", "prefix": "packageDetails" }
101
+ {
102
+ "path": "src/MixedRealityClient.ts",
103
+ "prefix": "packageDetails"
104
+ }
92
105
  ]
93
106
  },
94
107
  "autoPublish": true,
95
108
  "//sampleConfiguration": {
96
109
  "productName": "",
97
- "productSlugs": ["azure"],
110
+ "productSlugs": [
111
+ "azure"
112
+ ],
98
113
  "disableDocsMs": true,
99
114
  "apiRefLink": "https://docs.microsoft.com/javascript/api/@azure/arm-mixedreality?view=azure-node-preview"
100
115
  }
@@ -60,7 +60,7 @@ export class MixedRealityClient extends coreClient.ServiceClient {
60
60
  credential: credentials
61
61
  };
62
62
 
63
- const packageDetails = `azsdk-js-arm-mixedreality/4.0.0`;
63
+ const packageDetails = `azsdk-js-arm-mixedreality/4.0.1`;
64
64
  const userAgentPrefix =
65
65
  options.userAgentOptions && options.userAgentOptions.userAgentPrefix
66
66
  ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`