@azure/arm-resourcehealth 3.0.0-alpha.20211215.1 → 3.0.1-alpha.20211222.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +11 -16
- package/README.md +1 -1
- package/dist/index.js +4 -25
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/src/index.d.ts +0 -1
- package/dist-esm/src/index.d.ts.map +1 -1
- package/dist-esm/src/index.js +0 -1
- package/dist-esm/src/index.js.map +1 -1
- package/dist-esm/src/microsoftResourceHealth.d.ts +5 -2
- package/dist-esm/src/microsoftResourceHealth.d.ts.map +1 -1
- package/dist-esm/src/microsoftResourceHealth.js +32 -3
- package/dist-esm/src/microsoftResourceHealth.js.map +1 -1
- package/dist-esm/src/operations/availabilityStatuses.d.ts +2 -2
- package/dist-esm/src/operations/availabilityStatuses.d.ts.map +1 -1
- package/dist-esm/src/operations/availabilityStatuses.js.map +1 -1
- package/dist-esm/src/operations/childAvailabilityStatuses.d.ts +2 -2
- package/dist-esm/src/operations/childAvailabilityStatuses.d.ts.map +1 -1
- package/dist-esm/src/operations/childAvailabilityStatuses.js.map +1 -1
- package/dist-esm/src/operations/childResources.d.ts +2 -2
- package/dist-esm/src/operations/childResources.d.ts.map +1 -1
- package/dist-esm/src/operations/childResources.js.map +1 -1
- package/dist-esm/src/operations/emergingIssues.d.ts +2 -2
- package/dist-esm/src/operations/emergingIssues.d.ts.map +1 -1
- package/dist-esm/src/operations/emergingIssues.js.map +1 -1
- package/dist-esm/src/operations/operations.d.ts +2 -2
- package/dist-esm/src/operations/operations.d.ts.map +1 -1
- package/dist-esm/src/operations/operations.js.map +1 -1
- package/package.json +1 -1
- package/review/arm-resourcehealth.api.md +5 -10
- package/src/index.ts +0 -1
- package/src/microsoftResourceHealth.ts +46 -3
- package/src/operations/availabilityStatuses.ts +3 -3
- package/src/operations/childAvailabilityStatuses.ts +3 -3
- package/src/operations/childResources.ts +3 -3
- package/src/operations/emergingIssues.ts +3 -3
- package/src/operations/operations.ts +3 -3
- package/types/arm-resourcehealth.d.ts +4 -15
- package/types/tsdoc-metadata.json +1 -1
- package/dist-esm/src/microsoftResourceHealthContext.d.ts +0 -17
- package/dist-esm/src/microsoftResourceHealthContext.d.ts.map +0 -1
- package/dist-esm/src/microsoftResourceHealthContext.js +0 -50
- package/dist-esm/src/microsoftResourceHealthContext.js.map +0 -1
- package/src/microsoftResourceHealthContext.ts +0 -71
package/dist/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/models/index.ts","../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/availabilityStatuses.ts","../src/operations/childAvailabilityStatuses.ts","../src/operations/childResources.ts","../src/operations/operations.ts","../src/operations/emergingIssues.ts","../src/microsoftResourceHealthContext.ts","../src/microsoftResourceHealth.ts"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\n/** The List availabilityStatus operation response. */\nexport interface AvailabilityStatusListResult {\n /** The list of availabilityStatuses. */\n value: AvailabilityStatus[];\n /** The URI to fetch the next page of availabilityStatuses. Call ListNext() with this URI to fetch the next page of availabilityStatuses. */\n nextLink?: string;\n}\n\n/** availabilityStatus of a resource. */\nexport interface AvailabilityStatus {\n /** Azure Resource Manager Identity for the availabilityStatuses resource. */\n id?: string;\n /** current. */\n name?: string;\n /** Microsoft.ResourceHealth/AvailabilityStatuses. */\n type?: string;\n /** Azure Resource Manager geo location of the resource. */\n location?: string;\n /** Properties of availability state. */\n properties?: AvailabilityStatusProperties;\n}\n\n/** Properties of availability state. */\nexport interface AvailabilityStatusProperties {\n /** Availability status of the resource. When it is null, this availabilityStatus object represents an availability impacting event */\n availabilityState?: AvailabilityStateValues;\n /** Summary description of the availability status. */\n summary?: string;\n /** Details of the availability status. */\n detailedStatus?: string;\n /** When the resource's availabilityState is Unavailable, it describes where the health impacting event was originated. Examples are planned, unplanned, user initiated or an outage etc. */\n reasonType?: string;\n /** When the resource's availabilityState is Unavailable, it provides the Timestamp for when the health impacting event was received. */\n rootCauseAttributionTime?: Date;\n /** In case of an availability impacting event, it describes when the health impacting event was originated. Examples are Lifecycle, Downtime, Fault Analysis etc. */\n healthEventType?: string;\n /** In case of an availability impacting event, it describes where the health impacting event was originated. Examples are PlatformInitiated, UserInitiated etc. */\n healthEventCause?: string;\n /** In case of an availability impacting event, it describes the category of a PlatformInitiated health impacting event. Examples are Planned, Unplanned etc. */\n healthEventCategory?: string;\n /** It is a unique Id that identifies the event */\n healthEventId?: string;\n /** When the resource's availabilityState is Unavailable and the reasonType is not User Initiated, it provides the date and time for when the issue is expected to be resolved. */\n resolutionETA?: Date;\n /** Timestamp for when last change in health status occurred. */\n occuredTime?: Date;\n /** Chronicity of the availability transition. */\n reasonChronicity?: ReasonChronicityTypes;\n /** Timestamp for when the health was last checked. */\n reportedTime?: Date;\n /** An annotation describing a change in the availabilityState to Available from Unavailable with a reasonType of type Unplanned */\n recentlyResolvedState?: AvailabilityStatusPropertiesRecentlyResolvedState;\n /** Lists actions the user can take based on the current availabilityState of the resource. */\n recommendedActions?: RecommendedAction[];\n /** Lists the service impacting events that may be affecting the health of the resource. */\n serviceImpactingEvents?: ServiceImpactingEvent[];\n}\n\n/** An annotation describing a change in the availabilityState to Available from Unavailable with a reasonType of type Unplanned */\nexport interface AvailabilityStatusPropertiesRecentlyResolvedState {\n /** Timestamp for when the availabilityState changed to Unavailable */\n unavailableOccurredTime?: Date;\n /** Timestamp when the availabilityState changes to Available. */\n resolvedTime?: Date;\n /** Brief description of cause of the resource becoming unavailable. */\n unavailabilitySummary?: string;\n}\n\n/** Lists actions the user can take based on the current availabilityState of the resource. */\nexport interface RecommendedAction {\n /** Recommended action. */\n action?: string;\n /** Link to the action */\n actionUrl?: string;\n /** Substring of action, it describes which text should host the action url. */\n actionUrlText?: string;\n}\n\n/** Lists the service impacting events that may be affecting the health of the resource. */\nexport interface ServiceImpactingEvent {\n /** Timestamp for when the event started. */\n eventStartTime?: Date;\n /** Timestamp for when event was submitted/detected. */\n eventStatusLastModifiedTime?: Date;\n /** Correlation id for the event */\n correlationId?: string;\n /** Status of the service impacting event. */\n status?: ServiceImpactingEventStatus;\n /** Properties of the service impacting event. */\n incidentProperties?: ServiceImpactingEventIncidentProperties;\n}\n\n/** Status of the service impacting event. */\nexport interface ServiceImpactingEventStatus {\n /** Current status of the event */\n value?: string;\n}\n\n/** Properties of the service impacting event. */\nexport interface ServiceImpactingEventIncidentProperties {\n /** Title of the incident. */\n title?: string;\n /** Service impacted by the event. */\n service?: string;\n /** Region impacted by the event. */\n region?: string;\n /** Type of Event. */\n incidentType?: string;\n}\n\n/** Error details. */\nexport interface ErrorResponse {\n /**\n * The error code.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly code?: string;\n /**\n * The error message.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly message?: string;\n /**\n * The error details.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly details?: string;\n}\n\n/** Lists the operations response. */\nexport interface OperationListResult {\n /** List of operations available in the resourcehealth resource provider. */\n value: Operation[];\n}\n\n/** Operation available in the resourcehealth resource provider. */\nexport interface Operation {\n /** Name of the operation. */\n name?: string;\n /** Properties of the operation. */\n display?: OperationDisplay;\n}\n\n/** Properties of the operation. */\nexport interface OperationDisplay {\n /** Provider name. */\n provider?: string;\n /** Resource name. */\n resource?: string;\n /** Operation name. */\n operation?: string;\n /** Description of the operation. */\n description?: string;\n}\n\n/** Banner type of emerging issue. */\nexport interface StatusBanner {\n /** The banner title. */\n title?: string;\n /** The details of banner. */\n message?: string;\n /** The cloud type of this banner. */\n cloud?: string;\n /** The last time modified on this banner. */\n lastModifiedTime?: Date;\n}\n\n/** Active event type of emerging issue. */\nexport interface StatusActiveEvent {\n /** The active event title. */\n title?: string;\n /** The details of active event. */\n description?: string;\n /** The tracking id of this active event. */\n trackingId?: string;\n /** The impact start time on this active event. */\n startTime?: Date;\n /** The cloud type of this active event. */\n cloud?: string;\n /** The severity level of this active event. */\n severity?: SeverityValues;\n /** The stage of this active event. */\n stage?: StageValues;\n /** The boolean value of this active event if published or not. */\n published?: boolean;\n /** The last time modified on this banner. */\n lastModifiedTime?: Date;\n /** The list of emerging issues impacts. */\n impacts?: EmergingIssueImpact[];\n}\n\n/** Object of the emerging issue impact on services and regions. */\nexport interface EmergingIssueImpact {\n /** The impacted service id. */\n id?: string;\n /** The impacted service name. */\n name?: string;\n /** The list of impacted regions for corresponding emerging issues. */\n regions?: ImpactedRegion[];\n}\n\n/** Object of impacted region. */\nexport interface ImpactedRegion {\n /** The impacted region id. */\n id?: string;\n /** The impacted region name. */\n name?: 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/** The list of emerging issues. */\nexport interface EmergingIssueListResult {\n /** The list of emerging issues. */\n value?: EmergingIssuesGetResult[];\n /** The link used to get the next page of emerging issues. */\n nextLink?: string;\n}\n\n/** The Get EmergingIssues operation response. */\nexport type EmergingIssuesGetResult = Resource & {\n /** Timestamp for when last time refreshed for ongoing emerging issue. */\n refreshTimestamp?: Date;\n /** The list of emerging issues of banner type. */\n statusBanners?: StatusBanner[];\n /** The list of emerging issues of active event type. */\n statusActiveEvents?: StatusActiveEvent[];\n};\n\n/** Known values of {@link SeverityValues} that the service accepts. */\nexport enum KnownSeverityValues {\n Information = \"Information\",\n Warning = \"Warning\",\n Error = \"Error\"\n}\n\n/**\n * Defines values for SeverityValues. \\\n * {@link KnownSeverityValues} can be used interchangeably with SeverityValues,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Information** \\\n * **Warning** \\\n * **Error**\n */\nexport type SeverityValues = string;\n\n/** Known values of {@link StageValues} that the service accepts. */\nexport enum KnownStageValues {\n Active = \"Active\",\n Resolve = \"Resolve\",\n Archived = \"Archived\"\n}\n\n/**\n * Defines values for StageValues. \\\n * {@link KnownStageValues} can be used interchangeably with StageValues,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Active** \\\n * **Resolve** \\\n * **Archived**\n */\nexport type StageValues = string;\n/** Defines values for AvailabilityStateValues. */\nexport type AvailabilityStateValues = \"Available\" | \"Unavailable\" | \"Unknown\";\n/** Defines values for ReasonChronicityTypes. */\nexport type ReasonChronicityTypes = \"Transient\" | \"Persistent\";\n\n/** Optional parameters. */\nexport interface AvailabilityStatusesListBySubscriptionIdOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the listBySubscriptionId operation. */\nexport type AvailabilityStatusesListBySubscriptionIdResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface AvailabilityStatusesListByResourceGroupOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the listByResourceGroup operation. */\nexport type AvailabilityStatusesListByResourceGroupResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface AvailabilityStatusesGetByResourceOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the getByResource operation. */\nexport type AvailabilityStatusesGetByResourceResponse = AvailabilityStatus;\n\n/** Optional parameters. */\nexport interface AvailabilityStatusesListOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the list operation. */\nexport type AvailabilityStatusesListResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface AvailabilityStatusesListBySubscriptionIdNextOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the listBySubscriptionIdNext operation. */\nexport type AvailabilityStatusesListBySubscriptionIdNextResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface AvailabilityStatusesListByResourceGroupNextOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the listByResourceGroupNext operation. */\nexport type AvailabilityStatusesListByResourceGroupNextResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface AvailabilityStatusesListNextOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the listNext operation. */\nexport type AvailabilityStatusesListNextResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface ChildAvailabilityStatusesGetByResourceOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the getByResource operation. */\nexport type ChildAvailabilityStatusesGetByResourceResponse = AvailabilityStatus;\n\n/** Optional parameters. */\nexport interface ChildAvailabilityStatusesListOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the list operation. */\nexport type ChildAvailabilityStatusesListResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface ChildAvailabilityStatusesListNextOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the listNext operation. */\nexport type ChildAvailabilityStatusesListNextResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface ChildResourcesListOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the list operation. */\nexport type ChildResourcesListResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface ChildResourcesListNextOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the listNext operation. */\nexport type ChildResourcesListNextResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface OperationsListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type OperationsListResponse = OperationListResult;\n\n/** Optional parameters. */\nexport interface EmergingIssuesGetOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the get operation. */\nexport type EmergingIssuesGetResponse = EmergingIssuesGetResult;\n\n/** Optional parameters. */\nexport interface EmergingIssuesListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type EmergingIssuesListResponse = EmergingIssueListResult;\n\n/** Optional parameters. */\nexport interface EmergingIssuesListNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listNext operation. */\nexport type EmergingIssuesListNextResponse = EmergingIssueListResult;\n\n/** Optional parameters. */\nexport interface MicrosoftResourceHealthOptionalParams\n extends coreClient.ServiceClientOptions {\n /** server parameter */\n $host?: string;\n /** Api Version */\n apiVersion?: string;\n /** Overrides client endpoint. */\n endpoint?: string;\n}\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\nexport const AvailabilityStatusListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AvailabilityStatusListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n required: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"AvailabilityStatus\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const AvailabilityStatus: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AvailabilityStatus\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n },\n location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"AvailabilityStatusProperties\"\n }\n }\n }\n }\n};\n\nexport const AvailabilityStatusProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AvailabilityStatusProperties\",\n modelProperties: {\n availabilityState: {\n serializedName: \"availabilityState\",\n type: {\n name: \"Enum\",\n allowedValues: [\"Available\", \"Unavailable\", \"Unknown\"]\n }\n },\n summary: {\n serializedName: \"summary\",\n type: {\n name: \"String\"\n }\n },\n detailedStatus: {\n serializedName: \"detailedStatus\",\n type: {\n name: \"String\"\n }\n },\n reasonType: {\n serializedName: \"reasonType\",\n type: {\n name: \"String\"\n }\n },\n rootCauseAttributionTime: {\n serializedName: \"rootCauseAttributionTime\",\n type: {\n name: \"DateTime\"\n }\n },\n healthEventType: {\n serializedName: \"healthEventType\",\n type: {\n name: \"String\"\n }\n },\n healthEventCause: {\n serializedName: \"healthEventCause\",\n type: {\n name: \"String\"\n }\n },\n healthEventCategory: {\n serializedName: \"healthEventCategory\",\n type: {\n name: \"String\"\n }\n },\n healthEventId: {\n serializedName: \"healthEventId\",\n type: {\n name: \"String\"\n }\n },\n resolutionETA: {\n serializedName: \"resolutionETA\",\n type: {\n name: \"DateTime\"\n }\n },\n occuredTime: {\n serializedName: \"occuredTime\",\n type: {\n name: \"DateTime\"\n }\n },\n reasonChronicity: {\n serializedName: \"reasonChronicity\",\n type: {\n name: \"Enum\",\n allowedValues: [\"Transient\", \"Persistent\"]\n }\n },\n reportedTime: {\n serializedName: \"reportedTime\",\n type: {\n name: \"DateTime\"\n }\n },\n recentlyResolvedState: {\n serializedName: \"recentlyResolvedState\",\n type: {\n name: \"Composite\",\n className: \"AvailabilityStatusPropertiesRecentlyResolvedState\"\n }\n },\n recommendedActions: {\n serializedName: \"recommendedActions\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"RecommendedAction\"\n }\n }\n }\n },\n serviceImpactingEvents: {\n serializedName: \"serviceImpactingEvents\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ServiceImpactingEvent\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const AvailabilityStatusPropertiesRecentlyResolvedState: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AvailabilityStatusPropertiesRecentlyResolvedState\",\n modelProperties: {\n unavailableOccurredTime: {\n serializedName: \"unavailableOccurredTime\",\n type: {\n name: \"DateTime\"\n }\n },\n resolvedTime: {\n serializedName: \"resolvedTime\",\n type: {\n name: \"DateTime\"\n }\n },\n unavailabilitySummary: {\n serializedName: \"unavailabilitySummary\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const RecommendedAction: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"RecommendedAction\",\n modelProperties: {\n action: {\n serializedName: \"action\",\n type: {\n name: \"String\"\n }\n },\n actionUrl: {\n serializedName: \"actionUrl\",\n type: {\n name: \"String\"\n }\n },\n actionUrlText: {\n serializedName: \"actionUrlText\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ServiceImpactingEvent: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ServiceImpactingEvent\",\n modelProperties: {\n eventStartTime: {\n serializedName: \"eventStartTime\",\n type: {\n name: \"DateTime\"\n }\n },\n eventStatusLastModifiedTime: {\n serializedName: \"eventStatusLastModifiedTime\",\n type: {\n name: \"DateTime\"\n }\n },\n correlationId: {\n serializedName: \"correlationId\",\n type: {\n name: \"String\"\n }\n },\n status: {\n serializedName: \"status\",\n type: {\n name: \"Composite\",\n className: \"ServiceImpactingEventStatus\"\n }\n },\n incidentProperties: {\n serializedName: \"incidentProperties\",\n type: {\n name: \"Composite\",\n className: \"ServiceImpactingEventIncidentProperties\"\n }\n }\n }\n }\n};\n\nexport const ServiceImpactingEventStatus: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ServiceImpactingEventStatus\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ServiceImpactingEventIncidentProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ServiceImpactingEventIncidentProperties\",\n modelProperties: {\n title: {\n serializedName: \"title\",\n type: {\n name: \"String\"\n }\n },\n service: {\n serializedName: \"service\",\n type: {\n name: \"String\"\n }\n },\n region: {\n serializedName: \"region\",\n type: {\n name: \"String\"\n }\n },\n incidentType: {\n serializedName: \"incidentType\",\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 code: {\n serializedName: \"code\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"details\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const OperationListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n required: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Operation\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const Operation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Operation\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\"\n }\n }\n }\n }\n};\n\nexport const OperationDisplay: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n type: {\n name: \"String\"\n }\n },\n 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 StatusBanner: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"StatusBanner\",\n modelProperties: {\n title: {\n serializedName: \"title\",\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n },\n cloud: {\n serializedName: \"cloud\",\n type: {\n name: \"String\"\n }\n },\n lastModifiedTime: {\n serializedName: \"lastModifiedTime\",\n type: {\n name: \"DateTime\"\n }\n }\n }\n }\n};\n\nexport const StatusActiveEvent: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"StatusActiveEvent\",\n modelProperties: {\n title: {\n serializedName: \"title\",\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"description\",\n type: {\n name: \"String\"\n }\n },\n trackingId: {\n serializedName: \"trackingId\",\n type: {\n name: \"String\"\n }\n },\n startTime: {\n serializedName: \"startTime\",\n type: {\n name: \"DateTime\"\n }\n },\n cloud: {\n serializedName: \"cloud\",\n type: {\n name: \"String\"\n }\n },\n severity: {\n serializedName: \"severity\",\n type: {\n name: \"String\"\n }\n },\n stage: {\n serializedName: \"stage\",\n type: {\n name: \"String\"\n }\n },\n published: {\n serializedName: \"published\",\n type: {\n name: \"Boolean\"\n }\n },\n lastModifiedTime: {\n serializedName: \"lastModifiedTime\",\n type: {\n name: \"DateTime\"\n }\n },\n impacts: {\n serializedName: \"impacts\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"EmergingIssueImpact\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const EmergingIssueImpact: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EmergingIssueImpact\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n regions: {\n serializedName: \"regions\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ImpactedRegion\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ImpactedRegion: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ImpactedRegion\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\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 EmergingIssueListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EmergingIssueListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"EmergingIssuesGetResult\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const EmergingIssuesGetResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EmergingIssuesGetResult\",\n modelProperties: {\n ...Resource.type.modelProperties,\n refreshTimestamp: {\n serializedName: \"properties.refreshTimestamp\",\n type: {\n name: \"DateTime\"\n }\n },\n statusBanners: {\n serializedName: \"properties.statusBanners\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"StatusBanner\"\n }\n }\n }\n },\n statusActiveEvents: {\n serializedName: \"properties.statusActiveEvents\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"StatusActiveEvent\"\n }\n }\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport {\n OperationParameter,\n OperationURLParameter,\n OperationQueryParameter\n} from \"@azure/core-client\";\n\nexport const accept: OperationParameter = {\n parameterPath: \"accept\",\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Accept\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const $host: OperationURLParameter = {\n parameterPath: \"$host\",\n mapper: {\n serializedName: \"$host\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const apiVersion: OperationQueryParameter = {\n parameterPath: \"apiVersion\",\n mapper: {\n defaultValue: \"2017-07-01\",\n isConstant: true,\n serializedName: \"api-version\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const filter: OperationQueryParameter = {\n parameterPath: [\"options\", \"filter\"],\n mapper: {\n serializedName: \"$filter\",\n type: {\n name: \"String\"\n }\n }\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 expand: OperationQueryParameter = {\n parameterPath: [\"options\", \"expand\"],\n mapper: {\n serializedName: \"$expand\",\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 resourceUri: OperationURLParameter = {\n parameterPath: \"resourceUri\",\n mapper: {\n serializedName: \"resourceUri\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\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 issueName: OperationURLParameter = {\n parameterPath: \"issueName\",\n mapper: {\n defaultValue: \"default\",\n isConstant: true,\n serializedName: \"issueName\",\n type: {\n name: \"String\"\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { AvailabilityStatuses } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { MicrosoftResourceHealthContext } from \"../microsoftResourceHealthContext\";\nimport {\n AvailabilityStatus,\n AvailabilityStatusesListBySubscriptionIdNextOptionalParams,\n AvailabilityStatusesListBySubscriptionIdOptionalParams,\n AvailabilityStatusesListByResourceGroupNextOptionalParams,\n AvailabilityStatusesListByResourceGroupOptionalParams,\n AvailabilityStatusesListNextOptionalParams,\n AvailabilityStatusesListOptionalParams,\n AvailabilityStatusesListBySubscriptionIdResponse,\n AvailabilityStatusesListByResourceGroupResponse,\n AvailabilityStatusesGetByResourceOptionalParams,\n AvailabilityStatusesGetByResourceResponse,\n AvailabilityStatusesListResponse,\n AvailabilityStatusesListBySubscriptionIdNextResponse,\n AvailabilityStatusesListByResourceGroupNextResponse,\n AvailabilityStatusesListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing AvailabilityStatuses operations. */\nexport class AvailabilityStatusesImpl implements AvailabilityStatuses {\n private readonly client: MicrosoftResourceHealthContext;\n\n /**\n * Initialize a new instance of the class AvailabilityStatuses class.\n * @param client Reference to the service client\n */\n constructor(client: MicrosoftResourceHealthContext) {\n this.client = client;\n }\n\n /**\n * Lists the current availability status for all the resources in the subscription. Use the nextLink\n * property in the response to get the next page of availability statuses.\n * @param options The options parameters.\n */\n public listBySubscriptionId(\n options?: AvailabilityStatusesListBySubscriptionIdOptionalParams\n ): PagedAsyncIterableIterator<AvailabilityStatus> {\n const iter = this.listBySubscriptionIdPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listBySubscriptionIdPagingPage(options);\n }\n };\n }\n\n private async *listBySubscriptionIdPagingPage(\n options?: AvailabilityStatusesListBySubscriptionIdOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus[]> {\n let result = await this._listBySubscriptionId(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listBySubscriptionIdNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listBySubscriptionIdPagingAll(\n options?: AvailabilityStatusesListBySubscriptionIdOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus> {\n for await (const page of this.listBySubscriptionIdPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Lists the current availability status for all the resources in the resource group. Use the nextLink\n * property in the response to get the next page of availability statuses.\n * @param resourceGroupName The name of the resource group.\n * @param options The options parameters.\n */\n public listByResourceGroup(\n resourceGroupName: string,\n options?: AvailabilityStatusesListByResourceGroupOptionalParams\n ): PagedAsyncIterableIterator<AvailabilityStatus> {\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?: AvailabilityStatusesListByResourceGroupOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus[]> {\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?: AvailabilityStatusesListByResourceGroupOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus> {\n for await (const page of this.listByResourceGroupPagingPage(\n resourceGroupName,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * Lists all historical availability transitions and impacting events for a single resource. Use the\n * nextLink property in the response to get the next page of availability status\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API support not nested and one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name}\n * and\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\n * @param options The options parameters.\n */\n public list(\n resourceUri: string,\n options?: AvailabilityStatusesListOptionalParams\n ): PagedAsyncIterableIterator<AvailabilityStatus> {\n const iter = this.listPagingAll(resourceUri, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(resourceUri, options);\n }\n };\n }\n\n private async *listPagingPage(\n resourceUri: string,\n options?: AvailabilityStatusesListOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus[]> {\n let result = await this._list(resourceUri, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(resourceUri, continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n resourceUri: string,\n options?: AvailabilityStatusesListOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus> {\n for await (const page of this.listPagingPage(resourceUri, options)) {\n yield* page;\n }\n }\n\n /**\n * Lists the current availability status for all the resources in the subscription. Use the nextLink\n * property in the response to get the next page of availability statuses.\n * @param options The options parameters.\n */\n private _listBySubscriptionId(\n options?: AvailabilityStatusesListBySubscriptionIdOptionalParams\n ): Promise<AvailabilityStatusesListBySubscriptionIdResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionIdOperationSpec\n );\n }\n\n /**\n * Lists the current availability status for all the resources in the resource group. Use the nextLink\n * property in the response to get the next page of availability statuses.\n * @param resourceGroupName The name of the resource group.\n * @param options The options parameters.\n */\n private _listByResourceGroup(\n resourceGroupName: string,\n options?: AvailabilityStatusesListByResourceGroupOptionalParams\n ): Promise<AvailabilityStatusesListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, options },\n listByResourceGroupOperationSpec\n );\n }\n\n /**\n * Gets current availability status for a single resource\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API support not nested and one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name}\n * and\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\n * @param options The options parameters.\n */\n getByResource(\n resourceUri: string,\n options?: AvailabilityStatusesGetByResourceOptionalParams\n ): Promise<AvailabilityStatusesGetByResourceResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, options },\n getByResourceOperationSpec\n );\n }\n\n /**\n * Lists all historical availability transitions and impacting events for a single resource. Use the\n * nextLink property in the response to get the next page of availability status\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API support not nested and one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name}\n * and\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\n * @param options The options parameters.\n */\n private _list(\n resourceUri: string,\n options?: AvailabilityStatusesListOptionalParams\n ): Promise<AvailabilityStatusesListResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, options },\n listOperationSpec\n );\n }\n\n /**\n * ListBySubscriptionIdNext\n * @param nextLink The nextLink from the previous successful call to the ListBySubscriptionId method.\n * @param options The options parameters.\n */\n private _listBySubscriptionIdNext(\n nextLink: string,\n options?: AvailabilityStatusesListBySubscriptionIdNextOptionalParams\n ): Promise<AvailabilityStatusesListBySubscriptionIdNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listBySubscriptionIdNextOperationSpec\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?: AvailabilityStatusesListByResourceGroupNextOptionalParams\n ): Promise<AvailabilityStatusesListByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, nextLink, options },\n listByResourceGroupNextOperationSpec\n );\n }\n\n /**\n * ListNext\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API support not nested and one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name}\n * and\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\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 resourceUri: string,\n nextLink: string,\n options?: AvailabilityStatusesListNextOptionalParams\n ): Promise<AvailabilityStatusesListNextResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, nextLink, options },\n listNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listBySubscriptionIdOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.ResourceHealth/availabilityStatuses\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ResourceHealth/availabilityStatuses\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getByResourceOperationSpec: coreClient.OperationSpec = {\n path:\n \"/{resourceUri}/providers/Microsoft.ResourceHealth/availabilityStatuses/current\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatus\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [Parameters.$host, Parameters.resourceUri],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listOperationSpec: coreClient.OperationSpec = {\n path:\n \"/{resourceUri}/providers/Microsoft.ResourceHealth/availabilityStatuses\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [Parameters.$host, Parameters.resourceUri],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listBySubscriptionIdNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.nextLink\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.nextLink\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.resourceUri,\n Parameters.nextLink\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 { ChildAvailabilityStatuses } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { MicrosoftResourceHealthContext } from \"../microsoftResourceHealthContext\";\nimport {\n AvailabilityStatus,\n ChildAvailabilityStatusesListNextOptionalParams,\n ChildAvailabilityStatusesListOptionalParams,\n ChildAvailabilityStatusesGetByResourceOptionalParams,\n ChildAvailabilityStatusesGetByResourceResponse,\n ChildAvailabilityStatusesListResponse,\n ChildAvailabilityStatusesListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing ChildAvailabilityStatuses operations. */\nexport class ChildAvailabilityStatusesImpl\n implements ChildAvailabilityStatuses {\n private readonly client: MicrosoftResourceHealthContext;\n\n /**\n * Initialize a new instance of the class ChildAvailabilityStatuses class.\n * @param client Reference to the service client\n */\n constructor(client: MicrosoftResourceHealthContext) {\n this.client = client;\n }\n\n /**\n * Lists the historical availability statuses for a single child resource. Use the nextLink property in\n * the response to get the next page of availability status\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API only support one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\n * @param options The options parameters.\n */\n public list(\n resourceUri: string,\n options?: ChildAvailabilityStatusesListOptionalParams\n ): PagedAsyncIterableIterator<AvailabilityStatus> {\n const iter = this.listPagingAll(resourceUri, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(resourceUri, options);\n }\n };\n }\n\n private async *listPagingPage(\n resourceUri: string,\n options?: ChildAvailabilityStatusesListOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus[]> {\n let result = await this._list(resourceUri, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(resourceUri, continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n resourceUri: string,\n options?: ChildAvailabilityStatusesListOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus> {\n for await (const page of this.listPagingPage(resourceUri, options)) {\n yield* page;\n }\n }\n\n /**\n * Gets current availability status for a single resource\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API only support one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\n * @param options The options parameters.\n */\n getByResource(\n resourceUri: string,\n options?: ChildAvailabilityStatusesGetByResourceOptionalParams\n ): Promise<ChildAvailabilityStatusesGetByResourceResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, options },\n getByResourceOperationSpec\n );\n }\n\n /**\n * Lists the historical availability statuses for a single child resource. Use the nextLink property in\n * the response to get the next page of availability status\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API only support one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\n * @param options The options parameters.\n */\n private _list(\n resourceUri: string,\n options?: ChildAvailabilityStatusesListOptionalParams\n ): Promise<ChildAvailabilityStatusesListResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, options },\n listOperationSpec\n );\n }\n\n /**\n * ListNext\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API only support one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\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 resourceUri: string,\n nextLink: string,\n options?: ChildAvailabilityStatusesListNextOptionalParams\n ): Promise<ChildAvailabilityStatusesListNextResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, nextLink, options },\n listNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst getByResourceOperationSpec: coreClient.OperationSpec = {\n path:\n \"/{resourceUri}/providers/Microsoft.ResourceHealth/childAvailabilityStatuses/current\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatus\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [Parameters.$host, Parameters.resourceUri],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listOperationSpec: coreClient.OperationSpec = {\n path:\n \"/{resourceUri}/providers/Microsoft.ResourceHealth/childAvailabilityStatuses\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [Parameters.$host, Parameters.resourceUri],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.resourceUri,\n Parameters.nextLink\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 { ChildResources } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { MicrosoftResourceHealthContext } from \"../microsoftResourceHealthContext\";\nimport {\n AvailabilityStatus,\n ChildResourcesListNextOptionalParams,\n ChildResourcesListOptionalParams,\n ChildResourcesListResponse,\n ChildResourcesListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing ChildResources operations. */\nexport class ChildResourcesImpl implements ChildResources {\n private readonly client: MicrosoftResourceHealthContext;\n\n /**\n * Initialize a new instance of the class ChildResources class.\n * @param client Reference to the service client\n */\n constructor(client: MicrosoftResourceHealthContext) {\n this.client = client;\n }\n\n /**\n * Lists the all the children and its current health status for a parent resource. Use the nextLink\n * property in the response to get the next page of children current health\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API only support not nested parent resource type:\n * /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name}\n * @param options The options parameters.\n */\n public list(\n resourceUri: string,\n options?: ChildResourcesListOptionalParams\n ): PagedAsyncIterableIterator<AvailabilityStatus> {\n const iter = this.listPagingAll(resourceUri, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(resourceUri, options);\n }\n };\n }\n\n private async *listPagingPage(\n resourceUri: string,\n options?: ChildResourcesListOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus[]> {\n let result = await this._list(resourceUri, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(resourceUri, continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n resourceUri: string,\n options?: ChildResourcesListOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus> {\n for await (const page of this.listPagingPage(resourceUri, options)) {\n yield* page;\n }\n }\n\n /**\n * Lists the all the children and its current health status for a parent resource. Use the nextLink\n * property in the response to get the next page of children current health\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API only support not nested parent resource type:\n * /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name}\n * @param options The options parameters.\n */\n private _list(\n resourceUri: string,\n options?: ChildResourcesListOptionalParams\n ): Promise<ChildResourcesListResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, options },\n listOperationSpec\n );\n }\n\n /**\n * ListNext\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API only support not nested parent resource type:\n * /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name}\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 resourceUri: string,\n nextLink: string,\n options?: ChildResourcesListNextOptionalParams\n ): Promise<ChildResourcesListNextResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, nextLink, options },\n listNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/{resourceUri}/providers/Microsoft.ResourceHealth/childResources\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [Parameters.$host, Parameters.resourceUri],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.resourceUri,\n Parameters.nextLink\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 { Operations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { MicrosoftResourceHealthContext } from \"../microsoftResourceHealthContext\";\nimport {\n OperationsListOptionalParams,\n OperationsListResponse\n} from \"../models\";\n\n/** Class containing Operations operations. */\nexport class OperationsImpl implements Operations {\n private readonly client: MicrosoftResourceHealthContext;\n\n /**\n * Initialize a new instance of the class Operations class.\n * @param client Reference to the service client\n */\n constructor(client: MicrosoftResourceHealthContext) {\n this.client = client;\n }\n\n /**\n * Lists available operations for the resourcehealth resource provider\n * @param options The options parameters.\n */\n list(\n options?: OperationsListOptionalParams\n ): Promise<OperationsListResponse> {\n return this.client.sendOperationRequest({ options }, listOperationSpec);\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.ResourceHealth/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\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 { EmergingIssues } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { MicrosoftResourceHealthContext } from \"../microsoftResourceHealthContext\";\nimport {\n EmergingIssuesGetResult,\n EmergingIssuesListNextOptionalParams,\n EmergingIssuesListOptionalParams,\n EmergingIssuesGetOptionalParams,\n EmergingIssuesGetResponse,\n EmergingIssuesListResponse,\n EmergingIssuesListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing EmergingIssues operations. */\nexport class EmergingIssuesImpl implements EmergingIssues {\n private readonly client: MicrosoftResourceHealthContext;\n\n /**\n * Initialize a new instance of the class EmergingIssues class.\n * @param client Reference to the service client\n */\n constructor(client: MicrosoftResourceHealthContext) {\n this.client = client;\n }\n\n /**\n * Lists Azure services' emerging issues.\n * @param options The options parameters.\n */\n public list(\n options?: EmergingIssuesListOptionalParams\n ): PagedAsyncIterableIterator<EmergingIssuesGetResult> {\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?: EmergingIssuesListOptionalParams\n ): AsyncIterableIterator<EmergingIssuesGetResult[]> {\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?: EmergingIssuesListOptionalParams\n ): AsyncIterableIterator<EmergingIssuesGetResult> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Gets Azure services' emerging issues.\n * @param options The options parameters.\n */\n get(\n options?: EmergingIssuesGetOptionalParams\n ): Promise<EmergingIssuesGetResponse> {\n return this.client.sendOperationRequest({ options }, getOperationSpec);\n }\n\n /**\n * Lists Azure services' emerging issues.\n * @param options The options parameters.\n */\n private _list(\n options?: EmergingIssuesListOptionalParams\n ): Promise<EmergingIssuesListResponse> {\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?: EmergingIssuesListNextOptionalParams\n ): Promise<EmergingIssuesListNextResponse> {\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 getOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.ResourceHealth/emergingIssues/{issueName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.EmergingIssuesGetResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.issueName],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.ResourceHealth/emergingIssues\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.EmergingIssueListResult\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.EmergingIssueListResult\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 { MicrosoftResourceHealthOptionalParams } from \"./models\";\n\nexport class MicrosoftResourceHealthContext extends coreClient.ServiceClient {\n $host: string;\n apiVersion: string;\n subscriptionId: string;\n\n /**\n * Initializes a new instance of the MicrosoftResourceHealthContext class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param subscriptionId Subscription credentials which uniquely identify Microsoft Azure subscription.\n * The subscription ID forms part of the URI for every service call.\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n subscriptionId: string,\n options?: MicrosoftResourceHealthOptionalParams\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: MicrosoftResourceHealthOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-arm-resourcehealth/3.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 || \"2017-07-01\";\n }\n}\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreAuth from \"@azure/core-auth\";\nimport {\n AvailabilityStatusesImpl,\n ChildAvailabilityStatusesImpl,\n ChildResourcesImpl,\n OperationsImpl,\n EmergingIssuesImpl\n} from \"./operations\";\nimport {\n AvailabilityStatuses,\n ChildAvailabilityStatuses,\n ChildResources,\n Operations,\n EmergingIssues\n} from \"./operationsInterfaces\";\nimport { MicrosoftResourceHealthContext } from \"./microsoftResourceHealthContext\";\nimport { MicrosoftResourceHealthOptionalParams } from \"./models\";\n\nexport class MicrosoftResourceHealth extends MicrosoftResourceHealthContext {\n /**\n * Initializes a new instance of the MicrosoftResourceHealth class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param subscriptionId Subscription credentials which uniquely identify Microsoft Azure subscription.\n * The subscription ID forms part of the URI for every service call.\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n subscriptionId: string,\n options?: MicrosoftResourceHealthOptionalParams\n ) {\n super(credentials, subscriptionId, options);\n this.availabilityStatuses = new AvailabilityStatusesImpl(this);\n this.childAvailabilityStatuses = new ChildAvailabilityStatusesImpl(this);\n this.childResources = new ChildResourcesImpl(this);\n this.operations = new OperationsImpl(this);\n this.emergingIssues = new EmergingIssuesImpl(this);\n }\n\n availabilityStatuses: AvailabilityStatuses;\n childAvailabilityStatuses: ChildAvailabilityStatuses;\n childResources: ChildResources;\n operations: Operations;\n emergingIssues: EmergingIssues;\n}\n"],"names":["KnownSeverityValues","KnownStageValues","__asyncValues","__asyncDelegator","coreClient.createSerializer","Mappers.AvailabilityStatusListResult","Mappers.ErrorResponse","Parameters.apiVersion","Parameters.filter","Parameters.expand","Parameters.$host","Parameters.subscriptionId","Parameters.accept","Parameters.resourceGroupName","Mappers.AvailabilityStatus","Parameters.resourceUri","Parameters.nextLink","getByResourceOperationSpec","listOperationSpec","listNextOperationSpec","serializer","Mappers.OperationListResult","Mappers.EmergingIssuesGetResult","Parameters.issueName","Mappers.EmergingIssueListResult","coreClient.ServiceClient"],"mappings":"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"}
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/models/index.ts","../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/availabilityStatuses.ts","../src/operations/childAvailabilityStatuses.ts","../src/operations/childResources.ts","../src/operations/operations.ts","../src/operations/emergingIssues.ts","../src/microsoftResourceHealth.ts"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\n/** The List availabilityStatus operation response. */\nexport interface AvailabilityStatusListResult {\n /** The list of availabilityStatuses. */\n value: AvailabilityStatus[];\n /** The URI to fetch the next page of availabilityStatuses. Call ListNext() with this URI to fetch the next page of availabilityStatuses. */\n nextLink?: string;\n}\n\n/** availabilityStatus of a resource. */\nexport interface AvailabilityStatus {\n /** Azure Resource Manager Identity for the availabilityStatuses resource. */\n id?: string;\n /** current. */\n name?: string;\n /** Microsoft.ResourceHealth/AvailabilityStatuses. */\n type?: string;\n /** Azure Resource Manager geo location of the resource. */\n location?: string;\n /** Properties of availability state. */\n properties?: AvailabilityStatusProperties;\n}\n\n/** Properties of availability state. */\nexport interface AvailabilityStatusProperties {\n /** Availability status of the resource. When it is null, this availabilityStatus object represents an availability impacting event */\n availabilityState?: AvailabilityStateValues;\n /** Summary description of the availability status. */\n summary?: string;\n /** Details of the availability status. */\n detailedStatus?: string;\n /** When the resource's availabilityState is Unavailable, it describes where the health impacting event was originated. Examples are planned, unplanned, user initiated or an outage etc. */\n reasonType?: string;\n /** When the resource's availabilityState is Unavailable, it provides the Timestamp for when the health impacting event was received. */\n rootCauseAttributionTime?: Date;\n /** In case of an availability impacting event, it describes when the health impacting event was originated. Examples are Lifecycle, Downtime, Fault Analysis etc. */\n healthEventType?: string;\n /** In case of an availability impacting event, it describes where the health impacting event was originated. Examples are PlatformInitiated, UserInitiated etc. */\n healthEventCause?: string;\n /** In case of an availability impacting event, it describes the category of a PlatformInitiated health impacting event. Examples are Planned, Unplanned etc. */\n healthEventCategory?: string;\n /** It is a unique Id that identifies the event */\n healthEventId?: string;\n /** When the resource's availabilityState is Unavailable and the reasonType is not User Initiated, it provides the date and time for when the issue is expected to be resolved. */\n resolutionETA?: Date;\n /** Timestamp for when last change in health status occurred. */\n occuredTime?: Date;\n /** Chronicity of the availability transition. */\n reasonChronicity?: ReasonChronicityTypes;\n /** Timestamp for when the health was last checked. */\n reportedTime?: Date;\n /** An annotation describing a change in the availabilityState to Available from Unavailable with a reasonType of type Unplanned */\n recentlyResolvedState?: AvailabilityStatusPropertiesRecentlyResolvedState;\n /** Lists actions the user can take based on the current availabilityState of the resource. */\n recommendedActions?: RecommendedAction[];\n /** Lists the service impacting events that may be affecting the health of the resource. */\n serviceImpactingEvents?: ServiceImpactingEvent[];\n}\n\n/** An annotation describing a change in the availabilityState to Available from Unavailable with a reasonType of type Unplanned */\nexport interface AvailabilityStatusPropertiesRecentlyResolvedState {\n /** Timestamp for when the availabilityState changed to Unavailable */\n unavailableOccurredTime?: Date;\n /** Timestamp when the availabilityState changes to Available. */\n resolvedTime?: Date;\n /** Brief description of cause of the resource becoming unavailable. */\n unavailabilitySummary?: string;\n}\n\n/** Lists actions the user can take based on the current availabilityState of the resource. */\nexport interface RecommendedAction {\n /** Recommended action. */\n action?: string;\n /** Link to the action */\n actionUrl?: string;\n /** Substring of action, it describes which text should host the action url. */\n actionUrlText?: string;\n}\n\n/** Lists the service impacting events that may be affecting the health of the resource. */\nexport interface ServiceImpactingEvent {\n /** Timestamp for when the event started. */\n eventStartTime?: Date;\n /** Timestamp for when event was submitted/detected. */\n eventStatusLastModifiedTime?: Date;\n /** Correlation id for the event */\n correlationId?: string;\n /** Status of the service impacting event. */\n status?: ServiceImpactingEventStatus;\n /** Properties of the service impacting event. */\n incidentProperties?: ServiceImpactingEventIncidentProperties;\n}\n\n/** Status of the service impacting event. */\nexport interface ServiceImpactingEventStatus {\n /** Current status of the event */\n value?: string;\n}\n\n/** Properties of the service impacting event. */\nexport interface ServiceImpactingEventIncidentProperties {\n /** Title of the incident. */\n title?: string;\n /** Service impacted by the event. */\n service?: string;\n /** Region impacted by the event. */\n region?: string;\n /** Type of Event. */\n incidentType?: string;\n}\n\n/** Error details. */\nexport interface ErrorResponse {\n /**\n * The error code.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly code?: string;\n /**\n * The error message.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly message?: string;\n /**\n * The error details.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly details?: string;\n}\n\n/** Lists the operations response. */\nexport interface OperationListResult {\n /** List of operations available in the resourcehealth resource provider. */\n value: Operation[];\n}\n\n/** Operation available in the resourcehealth resource provider. */\nexport interface Operation {\n /** Name of the operation. */\n name?: string;\n /** Properties of the operation. */\n display?: OperationDisplay;\n}\n\n/** Properties of the operation. */\nexport interface OperationDisplay {\n /** Provider name. */\n provider?: string;\n /** Resource name. */\n resource?: string;\n /** Operation name. */\n operation?: string;\n /** Description of the operation. */\n description?: string;\n}\n\n/** Banner type of emerging issue. */\nexport interface StatusBanner {\n /** The banner title. */\n title?: string;\n /** The details of banner. */\n message?: string;\n /** The cloud type of this banner. */\n cloud?: string;\n /** The last time modified on this banner. */\n lastModifiedTime?: Date;\n}\n\n/** Active event type of emerging issue. */\nexport interface StatusActiveEvent {\n /** The active event title. */\n title?: string;\n /** The details of active event. */\n description?: string;\n /** The tracking id of this active event. */\n trackingId?: string;\n /** The impact start time on this active event. */\n startTime?: Date;\n /** The cloud type of this active event. */\n cloud?: string;\n /** The severity level of this active event. */\n severity?: SeverityValues;\n /** The stage of this active event. */\n stage?: StageValues;\n /** The boolean value of this active event if published or not. */\n published?: boolean;\n /** The last time modified on this banner. */\n lastModifiedTime?: Date;\n /** The list of emerging issues impacts. */\n impacts?: EmergingIssueImpact[];\n}\n\n/** Object of the emerging issue impact on services and regions. */\nexport interface EmergingIssueImpact {\n /** The impacted service id. */\n id?: string;\n /** The impacted service name. */\n name?: string;\n /** The list of impacted regions for corresponding emerging issues. */\n regions?: ImpactedRegion[];\n}\n\n/** Object of impacted region. */\nexport interface ImpactedRegion {\n /** The impacted region id. */\n id?: string;\n /** The impacted region name. */\n name?: 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/** The list of emerging issues. */\nexport interface EmergingIssueListResult {\n /** The list of emerging issues. */\n value?: EmergingIssuesGetResult[];\n /** The link used to get the next page of emerging issues. */\n nextLink?: string;\n}\n\n/** The Get EmergingIssues operation response. */\nexport type EmergingIssuesGetResult = Resource & {\n /** Timestamp for when last time refreshed for ongoing emerging issue. */\n refreshTimestamp?: Date;\n /** The list of emerging issues of banner type. */\n statusBanners?: StatusBanner[];\n /** The list of emerging issues of active event type. */\n statusActiveEvents?: StatusActiveEvent[];\n};\n\n/** Known values of {@link SeverityValues} that the service accepts. */\nexport enum KnownSeverityValues {\n Information = \"Information\",\n Warning = \"Warning\",\n Error = \"Error\"\n}\n\n/**\n * Defines values for SeverityValues. \\\n * {@link KnownSeverityValues} can be used interchangeably with SeverityValues,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Information** \\\n * **Warning** \\\n * **Error**\n */\nexport type SeverityValues = string;\n\n/** Known values of {@link StageValues} that the service accepts. */\nexport enum KnownStageValues {\n Active = \"Active\",\n Resolve = \"Resolve\",\n Archived = \"Archived\"\n}\n\n/**\n * Defines values for StageValues. \\\n * {@link KnownStageValues} can be used interchangeably with StageValues,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **Active** \\\n * **Resolve** \\\n * **Archived**\n */\nexport type StageValues = string;\n/** Defines values for AvailabilityStateValues. */\nexport type AvailabilityStateValues = \"Available\" | \"Unavailable\" | \"Unknown\";\n/** Defines values for ReasonChronicityTypes. */\nexport type ReasonChronicityTypes = \"Transient\" | \"Persistent\";\n\n/** Optional parameters. */\nexport interface AvailabilityStatusesListBySubscriptionIdOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the listBySubscriptionId operation. */\nexport type AvailabilityStatusesListBySubscriptionIdResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface AvailabilityStatusesListByResourceGroupOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the listByResourceGroup operation. */\nexport type AvailabilityStatusesListByResourceGroupResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface AvailabilityStatusesGetByResourceOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the getByResource operation. */\nexport type AvailabilityStatusesGetByResourceResponse = AvailabilityStatus;\n\n/** Optional parameters. */\nexport interface AvailabilityStatusesListOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the list operation. */\nexport type AvailabilityStatusesListResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface AvailabilityStatusesListBySubscriptionIdNextOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the listBySubscriptionIdNext operation. */\nexport type AvailabilityStatusesListBySubscriptionIdNextResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface AvailabilityStatusesListByResourceGroupNextOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the listByResourceGroupNext operation. */\nexport type AvailabilityStatusesListByResourceGroupNextResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface AvailabilityStatusesListNextOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the listNext operation. */\nexport type AvailabilityStatusesListNextResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface ChildAvailabilityStatusesGetByResourceOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the getByResource operation. */\nexport type ChildAvailabilityStatusesGetByResourceResponse = AvailabilityStatus;\n\n/** Optional parameters. */\nexport interface ChildAvailabilityStatusesListOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the list operation. */\nexport type ChildAvailabilityStatusesListResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface ChildAvailabilityStatusesListNextOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the listNext operation. */\nexport type ChildAvailabilityStatusesListNextResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface ChildResourcesListOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the list operation. */\nexport type ChildResourcesListResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface ChildResourcesListNextOptionalParams\n extends coreClient.OperationOptions {\n /** The filter to apply on the operation. For more information please see https://docs.microsoft.com/en-us/rest/api/apimanagement/apis?redirectedfrom=MSDN */\n filter?: string;\n /** Setting $expand=recommendedactions in url query expands the recommendedactions in the response. */\n expand?: string;\n}\n\n/** Contains response data for the listNext operation. */\nexport type ChildResourcesListNextResponse = AvailabilityStatusListResult;\n\n/** Optional parameters. */\nexport interface OperationsListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type OperationsListResponse = OperationListResult;\n\n/** Optional parameters. */\nexport interface EmergingIssuesGetOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the get operation. */\nexport type EmergingIssuesGetResponse = EmergingIssuesGetResult;\n\n/** Optional parameters. */\nexport interface EmergingIssuesListOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the list operation. */\nexport type EmergingIssuesListResponse = EmergingIssueListResult;\n\n/** Optional parameters. */\nexport interface EmergingIssuesListNextOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the listNext operation. */\nexport type EmergingIssuesListNextResponse = EmergingIssueListResult;\n\n/** Optional parameters. */\nexport interface MicrosoftResourceHealthOptionalParams\n extends coreClient.ServiceClientOptions {\n /** server parameter */\n $host?: string;\n /** Api Version */\n apiVersion?: string;\n /** Overrides client endpoint. */\n endpoint?: string;\n}\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\nexport const AvailabilityStatusListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AvailabilityStatusListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n required: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"AvailabilityStatus\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const AvailabilityStatus: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AvailabilityStatus\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n type: {\n name: \"String\"\n }\n },\n location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"AvailabilityStatusProperties\"\n }\n }\n }\n }\n};\n\nexport const AvailabilityStatusProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AvailabilityStatusProperties\",\n modelProperties: {\n availabilityState: {\n serializedName: \"availabilityState\",\n type: {\n name: \"Enum\",\n allowedValues: [\"Available\", \"Unavailable\", \"Unknown\"]\n }\n },\n summary: {\n serializedName: \"summary\",\n type: {\n name: \"String\"\n }\n },\n detailedStatus: {\n serializedName: \"detailedStatus\",\n type: {\n name: \"String\"\n }\n },\n reasonType: {\n serializedName: \"reasonType\",\n type: {\n name: \"String\"\n }\n },\n rootCauseAttributionTime: {\n serializedName: \"rootCauseAttributionTime\",\n type: {\n name: \"DateTime\"\n }\n },\n healthEventType: {\n serializedName: \"healthEventType\",\n type: {\n name: \"String\"\n }\n },\n healthEventCause: {\n serializedName: \"healthEventCause\",\n type: {\n name: \"String\"\n }\n },\n healthEventCategory: {\n serializedName: \"healthEventCategory\",\n type: {\n name: \"String\"\n }\n },\n healthEventId: {\n serializedName: \"healthEventId\",\n type: {\n name: \"String\"\n }\n },\n resolutionETA: {\n serializedName: \"resolutionETA\",\n type: {\n name: \"DateTime\"\n }\n },\n occuredTime: {\n serializedName: \"occuredTime\",\n type: {\n name: \"DateTime\"\n }\n },\n reasonChronicity: {\n serializedName: \"reasonChronicity\",\n type: {\n name: \"Enum\",\n allowedValues: [\"Transient\", \"Persistent\"]\n }\n },\n reportedTime: {\n serializedName: \"reportedTime\",\n type: {\n name: \"DateTime\"\n }\n },\n recentlyResolvedState: {\n serializedName: \"recentlyResolvedState\",\n type: {\n name: \"Composite\",\n className: \"AvailabilityStatusPropertiesRecentlyResolvedState\"\n }\n },\n recommendedActions: {\n serializedName: \"recommendedActions\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"RecommendedAction\"\n }\n }\n }\n },\n serviceImpactingEvents: {\n serializedName: \"serviceImpactingEvents\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ServiceImpactingEvent\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const AvailabilityStatusPropertiesRecentlyResolvedState: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"AvailabilityStatusPropertiesRecentlyResolvedState\",\n modelProperties: {\n unavailableOccurredTime: {\n serializedName: \"unavailableOccurredTime\",\n type: {\n name: \"DateTime\"\n }\n },\n resolvedTime: {\n serializedName: \"resolvedTime\",\n type: {\n name: \"DateTime\"\n }\n },\n unavailabilitySummary: {\n serializedName: \"unavailabilitySummary\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const RecommendedAction: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"RecommendedAction\",\n modelProperties: {\n action: {\n serializedName: \"action\",\n type: {\n name: \"String\"\n }\n },\n actionUrl: {\n serializedName: \"actionUrl\",\n type: {\n name: \"String\"\n }\n },\n actionUrlText: {\n serializedName: \"actionUrlText\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ServiceImpactingEvent: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ServiceImpactingEvent\",\n modelProperties: {\n eventStartTime: {\n serializedName: \"eventStartTime\",\n type: {\n name: \"DateTime\"\n }\n },\n eventStatusLastModifiedTime: {\n serializedName: \"eventStatusLastModifiedTime\",\n type: {\n name: \"DateTime\"\n }\n },\n correlationId: {\n serializedName: \"correlationId\",\n type: {\n name: \"String\"\n }\n },\n status: {\n serializedName: \"status\",\n type: {\n name: \"Composite\",\n className: \"ServiceImpactingEventStatus\"\n }\n },\n incidentProperties: {\n serializedName: \"incidentProperties\",\n type: {\n name: \"Composite\",\n className: \"ServiceImpactingEventIncidentProperties\"\n }\n }\n }\n }\n};\n\nexport const ServiceImpactingEventStatus: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ServiceImpactingEventStatus\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ServiceImpactingEventIncidentProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ServiceImpactingEventIncidentProperties\",\n modelProperties: {\n title: {\n serializedName: \"title\",\n type: {\n name: \"String\"\n }\n },\n service: {\n serializedName: \"service\",\n type: {\n name: \"String\"\n }\n },\n region: {\n serializedName: \"region\",\n type: {\n name: \"String\"\n }\n },\n incidentType: {\n serializedName: \"incidentType\",\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 code: {\n serializedName: \"code\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n details: {\n serializedName: \"details\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const OperationListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n required: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Operation\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const Operation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Operation\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\"\n }\n }\n }\n }\n};\n\nexport const OperationDisplay: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n type: {\n name: \"String\"\n }\n },\n 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 StatusBanner: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"StatusBanner\",\n modelProperties: {\n title: {\n serializedName: \"title\",\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n },\n cloud: {\n serializedName: \"cloud\",\n type: {\n name: \"String\"\n }\n },\n lastModifiedTime: {\n serializedName: \"lastModifiedTime\",\n type: {\n name: \"DateTime\"\n }\n }\n }\n }\n};\n\nexport const StatusActiveEvent: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"StatusActiveEvent\",\n modelProperties: {\n title: {\n serializedName: \"title\",\n type: {\n name: \"String\"\n }\n },\n description: {\n serializedName: \"description\",\n type: {\n name: \"String\"\n }\n },\n trackingId: {\n serializedName: \"trackingId\",\n type: {\n name: \"String\"\n }\n },\n startTime: {\n serializedName: \"startTime\",\n type: {\n name: \"DateTime\"\n }\n },\n cloud: {\n serializedName: \"cloud\",\n type: {\n name: \"String\"\n }\n },\n severity: {\n serializedName: \"severity\",\n type: {\n name: \"String\"\n }\n },\n stage: {\n serializedName: \"stage\",\n type: {\n name: \"String\"\n }\n },\n published: {\n serializedName: \"published\",\n type: {\n name: \"Boolean\"\n }\n },\n lastModifiedTime: {\n serializedName: \"lastModifiedTime\",\n type: {\n name: \"DateTime\"\n }\n },\n impacts: {\n serializedName: \"impacts\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"EmergingIssueImpact\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const EmergingIssueImpact: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EmergingIssueImpact\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n regions: {\n serializedName: \"regions\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ImpactedRegion\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ImpactedRegion: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ImpactedRegion\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\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 EmergingIssueListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EmergingIssueListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"EmergingIssuesGetResult\"\n }\n }\n }\n },\n nextLink: {\n serializedName: \"nextLink\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const EmergingIssuesGetResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"EmergingIssuesGetResult\",\n modelProperties: {\n ...Resource.type.modelProperties,\n refreshTimestamp: {\n serializedName: \"properties.refreshTimestamp\",\n type: {\n name: \"DateTime\"\n }\n },\n statusBanners: {\n serializedName: \"properties.statusBanners\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"StatusBanner\"\n }\n }\n }\n },\n statusActiveEvents: {\n serializedName: \"properties.statusActiveEvents\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"StatusActiveEvent\"\n }\n }\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport {\n OperationParameter,\n OperationURLParameter,\n OperationQueryParameter\n} from \"@azure/core-client\";\n\nexport const accept: OperationParameter = {\n parameterPath: \"accept\",\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Accept\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const $host: OperationURLParameter = {\n parameterPath: \"$host\",\n mapper: {\n serializedName: \"$host\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const apiVersion: OperationQueryParameter = {\n parameterPath: \"apiVersion\",\n mapper: {\n defaultValue: \"2017-07-01\",\n isConstant: true,\n serializedName: \"api-version\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const filter: OperationQueryParameter = {\n parameterPath: [\"options\", \"filter\"],\n mapper: {\n serializedName: \"$filter\",\n type: {\n name: \"String\"\n }\n }\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 expand: OperationQueryParameter = {\n parameterPath: [\"options\", \"expand\"],\n mapper: {\n serializedName: \"$expand\",\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 resourceUri: OperationURLParameter = {\n parameterPath: \"resourceUri\",\n mapper: {\n serializedName: \"resourceUri\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\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 issueName: OperationURLParameter = {\n parameterPath: \"issueName\",\n mapper: {\n defaultValue: \"default\",\n isConstant: true,\n serializedName: \"issueName\",\n type: {\n name: \"String\"\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { AvailabilityStatuses } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { MicrosoftResourceHealth } from \"../microsoftResourceHealth\";\nimport {\n AvailabilityStatus,\n AvailabilityStatusesListBySubscriptionIdNextOptionalParams,\n AvailabilityStatusesListBySubscriptionIdOptionalParams,\n AvailabilityStatusesListByResourceGroupNextOptionalParams,\n AvailabilityStatusesListByResourceGroupOptionalParams,\n AvailabilityStatusesListNextOptionalParams,\n AvailabilityStatusesListOptionalParams,\n AvailabilityStatusesListBySubscriptionIdResponse,\n AvailabilityStatusesListByResourceGroupResponse,\n AvailabilityStatusesGetByResourceOptionalParams,\n AvailabilityStatusesGetByResourceResponse,\n AvailabilityStatusesListResponse,\n AvailabilityStatusesListBySubscriptionIdNextResponse,\n AvailabilityStatusesListByResourceGroupNextResponse,\n AvailabilityStatusesListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing AvailabilityStatuses operations. */\nexport class AvailabilityStatusesImpl implements AvailabilityStatuses {\n private readonly client: MicrosoftResourceHealth;\n\n /**\n * Initialize a new instance of the class AvailabilityStatuses class.\n * @param client Reference to the service client\n */\n constructor(client: MicrosoftResourceHealth) {\n this.client = client;\n }\n\n /**\n * Lists the current availability status for all the resources in the subscription. Use the nextLink\n * property in the response to get the next page of availability statuses.\n * @param options The options parameters.\n */\n public listBySubscriptionId(\n options?: AvailabilityStatusesListBySubscriptionIdOptionalParams\n ): PagedAsyncIterableIterator<AvailabilityStatus> {\n const iter = this.listBySubscriptionIdPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listBySubscriptionIdPagingPage(options);\n }\n };\n }\n\n private async *listBySubscriptionIdPagingPage(\n options?: AvailabilityStatusesListBySubscriptionIdOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus[]> {\n let result = await this._listBySubscriptionId(options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listBySubscriptionIdNext(continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listBySubscriptionIdPagingAll(\n options?: AvailabilityStatusesListBySubscriptionIdOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus> {\n for await (const page of this.listBySubscriptionIdPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Lists the current availability status for all the resources in the resource group. Use the nextLink\n * property in the response to get the next page of availability statuses.\n * @param resourceGroupName The name of the resource group.\n * @param options The options parameters.\n */\n public listByResourceGroup(\n resourceGroupName: string,\n options?: AvailabilityStatusesListByResourceGroupOptionalParams\n ): PagedAsyncIterableIterator<AvailabilityStatus> {\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?: AvailabilityStatusesListByResourceGroupOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus[]> {\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?: AvailabilityStatusesListByResourceGroupOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus> {\n for await (const page of this.listByResourceGroupPagingPage(\n resourceGroupName,\n options\n )) {\n yield* page;\n }\n }\n\n /**\n * Lists all historical availability transitions and impacting events for a single resource. Use the\n * nextLink property in the response to get the next page of availability status\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API support not nested and one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name}\n * and\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\n * @param options The options parameters.\n */\n public list(\n resourceUri: string,\n options?: AvailabilityStatusesListOptionalParams\n ): PagedAsyncIterableIterator<AvailabilityStatus> {\n const iter = this.listPagingAll(resourceUri, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(resourceUri, options);\n }\n };\n }\n\n private async *listPagingPage(\n resourceUri: string,\n options?: AvailabilityStatusesListOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus[]> {\n let result = await this._list(resourceUri, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(resourceUri, continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n resourceUri: string,\n options?: AvailabilityStatusesListOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus> {\n for await (const page of this.listPagingPage(resourceUri, options)) {\n yield* page;\n }\n }\n\n /**\n * Lists the current availability status for all the resources in the subscription. Use the nextLink\n * property in the response to get the next page of availability statuses.\n * @param options The options parameters.\n */\n private _listBySubscriptionId(\n options?: AvailabilityStatusesListBySubscriptionIdOptionalParams\n ): Promise<AvailabilityStatusesListBySubscriptionIdResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionIdOperationSpec\n );\n }\n\n /**\n * Lists the current availability status for all the resources in the resource group. Use the nextLink\n * property in the response to get the next page of availability statuses.\n * @param resourceGroupName The name of the resource group.\n * @param options The options parameters.\n */\n private _listByResourceGroup(\n resourceGroupName: string,\n options?: AvailabilityStatusesListByResourceGroupOptionalParams\n ): Promise<AvailabilityStatusesListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, options },\n listByResourceGroupOperationSpec\n );\n }\n\n /**\n * Gets current availability status for a single resource\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API support not nested and one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name}\n * and\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\n * @param options The options parameters.\n */\n getByResource(\n resourceUri: string,\n options?: AvailabilityStatusesGetByResourceOptionalParams\n ): Promise<AvailabilityStatusesGetByResourceResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, options },\n getByResourceOperationSpec\n );\n }\n\n /**\n * Lists all historical availability transitions and impacting events for a single resource. Use the\n * nextLink property in the response to get the next page of availability status\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API support not nested and one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name}\n * and\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\n * @param options The options parameters.\n */\n private _list(\n resourceUri: string,\n options?: AvailabilityStatusesListOptionalParams\n ): Promise<AvailabilityStatusesListResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, options },\n listOperationSpec\n );\n }\n\n /**\n * ListBySubscriptionIdNext\n * @param nextLink The nextLink from the previous successful call to the ListBySubscriptionId method.\n * @param options The options parameters.\n */\n private _listBySubscriptionIdNext(\n nextLink: string,\n options?: AvailabilityStatusesListBySubscriptionIdNextOptionalParams\n ): Promise<AvailabilityStatusesListBySubscriptionIdNextResponse> {\n return this.client.sendOperationRequest(\n { nextLink, options },\n listBySubscriptionIdNextOperationSpec\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?: AvailabilityStatusesListByResourceGroupNextOptionalParams\n ): Promise<AvailabilityStatusesListByResourceGroupNextResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, nextLink, options },\n listByResourceGroupNextOperationSpec\n );\n }\n\n /**\n * ListNext\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API support not nested and one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name}\n * and\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\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 resourceUri: string,\n nextLink: string,\n options?: AvailabilityStatusesListNextOptionalParams\n ): Promise<AvailabilityStatusesListNextResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, nextLink, options },\n listNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listBySubscriptionIdOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.ResourceHealth/availabilityStatuses\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ResourceHealth/availabilityStatuses\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getByResourceOperationSpec: coreClient.OperationSpec = {\n path:\n \"/{resourceUri}/providers/Microsoft.ResourceHealth/availabilityStatuses/current\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatus\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [Parameters.$host, Parameters.resourceUri],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listOperationSpec: coreClient.OperationSpec = {\n path:\n \"/{resourceUri}/providers/Microsoft.ResourceHealth/availabilityStatuses\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [Parameters.$host, Parameters.resourceUri],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listBySubscriptionIdNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.nextLink\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.nextLink\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.resourceUri,\n Parameters.nextLink\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 { ChildAvailabilityStatuses } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { MicrosoftResourceHealth } from \"../microsoftResourceHealth\";\nimport {\n AvailabilityStatus,\n ChildAvailabilityStatusesListNextOptionalParams,\n ChildAvailabilityStatusesListOptionalParams,\n ChildAvailabilityStatusesGetByResourceOptionalParams,\n ChildAvailabilityStatusesGetByResourceResponse,\n ChildAvailabilityStatusesListResponse,\n ChildAvailabilityStatusesListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing ChildAvailabilityStatuses operations. */\nexport class ChildAvailabilityStatusesImpl\n implements ChildAvailabilityStatuses {\n private readonly client: MicrosoftResourceHealth;\n\n /**\n * Initialize a new instance of the class ChildAvailabilityStatuses class.\n * @param client Reference to the service client\n */\n constructor(client: MicrosoftResourceHealth) {\n this.client = client;\n }\n\n /**\n * Lists the historical availability statuses for a single child resource. Use the nextLink property in\n * the response to get the next page of availability status\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API only support one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\n * @param options The options parameters.\n */\n public list(\n resourceUri: string,\n options?: ChildAvailabilityStatusesListOptionalParams\n ): PagedAsyncIterableIterator<AvailabilityStatus> {\n const iter = this.listPagingAll(resourceUri, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(resourceUri, options);\n }\n };\n }\n\n private async *listPagingPage(\n resourceUri: string,\n options?: ChildAvailabilityStatusesListOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus[]> {\n let result = await this._list(resourceUri, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(resourceUri, continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n resourceUri: string,\n options?: ChildAvailabilityStatusesListOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus> {\n for await (const page of this.listPagingPage(resourceUri, options)) {\n yield* page;\n }\n }\n\n /**\n * Gets current availability status for a single resource\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API only support one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\n * @param options The options parameters.\n */\n getByResource(\n resourceUri: string,\n options?: ChildAvailabilityStatusesGetByResourceOptionalParams\n ): Promise<ChildAvailabilityStatusesGetByResourceResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, options },\n getByResourceOperationSpec\n );\n }\n\n /**\n * Lists the historical availability statuses for a single child resource. Use the nextLink property in\n * the response to get the next page of availability status\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API only support one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\n * @param options The options parameters.\n */\n private _list(\n resourceUri: string,\n options?: ChildAvailabilityStatusesListOptionalParams\n ): Promise<ChildAvailabilityStatusesListResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, options },\n listOperationSpec\n );\n }\n\n /**\n * ListNext\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API only support one nesting level resource types :\n * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resource-provider-name}/{parentResourceType}/{parentResourceName}/{resourceType}/{resourceName}\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 resourceUri: string,\n nextLink: string,\n options?: ChildAvailabilityStatusesListNextOptionalParams\n ): Promise<ChildAvailabilityStatusesListNextResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, nextLink, options },\n listNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst getByResourceOperationSpec: coreClient.OperationSpec = {\n path:\n \"/{resourceUri}/providers/Microsoft.ResourceHealth/childAvailabilityStatuses/current\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatus\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [Parameters.$host, Parameters.resourceUri],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listOperationSpec: coreClient.OperationSpec = {\n path:\n \"/{resourceUri}/providers/Microsoft.ResourceHealth/childAvailabilityStatuses\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [Parameters.$host, Parameters.resourceUri],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.resourceUri,\n Parameters.nextLink\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 { ChildResources } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { MicrosoftResourceHealth } from \"../microsoftResourceHealth\";\nimport {\n AvailabilityStatus,\n ChildResourcesListNextOptionalParams,\n ChildResourcesListOptionalParams,\n ChildResourcesListResponse,\n ChildResourcesListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing ChildResources operations. */\nexport class ChildResourcesImpl implements ChildResources {\n private readonly client: MicrosoftResourceHealth;\n\n /**\n * Initialize a new instance of the class ChildResources class.\n * @param client Reference to the service client\n */\n constructor(client: MicrosoftResourceHealth) {\n this.client = client;\n }\n\n /**\n * Lists the all the children and its current health status for a parent resource. Use the nextLink\n * property in the response to get the next page of children current health\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API only support not nested parent resource type:\n * /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name}\n * @param options The options parameters.\n */\n public list(\n resourceUri: string,\n options?: ChildResourcesListOptionalParams\n ): PagedAsyncIterableIterator<AvailabilityStatus> {\n const iter = this.listPagingAll(resourceUri, options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(resourceUri, options);\n }\n };\n }\n\n private async *listPagingPage(\n resourceUri: string,\n options?: ChildResourcesListOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus[]> {\n let result = await this._list(resourceUri, options);\n yield result.value || [];\n let continuationToken = result.nextLink;\n while (continuationToken) {\n result = await this._listNext(resourceUri, continuationToken, options);\n continuationToken = result.nextLink;\n yield result.value || [];\n }\n }\n\n private async *listPagingAll(\n resourceUri: string,\n options?: ChildResourcesListOptionalParams\n ): AsyncIterableIterator<AvailabilityStatus> {\n for await (const page of this.listPagingPage(resourceUri, options)) {\n yield* page;\n }\n }\n\n /**\n * Lists the all the children and its current health status for a parent resource. Use the nextLink\n * property in the response to get the next page of children current health\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API only support not nested parent resource type:\n * /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name}\n * @param options The options parameters.\n */\n private _list(\n resourceUri: string,\n options?: ChildResourcesListOptionalParams\n ): Promise<ChildResourcesListResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, options },\n listOperationSpec\n );\n }\n\n /**\n * ListNext\n * @param resourceUri The fully qualified ID of the resource, including the resource name and resource\n * type. Currently the API only support not nested parent resource type:\n * /subscriptions/{subscriptionId}/resourceGroups/{resource-group-name}/providers/{resource-provider-name}/{resource-type}/{resource-name}\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 resourceUri: string,\n nextLink: string,\n options?: ChildResourcesListNextOptionalParams\n ): Promise<ChildResourcesListNextResponse> {\n return this.client.sendOperationRequest(\n { resourceUri, nextLink, options },\n listNextOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/{resourceUri}/providers/Microsoft.ResourceHealth/childResources\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [Parameters.$host, Parameters.resourceUri],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listNextOperationSpec: coreClient.OperationSpec = {\n path: \"{nextLink}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.AvailabilityStatusListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [\n Parameters.apiVersion,\n Parameters.filter,\n Parameters.expand\n ],\n urlParameters: [\n Parameters.$host,\n Parameters.resourceUri,\n Parameters.nextLink\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 { Operations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { MicrosoftResourceHealth } from \"../microsoftResourceHealth\";\nimport {\n OperationsListOptionalParams,\n OperationsListResponse\n} from \"../models\";\n\n/** Class containing Operations operations. */\nexport class OperationsImpl implements Operations {\n private readonly client: MicrosoftResourceHealth;\n\n /**\n * Initialize a new instance of the class Operations class.\n * @param client Reference to the service client\n */\n constructor(client: MicrosoftResourceHealth) {\n this.client = client;\n }\n\n /**\n * Lists available operations for the resourcehealth resource provider\n * @param options The options parameters.\n */\n list(\n options?: OperationsListOptionalParams\n ): Promise<OperationsListResponse> {\n return this.client.sendOperationRequest({ options }, listOperationSpec);\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.ResourceHealth/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationListResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\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 { EmergingIssues } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { MicrosoftResourceHealth } from \"../microsoftResourceHealth\";\nimport {\n EmergingIssuesGetResult,\n EmergingIssuesListNextOptionalParams,\n EmergingIssuesListOptionalParams,\n EmergingIssuesGetOptionalParams,\n EmergingIssuesGetResponse,\n EmergingIssuesListResponse,\n EmergingIssuesListNextResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing EmergingIssues operations. */\nexport class EmergingIssuesImpl implements EmergingIssues {\n private readonly client: MicrosoftResourceHealth;\n\n /**\n * Initialize a new instance of the class EmergingIssues class.\n * @param client Reference to the service client\n */\n constructor(client: MicrosoftResourceHealth) {\n this.client = client;\n }\n\n /**\n * Lists Azure services' emerging issues.\n * @param options The options parameters.\n */\n public list(\n options?: EmergingIssuesListOptionalParams\n ): PagedAsyncIterableIterator<EmergingIssuesGetResult> {\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?: EmergingIssuesListOptionalParams\n ): AsyncIterableIterator<EmergingIssuesGetResult[]> {\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?: EmergingIssuesListOptionalParams\n ): AsyncIterableIterator<EmergingIssuesGetResult> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Gets Azure services' emerging issues.\n * @param options The options parameters.\n */\n get(\n options?: EmergingIssuesGetOptionalParams\n ): Promise<EmergingIssuesGetResponse> {\n return this.client.sendOperationRequest({ options }, getOperationSpec);\n }\n\n /**\n * Lists Azure services' emerging issues.\n * @param options The options parameters.\n */\n private _list(\n options?: EmergingIssuesListOptionalParams\n ): Promise<EmergingIssuesListResponse> {\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?: EmergingIssuesListNextOptionalParams\n ): Promise<EmergingIssuesListNextResponse> {\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 getOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.ResourceHealth/emergingIssues/{issueName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.EmergingIssuesGetResult\n },\n default: {\n bodyMapper: Mappers.ErrorResponse\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.issueName],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.ResourceHealth/emergingIssues\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.EmergingIssueListResult\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.EmergingIssueListResult\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 AvailabilityStatusesImpl,\n ChildAvailabilityStatusesImpl,\n ChildResourcesImpl,\n OperationsImpl,\n EmergingIssuesImpl\n} from \"./operations\";\nimport {\n AvailabilityStatuses,\n ChildAvailabilityStatuses,\n ChildResources,\n Operations,\n EmergingIssues\n} from \"./operationsInterfaces\";\nimport { MicrosoftResourceHealthOptionalParams } from \"./models\";\n\nexport class MicrosoftResourceHealth extends coreClient.ServiceClient {\n $host: string;\n apiVersion: string;\n subscriptionId: string;\n\n /**\n * Initializes a new instance of the MicrosoftResourceHealth class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param subscriptionId Subscription credentials which uniquely identify Microsoft Azure subscription.\n * The subscription ID forms part of the URI for every service call.\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n subscriptionId: string,\n options?: MicrosoftResourceHealthOptionalParams\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: MicrosoftResourceHealthOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-arm-resourcehealth/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 || \"2017-07-01\";\n this.availabilityStatuses = new AvailabilityStatusesImpl(this);\n this.childAvailabilityStatuses = new ChildAvailabilityStatusesImpl(this);\n this.childResources = new ChildResourcesImpl(this);\n this.operations = new OperationsImpl(this);\n this.emergingIssues = new EmergingIssuesImpl(this);\n }\n\n availabilityStatuses: AvailabilityStatuses;\n childAvailabilityStatuses: ChildAvailabilityStatuses;\n childResources: ChildResources;\n operations: Operations;\n emergingIssues: EmergingIssues;\n}\n"],"names":["KnownSeverityValues","KnownStageValues","__asyncValues","__asyncDelegator","coreClient.createSerializer","Mappers.AvailabilityStatusListResult","Mappers.ErrorResponse","Parameters.apiVersion","Parameters.filter","Parameters.expand","Parameters.$host","Parameters.subscriptionId","Parameters.accept","Parameters.resourceGroupName","Mappers.AvailabilityStatus","Parameters.resourceUri","Parameters.nextLink","getByResourceOperationSpec","listOperationSpec","listNextOperationSpec","serializer","Mappers.OperationListResult","Mappers.EmergingIssuesGetResult","Parameters.issueName","Mappers.EmergingIssueListResult","coreClient.ServiceClient"],"mappings":"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"}
|