@azure/arm-portal 1.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/CHANGELOG.md +3 -0
  2. package/LICENSE +21 -0
  3. package/README.md +98 -0
  4. package/dist/index.js +1627 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.min.js +1 -0
  7. package/dist/index.min.js.map +1 -0
  8. package/dist-esm/src/index.d.ts +5 -0
  9. package/dist-esm/src/index.d.ts.map +1 -0
  10. package/dist-esm/src/index.js +12 -0
  11. package/dist-esm/src/index.js.map +1 -0
  12. package/dist-esm/src/models/index.d.ts +334 -0
  13. package/dist-esm/src/models/index.d.ts.map +1 -0
  14. package/dist-esm/src/models/index.js +13 -0
  15. package/dist-esm/src/models/index.js.map +1 -0
  16. package/dist-esm/src/models/mappers.d.ts +28 -0
  17. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  18. package/dist-esm/src/models/mappers.js +624 -0
  19. package/dist-esm/src/models/mappers.js.map +1 -0
  20. package/dist-esm/src/models/parameters.d.ts +14 -0
  21. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  22. package/dist-esm/src/models/parameters.js +120 -0
  23. package/dist-esm/src/models/parameters.js.map +1 -0
  24. package/dist-esm/src/operations/dashboards.d.ts +83 -0
  25. package/dist-esm/src/operations/dashboards.d.ts.map +1 -0
  26. package/dist-esm/src/operations/dashboards.js +361 -0
  27. package/dist-esm/src/operations/dashboards.js.map +1 -0
  28. package/dist-esm/src/operations/index.d.ts +5 -0
  29. package/dist-esm/src/operations/index.d.ts.map +1 -0
  30. package/dist-esm/src/operations/index.js +12 -0
  31. package/dist-esm/src/operations/index.js.map +1 -0
  32. package/dist-esm/src/operations/listTenantConfigurationViolations.d.ts +32 -0
  33. package/dist-esm/src/operations/listTenantConfigurationViolations.d.ts.map +1 -0
  34. package/dist-esm/src/operations/listTenantConfigurationViolations.js +120 -0
  35. package/dist-esm/src/operations/listTenantConfigurationViolations.js.map +1 -0
  36. package/dist-esm/src/operations/operations.d.ts +32 -0
  37. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  38. package/dist-esm/src/operations/operations.js +120 -0
  39. package/dist-esm/src/operations/operations.js.map +1 -0
  40. package/dist-esm/src/operations/tenantConfigurations.d.ts +52 -0
  41. package/dist-esm/src/operations/tenantConfigurations.d.ts.map +1 -0
  42. package/dist-esm/src/operations/tenantConfigurations.js +199 -0
  43. package/dist-esm/src/operations/tenantConfigurations.js.map +1 -0
  44. package/dist-esm/src/operationsInterfaces/dashboards.d.ts +47 -0
  45. package/dist-esm/src/operationsInterfaces/dashboards.d.ts.map +1 -0
  46. package/dist-esm/src/operationsInterfaces/dashboards.js +9 -0
  47. package/dist-esm/src/operationsInterfaces/dashboards.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
  49. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  50. package/dist-esm/src/operationsInterfaces/index.js +12 -0
  51. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/listTenantConfigurationViolations.d.ts +11 -0
  53. package/dist-esm/src/operationsInterfaces/listTenantConfigurationViolations.d.ts.map +1 -0
  54. package/dist-esm/src/operationsInterfaces/listTenantConfigurationViolations.js +9 -0
  55. package/dist-esm/src/operationsInterfaces/listTenantConfigurationViolations.js.map +1 -0
  56. package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
  57. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  58. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  59. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  60. package/dist-esm/src/operationsInterfaces/tenantConfigurations.d.ts +31 -0
  61. package/dist-esm/src/operationsInterfaces/tenantConfigurations.d.ts.map +1 -0
  62. package/dist-esm/src/operationsInterfaces/tenantConfigurations.js +9 -0
  63. package/dist-esm/src/operationsInterfaces/tenantConfigurations.js.map +1 -0
  64. package/dist-esm/src/portal.d.ts +22 -0
  65. package/dist-esm/src/portal.d.ts.map +1 -0
  66. package/dist-esm/src/portal.js +55 -0
  67. package/dist-esm/src/portal.js.map +1 -0
  68. package/dist-esm/test/sampleTest.d.ts +2 -0
  69. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  70. package/dist-esm/test/sampleTest.js +40 -0
  71. package/dist-esm/test/sampleTest.js.map +1 -0
  72. package/package.json +90 -0
  73. package/review/arm-portal.api.md +349 -0
  74. package/rollup.config.js +188 -0
  75. package/src/index.ts +12 -0
  76. package/src/models/index.ts +389 -0
  77. package/src/models/mappers.ts +658 -0
  78. package/src/models/parameters.ts +141 -0
  79. package/src/operations/dashboards.ts +451 -0
  80. package/src/operations/index.ts +12 -0
  81. package/src/operations/listTenantConfigurationViolations.ts +138 -0
  82. package/src/operations/operations.ts +137 -0
  83. package/src/operations/tenantConfigurations.ts +244 -0
  84. package/src/operationsInterfaces/dashboards.ts +91 -0
  85. package/src/operationsInterfaces/index.ts +12 -0
  86. package/src/operationsInterfaces/listTenantConfigurationViolations.ts +25 -0
  87. package/src/operationsInterfaces/operations.ts +25 -0
  88. package/src/operationsInterfaces/tenantConfigurations.ts +61 -0
  89. package/src/portal.ts +94 -0
  90. package/tsconfig.json +19 -0
  91. package/types/arm-portal.d.ts +505 -0
  92. package/types/tsdoc-metadata.json +11 -0
@@ -0,0 +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/dashboards.ts","../src/operations/tenantConfigurations.ts","../src/operations/listTenantConfigurationViolations.ts","../src/portal.ts"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\nexport type DashboardPartMetadataUnion =\n | DashboardPartMetadata\n | MarkdownPartMetadata;\n\n/** Results of the request to list operations. */\nexport interface ResourceProviderOperationList {\n /** List of operations supported by this resource provider. */\n value?: ResourceProviderOperation[];\n /** The URL to use for getting the next set of results. */\n nextLink?: string;\n}\n\n/** Supported operations of this resource provider. */\nexport interface ResourceProviderOperation {\n /** Operation name, in format of {provider}/{resource}/{operation} */\n name?: string;\n /** Indicates whether the operation applies to data-plane. */\n isDataAction?: string;\n /** Display metadata associated with the operation. */\n display?: ResourceProviderOperationDisplay;\n}\n\n/** Display metadata associated with the operation. */\nexport interface ResourceProviderOperationDisplay {\n /** Resource provider: Microsoft Custom Providers. */\n provider?: string;\n /** Resource on which the operation is performed. */\n resource?: string;\n /** Type of operation: get, read, delete, etc. */\n operation?: string;\n /** Description of this operation. */\n description?: string;\n}\n\n/** Error response. */\nexport interface ErrorResponse {\n /** The error details. */\n error?: ErrorDefinition;\n}\n\n/** Error definition. */\nexport interface ErrorDefinition {\n /**\n * Service specific error code which serves as the substatus for the HTTP error code.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly code?: number;\n /**\n * Description of the error.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly message?: string;\n /**\n * Internal error details.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly details?: ErrorDefinition[];\n}\n\n/** The shared dashboard resource definition. */\nexport interface Dashboard {\n /**\n * Resource Id\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * Resource name\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * Resource type\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly type?: string;\n /** Resource location */\n location: string;\n /** Resource tags */\n tags?: { [propertyName: string]: string };\n /** The dashboard lenses. */\n lenses?: DashboardLens[];\n /** The dashboard metadata. */\n metadata?: { [propertyName: string]: Record<string, unknown> };\n}\n\n/** A dashboard lens. */\nexport interface DashboardLens {\n /** The lens order. */\n order: number;\n /** The dashboard parts. */\n parts: DashboardParts[];\n /** The dashboard len's metadata. */\n metadata?: { [propertyName: string]: Record<string, unknown> };\n}\n\n/** A dashboard part. */\nexport interface DashboardParts {\n /** The dashboard's part position. */\n position: DashboardPartsPosition;\n /** The dashboard part's metadata. */\n metadata?: DashboardPartMetadataUnion;\n}\n\n/** The dashboard's part position. */\nexport interface DashboardPartsPosition {\n /** The dashboard's part x coordinate. */\n x: number;\n /** The dashboard's part y coordinate. */\n y: number;\n /** The dashboard's part row span. */\n rowSpan: number;\n /** The dashboard's part column span. */\n colSpan: number;\n /** The dashboard part's metadata. */\n metadata?: { [propertyName: string]: Record<string, unknown> };\n}\n\n/** A dashboard part metadata. */\nexport interface DashboardPartMetadata {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n type: \"Extension/HubsExtension/PartType/MarkdownPart\";\n /** Describes unknown properties. The value of an unknown property can be of \"any\" type. */\n [property: string]: any;\n}\n\n/** The shared dashboard resource definition. */\nexport interface PatchableDashboard {\n /** Resource tags */\n tags?: { [propertyName: string]: string };\n /** The dashboard lenses. */\n lenses?: DashboardLens[];\n /** The dashboard metadata. */\n metadata?: { [propertyName: string]: Record<string, unknown> };\n}\n\n/** List of dashboards. */\nexport interface DashboardListResult {\n /** The array of custom resource provider manifests. */\n value?: Dashboard[];\n /** The URL to use for getting the next set of results. */\n nextLink?: string;\n}\n\n/** List of tenant configurations. */\nexport interface ConfigurationList {\n /** The array of tenant configurations. */\n value?: Configuration[];\n /** The URL to use for getting the next set of results. */\n nextLink?: string;\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/** List of list of items that violate tenant's configuration. */\nexport interface ViolationsList {\n /** The array of violations. */\n value?: Violation[];\n /** The URL to use for getting the next set of results. */\n nextLink?: string;\n}\n\n/** Violation information. */\nexport interface Violation {\n /**\n * Id of the item that violates tenant configuration.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly id?: string;\n /**\n * Id of the user who owns violated item.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly userId?: string;\n /**\n * Error message.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly errorMessage?: string;\n}\n\n/** Markdown part settings. */\nexport interface MarkdownPartMetadataSettings {\n /** The content of markdown part. */\n content?: MarkdownPartMetadataSettingsContent;\n}\n\n/** The content of markdown part. */\nexport interface MarkdownPartMetadataSettingsContent {\n /** The setting of the content of markdown part. */\n settings?: MarkdownPartMetadataSettingsContentSettings;\n}\n\n/** The setting of the content of markdown part. */\nexport interface MarkdownPartMetadataSettingsContentSettings {\n /** The content of the markdown part. */\n content?: string;\n /** The title of the markdown part. */\n title?: string;\n /** The subtitle of the markdown part. */\n subtitle?: string;\n /** The source of the content of the markdown part. */\n markdownSource?: number;\n /** The uri of markdown content. */\n markdownUri?: string;\n}\n\n/** Markdown part metadata. */\nexport type MarkdownPartMetadata = DashboardPartMetadata & {\n /** Polymorphic discriminator, which specifies the different types this object can be */\n type: \"Extension/HubsExtension/PartType/MarkdownPart\";\n /** Input to dashboard part. */\n inputs?: Record<string, unknown>[];\n /** Markdown part settings. */\n settings?: MarkdownPartMetadataSettings;\n};\n\n/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */\nexport type ProxyResource = Resource & {};\n\n/** Tenant configuration. */\nexport type Configuration = ProxyResource & {\n /** When flag is set to true Markdown tile will require external storage configuration (URI). The inline content configuration will be prohibited. */\n enforcePrivateMarkdownStorage?: boolean;\n};\n\n/** Known values of {@link ConfigurationName} that the service accepts. */\nexport enum KnownConfigurationName {\n Default = \"default\"\n}\n\n/**\n * Defines values for ConfigurationName. \\\n * {@link KnownConfigurationName} can be used interchangeably with ConfigurationName,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **default**\n */\nexport type ConfigurationName = string;\n\n/** Optional parameters. */\nexport interface OperationsListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type OperationsListResponse = ResourceProviderOperationList;\n\n/** Optional parameters. */\nexport interface OperationsListNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listNext operation. */\nexport type OperationsListNextResponse = ResourceProviderOperationList;\n\n/** Optional parameters. */\nexport interface DashboardsCreateOrUpdateOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the createOrUpdate operation. */\nexport type DashboardsCreateOrUpdateResponse = Dashboard;\n\n/** Optional parameters. */\nexport interface DashboardsDeleteOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface DashboardsGetOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the get operation. */\nexport type DashboardsGetResponse = Dashboard;\n\n/** Optional parameters. */\nexport interface DashboardsUpdateOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the update operation. */\nexport type DashboardsUpdateResponse = Dashboard;\n\n/** Optional parameters. */\nexport interface DashboardsListByResourceGroupOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listByResourceGroup operation. */\nexport type DashboardsListByResourceGroupResponse = DashboardListResult;\n\n/** Optional parameters. */\nexport interface DashboardsListBySubscriptionOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listBySubscription operation. */\nexport type DashboardsListBySubscriptionResponse = DashboardListResult;\n\n/** Optional parameters. */\nexport interface DashboardsListByResourceGroupNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listByResourceGroupNext operation. */\nexport type DashboardsListByResourceGroupNextResponse = DashboardListResult;\n\n/** Optional parameters. */\nexport interface DashboardsListBySubscriptionNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listBySubscriptionNext operation. */\nexport type DashboardsListBySubscriptionNextResponse = DashboardListResult;\n\n/** Optional parameters. */\nexport interface TenantConfigurationsListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type TenantConfigurationsListResponse = ConfigurationList;\n\n/** Optional parameters. */\nexport interface TenantConfigurationsGetOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the get operation. */\nexport type TenantConfigurationsGetResponse = Configuration;\n\n/** Optional parameters. */\nexport interface TenantConfigurationsCreateOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the create operation. */\nexport type TenantConfigurationsCreateResponse = Configuration;\n\n/** Optional parameters. */\nexport interface TenantConfigurationsDeleteOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Optional parameters. */\nexport interface TenantConfigurationsListNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listNext operation. */\nexport type TenantConfigurationsListNextResponse = ConfigurationList;\n\n/** Optional parameters. */\nexport interface ListTenantConfigurationViolationsListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type ListTenantConfigurationViolationsListResponse = ViolationsList;\n\n/** Optional parameters. */\nexport interface ListTenantConfigurationViolationsListNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listNext operation. */\nexport type ListTenantConfigurationViolationsListNextResponse = ViolationsList;\n\n/** Optional parameters. */\nexport interface PortalOptionalParams extends coreClient.ServiceClientOptions {\n /** server parameter */\n $host?: string;\n /** Api Version */\n apiVersion?: string;\n /** Overrides client endpoint. */\n endpoint?: string;\n}\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\nexport const ResourceProviderOperationList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperation\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ResourceProviderOperation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperation\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n isDataAction: {\n serializedName: \"isDataAction\",\n type: {\n name: \"String\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDisplay\"\n }\n }\n }\n }\n};\n\nexport const ResourceProviderOperationDisplay: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ResourceProviderOperationDisplay\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"resource\",\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"description\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ErrorResponse: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ErrorResponse\",\n modelProperties: {\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"ErrorDefinition\"\n }\n }\n }\n }\n};\n\nexport const ErrorDefinition: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ErrorDefinition\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n readOnly: true,\n type: {\n name: \"Number\"\n }\n },\n message: {\n serializedName: \"message\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"details\",\n readOnly: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ErrorDefinition\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const Dashboard: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Dashboard\",\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 location: {\n serializedName: \"location\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n lenses: {\n serializedName: \"properties.lenses\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DashboardLens\"\n }\n }\n }\n },\n metadata: {\n serializedName: \"properties.metadata\",\n type: {\n name: \"Dictionary\",\n value: {\n type: { name: \"Dictionary\", value: { type: { name: \"any\" } } }\n }\n }\n }\n }\n }\n};\n\nexport const DashboardLens: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DashboardLens\",\n modelProperties: {\n order: {\n serializedName: \"order\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n parts: {\n serializedName: \"parts\",\n required: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DashboardParts\"\n }\n }\n }\n },\n metadata: {\n serializedName: \"metadata\",\n type: {\n name: \"Dictionary\",\n value: {\n type: { name: \"Dictionary\", value: { type: { name: \"any\" } } }\n }\n }\n }\n }\n }\n};\n\nexport const DashboardParts: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DashboardParts\",\n modelProperties: {\n position: {\n serializedName: \"position\",\n type: {\n name: \"Composite\",\n className: \"DashboardPartsPosition\"\n }\n },\n metadata: {\n serializedName: \"metadata\",\n type: {\n name: \"Composite\",\n className: \"DashboardPartMetadata\"\n }\n }\n }\n }\n};\n\nexport const DashboardPartsPosition: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DashboardPartsPosition\",\n modelProperties: {\n x: {\n serializedName: \"x\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n y: {\n serializedName: \"y\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n rowSpan: {\n serializedName: \"rowSpan\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n colSpan: {\n serializedName: \"colSpan\",\n required: true,\n type: {\n name: \"Number\"\n }\n },\n metadata: {\n serializedName: \"metadata\",\n type: {\n name: \"Dictionary\",\n value: {\n type: { name: \"Dictionary\", value: { type: { name: \"any\" } } }\n }\n }\n }\n }\n }\n};\n\nexport const DashboardPartMetadata: coreClient.CompositeMapper = {\n serializedName: \"DashboardPartMetadata\",\n type: {\n name: \"Composite\",\n className: \"DashboardPartMetadata\",\n uberParent: \"DashboardPartMetadata\",\n additionalProperties: { type: { name: \"Object\" } },\n polymorphicDiscriminator: {\n serializedName: \"type\",\n clientName: \"type\"\n },\n modelProperties: {\n type: {\n serializedName: \"type\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const PatchableDashboard: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"PatchableDashboard\",\n modelProperties: {\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n lenses: {\n serializedName: \"properties.lenses\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"DashboardLens\"\n }\n }\n }\n },\n metadata: {\n serializedName: \"properties.metadata\",\n type: {\n name: \"Dictionary\",\n value: {\n type: { name: \"Dictionary\", value: { type: { name: \"any\" } } }\n }\n }\n }\n }\n }\n};\n\nexport const DashboardListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"DashboardListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Dashboard\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ConfigurationList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ConfigurationList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Configuration\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\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 ViolationsList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ViolationsList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Violation\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const Violation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Violation\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n userId: {\n serializedName: \"userId\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n errorMessage: {\n serializedName: \"errorMessage\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const MarkdownPartMetadataSettings: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"MarkdownPartMetadataSettings\",\n modelProperties: {\n content: {\n serializedName: \"content\",\n type: {\n name: \"Composite\",\n className: \"MarkdownPartMetadataSettingsContent\"\n }\n }\n }\n }\n};\n\nexport const MarkdownPartMetadataSettingsContent: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"MarkdownPartMetadataSettingsContent\",\n modelProperties: {\n settings: {\n serializedName: \"settings\",\n type: {\n name: \"Composite\",\n className: \"MarkdownPartMetadataSettingsContentSettings\"\n }\n }\n }\n }\n};\n\nexport const MarkdownPartMetadataSettingsContentSettings: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"MarkdownPartMetadataSettingsContentSettings\",\n modelProperties: {\n content: {\n serializedName: \"content\",\n type: {\n name: \"String\"\n }\n },\n title: {\n serializedName: \"title\",\n type: {\n name: \"String\"\n }\n },\n subtitle: {\n serializedName: \"subtitle\",\n type: {\n name: \"String\"\n }\n },\n markdownSource: {\n serializedName: \"markdownSource\",\n type: {\n name: \"Number\"\n }\n },\n markdownUri: {\n serializedName: \"markdownUri\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const MarkdownPartMetadata: coreClient.CompositeMapper = {\n serializedName: \"Extension/HubsExtension/PartType/MarkdownPart\",\n type: {\n name: \"Composite\",\n className: \"MarkdownPartMetadata\",\n uberParent: \"DashboardPartMetadata\",\n additionalProperties: { type: { name: \"Object\" } },\n polymorphicDiscriminator:\n DashboardPartMetadata.type.polymorphicDiscriminator,\n modelProperties: {\n ...DashboardPartMetadata.type.modelProperties,\n inputs: {\n serializedName: \"inputs\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"any\" } }\n }\n }\n }\n },\n settings: {\n serializedName: \"settings\",\n type: {\n name: \"Composite\",\n className: \"MarkdownPartMetadataSettings\"\n }\n }\n }\n }\n};\n\nexport const ProxyResource: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ProxyResource\",\n modelProperties: {\n ...Resource.type.modelProperties\n }\n }\n};\n\nexport const Configuration: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Configuration\",\n modelProperties: {\n ...ProxyResource.type.modelProperties,\n enforcePrivateMarkdownStorage: {\n serializedName: \"properties.enforcePrivateMarkdownStorage\",\n type: {\n name: \"Boolean\"\n }\n }\n }\n }\n};\n\nexport let discriminators = {\n DashboardPartMetadata: DashboardPartMetadata,\n \"DashboardPartMetadata.Extension/HubsExtension/PartType/MarkdownPart\": MarkdownPartMetadata\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 Dashboard as DashboardMapper,\n PatchableDashboard as PatchableDashboardMapper,\n Configuration as ConfigurationMapper\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: \"2020-09-01-preview\",\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 dashboard: OperationParameter = {\n parameterPath: \"dashboard\",\n mapper: DashboardMapper\n};\n\nexport const subscriptionId: OperationURLParameter = {\n parameterPath: \"subscriptionId\",\n mapper: {\n serializedName: \"subscriptionId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const resourceGroupName: OperationURLParameter = {\n parameterPath: \"resourceGroupName\",\n mapper: {\n serializedName: \"resourceGroupName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const dashboardName: OperationURLParameter = {\n parameterPath: \"dashboardName\",\n mapper: {\n constraints: {\n MaxLength: 64,\n MinLength: 3\n },\n serializedName: \"dashboardName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const dashboard1: OperationParameter = {\n parameterPath: \"dashboard\",\n mapper: PatchableDashboardMapper\n};\n\nexport const configurationName: OperationURLParameter = {\n parameterPath: \"configurationName\",\n mapper: {\n serializedName: \"configurationName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const tenantConfiguration: OperationParameter = {\n parameterPath: \"tenantConfiguration\",\n mapper: ConfigurationMapper\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 { Portal } from \"../portal\";\nimport {\n ResourceProviderOperation,\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: Portal;\n\n /**\n * Initialize a new instance of the class Operations class.\n * @param client Reference to the service client\n */\n constructor(client: Portal) {\n this.client = client;\n }\n\n /**\n * The Microsoft Portal operations API.\n * @param options The options parameters.\n */\n public list(\n options?: OperationsListOptionalParams\n ): PagedAsyncIterableIterator<ResourceProviderOperation> {\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<ResourceProviderOperation[]> {\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<ResourceProviderOperation> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * The Microsoft Portal operations API.\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.Portal/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ResourceProviderOperationList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ResourceProviderOperationList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\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 { Dashboards } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { Portal } from \"../portal\";\nimport {\n Dashboard,\n DashboardsListByResourceGroupNextOptionalParams,\n DashboardsListByResourceGroupOptionalParams,\n DashboardsListBySubscriptionNextOptionalParams,\n DashboardsListBySubscriptionOptionalParams,\n DashboardsCreateOrUpdateOptionalParams,\n DashboardsCreateOrUpdateResponse,\n DashboardsDeleteOptionalParams,\n DashboardsGetOptionalParams,\n DashboardsGetResponse,\n PatchableDashboard,\n DashboardsUpdateOptionalParams,\n DashboardsUpdateResponse,\n DashboardsListByResourceGroupResponse,\n DashboardsListBySubscriptionResponse,\n DashboardsListByResourceGroupNextResponse,\n DashboardsListBySubscriptionNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Dashboards operations. */\nexport class DashboardsImpl implements Dashboards {\n private readonly client: Portal;\n\n /**\n * Initialize a new instance of the class Dashboards class.\n * @param client Reference to the service client\n */\n constructor(client: Portal) {\n this.client = client;\n }\n\n /**\n * Gets all the Dashboards within a resource group.\n * @param resourceGroupName The name of the resource group.\n * @param options The options parameters.\n */\n public listByResourceGroup(\n resourceGroupName: string,\n options?: DashboardsListByResourceGroupOptionalParams\n ): PagedAsyncIterableIterator<Dashboard> {\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?: DashboardsListByResourceGroupOptionalParams\n ): AsyncIterableIterator<Dashboard[]> {\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?: DashboardsListByResourceGroupOptionalParams\n ): AsyncIterableIterator<Dashboard> {\n for await (const page of this.listByResourceGroupPagingPage(\n resourceGroupName,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * Gets all the dashboards within a subscription.\n * @param options The options parameters.\n */\n public listBySubscription(\n options?: DashboardsListBySubscriptionOptionalParams\n ): PagedAsyncIterableIterator<Dashboard> {\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?: DashboardsListBySubscriptionOptionalParams\n ): AsyncIterableIterator<Dashboard[]> {\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?: DashboardsListBySubscriptionOptionalParams\n ): AsyncIterableIterator<Dashboard> {\n for await (const page of this.listBySubscriptionPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Creates or updates a Dashboard.\n * @param resourceGroupName The name of the resource group.\n * @param dashboardName The name of the dashboard.\n * @param dashboard The parameters required to create or update a dashboard.\n * @param options The options parameters.\n */\n createOrUpdate(\n resourceGroupName: string,\n dashboardName: string,\n dashboard: Dashboard,\n options?: DashboardsCreateOrUpdateOptionalParams\n ): Promise<DashboardsCreateOrUpdateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, dashboardName, dashboard, options },\n createOrUpdateOperationSpec\n );\n }\n\n /**\n * Deletes the Dashboard.\n * @param resourceGroupName The name of the resource group.\n * @param dashboardName The name of the dashboard.\n * @param options The options parameters.\n */\n delete(\n resourceGroupName: string,\n dashboardName: string,\n options?: DashboardsDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { resourceGroupName, dashboardName, options },\n deleteOperationSpec\n );\n }\n\n /**\n * Gets the Dashboard.\n * @param resourceGroupName The name of the resource group.\n * @param dashboardName The name of the dashboard.\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n dashboardName: string,\n options?: DashboardsGetOptionalParams\n ): Promise<DashboardsGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, dashboardName, options },\n getOperationSpec\n );\n }\n\n /**\n * Updates an existing Dashboard.\n * @param resourceGroupName The name of the resource group.\n * @param dashboardName The name of the dashboard.\n * @param dashboard The updatable fields of a Dashboard.\n * @param options The options parameters.\n */\n update(\n resourceGroupName: string,\n dashboardName: string,\n dashboard: PatchableDashboard,\n options?: DashboardsUpdateOptionalParams\n ): Promise<DashboardsUpdateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, dashboardName, dashboard, options },\n updateOperationSpec\n );\n }\n\n /**\n * Gets all the Dashboards within a resource group.\n * @param resourceGroupName The name of the resource group.\n * @param options The options parameters.\n */\n private _listByResourceGroup(\n resourceGroupName: string,\n options?: DashboardsListByResourceGroupOptionalParams\n ): Promise<DashboardsListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, options },\n listByResourceGroupOperationSpec\n );\n }\n\n /**\n * Gets all the dashboards within a subscription.\n * @param options The options parameters.\n */\n private _listBySubscription(\n options?: DashboardsListBySubscriptionOptionalParams\n ): Promise<DashboardsListBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionOperationSpec\n );\n }\n\n /**\n * ListByResourceGroupNext\n * @param resourceGroupName The name of the 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?: DashboardsListByResourceGroupNextOptionalParams\n ): Promise<DashboardsListByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, nextLink, options },\n listByResourceGroupNextOperationSpec\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?: DashboardsListBySubscriptionNextOptionalParams\n ): Promise<DashboardsListBySubscriptionNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listBySubscriptionNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst createOrUpdateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Portal/dashboards/{dashboardName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.Dashboard\n },\n 201: {\n bodyMapper: Mappers.Dashboard\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n requestBody: Parameters.dashboard,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.dashboardName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Portal/dashboards/{dashboardName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n 204: {},\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.dashboardName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Portal/dashboards/{dashboardName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.Dashboard\n },\n 404: {},\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.dashboardName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst updateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Portal/dashboards/{dashboardName}\",\n httpMethod: \"PATCH\",\n responses: {\n 200: {\n bodyMapper: Mappers.Dashboard\n },\n 404: {},\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n requestBody: Parameters.dashboard1,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.dashboardName\n ],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst listByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Portal/dashboards\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DashboardListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\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 listBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path: \"/subscriptions/{subscriptionId}/providers/Microsoft.Portal/dashboards\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DashboardListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DashboardListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\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};\nconst listBySubscriptionNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.DashboardListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\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};\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 { TenantConfigurations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { Portal } from \"../portal\";\nimport {\n Configuration,\n TenantConfigurationsListNextOptionalParams,\n TenantConfigurationsListOptionalParams,\n TenantConfigurationsListResponse,\n ConfigurationName,\n TenantConfigurationsGetOptionalParams,\n TenantConfigurationsGetResponse,\n TenantConfigurationsCreateOptionalParams,\n TenantConfigurationsCreateResponse,\n TenantConfigurationsDeleteOptionalParams,\n TenantConfigurationsListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing TenantConfigurations operations. */\nexport class TenantConfigurationsImpl implements TenantConfigurations {\n private readonly client: Portal;\n\n /**\n * Initialize a new instance of the class TenantConfigurations class.\n * @param client Reference to the service client\n */\n constructor(client: Portal) {\n this.client = client;\n }\n\n /**\n * Gets list of the tenant configurations.\n * @param options The options parameters.\n */\n public list(\n options?: TenantConfigurationsListOptionalParams\n ): PagedAsyncIterableIterator<Configuration> {\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?: TenantConfigurationsListOptionalParams\n ): AsyncIterableIterator<Configuration[]> {\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?: TenantConfigurationsListOptionalParams\n ): AsyncIterableIterator<Configuration> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Gets list of the tenant configurations.\n * @param options The options parameters.\n */\n private _list(\n options?: TenantConfigurationsListOptionalParams\n ): Promise<TenantConfigurationsListResponse> {\n return this.client.sendOperationRequest({ options }, listOperationSpec);\n }\n\n /**\n * Gets the tenant configuration.\n * @param configurationName The configuration name. Value must be 'default'\n * @param options The options parameters.\n */\n get(\n configurationName: ConfigurationName,\n options?: TenantConfigurationsGetOptionalParams\n ): Promise<TenantConfigurationsGetResponse> {\n return this.client.sendOperationRequest(\n { configurationName, options },\n getOperationSpec\n );\n }\n\n /**\n * Create the tenant configuration. If configuration already exists - update it. User has to be a\n * Tenant Admin for this operation.\n * @param configurationName The configuration name. Value must be 'default'\n * @param tenantConfiguration The parameters required to create or update tenant configuration.\n * @param options The options parameters.\n */\n create(\n configurationName: ConfigurationName,\n tenantConfiguration: Configuration,\n options?: TenantConfigurationsCreateOptionalParams\n ): Promise<TenantConfigurationsCreateResponse> {\n return this.client.sendOperationRequest(\n { configurationName, tenantConfiguration, options },\n createOperationSpec\n );\n }\n\n /**\n * Delete the tenant configuration. User has to be a Tenant Admin for this operation.\n * @param configurationName The configuration name. Value must be 'default'\n * @param options The options parameters.\n */\n delete(\n configurationName: ConfigurationName,\n options?: TenantConfigurationsDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { configurationName, options },\n deleteOperationSpec\n );\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?: TenantConfigurationsListNextOptionalParams\n ): Promise<TenantConfigurationsListNextResponse> {\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.Portal/tenantConfigurations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ConfigurationList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Portal/tenantConfigurations/{configurationName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.Configuration\n },\n 404: {},\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.configurationName],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst createOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Portal/tenantConfigurations/{configurationName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.Configuration\n },\n 201: {\n bodyMapper: Mappers.Configuration\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n requestBody: Parameters.tenantConfiguration,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.configurationName],\n headerParameters: [Parameters.accept, Parameters.contentType],\n mediaType: \"json\",\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.Portal/tenantConfigurations/{configurationName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n 204: {},\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.configurationName],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ConfigurationList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\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 { ListTenantConfigurationViolations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { Portal } from \"../portal\";\nimport {\n Violation,\n ListTenantConfigurationViolationsListNextOptionalParams,\n ListTenantConfigurationViolationsListOptionalParams,\n ListTenantConfigurationViolationsListResponse,\n ListTenantConfigurationViolationsListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing ListTenantConfigurationViolations operations. */\nexport class ListTenantConfigurationViolationsImpl\n implements ListTenantConfigurationViolations {\n private readonly client: Portal;\n\n /**\n * Initialize a new instance of the class ListTenantConfigurationViolations class.\n * @param client Reference to the service client\n */\n constructor(client: Portal) {\n this.client = client;\n }\n\n /**\n * Gets list of items that violate tenant's configuration.\n * @param options The options parameters.\n */\n public list(\n options?: ListTenantConfigurationViolationsListOptionalParams\n ): PagedAsyncIterableIterator<Violation> {\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?: ListTenantConfigurationViolationsListOptionalParams\n ): AsyncIterableIterator<Violation[]> {\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?: ListTenantConfigurationViolationsListOptionalParams\n ): AsyncIterableIterator<Violation> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Gets list of items that violate tenant's configuration.\n * @param options The options parameters.\n */\n private _list(\n options?: ListTenantConfigurationViolationsListOptionalParams\n ): Promise<ListTenantConfigurationViolationsListResponse> {\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?: ListTenantConfigurationViolationsListNextOptionalParams\n ): Promise<ListTenantConfigurationViolationsListNextResponse> {\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.Portal/listTenantConfigurationViolations\",\n httpMethod: \"POST\",\n responses: {\n 200: {\n bodyMapper: Mappers.ViolationsList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\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.ViolationsList\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\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 * as coreClient from \"@azure/core-client\";\nimport * as coreAuth from \"@azure/core-auth\";\nimport {\n OperationsImpl,\n DashboardsImpl,\n TenantConfigurationsImpl,\n ListTenantConfigurationViolationsImpl\n} from \"./operations\";\nimport {\n Operations,\n Dashboards,\n TenantConfigurations,\n ListTenantConfigurationViolations\n} from \"./operationsInterfaces\";\nimport { PortalOptionalParams } from \"./models\";\n\nexport class Portal extends coreClient.ServiceClient {\n $host: string;\n apiVersion: string;\n subscriptionId: string;\n\n /**\n * Initializes a new instance of the Portal 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?: PortalOptionalParams\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: PortalOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-arm-portal/1.0.0-beta.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 || \"2020-09-01-preview\";\n this.operations = new OperationsImpl(this);\n this.dashboards = new DashboardsImpl(this);\n this.tenantConfigurations = new TenantConfigurationsImpl(this);\n this.listTenantConfigurationViolations = new ListTenantConfigurationViolationsImpl(\n this\n );\n }\n\n operations: Operations;\n dashboards: Dashboards;\n tenantConfigurations: TenantConfigurations;\n listTenantConfigurationViolations: ListTenantConfigurationViolations;\n}\n"],"names":["KnownConfigurationName","DashboardMapper","PatchableDashboardMapper","ConfigurationMapper","__asyncValues","__asyncDelegator","coreClient.createSerializer","Mappers.ResourceProviderOperationList","Mappers.ErrorResponse","Parameters.apiVersion","Parameters.$host","Parameters.accept","Parameters.nextLink","serializer","Mappers.Dashboard","Parameters.dashboard","Parameters.subscriptionId","Parameters.resourceGroupName","Parameters.dashboardName","Parameters.contentType","Parameters.dashboard1","Mappers.DashboardListResult","listOperationSpec","getOperationSpec","deleteOperationSpec","listNextOperationSpec","Mappers.ConfigurationList","Mappers.Configuration","Parameters.configurationName","Parameters.tenantConfiguration","Mappers.ViolationsList","coreClient.ServiceClient"],"mappings":"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"}
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});var coreClient=require("@azure/core-client"),tslib=require("tslib");(exports.KnownConfigurationName||(exports.KnownConfigurationName={})).Default="default";const ResourceProviderOperationList={type:{name:"Composite",className:"ResourceProviderOperationList",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"ResourceProviderOperation"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},ResourceProviderOperation={type:{name:"Composite",className:"ResourceProviderOperation",modelProperties:{name:{serializedName:"name",type:{name:"String"}},isDataAction:{serializedName:"isDataAction",type:{name:"String"}},display:{serializedName:"display",type:{name:"Composite",className:"ResourceProviderOperationDisplay"}}}}},ResourceProviderOperationDisplay={type:{name:"Composite",className:"ResourceProviderOperationDisplay",modelProperties:{provider:{serializedName:"provider",type:{name:"String"}},resource:{serializedName:"resource",type:{name:"String"}},operation:{serializedName:"operation",type:{name:"String"}},description:{serializedName:"description",type:{name:"String"}}}}},ErrorResponse={type:{name:"Composite",className:"ErrorResponse",modelProperties:{error:{serializedName:"error",type:{name:"Composite",className:"ErrorDefinition"}}}}},ErrorDefinition={type:{name:"Composite",className:"ErrorDefinition",modelProperties:{code:{serializedName:"code",readOnly:!0,type:{name:"Number"}},message:{serializedName:"message",readOnly:!0,type:{name:"String"}},details:{serializedName:"details",readOnly:!0,type:{name:"Sequence",element:{type:{name:"Composite",className:"ErrorDefinition"}}}}}}},Dashboard={type:{name:"Composite",className:"Dashboard",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"}},location:{serializedName:"location",required:!0,type:{name:"String"}},tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},lenses:{serializedName:"properties.lenses",type:{name:"Sequence",element:{type:{name:"Composite",className:"DashboardLens"}}}},metadata:{serializedName:"properties.metadata",type:{name:"Dictionary",value:{type:{name:"Dictionary",value:{type:{name:"any"}}}}}}}}},DashboardLens={type:{name:"Composite",className:"DashboardLens",modelProperties:{order:{serializedName:"order",required:!0,type:{name:"Number"}},parts:{serializedName:"parts",required:!0,type:{name:"Sequence",element:{type:{name:"Composite",className:"DashboardParts"}}}},metadata:{serializedName:"metadata",type:{name:"Dictionary",value:{type:{name:"Dictionary",value:{type:{name:"any"}}}}}}}}},DashboardParts={type:{name:"Composite",className:"DashboardParts",modelProperties:{position:{serializedName:"position",type:{name:"Composite",className:"DashboardPartsPosition"}},metadata:{serializedName:"metadata",type:{name:"Composite",className:"DashboardPartMetadata"}}}}},DashboardPartsPosition={type:{name:"Composite",className:"DashboardPartsPosition",modelProperties:{x:{serializedName:"x",required:!0,type:{name:"Number"}},y:{serializedName:"y",required:!0,type:{name:"Number"}},rowSpan:{serializedName:"rowSpan",required:!0,type:{name:"Number"}},colSpan:{serializedName:"colSpan",required:!0,type:{name:"Number"}},metadata:{serializedName:"metadata",type:{name:"Dictionary",value:{type:{name:"Dictionary",value:{type:{name:"any"}}}}}}}}},DashboardPartMetadata={serializedName:"DashboardPartMetadata",type:{name:"Composite",className:"DashboardPartMetadata",uberParent:"DashboardPartMetadata",additionalProperties:{type:{name:"Object"}},polymorphicDiscriminator:{serializedName:"type",clientName:"type"},modelProperties:{type:{serializedName:"type",required:!0,type:{name:"String"}}}}},PatchableDashboard={type:{name:"Composite",className:"PatchableDashboard",modelProperties:{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},lenses:{serializedName:"properties.lenses",type:{name:"Sequence",element:{type:{name:"Composite",className:"DashboardLens"}}}},metadata:{serializedName:"properties.metadata",type:{name:"Dictionary",value:{type:{name:"Dictionary",value:{type:{name:"any"}}}}}}}}},DashboardListResult={type:{name:"Composite",className:"DashboardListResult",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"Dashboard"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},ConfigurationList={type:{name:"Composite",className:"ConfigurationList",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"Configuration"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},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"}}}}},ViolationsList={type:{name:"Composite",className:"ViolationsList",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"Violation"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},Violation={type:{name:"Composite",className:"Violation",modelProperties:{id:{serializedName:"id",readOnly:!0,type:{name:"String"}},userId:{serializedName:"userId",readOnly:!0,type:{name:"String"}},errorMessage:{serializedName:"errorMessage",readOnly:!0,type:{name:"String"}}}}},MarkdownPartMetadataSettings={type:{name:"Composite",className:"MarkdownPartMetadataSettings",modelProperties:{content:{serializedName:"content",type:{name:"Composite",className:"MarkdownPartMetadataSettingsContent"}}}}},MarkdownPartMetadataSettingsContent={type:{name:"Composite",className:"MarkdownPartMetadataSettingsContent",modelProperties:{settings:{serializedName:"settings",type:{name:"Composite",className:"MarkdownPartMetadataSettingsContentSettings"}}}}},MarkdownPartMetadataSettingsContentSettings={type:{name:"Composite",className:"MarkdownPartMetadataSettingsContentSettings",modelProperties:{content:{serializedName:"content",type:{name:"String"}},title:{serializedName:"title",type:{name:"String"}},subtitle:{serializedName:"subtitle",type:{name:"String"}},markdownSource:{serializedName:"markdownSource",type:{name:"Number"}},markdownUri:{serializedName:"markdownUri",type:{name:"String"}}}}},MarkdownPartMetadata={serializedName:"Extension/HubsExtension/PartType/MarkdownPart",type:{name:"Composite",className:"MarkdownPartMetadata",uberParent:"DashboardPartMetadata",additionalProperties:{type:{name:"Object"}},polymorphicDiscriminator:DashboardPartMetadata.type.polymorphicDiscriminator,modelProperties:Object.assign(Object.assign({},DashboardPartMetadata.type.modelProperties),{inputs:{serializedName:"inputs",type:{name:"Sequence",element:{type:{name:"Dictionary",value:{type:{name:"any"}}}}}},settings:{serializedName:"settings",type:{name:"Composite",className:"MarkdownPartMetadataSettings"}}})}},ProxyResource={type:{name:"Composite",className:"ProxyResource",modelProperties:Object.assign({},Resource.type.modelProperties)}},Configuration={type:{name:"Composite",className:"Configuration",modelProperties:Object.assign(Object.assign({},ProxyResource.type.modelProperties),{enforcePrivateMarkdownStorage:{serializedName:"properties.enforcePrivateMarkdownStorage",type:{name:"Boolean"}}})}};let discriminators={DashboardPartMetadata:DashboardPartMetadata,"DashboardPartMetadata.Extension/HubsExtension/PartType/MarkdownPart":MarkdownPartMetadata};var Mappers=Object.freeze({__proto__:null,ResourceProviderOperationList:ResourceProviderOperationList,ResourceProviderOperation:ResourceProviderOperation,ResourceProviderOperationDisplay:ResourceProviderOperationDisplay,ErrorResponse:ErrorResponse,ErrorDefinition:ErrorDefinition,Dashboard:Dashboard,DashboardLens:DashboardLens,DashboardParts:DashboardParts,DashboardPartsPosition:DashboardPartsPosition,DashboardPartMetadata:DashboardPartMetadata,PatchableDashboard:PatchableDashboard,DashboardListResult:DashboardListResult,ConfigurationList:ConfigurationList,Resource:Resource,ViolationsList:ViolationsList,Violation:Violation,MarkdownPartMetadataSettings:MarkdownPartMetadataSettings,MarkdownPartMetadataSettingsContent:MarkdownPartMetadataSettingsContent,MarkdownPartMetadataSettingsContentSettings:MarkdownPartMetadataSettingsContentSettings,MarkdownPartMetadata:MarkdownPartMetadata,ProxyResource:ProxyResource,Configuration:Configuration,discriminators:discriminators});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:"2020-09-01-preview",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"}}},dashboard={parameterPath:"dashboard",mapper:Dashboard},subscriptionId={parameterPath:"subscriptionId",mapper:{serializedName:"subscriptionId",required:!0,type:{name:"String"}}},resourceGroupName={parameterPath:"resourceGroupName",mapper:{serializedName:"resourceGroupName",required:!0,type:{name:"String"}}},dashboardName={parameterPath:"dashboardName",mapper:{constraints:{MaxLength:64,MinLength:3},serializedName:"dashboardName",required:!0,type:{name:"String"}}},dashboard1={parameterPath:"dashboard",mapper:PatchableDashboard},configurationName={parameterPath:"configurationName",mapper:{serializedName:"configurationName",required:!0,type:{name:"String"}}},tenantConfiguration={parameterPath:"tenantConfiguration",mapper:Configuration};class OperationsImpl{constructor(e){this.client=e}list(e){const a=this.listPagingAll(e);return{next(){return a.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listPagingPage(e)}}listPagingPage(t){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._list(t));yield yield tslib.__await(e.value||[]);let a=e.nextLink;for(;a;)e=yield tslib.__await(this._listNext(a,t)),a=e.nextLink,yield yield tslib.__await(e.value||[])})}listPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var a,e;try{for(var t,r=tslib.__asyncValues(this.listPagingPage(s));!(t=yield tslib.__await(r.next())).done;){var i=t.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){a={error:e}}finally{try{t&&!t.done&&(e=r.return)&&(yield tslib.__await(e.call(r)))}finally{if(a)throw a.error}}})}_list(e){return this.client.sendOperationRequest({options:e},listOperationSpec)}_listNext(e,a){return this.client.sendOperationRequest({nextLink:e,options:a},listNextOperationSpec)}}const serializer=coreClient.createSerializer(Mappers,!1),listOperationSpec={path:"/providers/Microsoft.Portal/operations",httpMethod:"GET",responses:{200:{bodyMapper:ResourceProviderOperationList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host],headerParameters:[accept],serializer:serializer},listNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:ResourceProviderOperationList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host,nextLink],headerParameters:[accept],serializer:serializer};class DashboardsImpl{constructor(e){this.client=e}listByResourceGroup(e,a){const t=this.listByResourceGroupPagingAll(e,a);return{next(){return t.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listByResourceGroupPagingPage(e,a)}}listByResourceGroupPagingPage(t,r){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listByResourceGroup(t,r));yield yield tslib.__await(e.value||[]);let a=e.nextLink;for(;a;)e=yield tslib.__await(this._listByResourceGroupNext(t,a,r)),a=e.nextLink,yield yield tslib.__await(e.value||[])})}listByResourceGroupPagingAll(s,o){return tslib.__asyncGenerator(this,arguments,function*(){var a,e;try{for(var t,r=tslib.__asyncValues(this.listByResourceGroupPagingPage(s,o));!(t=yield tslib.__await(r.next())).done;){var i=t.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){a={error:e}}finally{try{t&&!t.done&&(e=r.return)&&(yield tslib.__await(e.call(r)))}finally{if(a)throw a.error}}})}listBySubscription(e){const a=this.listBySubscriptionPagingAll(e);return{next(){return a.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listBySubscriptionPagingPage(e)}}listBySubscriptionPagingPage(t){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._listBySubscription(t));yield yield tslib.__await(e.value||[]);let a=e.nextLink;for(;a;)e=yield tslib.__await(this._listBySubscriptionNext(a,t)),a=e.nextLink,yield yield tslib.__await(e.value||[])})}listBySubscriptionPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var a,e;try{for(var t,r=tslib.__asyncValues(this.listBySubscriptionPagingPage(s));!(t=yield tslib.__await(r.next())).done;){var i=t.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){a={error:e}}finally{try{t&&!t.done&&(e=r.return)&&(yield tslib.__await(e.call(r)))}finally{if(a)throw a.error}}})}createOrUpdate(e,a,t,r){return this.client.sendOperationRequest({resourceGroupName:e,dashboardName:a,dashboard:t,options:r},createOrUpdateOperationSpec)}delete(e,a,t){return this.client.sendOperationRequest({resourceGroupName:e,dashboardName:a,options:t},deleteOperationSpec)}get(e,a,t){return this.client.sendOperationRequest({resourceGroupName:e,dashboardName:a,options:t},getOperationSpec)}update(e,a,t,r){return this.client.sendOperationRequest({resourceGroupName:e,dashboardName:a,dashboard:t,options:r},updateOperationSpec)}_listByResourceGroup(e,a){return this.client.sendOperationRequest({resourceGroupName:e,options:a},listByResourceGroupOperationSpec)}_listBySubscription(e){return this.client.sendOperationRequest({options:e},listBySubscriptionOperationSpec)}_listByResourceGroupNext(e,a,t){return this.client.sendOperationRequest({resourceGroupName:e,nextLink:a,options:t},listByResourceGroupNextOperationSpec)}_listBySubscriptionNext(e,a){return this.client.sendOperationRequest({nextLink:e,options:a},listBySubscriptionNextOperationSpec)}}const serializer$1=coreClient.createSerializer(Mappers,!1),createOrUpdateOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Portal/dashboards/{dashboardName}",httpMethod:"PUT",responses:{200:{bodyMapper:Dashboard},201:{bodyMapper:Dashboard},default:{bodyMapper:ErrorResponse}},requestBody:dashboard,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,dashboardName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$1},deleteOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Portal/dashboards/{dashboardName}",httpMethod:"DELETE",responses:{200:{},204:{},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,dashboardName],headerParameters:[accept],serializer:serializer$1},getOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Portal/dashboards/{dashboardName}",httpMethod:"GET",responses:{200:{bodyMapper:Dashboard},404:{},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,dashboardName],headerParameters:[accept],serializer:serializer$1},updateOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Portal/dashboards/{dashboardName}",httpMethod:"PATCH",responses:{200:{bodyMapper:Dashboard},404:{},default:{bodyMapper:ErrorResponse}},requestBody:dashboard1,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,dashboardName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$1},listByResourceGroupOperationSpec={path:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Portal/dashboards",httpMethod:"GET",responses:{200:{bodyMapper:DashboardListResult},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer$1},listBySubscriptionOperationSpec={path:"/subscriptions/{subscriptionId}/providers/Microsoft.Portal/dashboards",httpMethod:"GET",responses:{200:{bodyMapper:DashboardListResult},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId],headerParameters:[accept],serializer:serializer$1},listByResourceGroupNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:DashboardListResult},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host,nextLink,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer$1},listBySubscriptionNextOperationSpec={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:DashboardListResult},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host,nextLink,subscriptionId],headerParameters:[accept],serializer:serializer$1};class TenantConfigurationsImpl{constructor(e){this.client=e}list(e){const a=this.listPagingAll(e);return{next(){return a.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listPagingPage(e)}}listPagingPage(t){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._list(t));yield yield tslib.__await(e.value||[]);let a=e.nextLink;for(;a;)e=yield tslib.__await(this._listNext(a,t)),a=e.nextLink,yield yield tslib.__await(e.value||[])})}listPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var a,e;try{for(var t,r=tslib.__asyncValues(this.listPagingPage(s));!(t=yield tslib.__await(r.next())).done;){var i=t.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){a={error:e}}finally{try{t&&!t.done&&(e=r.return)&&(yield tslib.__await(e.call(r)))}finally{if(a)throw a.error}}})}_list(e){return this.client.sendOperationRequest({options:e},listOperationSpec$1)}get(e,a){return this.client.sendOperationRequest({configurationName:e,options:a},getOperationSpec$1)}create(e,a,t){return this.client.sendOperationRequest({configurationName:e,tenantConfiguration:a,options:t},createOperationSpec)}delete(e,a){return this.client.sendOperationRequest({configurationName:e,options:a},deleteOperationSpec$1)}_listNext(e,a){return this.client.sendOperationRequest({nextLink:e,options:a},listNextOperationSpec$1)}}const serializer$2=coreClient.createSerializer(Mappers,!1),listOperationSpec$1={path:"/providers/Microsoft.Portal/tenantConfigurations",httpMethod:"GET",responses:{200:{bodyMapper:ConfigurationList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host],headerParameters:[accept],serializer:serializer$2},getOperationSpec$1={path:"/providers/Microsoft.Portal/tenantConfigurations/{configurationName}",httpMethod:"GET",responses:{200:{bodyMapper:Configuration},404:{},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host,configurationName],headerParameters:[accept],serializer:serializer$2},createOperationSpec={path:"/providers/Microsoft.Portal/tenantConfigurations/{configurationName}",httpMethod:"PUT",responses:{200:{bodyMapper:Configuration},201:{bodyMapper:Configuration},default:{bodyMapper:ErrorResponse}},requestBody:tenantConfiguration,queryParameters:[apiVersion],urlParameters:[$host,configurationName],headerParameters:[accept,contentType],mediaType:"json",serializer:serializer$2},deleteOperationSpec$1={path:"/providers/Microsoft.Portal/tenantConfigurations/{configurationName}",httpMethod:"DELETE",responses:{200:{},204:{},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host,configurationName],headerParameters:[accept],serializer:serializer$2},listNextOperationSpec$1={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:ConfigurationList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host,nextLink],headerParameters:[accept],serializer:serializer$2};class ListTenantConfigurationViolationsImpl{constructor(e){this.client=e}list(e){const a=this.listPagingAll(e);return{next(){return a.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listPagingPage(e)}}listPagingPage(t){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._list(t));yield yield tslib.__await(e.value||[]);let a=e.nextLink;for(;a;)e=yield tslib.__await(this._listNext(a,t)),a=e.nextLink,yield yield tslib.__await(e.value||[])})}listPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var a,e;try{for(var t,r=tslib.__asyncValues(this.listPagingPage(s));!(t=yield tslib.__await(r.next())).done;){var i=t.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){a={error:e}}finally{try{t&&!t.done&&(e=r.return)&&(yield tslib.__await(e.call(r)))}finally{if(a)throw a.error}}})}_list(e){return this.client.sendOperationRequest({options:e},listOperationSpec$2)}_listNext(e,a){return this.client.sendOperationRequest({nextLink:e,options:a},listNextOperationSpec$2)}}const serializer$3=coreClient.createSerializer(Mappers,!1),listOperationSpec$2={path:"/providers/Microsoft.Portal/listTenantConfigurationViolations",httpMethod:"POST",responses:{200:{bodyMapper:ViolationsList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host],headerParameters:[accept],serializer:serializer$3},listNextOperationSpec$2={path:"{nextLink}",httpMethod:"GET",responses:{200:{bodyMapper:ViolationsList},default:{bodyMapper:ErrorResponse}},queryParameters:[apiVersion],urlParameters:[$host,nextLink],headerParameters:[accept],serializer:serializer$3};class Portal extends coreClient.ServiceClient{constructor(e,a,t){if(void 0===e)throw new Error("'credentials' cannot be null");if(void 0===a)throw new Error("'subscriptionId' cannot be null");var r={requestContentType:"application/json; charset=utf-8",credential:e},e="azsdk-js-arm-portal/1.0.0-beta.1",e=(t=t||{}).userAgentOptions&&t.userAgentOptions.userAgentPrefix?t.userAgentOptions.userAgentPrefix+" "+e:e;t.credentialScopes||(t.credentialScopes=["https://management.azure.com/.default"]),super(Object.assign(Object.assign(Object.assign({},r),t),{userAgentOptions:{userAgentPrefix:e},baseUri:t.endpoint||"https://management.azure.com"})),this.subscriptionId=a,this.$host=t.$host||"https://management.azure.com",this.apiVersion=t.apiVersion||"2020-09-01-preview",this.operations=new OperationsImpl(this),this.dashboards=new DashboardsImpl(this),this.tenantConfigurations=new TenantConfigurationsImpl(this),this.listTenantConfigurationViolations=new ListTenantConfigurationViolationsImpl(this)}}exports.Portal=Portal;
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/models/index.ts","../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/operations.ts","../src/operations/dashboards.ts","../src/operations/tenantConfigurations.ts","../src/operations/listTenantConfigurationViolations.ts","../src/portal.ts"],"names":["KnownConfigurationName","ResourceProviderOperationList","type","name","className","modelProperties","value","serializedName","element","nextLink","ResourceProviderOperation","isDataAction","display","ResourceProviderOperationDisplay","provider","resource","operation","description","ErrorResponse","error","ErrorDefinition","code","readOnly","message","details","Dashboard","id","location","required","tags","lenses","metadata","DashboardLens","order","parts","DashboardParts","position","DashboardPartsPosition","x","y","rowSpan","colSpan","DashboardPartMetadata","uberParent","additionalProperties","polymorphicDiscriminator","clientName","PatchableDashboard","DashboardListResult","ConfigurationList","Resource","ViolationsList","Violation","userId","errorMessage","MarkdownPartMetadataSettings","content","MarkdownPartMetadataSettingsContent","settings","MarkdownPartMetadataSettingsContentSettings","title","subtitle","markdownSource","markdownUri","MarkdownPartMetadata","Object","assign","inputs","ProxyResource","Configuration","enforcePrivateMarkdownStorage","let","discriminators","DashboardPartMetadata.Extension/HubsExtension/PartType/MarkdownPart","accept","parameterPath","mapper","defaultValue","isConstant","$host","skipEncoding","apiVersion","contentType","dashboard","DashboardMapper","subscriptionId","resourceGroupName","dashboardName","constraints","MaxLength","MinLength","dashboard1","PatchableDashboardMapper","configurationName","tenantConfiguration","ConfigurationMapper","OperationsImpl","constructor","client","this","list","options","iter","listPagingAll","next","Symbol","asyncIterator","byPage","listPagingPage","result","tslib","__await","_list","continuationToken","_listNext","_c","_b","__asyncValues","done","page","__asyncDelegator","sendOperationRequest","listOperationSpec","listNextOperationSpec","serializer","coreClient.createSerializer","Mappers","path","httpMethod","responses","200","bodyMapper","Mappers.ResourceProviderOperationList","default","Mappers.ErrorResponse","queryParameters","Parameters.apiVersion","urlParameters","Parameters.$host","headerParameters","Parameters.accept","Parameters.nextLink","DashboardsImpl","listByResourceGroup","listByResourceGroupPagingAll","listByResourceGroupPagingPage","_listByResourceGroup","_listByResourceGroupNext","listBySubscription","listBySubscriptionPagingAll","listBySubscriptionPagingPage","_listBySubscription","_listBySubscriptionNext","createOrUpdate","createOrUpdateOperationSpec","delete","deleteOperationSpec","get","getOperationSpec","update","updateOperationSpec","listByResourceGroupOperationSpec","listBySubscriptionOperationSpec","listByResourceGroupNextOperationSpec","listBySubscriptionNextOperationSpec","Mappers.Dashboard","201","requestBody","Parameters.dashboard","Parameters.subscriptionId","Parameters.resourceGroupName","Parameters.dashboardName","Parameters.contentType","mediaType","204","404","Parameters.dashboard1","Mappers.DashboardListResult","TenantConfigurationsImpl","create","createOperationSpec","Mappers.ConfigurationList","Mappers.Configuration","Parameters.configurationName","Parameters.tenantConfiguration","ListTenantConfigurationViolationsImpl","Mappers.ViolationsList","Portal","coreClient.ServiceClient","credentials","undefined","Error","defaults","requestContentType","credential","packageDetails","userAgentPrefix","userAgentOptions","credentialScopes","super","baseUri","endpoint","operations","dashboards","tenantConfigurations","listTenantConfigurationViolations"],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ /// <reference lib="esnext.asynciterable" />
2
+ export * from "./models";
3
+ export { Portal } from "./portal";
4
+ export * from "./operationsInterfaces";
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AASA,cAAc,UAAU,CAAC;AACzB,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,cAAc,wBAAwB,CAAC"}
@@ -0,0 +1,12 @@
1
+ /*
2
+ * Copyright (c) Microsoft Corporation.
3
+ * Licensed under the MIT License.
4
+ *
5
+ * Code generated by Microsoft (R) AutoRest Code Generator.
6
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
+ */
8
+ /// <reference lib="esnext.asynciterable" />
9
+ export * from "./models";
10
+ export { Portal } from "./portal";
11
+ export * from "./operationsInterfaces";
12
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,4CAA4C;AAC5C,cAAc,UAAU,CAAC;AACzB,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC,cAAc,wBAAwB,CAAC"}