From fd6e62ff5950e81eabe7d485eed9c57f39619eeb Mon Sep 17 00:00:00 2001 From: Sam Lee <32776898+minhsuanlee@users.noreply.github.com> Date: Tue, 25 Jul 2023 13:31:18 -0700 Subject: [PATCH 1/9] Generate new Service for recoveryservicesdatareplication --- .../examples/OperationGroupGet.json | 15 ++ .../recoveryservicesdatareplication.json | 132 ++++++++++++++++++ .../resource-manager/readme.az.md | 28 ++++ .../resource-manager/readme.cli.md | 1 + .../resource-manager/readme.csharp.md | 15 ++ .../resource-manager/readme.go.md | 11 ++ .../resource-manager/readme.md | 78 +++++++++++ .../resource-manager/readme.python.md | 18 +++ .../resource-manager/readme.typescript.md | 14 ++ 9 files changed, 312 insertions(+) create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/OperationGroupGet.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/readme.az.md create mode 100644 specification/recoveryservicesdatareplication/resource-manager/readme.cli.md create mode 100644 specification/recoveryservicesdatareplication/resource-manager/readme.csharp.md create mode 100644 specification/recoveryservicesdatareplication/resource-manager/readme.go.md create mode 100644 specification/recoveryservicesdatareplication/resource-manager/readme.md create mode 100644 specification/recoveryservicesdatareplication/resource-manager/readme.python.md create mode 100644 specification/recoveryservicesdatareplication/resource-manager/readme.typescript.md diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/OperationGroupGet.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/OperationGroupGet.json new file mode 100644 index 000000000000..f62a45c8a337 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/OperationGroupGet.json @@ -0,0 +1,15 @@ +{ + "parameters": { + "accountName": "sampleacct", + "resourceGroupName": "recoveryservicesdatareplicationClient", + "api-version": "2021-02-16-preview", + "subscriptionId": "subid" + }, + "responses": { + "200": { + "body": { + "sampleProperty": "sampleProperty" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json new file mode 100644 index 000000000000..c96d097127f2 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json @@ -0,0 +1,132 @@ +{ + "swagger": "2.0", + "info": { + "version": "2021-02-16-preview", + "title": "recoveryservicesdatareplication", + "description": "Description of the new service", + "x-ms-code-generation-settings": { + "name": "recoveryservicesdatareplicationClient" + } + }, + "host": "management.azure.com", + "schemes": ["https"], + "consumes": ["application/json"], + "produces": ["application/json"], + "security": [ + { + "azure_auth": ["user_impersonation"] + } + ], + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "flow": "implicit", + "description": "Azure Active Directory OAuth2 Flow", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/operations": { + "get": { + "tags": ["Tag1"], + "operationId": "OperationGroup_Get", + "x-ms-examples": { + "BatchAccountDelete": { "$ref": "./examples/OperationGroupGet.json" } + }, + "description": "This is a sample get operation, please see guidelines in azure-rest-api-specs repository for more info", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + } + ], + "responses": { + "200": { + "description": "Describe the result of a successful operation.", + "schema": { + "$ref": "#/definitions/Result" + } + }, + "default": { + "description": "Error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + } + } + }, + "definitions": { + "Result": { + "description": "Sample result definition", + "properties": { + "sampleProperty": { + "type": "string", + "description": "Sample property of type string" + } + } + }, + "ErrorResponse": { + "description": "Error response.", + "properties": { + "error": { + "$ref": "#/definitions/ErrorDefinition", + "description": "The error details." + } + } + }, + "ErrorDefinition": { + "description": "Error definition.", + "properties": { + "code": { + "description": "Service specific error code which serves as the substatus for the HTTP error code.", + "type": "string", + "readOnly": true + }, + "message": { + "description": "Description of the error.", + "type": "string", + "readOnly": true + }, + "details": { + "description": "Internal error details.", + "type": "array", + "items": { + "$ref": "#/definitions/ErrorDefinition" + }, + "readOnly": true + } + } + } + }, + "parameters": { + "SubscriptionIdParameter": { + "name": "subscriptionId", + "in": "path", + "required": true, + "type": "string", + "description": "The Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000)" + }, + "ResourceGroupNameParameter": { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "description": "The name of the resource group.", + "x-ms-parameter-location": "method" + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "The API version to be used with the HTTP request." + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/readme.az.md b/specification/recoveryservicesdatareplication/resource-manager/readme.az.md new file mode 100644 index 000000000000..7c212e64fdc2 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/readme.az.md @@ -0,0 +1,28 @@ +## AZ + +These settings apply only when `--az` is specified on the command line. + +For new Resource Provider. It is highly recommended to onboard Azure CLI extensions. There's no differences in terms of customer usage. + +``` yaml $(az) && $(target-mode) != 'core' +az: + extensions: recoveryservicesdatareplication + namespace: azure.mgmt.recoveryservicesdatareplication + package-name: azure-mgmt-recoveryservicesdatareplication +az-output-folder: $(azure-cli-extension-folder)/src/recoveryservicesdatareplication +python-sdk-output-folder: "$(az-output-folder)/azext_recoveryservicesdatareplication/vendored_sdks/recoveryservicesdatareplication" +# add additional configuration here specific for Azure CLI +# refer to the faq.md for more details +``` + + + +This is for command modules that already in azure cli main repo. +``` yaml $(az) && $(target-mode) == 'core' +az: + extensions: recoveryservicesdatareplication + namespace: azure.mgmt.recoveryservicesdatareplication + package-name: azure-mgmt-recoveryservicesdatareplication +az-output-folder: $(azure-cli-folder)/src/azure-cli/azure/cli/command_modules/recoveryservicesdatareplication +python-sdk-output-folder: "$(az-output-folder)/vendored_sdks/recoveryservicesdatareplication" +``` \ No newline at end of file diff --git a/specification/recoveryservicesdatareplication/resource-manager/readme.cli.md b/specification/recoveryservicesdatareplication/resource-manager/readme.cli.md new file mode 100644 index 000000000000..c6cf6ad37ea4 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/readme.cli.md @@ -0,0 +1 @@ +## CLI Common Settings for all the command line tools \ No newline at end of file diff --git a/specification/recoveryservicesdatareplication/resource-manager/readme.csharp.md b/specification/recoveryservicesdatareplication/resource-manager/readme.csharp.md new file mode 100644 index 000000000000..e17637500e5f --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/readme.csharp.md @@ -0,0 +1,15 @@ +## C# + +These settings apply only when `--csharp` is specified on the command line. +Please also specify `--csharp-sdks-folder=`. + +```yaml $(csharp) +csharp: + azure-arm: true + license-header: MICROSOFT_MIT_NO_VERSION + payload-flattening-threshold: 1 + clear-output-folder: true + client-side-validation: false + namespace: Microsoft.DataReplication + output-folder: $(csharp-sdks-folder)/recoveryservicesdatareplication/management/Microsoft.DataReplication/GeneratedProtocol +``` diff --git a/specification/recoveryservicesdatareplication/resource-manager/readme.go.md b/specification/recoveryservicesdatareplication/resource-manager/readme.go.md new file mode 100644 index 000000000000..de2b2090fbde --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/readme.go.md @@ -0,0 +1,11 @@ +## Go + +These settings apply only when `--go` is specified on the command line. + +```yaml $(go) && $(track2) +azure-arm: true +license-header: MICROSOFT_MIT_NO_VERSION +module-name: sdk/resourcemanager/recoveryservicesdatareplication/armrecoveryservicesdatareplication +module: github.com/Azure/azure-sdk-for-go/$(module-name) +output-folder: $(go-sdk-folder)/$(module-name) +``` diff --git a/specification/recoveryservicesdatareplication/resource-manager/readme.md b/specification/recoveryservicesdatareplication/resource-manager/readme.md new file mode 100644 index 000000000000..ea4501511361 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/readme.md @@ -0,0 +1,78 @@ +# recoveryservicesdatareplication + +> see https://aka.ms/autorest + +This is the AutoRest configuration file for recoveryservicesdatareplication. + +## Getting Started + +To build the SDKs for My API, simply install AutoRest via `npm` (`npm install -g autorest`) and then run: + +> `autorest readme.md` + +To see additional help and options, run: + +> `autorest --help` + +For other options on installation see [Installing AutoRest](https://aka.ms/autorest/install) on the AutoRest github page. + +--- + +## Configuration + +### Basic Information + +These are the global settings for the recoveryservicesdatareplication. + +```yaml +openapi-type: arm +tag: package-2021-02-16-preview +``` + +### Tag: package-2021-02-16-preview + +These settings apply only when `--tag=package-2021-02-16-preview` is specified on the command line. + +```yaml $(tag) == 'package-2021-02-16-preview' +input-file: + - Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json +``` + +--- + +# Code Generation + +## Swagger to SDK + +This section describes what SDK should be generated by the automatic system. +This is not used by Autorest itself. + +```yaml $(swagger-to-sdk) +swagger-to-sdk: + - repo: azure-sdk-for-python-track2 + - repo: azure-sdk-for-java + - repo: azure-sdk-for-go + - repo: azure-sdk-for-js + - repo: azure-resource-manager-schemas + - repo: azure-cli-extensions + - repo: azure-powershell +``` +## Az + +See configuration in [readme.az.md](./readme.az.md) + +## Go + +See configuration in [readme.go.md](./readme.go.md) + +## Python + +See configuration in [readme.python.md](./readme.python.md) + +## TypeScript + +See configuration in [readme.typescript.md](./readme.typescript.md) + +## CSharp + +See configuration in [readme.csharp.md](./readme.csharp.md) diff --git a/specification/recoveryservicesdatareplication/resource-manager/readme.python.md b/specification/recoveryservicesdatareplication/resource-manager/readme.python.md new file mode 100644 index 000000000000..0cf1de169d1e --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/readme.python.md @@ -0,0 +1,18 @@ +## Python + +These settings apply only when `--python` is specified on the command line. +Please also specify `--python-sdks-folder=`. + +``` yaml $(python) +azure-arm: true +license-header: MICROSOFT_MIT_NO_VERSION +package-name: azure-mgmt-recoveryservicesdatareplication +namespace: azure.mgmt.recoveryservicesdatareplication +package-version: 1.0.0b1 +clear-output-folder: true +``` + +``` yaml $(python) +no-namespace-folders: true +output-folder: $(python-sdks-folder)/recoveryservicesdatareplication/azure-mgmt-recoveryservicesdatareplication/azure/mgmt/recoveryservicesdatareplication +``` diff --git a/specification/recoveryservicesdatareplication/resource-manager/readme.typescript.md b/specification/recoveryservicesdatareplication/resource-manager/readme.typescript.md new file mode 100644 index 000000000000..ed5b9da5f7da --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/readme.typescript.md @@ -0,0 +1,14 @@ +## TypeScript + +These settings apply only when `--typescript` is specified on the command line. +Please also specify `--typescript-sdks-folder=`. + +``` yaml $(typescript) +typescript: + azure-arm: true + package-name: "@azure/arm-recoveryservicesdatareplication" + output-folder: "$(typescript-sdks-folder)/sdk/recoveryservicesdatareplication/arm-recoveryservicesdatareplication" + payload-flattening-threshold: 1 + clear-output-folder: true + generate-metadata: true +``` From 7d76015a483b911b44eade707e97f851a2b6feca Mon Sep 17 00:00:00 2001 From: Sam Lee Date: Tue, 25 Jul 2023 14:11:48 -0700 Subject: [PATCH 2/9] Initial commit --- .../examples/CheckNameAvailability.json | 22 + .../examples/DeploymentPreflight.json | 34 + .../examples/DraOperationStatus_Get.json | 23 + .../examples/Dra_Create.json | 198 + .../examples/Dra_Delete.json | 19 + .../2021-02-16-preview/examples/Dra_Get.json | 91 + .../2021-02-16-preview/examples/Dra_List.json | 95 + .../examples/EmailConfiguration_Create.json | 75 + .../examples/EmailConfiguration_Get.json | 38 + .../examples/EmailConfiguration_List.json | 42 + .../examples/Event_Get.json | 78 + .../examples/Event_List.json | 84 + .../examples/FabricOperationsStatus_Get.json | 22 + .../examples/Fabric_Create.json | 150 + .../examples/Fabric_Delete.json | 18 + .../examples/Fabric_Get.json | 74 + .../examples/Fabric_List.json | 79 + .../examples/Fabric_ListBySubscription.json | 78 + .../examples/Fabric_Update.json | 89 + .../examples/OperationGroupGet.json | 15 - .../examples/Operations_List.json | 24 + .../examples/PolicyOperationStatus_Get.json | 23 + .../examples/Policy_Create.json | 74 + .../examples/Policy_Delete.json | 19 + .../examples/Policy_Get.json | 37 + .../examples/Policy_List.json | 41 + .../ProtectedItemOperationStatus_Get.json | 23 + .../examples/ProtectedItem_Create.json | 264 + .../examples/ProtectedItem_Delete.json | 20 + .../examples/ProtectedItem_Get.json | 131 + .../examples/ProtectedItem_List.json | 135 + .../ProtectedItem_PlannedFailover.json | 34 + .../examples/RecoveryPoints_Get.json | 39 + .../examples/RecoveryPoints_List.json | 43 + ...plicationExtensionOperationStatus_Get.json | 23 + .../examples/ReplicationExtension_Create.json | 74 + .../examples/ReplicationExtension_Delete.json | 19 + .../examples/ReplicationExtension_Get.json | 37 + .../examples/ReplicationExtension_List.json | 41 + .../examples/VaultOperationStatus_Get.json | 22 + .../examples/Vault_Create.json | 72 + .../examples/Vault_Delete.json | 18 + .../examples/Vault_Get.json | 36 + .../examples/Vault_List.json | 41 + .../examples/Vault_ListBySubscription.json | 40 + .../examples/Vault_Update.json | 49 + .../examples/WorkflowOperationStatus_Get.json | 23 + .../examples/Workflow_Get.json | 78 + .../examples/Workflow_List.json | 84 + .../recoveryservicesdatareplication.json | 6931 ++++++++++++++++- 50 files changed, 9728 insertions(+), 91 deletions(-) create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json delete mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/OperationGroupGet.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json create mode 100644 specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json new file mode 100644 index 000000000000..943bf041dc1e --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json @@ -0,0 +1,22 @@ +{ + "title": "Performs the resource name availability check.", + "operationId": "CheckNameAvailability", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "location": "ptoejmo", + "api-version": "2021-02-16-preview", + "body": { + "name": "aotqofonr", + "type": "nanagperrbksqmzypickrtnol" + } + }, + "responses": { + "200": { + "body": { + "nameAvailable": true, + "reason": "kgcudohrpymnyqfftbqvogtjmzqh", + "message": "obvdtltnqfowqa" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json new file mode 100644 index 000000000000..af97cd2ad64c --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json @@ -0,0 +1,34 @@ +{ + "title": "Performs resource deployment validation.", + "operationId": "DeploymentPreflight", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "deploymentId": "syocopwtelhyxbcjcxq", + "api-version": "2021-02-16-preview", + "body": { + "resources": [ + { + "name": "ahbmnkcmvbx", + "type": "asoelvqokrryvi", + "location": "eaagxsykycmuvz", + "apiVersion": "rferzaaywthntnceyrkuurugtqir" + } + ] + } + }, + "responses": { + "200": { + "body": { + "resources": [ + { + "name": "ahbmnkcmvbx", + "type": "asoelvqokrryvi", + "location": "eaagxsykycmuvz", + "apiVersion": "rferzaaywthntnceyrkuurugtqir" + } + ] + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json new file mode 100644 index 000000000000..af127d796384 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json @@ -0,0 +1,23 @@ +{ + "title": "Gets the Dra operation status.", + "operationId": "DraOperationStatus_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "fabricName": "13", + "draName": "6", + "operationId": "memvxgtxvbfkmu", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "id": "zcuybohcphhgdgfqjiwxlm", + "name": "kjxroclkbeevmcgscli", + "status": "pgcbsyi", + "startTime": "kyeooklagbdaee", + "endTime": "tumaya" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json new file mode 100644 index 000000000000..e4fce1c3ef2b --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json @@ -0,0 +1,198 @@ +{ + "title": "Puts the Dra.", + "operationId": "Dra_Create", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "fabricName": "R73", + "draName": "s", + "api-version": "2021-02-16-preview", + "body": { + "properties": { + "machineId": "vshekucscrlzufwl", + "machineName": "blafadcs", + "authenticationIdentity": { + "tenantId": "ossaftcmoyswg", + "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", + "objectId": "uukybltgpnfybfn", + "audience": "eznhtycxq", + "aadAuthority": "hogajvwcxmxmkxocr" + }, + "resourceAccessIdentity": { + "tenantId": "ossaftcmoyswg", + "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", + "objectId": "uukybltgpnfybfn", + "audience": "eznhtycxq", + "aadAuthority": "hogajvwcxmxmkxocr" + }, + "customProperties": { + "instanceType": "umhllcxbdt" + } + }, + "tags": { + "key9027": "bpqrmwciyjelesl" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "correlationId": "vjwbzrzpuybafbevnu", + "machineId": "vshekucscrlzufwl", + "machineName": "blafadcs", + "authenticationIdentity": { + "tenantId": "ossaftcmoyswg", + "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", + "objectId": "uukybltgpnfybfn", + "audience": "eznhtycxq", + "aadAuthority": "hogajvwcxmxmkxocr" + }, + "resourceAccessIdentity": { + "tenantId": "ossaftcmoyswg", + "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", + "objectId": "uukybltgpnfybfn", + "audience": "eznhtycxq", + "aadAuthority": "hogajvwcxmxmkxocr" + }, + "isResponsive": true, + "lastHeartbeat": "2023-07-25T21:05:28.872Z", + "versionNumber": "deczpylckrhbpumapuzsgn", + "provisioningState": "Canceled", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "umhllcxbdt" + } + }, + "id": "oaxpzccpmwr", + "name": "lvlkxgprubrxadzlhyaeaqaeamn", + "type": "uwivmpmnnepkhtcxjryvoqo", + "systemData": { + "createdBy": "objvxvasssclvfuhrvygfsxm", + "createdByType": "lewqmgcypzrnwegixxmsxguopwpzp", + "createdAt": "2023-07-25T21:05:28.873Z", + "lastModifiedBy": "tvzxtnefjjrthmtwyccxqmrp", + "lastModifiedByType": "uwaybghbypcavbf", + "lastModifiedAt": "2023-07-25T21:05:28.873Z" + }, + "tags": { + "key9027": "bpqrmwciyjelesl" + } + } + }, + "201": { + "headers": { + "location": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "correlationId": "vjwbzrzpuybafbevnu", + "machineId": "vshekucscrlzufwl", + "machineName": "blafadcs", + "authenticationIdentity": { + "tenantId": "ossaftcmoyswg", + "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", + "objectId": "uukybltgpnfybfn", + "audience": "eznhtycxq", + "aadAuthority": "hogajvwcxmxmkxocr" + }, + "resourceAccessIdentity": { + "tenantId": "ossaftcmoyswg", + "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", + "objectId": "uukybltgpnfybfn", + "audience": "eznhtycxq", + "aadAuthority": "hogajvwcxmxmkxocr" + }, + "isResponsive": true, + "lastHeartbeat": "2023-07-25T21:05:28.872Z", + "versionNumber": "deczpylckrhbpumapuzsgn", + "provisioningState": "Canceled", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "umhllcxbdt" + } + }, + "id": "oaxpzccpmwr", + "name": "lvlkxgprubrxadzlhyaeaqaeamn", + "type": "uwivmpmnnepkhtcxjryvoqo", + "systemData": { + "createdBy": "objvxvasssclvfuhrvygfsxm", + "createdByType": "lewqmgcypzrnwegixxmsxguopwpzp", + "createdAt": "2023-07-25T21:05:28.873Z", + "lastModifiedBy": "tvzxtnefjjrthmtwyccxqmrp", + "lastModifiedByType": "uwaybghbypcavbf", + "lastModifiedAt": "2023-07-25T21:05:28.873Z" + }, + "tags": { + "key9027": "bpqrmwciyjelesl" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json new file mode 100644 index 000000000000..13ce4fd681b1 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json @@ -0,0 +1,19 @@ +{ + "title": "Deletes the Dra.", + "operationId": "Dra_Delete", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "fabricName": "tS", + "draName": "z4x", + "api-version": "2021-02-16-preview" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json new file mode 100644 index 000000000000..0a0c390f6dad --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json @@ -0,0 +1,91 @@ +{ + "title": "Gets the Dra.", + "operationId": "Dra_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "fabricName": "hV2", + "draName": "52Jk", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "correlationId": "vjwbzrzpuybafbevnu", + "machineId": "vshekucscrlzufwl", + "machineName": "blafadcs", + "authenticationIdentity": { + "tenantId": "ossaftcmoyswg", + "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", + "objectId": "uukybltgpnfybfn", + "audience": "eznhtycxq", + "aadAuthority": "hogajvwcxmxmkxocr" + }, + "resourceAccessIdentity": { + "tenantId": "ossaftcmoyswg", + "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", + "objectId": "uukybltgpnfybfn", + "audience": "eznhtycxq", + "aadAuthority": "hogajvwcxmxmkxocr" + }, + "isResponsive": true, + "lastHeartbeat": "2023-07-25T21:05:28.872Z", + "versionNumber": "deczpylckrhbpumapuzsgn", + "provisioningState": "Canceled", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "umhllcxbdt" + } + }, + "id": "oaxpzccpmwr", + "name": "lvlkxgprubrxadzlhyaeaqaeamn", + "type": "uwivmpmnnepkhtcxjryvoqo", + "systemData": { + "createdBy": "objvxvasssclvfuhrvygfsxm", + "createdByType": "lewqmgcypzrnwegixxmsxguopwpzp", + "createdAt": "2023-07-25T21:05:28.873Z", + "lastModifiedBy": "tvzxtnefjjrthmtwyccxqmrp", + "lastModifiedByType": "uwaybghbypcavbf", + "lastModifiedAt": "2023-07-25T21:05:28.873Z" + }, + "tags": { + "key9027": "bpqrmwciyjelesl" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json new file mode 100644 index 000000000000..59b80bb621c2 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json @@ -0,0 +1,95 @@ +{ + "title": "Lists the Dras.", + "operationId": "Dra_List", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "fabricName": "35", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "correlationId": "vjwbzrzpuybafbevnu", + "machineId": "vshekucscrlzufwl", + "machineName": "blafadcs", + "authenticationIdentity": { + "tenantId": "ossaftcmoyswg", + "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", + "objectId": "uukybltgpnfybfn", + "audience": "eznhtycxq", + "aadAuthority": "hogajvwcxmxmkxocr" + }, + "resourceAccessIdentity": { + "tenantId": "ossaftcmoyswg", + "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", + "objectId": "uukybltgpnfybfn", + "audience": "eznhtycxq", + "aadAuthority": "hogajvwcxmxmkxocr" + }, + "isResponsive": true, + "lastHeartbeat": "2023-07-25T21:05:28.872Z", + "versionNumber": "deczpylckrhbpumapuzsgn", + "provisioningState": "Canceled", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "umhllcxbdt" + } + }, + "id": "oaxpzccpmwr", + "name": "lvlkxgprubrxadzlhyaeaqaeamn", + "type": "uwivmpmnnepkhtcxjryvoqo", + "systemData": { + "createdBy": "objvxvasssclvfuhrvygfsxm", + "createdByType": "lewqmgcypzrnwegixxmsxguopwpzp", + "createdAt": "2023-07-25T21:05:28.873Z", + "lastModifiedBy": "tvzxtnefjjrthmtwyccxqmrp", + "lastModifiedByType": "uwaybghbypcavbf", + "lastModifiedAt": "2023-07-25T21:05:28.873Z" + }, + "tags": { + "key9027": "bpqrmwciyjelesl" + } + } + ], + "nextLink": "vdahqsmjxxfe" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json new file mode 100644 index 000000000000..744172e356bb --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json @@ -0,0 +1,75 @@ +{ + "title": "Creates email configuration settings.", + "operationId": "EmailConfiguration_Create", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "0LIE", + "emailConfigurationName": "sadafa", + "api-version": "2021-02-16-preview", + "body": { + "properties": { + "sendToOwners": true, + "customEmailAddresses": [ + "x" + ], + "locale": "aaweznwhxjakrzhbemeurwyc" + }, + "tags": { + "key2456": "iboxrhhlcrixqsdcybdh" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "sendToOwners": true, + "customEmailAddresses": [ + "x" + ], + "locale": "aaweznwhxjakrzhbemeurwyc" + }, + "id": "zxgkuqd", + "name": "wzamd", + "type": "tvyresqxz", + "systemData": { + "createdBy": "mmpongmqmclenmmdbhtmlwnvaf", + "createdByType": "kkhytofairkplczfulrozicok", + "createdAt": "2023-07-25T21:05:29.734Z", + "lastModifiedBy": "aacooloptoxxa", + "lastModifiedByType": "akgiproijejraaybzd", + "lastModifiedAt": "2023-07-25T21:05:29.734Z" + }, + "tags": { + "key2456": "iboxrhhlcrixqsdcybdh" + } + } + }, + "201": { + "body": { + "properties": { + "sendToOwners": true, + "customEmailAddresses": [ + "x" + ], + "locale": "aaweznwhxjakrzhbemeurwyc" + }, + "id": "zxgkuqd", + "name": "wzamd", + "type": "tvyresqxz", + "systemData": { + "createdBy": "mmpongmqmclenmmdbhtmlwnvaf", + "createdByType": "kkhytofairkplczfulrozicok", + "createdAt": "2023-07-25T21:05:29.734Z", + "lastModifiedBy": "aacooloptoxxa", + "lastModifiedByType": "akgiproijejraaybzd", + "lastModifiedAt": "2023-07-25T21:05:29.734Z" + }, + "tags": { + "key2456": "iboxrhhlcrixqsdcybdh" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json new file mode 100644 index 000000000000..6f9248bac6a4 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json @@ -0,0 +1,38 @@ +{ + "title": "Gets the email configuration setting.", + "operationId": "EmailConfiguration_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "0M", + "emailConfigurationName": "H", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "sendToOwners": true, + "customEmailAddresses": [ + "x" + ], + "locale": "aaweznwhxjakrzhbemeurwyc" + }, + "id": "zxgkuqd", + "name": "wzamd", + "type": "tvyresqxz", + "systemData": { + "createdBy": "mmpongmqmclenmmdbhtmlwnvaf", + "createdByType": "kkhytofairkplczfulrozicok", + "createdAt": "2023-07-25T21:05:29.734Z", + "lastModifiedBy": "aacooloptoxxa", + "lastModifiedByType": "akgiproijejraaybzd", + "lastModifiedAt": "2023-07-25T21:05:29.734Z" + }, + "tags": { + "key2456": "iboxrhhlcrixqsdcybdh" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json new file mode 100644 index 000000000000..6659dded4b2a --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json @@ -0,0 +1,42 @@ +{ + "title": "Lists the email configuration settings.", + "operationId": "EmailConfiguration_List", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "Eiv", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "sendToOwners": true, + "customEmailAddresses": [ + "x" + ], + "locale": "aaweznwhxjakrzhbemeurwyc" + }, + "id": "zxgkuqd", + "name": "wzamd", + "type": "tvyresqxz", + "systemData": { + "createdBy": "mmpongmqmclenmmdbhtmlwnvaf", + "createdByType": "kkhytofairkplczfulrozicok", + "createdAt": "2023-07-25T21:05:29.734Z", + "lastModifiedBy": "aacooloptoxxa", + "lastModifiedByType": "akgiproijejraaybzd", + "lastModifiedAt": "2023-07-25T21:05:29.734Z" + }, + "tags": { + "key2456": "iboxrhhlcrixqsdcybdh" + } + } + ], + "nextLink": "sqvlnxoemqskcvllekczibnznaoon" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json new file mode 100644 index 000000000000..6f2a7b46ae3e --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json @@ -0,0 +1,78 @@ +{ + "title": "Gets the event.", + "operationId": "Event_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "dC66X", + "eventName": "5WEQs", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "resourceType": "qg", + "resourceName": "mhvqqlqhgraiswjjjwqwkzocb", + "eventType": "pkynhcerccvouektbiil", + "eventName": "hqvrogcsaiabtewoef", + "timeOfOccurrence": "2023-07-25T21:05:30.191Z", + "severity": "eedquqxlan", + "description": "ggnscbcazdmmoqexnvuakgjpfasmkl", + "correlationId": "cf", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "ywuqbzgr" + } + }, + "id": "wqvxhucgunqjuuowecl", + "name": "ghnyhffxksutuirjumawimjmucu", + "type": "wnkgfadwfnvd", + "systemData": { + "createdBy": "qvbpvooicqjkgwdvwkroy", + "createdByType": "awqunprlepimvj", + "createdAt": "2023-07-25T21:05:30.191Z", + "lastModifiedBy": "lcyjrckjrbsvgb", + "lastModifiedByType": "cquszlcvjbbbwdihknmwaeeaobyz", + "lastModifiedAt": "2023-07-25T21:05:30.191Z" + }, + "tags": { + "key7117": "atjpcvlwjtam" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json new file mode 100644 index 000000000000..8e32dcaf8482 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json @@ -0,0 +1,84 @@ +{ + "title": "Lists the events.", + "operationId": "Event_List", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "fewfcv", + "$filter": "pcsjimptptanpkif", + "continuationToken": "iqqptqxdquqjycvsdnweuovvwuls", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "resourceType": "qg", + "resourceName": "mhvqqlqhgraiswjjjwqwkzocb", + "eventType": "pkynhcerccvouektbiil", + "eventName": "hqvrogcsaiabtewoef", + "timeOfOccurrence": "2023-07-25T21:05:30.191Z", + "severity": "eedquqxlan", + "description": "ggnscbcazdmmoqexnvuakgjpfasmkl", + "correlationId": "cf", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "ywuqbzgr" + } + }, + "id": "wqvxhucgunqjuuowecl", + "name": "ghnyhffxksutuirjumawimjmucu", + "type": "wnkgfadwfnvd", + "systemData": { + "createdBy": "qvbpvooicqjkgwdvwkroy", + "createdByType": "awqunprlepimvj", + "createdAt": "2023-07-25T21:05:30.191Z", + "lastModifiedBy": "lcyjrckjrbsvgb", + "lastModifiedByType": "cquszlcvjbbbwdihknmwaeeaobyz", + "lastModifiedAt": "2023-07-25T21:05:30.191Z" + }, + "tags": { + "key7117": "atjpcvlwjtam" + } + } + ], + "nextLink": "apgwshhvjxckgjmapbrr" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json new file mode 100644 index 000000000000..af623b20f4a4 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json @@ -0,0 +1,22 @@ +{ + "title": "Gets the fabric operation status.", + "operationId": "FabricOperationsStatus_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "fabricName": "lVZPA", + "operationId": "heazntihkbpmydskcfcnexybuktj", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "id": "zcuybohcphhgdgfqjiwxlm", + "name": "kjxroclkbeevmcgscli", + "status": "pgcbsyi", + "startTime": "kyeooklagbdaee", + "endTime": "tumaya" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json new file mode 100644 index 000000000000..63209ad3afaf --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json @@ -0,0 +1,150 @@ +{ + "title": "Puts the fabric.", + "operationId": "Fabric_Create", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "fabricName": "v6GYfK", + "api-version": "2021-02-16-preview", + "body": { + "location": "rvbbhvhtkwzfyjqut", + "properties": { + "customProperties": { + "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + } + }, + "tags": { + "key9710": "soficsfcudvbndf" + } + } + }, + "responses": { + "200": { + "body": { + "location": "rvbbhvhtkwzfyjqut", + "properties": { + "provisioningState": "Canceled", + "serviceEndpoint": "gpokivcdeeww", + "serviceResourceId": "pgzdf", + "health": "Normal", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + } + }, + "id": "ixrzdeblclwgkewykpnhvi", + "name": "qrtuarbogfimneoeweqr", + "type": "kqofvveejltqxoqhqisuzfy", + "systemData": { + "createdBy": "ipszhb", + "createdByType": "tavffigxzmbsemwwklmjfzxrezi", + "createdAt": "2023-07-25T21:05:30.441Z", + "lastModifiedBy": "tiinubrvppkofxakdhrkopf", + "lastModifiedByType": "pblhyfzw", + "lastModifiedAt": "2023-07-25T21:05:30.441Z" + }, + "tags": { + "key9710": "soficsfcudvbndf" + } + } + }, + "201": { + "headers": { + "location": "https://contoso.com/operationstatus" + }, + "body": { + "location": "rvbbhvhtkwzfyjqut", + "properties": { + "provisioningState": "Canceled", + "serviceEndpoint": "gpokivcdeeww", + "serviceResourceId": "pgzdf", + "health": "Normal", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + } + }, + "id": "ixrzdeblclwgkewykpnhvi", + "name": "qrtuarbogfimneoeweqr", + "type": "kqofvveejltqxoqhqisuzfy", + "systemData": { + "createdBy": "ipszhb", + "createdByType": "tavffigxzmbsemwwklmjfzxrezi", + "createdAt": "2023-07-25T21:05:30.441Z", + "lastModifiedBy": "tiinubrvppkofxakdhrkopf", + "lastModifiedByType": "pblhyfzw", + "lastModifiedAt": "2023-07-25T21:05:30.441Z" + }, + "tags": { + "key9710": "soficsfcudvbndf" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json new file mode 100644 index 000000000000..2ab23ef9d7ba --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json @@ -0,0 +1,18 @@ +{ + "title": "Deletes the fabric.", + "operationId": "Fabric_Delete", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "fabricName": "GgE1Rp", + "api-version": "2021-02-16-preview" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json new file mode 100644 index 000000000000..7fde6d0e5c06 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json @@ -0,0 +1,74 @@ +{ + "title": "Gets the fabric.", + "operationId": "Fabric_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "fabricName": "7Y8Md", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "location": "rvbbhvhtkwzfyjqut", + "properties": { + "provisioningState": "Canceled", + "serviceEndpoint": "gpokivcdeeww", + "serviceResourceId": "pgzdf", + "health": "Normal", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + } + }, + "id": "ixrzdeblclwgkewykpnhvi", + "name": "qrtuarbogfimneoeweqr", + "type": "kqofvveejltqxoqhqisuzfy", + "systemData": { + "createdBy": "ipszhb", + "createdByType": "tavffigxzmbsemwwklmjfzxrezi", + "createdAt": "2023-07-25T21:05:30.441Z", + "lastModifiedBy": "tiinubrvppkofxakdhrkopf", + "lastModifiedByType": "pblhyfzw", + "lastModifiedAt": "2023-07-25T21:05:30.441Z" + }, + "tags": { + "key9710": "soficsfcudvbndf" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json new file mode 100644 index 000000000000..b335f65f8dfe --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json @@ -0,0 +1,79 @@ +{ + "title": "Lists the fabrics.", + "operationId": "Fabric_List", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "continuationToken": "agauift", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "location": "rvbbhvhtkwzfyjqut", + "properties": { + "provisioningState": "Canceled", + "serviceEndpoint": "gpokivcdeeww", + "serviceResourceId": "pgzdf", + "health": "Normal", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + } + }, + "id": "ixrzdeblclwgkewykpnhvi", + "name": "qrtuarbogfimneoeweqr", + "type": "kqofvveejltqxoqhqisuzfy", + "systemData": { + "createdBy": "ipszhb", + "createdByType": "tavffigxzmbsemwwklmjfzxrezi", + "createdAt": "2023-07-25T21:05:30.441Z", + "lastModifiedBy": "tiinubrvppkofxakdhrkopf", + "lastModifiedByType": "pblhyfzw", + "lastModifiedAt": "2023-07-25T21:05:30.441Z" + }, + "tags": { + "key9710": "soficsfcudvbndf" + } + } + ], + "nextLink": "zkowbuqcrfosqfgoiwsfpwqoips" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json new file mode 100644 index 000000000000..c426703fc21a --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json @@ -0,0 +1,78 @@ +{ + "title": "Lists the fabrics.", + "operationId": "Fabric_ListBySubscription", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "continuationToken": "chr", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "location": "rvbbhvhtkwzfyjqut", + "properties": { + "provisioningState": "Canceled", + "serviceEndpoint": "gpokivcdeeww", + "serviceResourceId": "pgzdf", + "health": "Normal", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + } + }, + "id": "ixrzdeblclwgkewykpnhvi", + "name": "qrtuarbogfimneoeweqr", + "type": "kqofvveejltqxoqhqisuzfy", + "systemData": { + "createdBy": "ipszhb", + "createdByType": "tavffigxzmbsemwwklmjfzxrezi", + "createdAt": "2023-07-25T21:05:30.441Z", + "lastModifiedBy": "tiinubrvppkofxakdhrkopf", + "lastModifiedByType": "pblhyfzw", + "lastModifiedAt": "2023-07-25T21:05:30.441Z" + }, + "tags": { + "key9710": "soficsfcudvbndf" + } + } + ], + "nextLink": "zkowbuqcrfosqfgoiwsfpwqoips" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json new file mode 100644 index 000000000000..decdf483bc02 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json @@ -0,0 +1,89 @@ +{ + "title": "Updates the fabric.", + "operationId": "Fabric_Update", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "fabricName": "ZRNF", + "api-version": "2021-02-16-preview", + "body": { + "properties": { + "customProperties": { + "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + } + }, + "tags": { + "key5088": "wrjazrblsfifszxolt" + } + } + }, + "responses": { + "200": { + "body": { + "location": "rvbbhvhtkwzfyjqut", + "properties": { + "provisioningState": "Canceled", + "serviceEndpoint": "gpokivcdeeww", + "serviceResourceId": "pgzdf", + "health": "Normal", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + } + }, + "id": "ixrzdeblclwgkewykpnhvi", + "name": "qrtuarbogfimneoeweqr", + "type": "kqofvveejltqxoqhqisuzfy", + "systemData": { + "createdBy": "ipszhb", + "createdByType": "tavffigxzmbsemwwklmjfzxrezi", + "createdAt": "2023-07-25T21:05:30.441Z", + "lastModifiedBy": "tiinubrvppkofxakdhrkopf", + "lastModifiedByType": "pblhyfzw", + "lastModifiedAt": "2023-07-25T21:05:30.441Z" + }, + "tags": { + "key9710": "soficsfcudvbndf" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/OperationGroupGet.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/OperationGroupGet.json deleted file mode 100644 index f62a45c8a337..000000000000 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/OperationGroupGet.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "parameters": { - "accountName": "sampleacct", - "resourceGroupName": "recoveryservicesdatareplicationClient", - "api-version": "2021-02-16-preview", - "subscriptionId": "subid" - }, - "responses": { - "200": { - "body": { - "sampleProperty": "sampleProperty" - } - } - } -} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json new file mode 100644 index 000000000000..ebfa6828ef72 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json @@ -0,0 +1,24 @@ +{ + "title": "Get a list of REST API operations supported by Microsoft.DataReplication.", + "operationId": "Operations_List", + "parameters": { + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": [ + { + "name": "euofnydejrn", + "isDataAction": true, + "origin": "gbpifrlzeepjkpnlqpctrgoyldul", + "display": { + "provider": "nwfglbolumlcovc", + "resource": "gtahbahmylbscimpkbgurvdeims", + "operation": "xpqrm", + "description": "wzdvwrlzhdvctuvmmseeranf" + } + } + ] + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json new file mode 100644 index 000000000000..778601119d09 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json @@ -0,0 +1,23 @@ +{ + "title": "Gets the policy operation status.", + "operationId": "PolicyOperationStatus_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "2Y", + "policyName": "0I", + "operationId": "idsrlxhozzfuxhra", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "id": "zcuybohcphhgdgfqjiwxlm", + "name": "kjxroclkbeevmcgscli", + "status": "pgcbsyi", + "startTime": "kyeooklagbdaee", + "endTime": "tumaya" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json new file mode 100644 index 000000000000..6afa6980016d --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json @@ -0,0 +1,74 @@ +{ + "title": "Puts the policy.", + "operationId": "Policy_Create", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "17", + "policyName": "9jKn", + "api-version": "2021-02-16-preview", + "body": { + "properties": { + "customProperties": { + "instanceType": "wqo" + } + }, + "tags": { + "key6853": "aobhcuamqqiykuniswnokrgbjwmgq" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Canceled", + "customProperties": { + "instanceType": "wqo" + } + }, + "id": "ckybzrqmhvrfkyhxkmwsshiiac", + "name": "neyrqhcsinv", + "type": "erghifgttifeuyl", + "systemData": { + "createdBy": "kckoa", + "createdByType": "bmegmyaqz", + "createdAt": "2023-07-25T21:05:31.383Z", + "lastModifiedBy": "czcboaaaktaczpuznworrvmrr", + "lastModifiedByType": "cupfcabydsc", + "lastModifiedAt": "2023-07-25T21:05:31.383Z" + }, + "tags": { + "key6853": "aobhcuamqqiykuniswnokrgbjwmgq" + } + } + }, + "201": { + "headers": { + "location": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "provisioningState": "Canceled", + "customProperties": { + "instanceType": "wqo" + } + }, + "id": "ckybzrqmhvrfkyhxkmwsshiiac", + "name": "neyrqhcsinv", + "type": "erghifgttifeuyl", + "systemData": { + "createdBy": "kckoa", + "createdByType": "bmegmyaqz", + "createdAt": "2023-07-25T21:05:31.383Z", + "lastModifiedBy": "czcboaaaktaczpuznworrvmrr", + "lastModifiedByType": "cupfcabydsc", + "lastModifiedAt": "2023-07-25T21:05:31.383Z" + }, + "tags": { + "key6853": "aobhcuamqqiykuniswnokrgbjwmgq" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json new file mode 100644 index 000000000000..a609f51b3d2b --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json @@ -0,0 +1,19 @@ +{ + "title": "Deletes the policy.", + "operationId": "Policy_Delete", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "cK", + "policyName": "4", + "api-version": "2021-02-16-preview" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json new file mode 100644 index 000000000000..7f5ca35599ae --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json @@ -0,0 +1,37 @@ +{ + "title": "Gets the policy.", + "operationId": "Policy_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "m", + "policyName": "Y5", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Canceled", + "customProperties": { + "instanceType": "wqo" + } + }, + "id": "ckybzrqmhvrfkyhxkmwsshiiac", + "name": "neyrqhcsinv", + "type": "erghifgttifeuyl", + "systemData": { + "createdBy": "kckoa", + "createdByType": "bmegmyaqz", + "createdAt": "2023-07-25T21:05:31.383Z", + "lastModifiedBy": "czcboaaaktaczpuznworrvmrr", + "lastModifiedByType": "cupfcabydsc", + "lastModifiedAt": "2023-07-25T21:05:31.383Z" + }, + "tags": { + "key6853": "aobhcuamqqiykuniswnokrgbjwmgq" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json new file mode 100644 index 000000000000..764987caa810 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json @@ -0,0 +1,41 @@ +{ + "title": "Lists the policies.", + "operationId": "Policy_List", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "YY", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "provisioningState": "Canceled", + "customProperties": { + "instanceType": "wqo" + } + }, + "id": "ckybzrqmhvrfkyhxkmwsshiiac", + "name": "neyrqhcsinv", + "type": "erghifgttifeuyl", + "systemData": { + "createdBy": "kckoa", + "createdByType": "bmegmyaqz", + "createdAt": "2023-07-25T21:05:31.383Z", + "lastModifiedBy": "czcboaaaktaczpuznworrvmrr", + "lastModifiedByType": "cupfcabydsc", + "lastModifiedAt": "2023-07-25T21:05:31.383Z" + }, + "tags": { + "key6853": "aobhcuamqqiykuniswnokrgbjwmgq" + } + } + ], + "nextLink": "wkz" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json new file mode 100644 index 000000000000..0841a104b6f2 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json @@ -0,0 +1,23 @@ +{ + "title": "Gets the protected item operation status.", + "operationId": "ProtectedItemOperationStatus_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "vY8Iu", + "protectedItemName": "KF", + "operationId": "vpbtibpsnqwhpoew", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "id": "zcuybohcphhgdgfqjiwxlm", + "name": "kjxroclkbeevmcgscli", + "status": "pgcbsyi", + "startTime": "kyeooklagbdaee", + "endTime": "tumaya" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json new file mode 100644 index 000000000000..eb408e01f098 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json @@ -0,0 +1,264 @@ +{ + "title": "Puts the protected item.", + "operationId": "ProtectedItem_Create", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "LqK", + "protectedItemName": "DSLA6", + "api-version": "2021-02-16-preview", + "body": { + "properties": { + "policyName": "zpdyqrcfqbflupnfcoov", + "replicationExtensionName": "glhlsarsbfvomqflpgxqnqqr", + "customProperties": { + "instanceType": "wxwqypliymbvcombkhwekdzdfqnrb" + } + }, + "tags": { + "key3470": "suqaow" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "policyName": "zpdyqrcfqbflupnfcoov", + "replicationExtensionName": "glhlsarsbfvomqflpgxqnqqr", + "correlationId": "hfzloprgttrkttzkfihpyxdzdlfay", + "provisioningState": "Canceled", + "protectionState": "UnprotectedStatesBegin", + "protectionStateDescription": "n", + "testFailoverState": "None", + "testFailoverStateDescription": "bubqnxmh", + "resynchronizationState": "None", + "fabricObjectId": "hv", + "fabricObjectName": "lqm", + "sourceFabricProviderId": "lp", + "targetFabricProviderId": "anfxjqtunc", + "fabricId": "ip", + "targetFabricId": "ewt", + "draId": "jgwzuaqji", + "targetDraId": "sv", + "resyncRequired": true, + "lastSuccessfulPlannedFailoverTime": "2023-07-25T21:05:32.074Z", + "lastSuccessfulUnplannedFailoverTime": "2023-07-25T21:05:32.074Z", + "lastSuccessfulTestFailoverTime": "2023-07-25T21:05:32.074Z", + "currentJob": { + "scenarioName": "wxuhylnhmlrp", + "id": "yeyyjnhrdpvgmg", + "name": "blszmtqqqvywgpngdbl", + "displayName": "pyynbpmxaqruxgvl", + "state": "aihrepmnnsmtfshneh", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "allowedJobs": [ + "eoqighzgsomlrjzmvgh" + ], + "lastFailedEnableProtectionJob": { + "scenarioName": "me", + "id": "ttzjnqpkiywdjcim", + "name": "q", + "displayName": "hlvesvvxmsdukhdimomaubcewrryr", + "state": "ssxzcreyfxdxkozjwnpbyjlrvqkg", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "lastFailedPlannedFailoverJob": { + "scenarioName": "qg", + "id": "wyyygyvuotwwia", + "name": "fjqocrrirdqxxyujizyprvvqxnb", + "displayName": "mgjkzbtjigetnqy", + "state": "rxavfzodqzaoropvqxmchck", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "lastTestFailoverJob": { + "scenarioName": "ydqfagbmfdwnkotjvhht", + "id": "mortsmzwdedfzrlri", + "name": "wbghfohlgskdhevmxzcwtbplfuphxp", + "displayName": "haszbpzqnuvpkeexuultdh", + "state": "xfmjarvsimxqagakaognccenj", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "replicationHealth": "Normal", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "wxwqypliymbvcombkhwekdzdfqnrb" + } + }, + "id": "zjiwvchoqwqkkitqqggmwltcj", + "name": "kstkrayqxybbmagw", + "type": "tyjkiivxnndpwqoodtyzqtg", + "systemData": { + "createdBy": "fuimettztqlochcrgdecx", + "createdByType": "rvwlvzhhfmziy", + "createdAt": "2023-07-25T21:05:32.074Z", + "lastModifiedBy": "snwttpckohmitadxdlcfmjhvzjmdh", + "lastModifiedByType": "rtwpnadsop", + "lastModifiedAt": "2023-07-25T21:05:32.074Z" + }, + "tags": { + "key3470": "suqaow" + } + } + }, + "201": { + "headers": { + "location": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "policyName": "zpdyqrcfqbflupnfcoov", + "replicationExtensionName": "glhlsarsbfvomqflpgxqnqqr", + "correlationId": "hfzloprgttrkttzkfihpyxdzdlfay", + "provisioningState": "Canceled", + "protectionState": "UnprotectedStatesBegin", + "protectionStateDescription": "n", + "testFailoverState": "None", + "testFailoverStateDescription": "bubqnxmh", + "resynchronizationState": "None", + "fabricObjectId": "hv", + "fabricObjectName": "lqm", + "sourceFabricProviderId": "lp", + "targetFabricProviderId": "anfxjqtunc", + "fabricId": "ip", + "targetFabricId": "ewt", + "draId": "jgwzuaqji", + "targetDraId": "sv", + "resyncRequired": true, + "lastSuccessfulPlannedFailoverTime": "2023-07-25T21:05:32.074Z", + "lastSuccessfulUnplannedFailoverTime": "2023-07-25T21:05:32.074Z", + "lastSuccessfulTestFailoverTime": "2023-07-25T21:05:32.074Z", + "currentJob": { + "scenarioName": "wxuhylnhmlrp", + "id": "yeyyjnhrdpvgmg", + "name": "blszmtqqqvywgpngdbl", + "displayName": "pyynbpmxaqruxgvl", + "state": "aihrepmnnsmtfshneh", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "allowedJobs": [ + "eoqighzgsomlrjzmvgh" + ], + "lastFailedEnableProtectionJob": { + "scenarioName": "me", + "id": "ttzjnqpkiywdjcim", + "name": "q", + "displayName": "hlvesvvxmsdukhdimomaubcewrryr", + "state": "ssxzcreyfxdxkozjwnpbyjlrvqkg", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "lastFailedPlannedFailoverJob": { + "scenarioName": "qg", + "id": "wyyygyvuotwwia", + "name": "fjqocrrirdqxxyujizyprvvqxnb", + "displayName": "mgjkzbtjigetnqy", + "state": "rxavfzodqzaoropvqxmchck", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "lastTestFailoverJob": { + "scenarioName": "ydqfagbmfdwnkotjvhht", + "id": "mortsmzwdedfzrlri", + "name": "wbghfohlgskdhevmxzcwtbplfuphxp", + "displayName": "haszbpzqnuvpkeexuultdh", + "state": "xfmjarvsimxqagakaognccenj", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "replicationHealth": "Normal", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "wxwqypliymbvcombkhwekdzdfqnrb" + } + }, + "id": "zjiwvchoqwqkkitqqggmwltcj", + "name": "kstkrayqxybbmagw", + "type": "tyjkiivxnndpwqoodtyzqtg", + "systemData": { + "createdBy": "fuimettztqlochcrgdecx", + "createdByType": "rvwlvzhhfmziy", + "createdAt": "2023-07-25T21:05:32.074Z", + "lastModifiedBy": "snwttpckohmitadxdlcfmjhvzjmdh", + "lastModifiedByType": "rtwpnadsop", + "lastModifiedAt": "2023-07-25T21:05:32.074Z" + }, + "tags": { + "key3470": "suqaow" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json new file mode 100644 index 000000000000..848f277d2f1d --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json @@ -0,0 +1,20 @@ +{ + "title": "Deletes the protected item.", + "operationId": "ProtectedItem_Delete", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "Gk84c", + "protectedItemName": "lf", + "forceDelete": true, + "api-version": "2021-02-16-preview" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json new file mode 100644 index 000000000000..2334c382bca4 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json @@ -0,0 +1,131 @@ +{ + "title": "Gets the protected item.", + "operationId": "ProtectedItem_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "8C", + "protectedItemName": "SD4", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "policyName": "zpdyqrcfqbflupnfcoov", + "replicationExtensionName": "glhlsarsbfvomqflpgxqnqqr", + "correlationId": "hfzloprgttrkttzkfihpyxdzdlfay", + "provisioningState": "Canceled", + "protectionState": "UnprotectedStatesBegin", + "protectionStateDescription": "n", + "testFailoverState": "None", + "testFailoverStateDescription": "bubqnxmh", + "resynchronizationState": "None", + "fabricObjectId": "hv", + "fabricObjectName": "lqm", + "sourceFabricProviderId": "lp", + "targetFabricProviderId": "anfxjqtunc", + "fabricId": "ip", + "targetFabricId": "ewt", + "draId": "jgwzuaqji", + "targetDraId": "sv", + "resyncRequired": true, + "lastSuccessfulPlannedFailoverTime": "2023-07-25T21:05:32.074Z", + "lastSuccessfulUnplannedFailoverTime": "2023-07-25T21:05:32.074Z", + "lastSuccessfulTestFailoverTime": "2023-07-25T21:05:32.074Z", + "currentJob": { + "scenarioName": "wxuhylnhmlrp", + "id": "yeyyjnhrdpvgmg", + "name": "blszmtqqqvywgpngdbl", + "displayName": "pyynbpmxaqruxgvl", + "state": "aihrepmnnsmtfshneh", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "allowedJobs": [ + "eoqighzgsomlrjzmvgh" + ], + "lastFailedEnableProtectionJob": { + "scenarioName": "me", + "id": "ttzjnqpkiywdjcim", + "name": "q", + "displayName": "hlvesvvxmsdukhdimomaubcewrryr", + "state": "ssxzcreyfxdxkozjwnpbyjlrvqkg", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "lastFailedPlannedFailoverJob": { + "scenarioName": "qg", + "id": "wyyygyvuotwwia", + "name": "fjqocrrirdqxxyujizyprvvqxnb", + "displayName": "mgjkzbtjigetnqy", + "state": "rxavfzodqzaoropvqxmchck", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "lastTestFailoverJob": { + "scenarioName": "ydqfagbmfdwnkotjvhht", + "id": "mortsmzwdedfzrlri", + "name": "wbghfohlgskdhevmxzcwtbplfuphxp", + "displayName": "haszbpzqnuvpkeexuultdh", + "state": "xfmjarvsimxqagakaognccenj", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "replicationHealth": "Normal", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "wxwqypliymbvcombkhwekdzdfqnrb" + } + }, + "id": "zjiwvchoqwqkkitqqggmwltcj", + "name": "kstkrayqxybbmagw", + "type": "tyjkiivxnndpwqoodtyzqtg", + "systemData": { + "createdBy": "fuimettztqlochcrgdecx", + "createdByType": "rvwlvzhhfmziy", + "createdAt": "2023-07-25T21:05:32.074Z", + "lastModifiedBy": "snwttpckohmitadxdlcfmjhvzjmdh", + "lastModifiedByType": "rtwpnadsop", + "lastModifiedAt": "2023-07-25T21:05:32.074Z" + }, + "tags": { + "key3470": "suqaow" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json new file mode 100644 index 000000000000..3361a780a248 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json @@ -0,0 +1,135 @@ +{ + "title": "Lists the protected items.", + "operationId": "ProtectedItem_List", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "35I7I4R", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "policyName": "zpdyqrcfqbflupnfcoov", + "replicationExtensionName": "glhlsarsbfvomqflpgxqnqqr", + "correlationId": "hfzloprgttrkttzkfihpyxdzdlfay", + "provisioningState": "Canceled", + "protectionState": "UnprotectedStatesBegin", + "protectionStateDescription": "n", + "testFailoverState": "None", + "testFailoverStateDescription": "bubqnxmh", + "resynchronizationState": "None", + "fabricObjectId": "hv", + "fabricObjectName": "lqm", + "sourceFabricProviderId": "lp", + "targetFabricProviderId": "anfxjqtunc", + "fabricId": "ip", + "targetFabricId": "ewt", + "draId": "jgwzuaqji", + "targetDraId": "sv", + "resyncRequired": true, + "lastSuccessfulPlannedFailoverTime": "2023-07-25T21:05:32.074Z", + "lastSuccessfulUnplannedFailoverTime": "2023-07-25T21:05:32.074Z", + "lastSuccessfulTestFailoverTime": "2023-07-25T21:05:32.074Z", + "currentJob": { + "scenarioName": "wxuhylnhmlrp", + "id": "yeyyjnhrdpvgmg", + "name": "blszmtqqqvywgpngdbl", + "displayName": "pyynbpmxaqruxgvl", + "state": "aihrepmnnsmtfshneh", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "allowedJobs": [ + "eoqighzgsomlrjzmvgh" + ], + "lastFailedEnableProtectionJob": { + "scenarioName": "me", + "id": "ttzjnqpkiywdjcim", + "name": "q", + "displayName": "hlvesvvxmsdukhdimomaubcewrryr", + "state": "ssxzcreyfxdxkozjwnpbyjlrvqkg", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "lastFailedPlannedFailoverJob": { + "scenarioName": "qg", + "id": "wyyygyvuotwwia", + "name": "fjqocrrirdqxxyujizyprvvqxnb", + "displayName": "mgjkzbtjigetnqy", + "state": "rxavfzodqzaoropvqxmchck", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "lastTestFailoverJob": { + "scenarioName": "ydqfagbmfdwnkotjvhht", + "id": "mortsmzwdedfzrlri", + "name": "wbghfohlgskdhevmxzcwtbplfuphxp", + "displayName": "haszbpzqnuvpkeexuultdh", + "state": "xfmjarvsimxqagakaognccenj", + "startTime": "2023-07-25T21:05:32.074Z", + "endTime": "2023-07-25T21:05:32.074Z" + }, + "replicationHealth": "Normal", + "healthErrors": [ + { + "affectedResourceType": "zknoz", + "affectedResourceCorrelationIds": [ + "yuxzyymanvtjmebiwd" + ], + "childErrors": [ + { + "code": "fmldj", + "healthCategory": "rkapzmqeav", + "category": "bowuv", + "severity": "obywcgvmbqawschaaylnlrgofsmn", + "source": "ofqouiupakzvrwgygpvcnbsadj", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "sxoyvhcxkwgykftqfcswhaobmqq", + "message": "eljftexyqffnlfpxvdcvpuequhzsf", + "causes": "kffjbffgsajkobmldhganvmqpdxcoa", + "recommendation": "pftabvw" + } + ], + "code": "amdqhdrqsctrqetpszqvs", + "healthCategory": "ozrreultvoesoc", + "category": "wx", + "severity": "q", + "source": "wcl", + "creationTime": "2023-07-25T21:05:28.873Z", + "isCustomerResolvable": true, + "summary": "fsuqmxspsouylpwkd", + "message": "zdgjnokbybdvahcgyl", + "causes": "obcgxrezj", + "recommendation": "tecojkzqbqiswotzz" + } + ], + "customProperties": { + "instanceType": "wxwqypliymbvcombkhwekdzdfqnrb" + } + }, + "id": "zjiwvchoqwqkkitqqggmwltcj", + "name": "kstkrayqxybbmagw", + "type": "tyjkiivxnndpwqoodtyzqtg", + "systemData": { + "createdBy": "fuimettztqlochcrgdecx", + "createdByType": "rvwlvzhhfmziy", + "createdAt": "2023-07-25T21:05:32.074Z", + "lastModifiedBy": "snwttpckohmitadxdlcfmjhvzjmdh", + "lastModifiedByType": "rtwpnadsop", + "lastModifiedAt": "2023-07-25T21:05:32.074Z" + }, + "tags": { + "key3470": "suqaow" + } + } + ], + "nextLink": "vinjxkxcdyzdkslgdwahpcq" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json new file mode 100644 index 000000000000..6e42eb78e8f3 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json @@ -0,0 +1,34 @@ +{ + "title": "Performs planned failover.", + "operationId": "ProtectedItem_PlannedFailover", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "2dR", + "protectedItemName": "UOWoZ", + "api-version": "2021-02-16-preview", + "body": { + "properties": { + "customProperties": { + "instanceType": "scgwaqqnohaxvsckpiihlbbbjdn" + } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "customProperties": { + "instanceType": "scgwaqqnohaxvsckpiihlbbbjdn" + } + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json new file mode 100644 index 000000000000..2a834ee7edfe --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json @@ -0,0 +1,39 @@ +{ + "title": "Gets the recovery point.", + "operationId": "RecoveryPoints_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "U", + "protectedItemName": "QUPC", + "recoveryPointName": "Se", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "recoveryPointTime": "2023-07-25T21:05:32.969Z", + "recoveryPointType": "ApplicationConsistent", + "customProperties": { + "instanceType": "z" + } + }, + "id": "wr", + "name": "sncjm", + "type": "jxaaxlzwqpcvtqhngvduulgqojizbf", + "systemData": { + "createdBy": "itqfchnegmsgxqeay", + "createdByType": "unphsegufgqne", + "createdAt": "2023-07-25T21:05:32.969Z", + "lastModifiedBy": "vqmce", + "lastModifiedByType": "ayltd", + "lastModifiedAt": "2023-07-25T21:05:32.969Z" + }, + "tags": { + "key755": "vbausuyhessg" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json new file mode 100644 index 000000000000..6b6e0d345813 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json @@ -0,0 +1,43 @@ +{ + "title": "Lists the recovery points.", + "operationId": "RecoveryPoints_List", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "rMY", + "protectedItemName": "EbV", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "recoveryPointTime": "2023-07-25T21:05:32.969Z", + "recoveryPointType": "ApplicationConsistent", + "customProperties": { + "instanceType": "z" + } + }, + "id": "wr", + "name": "sncjm", + "type": "jxaaxlzwqpcvtqhngvduulgqojizbf", + "systemData": { + "createdBy": "itqfchnegmsgxqeay", + "createdByType": "unphsegufgqne", + "createdAt": "2023-07-25T21:05:32.969Z", + "lastModifiedBy": "vqmce", + "lastModifiedByType": "ayltd", + "lastModifiedAt": "2023-07-25T21:05:32.969Z" + }, + "tags": { + "key755": "vbausuyhessg" + } + } + ], + "nextLink": "mdznysprp" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json new file mode 100644 index 000000000000..da69fd34c56f --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json @@ -0,0 +1,23 @@ +{ + "title": "Gets the replication extension operation status.", + "operationId": "ReplicationExtensionOperationStatus_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "n8X", + "replicationExtensionName": "7", + "operationId": "llcgbgozqanaiokilhpnfjphftxmg", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "id": "zcuybohcphhgdgfqjiwxlm", + "name": "kjxroclkbeevmcgscli", + "status": "pgcbsyi", + "startTime": "kyeooklagbdaee", + "endTime": "tumaya" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json new file mode 100644 index 000000000000..395c81971e69 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json @@ -0,0 +1,74 @@ +{ + "title": "Puts the replication extension.", + "operationId": "ReplicationExtension_Create", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "bbAYm", + "replicationExtensionName": "4G5", + "api-version": "2021-02-16-preview", + "body": { + "properties": { + "customProperties": { + "instanceType": "qijdsschdbrgekdeddoabcfcvqinwd" + } + }, + "tags": { + "key2074": "spcoaabosorx" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Canceled", + "customProperties": { + "instanceType": "qijdsschdbrgekdeddoabcfcvqinwd" + } + }, + "id": "mcohqfpvhudsjghvkbespt", + "name": "kjdkwgcfuavrfswgivkpkr", + "type": "lpfmrnsuav", + "systemData": { + "createdBy": "lppkryag", + "createdByType": "swapxfrczqzpmxsr", + "createdAt": "2023-07-25T21:05:33.259Z", + "lastModifiedBy": "aqb", + "lastModifiedByType": "paim", + "lastModifiedAt": "2023-07-25T21:05:33.259Z" + }, + "tags": { + "key2074": "spcoaabosorx" + } + } + }, + "201": { + "headers": { + "location": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "provisioningState": "Canceled", + "customProperties": { + "instanceType": "qijdsschdbrgekdeddoabcfcvqinwd" + } + }, + "id": "mcohqfpvhudsjghvkbespt", + "name": "kjdkwgcfuavrfswgivkpkr", + "type": "lpfmrnsuav", + "systemData": { + "createdBy": "lppkryag", + "createdByType": "swapxfrczqzpmxsr", + "createdAt": "2023-07-25T21:05:33.259Z", + "lastModifiedBy": "aqb", + "lastModifiedByType": "paim", + "lastModifiedAt": "2023-07-25T21:05:33.259Z" + }, + "tags": { + "key2074": "spcoaabosorx" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json new file mode 100644 index 000000000000..cb73a9783b11 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json @@ -0,0 +1,19 @@ +{ + "title": "Deletes the replication extension.", + "operationId": "ReplicationExtension_Delete", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "4TTHN", + "replicationExtensionName": "OLQ", + "api-version": "2021-02-16-preview" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json new file mode 100644 index 000000000000..ee17550b1dab --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json @@ -0,0 +1,37 @@ +{ + "title": "Gets the replication extension.", + "operationId": "ReplicationExtension_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "W87", + "replicationExtensionName": "XP", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Canceled", + "customProperties": { + "instanceType": "qijdsschdbrgekdeddoabcfcvqinwd" + } + }, + "id": "mcohqfpvhudsjghvkbespt", + "name": "kjdkwgcfuavrfswgivkpkr", + "type": "lpfmrnsuav", + "systemData": { + "createdBy": "lppkryag", + "createdByType": "swapxfrczqzpmxsr", + "createdAt": "2023-07-25T21:05:33.259Z", + "lastModifiedBy": "aqb", + "lastModifiedByType": "paim", + "lastModifiedAt": "2023-07-25T21:05:33.259Z" + }, + "tags": { + "key2074": "spcoaabosorx" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json new file mode 100644 index 000000000000..f5e33af75f4f --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json @@ -0,0 +1,41 @@ +{ + "title": "Lists the replication extensions.", + "operationId": "ReplicationExtension_List", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "L2Zn", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "provisioningState": "Canceled", + "customProperties": { + "instanceType": "qijdsschdbrgekdeddoabcfcvqinwd" + } + }, + "id": "mcohqfpvhudsjghvkbespt", + "name": "kjdkwgcfuavrfswgivkpkr", + "type": "lpfmrnsuav", + "systemData": { + "createdBy": "lppkryag", + "createdByType": "swapxfrczqzpmxsr", + "createdAt": "2023-07-25T21:05:33.259Z", + "lastModifiedBy": "aqb", + "lastModifiedByType": "paim", + "lastModifiedAt": "2023-07-25T21:05:33.259Z" + }, + "tags": { + "key2074": "spcoaabosorx" + } + } + ], + "nextLink": "cumlgj" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json new file mode 100644 index 000000000000..d4fda48db0ee --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json @@ -0,0 +1,22 @@ +{ + "title": "Gets the vault operation status.", + "operationId": "VaultOperationStatus_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "IJu", + "operationId": "fdyseyzxgr", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "id": "zcuybohcphhgdgfqjiwxlm", + "name": "kjxroclkbeevmcgscli", + "status": "pgcbsyi", + "startTime": "kyeooklagbdaee", + "endTime": "tumaya" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json new file mode 100644 index 000000000000..30c329063a8c --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json @@ -0,0 +1,72 @@ +{ + "title": "Puts the vault.", + "operationId": "Vault_Create", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "KR", + "api-version": "2021-02-16-preview", + "body": { + "location": "oimyeslkpxriwgxazxxq", + "properties": { + "vaultType": "DisasterRecovery" + }, + "tags": { + "key8037": "t" + } + } + }, + "responses": { + "200": { + "body": { + "location": "oimyeslkpxriwgxazxxq", + "properties": { + "provisioningState": "Canceled", + "serviceResourceId": "oatasztyczvhgifyvvolbyvqg", + "vaultType": "DisasterRecovery" + }, + "id": "rmotcdqhiogvszvctymyltfte", + "name": "mhqnduqvhucwkwqcarakcca", + "type": "brtcjulrhejroneysoint", + "systemData": { + "createdBy": "mpvmofukxomrqmekuzvxmmjdrdiebt", + "createdByType": "lbcbpi", + "createdAt": "2023-07-25T21:05:34.513Z", + "lastModifiedBy": "w", + "lastModifiedByType": "tfgtvyysiuzqbvebesrpaas", + "lastModifiedAt": "2023-07-25T21:05:34.513Z" + }, + "tags": { + "key8037": "t" + } + } + }, + "201": { + "headers": { + "location": "https://contoso.com/operationstatus" + }, + "body": { + "location": "oimyeslkpxriwgxazxxq", + "properties": { + "provisioningState": "Canceled", + "serviceResourceId": "oatasztyczvhgifyvvolbyvqg", + "vaultType": "DisasterRecovery" + }, + "id": "rmotcdqhiogvszvctymyltfte", + "name": "mhqnduqvhucwkwqcarakcca", + "type": "brtcjulrhejroneysoint", + "systemData": { + "createdBy": "mpvmofukxomrqmekuzvxmmjdrdiebt", + "createdByType": "lbcbpi", + "createdAt": "2023-07-25T21:05:34.513Z", + "lastModifiedBy": "w", + "lastModifiedByType": "tfgtvyysiuzqbvebesrpaas", + "lastModifiedAt": "2023-07-25T21:05:34.513Z" + }, + "tags": { + "key8037": "t" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json new file mode 100644 index 000000000000..07486d9b6b30 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json @@ -0,0 +1,18 @@ +{ + "title": "Deletes the vault.", + "operationId": "Vault_Delete", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "6", + "api-version": "2021-02-16-preview" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json new file mode 100644 index 000000000000..7dfe8fff728f --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json @@ -0,0 +1,36 @@ +{ + "title": "Gets the vault.", + "operationId": "Vault_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "7WC3W", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "location": "oimyeslkpxriwgxazxxq", + "properties": { + "provisioningState": "Canceled", + "serviceResourceId": "oatasztyczvhgifyvvolbyvqg", + "vaultType": "DisasterRecovery" + }, + "id": "rmotcdqhiogvszvctymyltfte", + "name": "mhqnduqvhucwkwqcarakcca", + "type": "brtcjulrhejroneysoint", + "systemData": { + "createdBy": "mpvmofukxomrqmekuzvxmmjdrdiebt", + "createdByType": "lbcbpi", + "createdAt": "2023-07-25T21:05:34.513Z", + "lastModifiedBy": "w", + "lastModifiedByType": "tfgtvyysiuzqbvebesrpaas", + "lastModifiedAt": "2023-07-25T21:05:34.513Z" + }, + "tags": { + "key8037": "t" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json new file mode 100644 index 000000000000..feccffdc2b3a --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json @@ -0,0 +1,41 @@ +{ + "title": "Lists the vaults.", + "operationId": "Vault_List", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "continuationToken": "gjhvdjclpyissyadjqtorj", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "location": "oimyeslkpxriwgxazxxq", + "properties": { + "provisioningState": "Canceled", + "serviceResourceId": "oatasztyczvhgifyvvolbyvqg", + "vaultType": "DisasterRecovery" + }, + "id": "rmotcdqhiogvszvctymyltfte", + "name": "mhqnduqvhucwkwqcarakcca", + "type": "brtcjulrhejroneysoint", + "systemData": { + "createdBy": "mpvmofukxomrqmekuzvxmmjdrdiebt", + "createdByType": "lbcbpi", + "createdAt": "2023-07-25T21:05:34.513Z", + "lastModifiedBy": "w", + "lastModifiedByType": "tfgtvyysiuzqbvebesrpaas", + "lastModifiedAt": "2023-07-25T21:05:34.513Z" + }, + "tags": { + "key8037": "t" + } + } + ], + "nextLink": "fy" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json new file mode 100644 index 000000000000..26e3ed4cf459 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json @@ -0,0 +1,40 @@ +{ + "title": "Lists the vaults.", + "operationId": "Vault_ListBySubscription", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "continuationToken": "zkpigwaculhda", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "location": "oimyeslkpxriwgxazxxq", + "properties": { + "provisioningState": "Canceled", + "serviceResourceId": "oatasztyczvhgifyvvolbyvqg", + "vaultType": "DisasterRecovery" + }, + "id": "rmotcdqhiogvszvctymyltfte", + "name": "mhqnduqvhucwkwqcarakcca", + "type": "brtcjulrhejroneysoint", + "systemData": { + "createdBy": "mpvmofukxomrqmekuzvxmmjdrdiebt", + "createdByType": "lbcbpi", + "createdAt": "2023-07-25T21:05:34.513Z", + "lastModifiedBy": "w", + "lastModifiedByType": "tfgtvyysiuzqbvebesrpaas", + "lastModifiedAt": "2023-07-25T21:05:34.513Z" + }, + "tags": { + "key8037": "t" + } + } + ], + "nextLink": "fy" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json new file mode 100644 index 000000000000..2d14dfbe8b40 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json @@ -0,0 +1,49 @@ +{ + "title": "Updates the vault.", + "operationId": "Vault_Update", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "b4GQL", + "api-version": "2021-02-16-preview", + "body": { + "properties": { + "vaultType": "DisasterRecovery" + }, + "tags": { + "key665": "dh" + } + } + }, + "responses": { + "200": { + "body": { + "location": "oimyeslkpxriwgxazxxq", + "properties": { + "provisioningState": "Canceled", + "serviceResourceId": "oatasztyczvhgifyvvolbyvqg", + "vaultType": "DisasterRecovery" + }, + "id": "rmotcdqhiogvszvctymyltfte", + "name": "mhqnduqvhucwkwqcarakcca", + "type": "brtcjulrhejroneysoint", + "systemData": { + "createdBy": "mpvmofukxomrqmekuzvxmmjdrdiebt", + "createdByType": "lbcbpi", + "createdAt": "2023-07-25T21:05:34.513Z", + "lastModifiedBy": "w", + "lastModifiedByType": "tfgtvyysiuzqbvebesrpaas", + "lastModifiedAt": "2023-07-25T21:05:34.513Z" + }, + "tags": { + "key8037": "t" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json new file mode 100644 index 000000000000..140f54dfd5fa --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json @@ -0,0 +1,23 @@ +{ + "title": "Gets the workflow operation status.", + "operationId": "WorkflowOperationStatus_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "V8b", + "workflowName": "9LZU", + "operationId": "lrkkxaqmutmhgmyx", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "id": "zcuybohcphhgdgfqjiwxlm", + "name": "kjxroclkbeevmcgscli", + "status": "pgcbsyi", + "startTime": "kyeooklagbdaee", + "endTime": "tumaya" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json new file mode 100644 index 000000000000..1278589d9573 --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json @@ -0,0 +1,78 @@ +{ + "title": "Gets the workflow.", + "operationId": "Workflow_Get", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "zxasda", + "workflowName": "gwedsvs", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "properties": { + "displayName": "sruvbluvpztaisrermotfqb", + "state": "Pending", + "startTime": "2023-07-25T21:05:35.689Z", + "endTime": "2023-07-25T21:05:35.689Z", + "objectId": "jxjmhuq", + "objectName": "nmabrwusadfmqiniicupdjute", + "objectInternalId": "uegdumzdecmbgsipyuky", + "objectInternalName": "goo", + "objectType": "AvsDiskPool", + "replicationProviderId": "amdslnyc", + "sourceFabricProviderId": "ljmqaalvxmsovyfjiu", + "targetFabricProviderId": "ylbrzuwqwjpvrdudllqxeeyolx", + "allowedActions": [ + "solnaulgojasioodmgldykszs" + ], + "activityId": "uedulfnlpguntfpryxi", + "tasks": [ + { + "taskName": "tmvf", + "state": "Pending", + "startTime": "2023-07-25T21:05:35.689Z", + "endTime": "2023-07-25T21:05:35.689Z", + "customProperties": { + "instanceType": "dqdsh" + }, + "childrenWorkflows": [] + } + ], + "errors": [ + { + "code": "csrbfcccyjzmanlgmpalienoki", + "type": "gfrrmmnfrxpbntdaenzzlw", + "severity": "gbbhdkvydq", + "creationTime": "2023-07-25T21:05:35.689Z", + "message": "swdcmpadrylzi", + "causes": "ngzlczhpjewgxl", + "recommendation": "tdecvvlzghkrj" + } + ], + "customProperties": { + "instanceType": "wzjlzrccysqirymwstrgf", + "affectedObjectDetails": { + "key6778": "cfbtgj" + } + } + }, + "id": "wihoj", + "name": "cstqdvznbjz", + "type": "vd", + "systemData": { + "createdBy": "ygawudvedgqpoymik", + "createdByType": "fsmozbkecpdec", + "createdAt": "2023-07-25T21:05:35.689Z", + "lastModifiedBy": "qphxeebkhyajppoipozahpazxvdjdw", + "lastModifiedByType": "uqmlbnn", + "lastModifiedAt": "2023-07-25T21:05:35.689Z" + }, + "tags": { + "key6821": "jeyfslnnwenivgqmyiauber" + } + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json new file mode 100644 index 000000000000..73430a06388b --- /dev/null +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json @@ -0,0 +1,84 @@ +{ + "title": "Lists the workflows.", + "operationId": "Workflow_List", + "parameters": { + "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "resourceGroupName": "rgswagger", + "vaultName": "qa", + "$filter": "yslhfos", + "continuationToken": "reepeqlwhkyx", + "api-version": "2021-02-16-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "displayName": "sruvbluvpztaisrermotfqb", + "state": "Pending", + "startTime": "2023-07-25T21:05:35.689Z", + "endTime": "2023-07-25T21:05:35.689Z", + "objectId": "jxjmhuq", + "objectName": "nmabrwusadfmqiniicupdjute", + "objectInternalId": "uegdumzdecmbgsipyuky", + "objectInternalName": "goo", + "objectType": "AvsDiskPool", + "replicationProviderId": "amdslnyc", + "sourceFabricProviderId": "ljmqaalvxmsovyfjiu", + "targetFabricProviderId": "ylbrzuwqwjpvrdudllqxeeyolx", + "allowedActions": [ + "solnaulgojasioodmgldykszs" + ], + "activityId": "uedulfnlpguntfpryxi", + "tasks": [ + { + "taskName": "tmvf", + "state": "Pending", + "startTime": "2023-07-25T21:05:35.689Z", + "endTime": "2023-07-25T21:05:35.689Z", + "customProperties": { + "instanceType": "dqdsh" + }, + "childrenWorkflows": [] + } + ], + "errors": [ + { + "code": "csrbfcccyjzmanlgmpalienoki", + "type": "gfrrmmnfrxpbntdaenzzlw", + "severity": "gbbhdkvydq", + "creationTime": "2023-07-25T21:05:35.689Z", + "message": "swdcmpadrylzi", + "causes": "ngzlczhpjewgxl", + "recommendation": "tdecvvlzghkrj" + } + ], + "customProperties": { + "instanceType": "wzjlzrccysqirymwstrgf", + "affectedObjectDetails": { + "key6778": "cfbtgj" + } + } + }, + "id": "wihoj", + "name": "cstqdvznbjz", + "type": "vd", + "systemData": { + "createdBy": "ygawudvedgqpoymik", + "createdByType": "fsmozbkecpdec", + "createdAt": "2023-07-25T21:05:35.689Z", + "lastModifiedBy": "qphxeebkhyajppoipozahpazxvdjdw", + "lastModifiedByType": "uqmlbnn", + "lastModifiedAt": "2023-07-25T21:05:35.689Z" + }, + "tags": { + "key6821": "jeyfslnnwenivgqmyiauber" + } + } + ], + "nextLink": "lmlvodzyaqyl" + } + } + } +} diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json index c96d097127f2..f7af9eea6c4d 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json @@ -1,132 +1,6911 @@ { "swagger": "2.0", "info": { - "version": "2021-02-16-preview", - "title": "recoveryservicesdatareplication", - "description": "Description of the new service", - "x-ms-code-generation-settings": { - "name": "recoveryservicesdatareplicationClient" - } + "title": "Azure Site Recovery Management Service API", + "description": "A first party Azure service enabling the data replication.", + "version": "2021-02-16-preview" }, "host": "management.azure.com", - "schemes": ["https"], - "consumes": ["application/json"], - "produces": ["application/json"], - "security": [ - { - "azure_auth": ["user_impersonation"] - } + "schemes": [ + "https" ], - "securityDefinitions": { - "azure_auth": { - "type": "oauth2", - "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", - "flow": "implicit", - "description": "Azure Active Directory OAuth2 Flow", - "scopes": { - "user_impersonation": "impersonate your user account" + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationFabrics/{fabricName}/fabricAgents/{draName}": { + "get": { + "tags": [ + "Dra" + ], + "summary": "Gets the Dra.", + "description": "Gets the details of the fabric agent.", + "operationId": "Dra_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "fabricName", + "description": "Fabric name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "draName", + "description": "Dra name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Dra Model on success.", + "schema": { + "$ref": "#/definitions/DraModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "Dra_Get": { + "$ref": "./examples/Dra_Get.json" + } + } + }, + "put": { + "tags": [ + "Dra" + ], + "summary": "Puts the Dra.", + "description": "Creates the fabric agent.", + "operationId": "Dra_Create", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "fabricName", + "description": "Fabric name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "draName", + "description": "Dra name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "in": "body", + "name": "body", + "description": "Dra model.", + "schema": { + "$ref": "#/definitions/DraModel" + } + } + ], + "responses": { + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/DraModel" + } + }, + "200": { + "description": "Updated", + "schema": { + "$ref": "#/definitions/DraModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "Dra_Create": { + "$ref": "./examples/Dra_Create.json" + } + } + }, + "delete": { + "tags": [ + "Dra" + ], + "summary": "Deletes the Dra.", + "description": "Deletes the fabric agent.", + "operationId": "Dra_Delete", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "fabricName", + "description": "Fabric Name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "draName", + "description": "Dra Name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "202": { + "description": "Returns success on deletion.", + "headers": { + "Azure-AsyncOperation": { + "description": "Tracking URL for long running operation.", + "type": "string" + }, + "Location": { + "type": "string" + } + } + }, + "204": { + "description": "No Content" + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "Dra_Delete": { + "$ref": "./examples/Dra_Delete.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationFabrics/{fabricName}/fabricAgents": { + "get": { + "tags": [ + "Dra" + ], + "summary": "Lists the Dras.", + "description": "Gets the list of fabric agents in the given fabric.", + "operationId": "Dra_List", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "fabricName", + "description": "Fabric name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Dra Model Collection on success.", + "schema": { + "$ref": "#/definitions/DraModelCollection" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "Dra_List": { + "$ref": "./examples/Dra_List.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationFabrics/{fabricName}/fabricAgents/{draName}/operations/{operationId}": { + "get": { + "tags": [ + "Dra" + ], + "summary": "Gets the Dra operation status.", + "description": "Tracks the results of an asynchronous operation on the fabric agent.", + "operationId": "DraOperationStatus_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "fabricName", + "description": "Fabric name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "draName", + "description": "Dra name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "operationId", + "description": "Operation Id.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/OperationStatus" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "DraOperationStatus_Get": { + "$ref": "./examples/DraOperationStatus_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/alertSettings/{emailConfigurationName}": { + "get": { + "tags": [ + "EmailConfiguration" + ], + "summary": "Gets the email configuration setting.", + "description": "Gets the details of the alert configuration setting.", + "operationId": "EmailConfiguration_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "emailConfigurationName", + "description": "Email configuration name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns EmailConfiguration Model on success.", + "schema": { + "$ref": "#/definitions/EmailConfigurationModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "EmailConfiguration_Get": { + "$ref": "./examples/EmailConfiguration_Get.json" + } + } + }, + "put": { + "tags": [ + "EmailConfiguration" + ], + "summary": "Creates email configuration settings.", + "description": "Creates an alert configuration setting for the given vault.", + "operationId": "EmailConfiguration_Create", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "emailConfigurationName", + "description": "Email configuration name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "in": "body", + "name": "body", + "description": "EmailConfiguration model.", + "schema": { + "$ref": "#/definitions/EmailConfigurationModel" + } + } + ], + "responses": { + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/EmailConfigurationModel" + } + }, + "200": { + "description": "Updated", + "schema": { + "$ref": "#/definitions/EmailConfigurationModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "EmailConfiguration_Create": { + "$ref": "./examples/EmailConfiguration_Create.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/alertSettings": { + "get": { + "tags": [ + "EmailConfiguration" + ], + "summary": "Lists the email configuration settings.", + "description": "Gets the list of alert configuration settings for the given vault.", + "operationId": "EmailConfiguration_List", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns EmailConfiguration Model Collection on success.", + "schema": { + "$ref": "#/definitions/EmailConfigurationModelCollection" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "EmailConfiguration_List": { + "$ref": "./examples/EmailConfiguration_List.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/events/{eventName}": { + "get": { + "tags": [ + "Event" + ], + "summary": "Gets the event.", + "description": "Gets the details of the event.", + "operationId": "Event_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "eventName", + "description": "Event name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Event Model on success.", + "schema": { + "$ref": "#/definitions/EventModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "Event_Get": { + "$ref": "./examples/Event_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/events": { + "get": { + "tags": [ + "Event" + ], + "summary": "Lists the events.", + "description": "Gets the list of events in the given vault.", + "operationId": "Event_List", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "query", + "name": "$filter", + "description": "Filter string.", + "type": "string" + }, + { + "in": "query", + "name": "continuationToken", + "description": "Continuation token.", + "type": "string" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Event Model Collection on success.", + "schema": { + "$ref": "#/definitions/EventModelCollection" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "Event_List": { + "$ref": "./examples/Event_List.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationFabrics/{fabricName}": { + "get": { + "tags": [ + "Fabric" + ], + "summary": "Gets the fabric.", + "description": "Gets the details of the fabric.", + "operationId": "Fabric_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "fabricName", + "description": "Fabric name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Fabric Model on success.", + "schema": { + "$ref": "#/definitions/FabricModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "Fabric_Get": { + "$ref": "./examples/Fabric_Get.json" + } + } + }, + "put": { + "tags": [ + "Fabric" + ], + "summary": "Puts the fabric.", + "description": "Creates the fabric.", + "operationId": "Fabric_Create", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "fabricName", + "description": "Fabric Name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "in": "body", + "name": "body", + "description": "Fabric properties.", + "schema": { + "$ref": "#/definitions/FabricModel" + } + } + ], + "responses": { + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/FabricModel" + } + }, + "200": { + "description": "Updated", + "schema": { + "$ref": "#/definitions/FabricModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "Fabric_Create": { + "$ref": "./examples/Fabric_Create.json" + } + } + }, + "patch": { + "tags": [ + "Fabric" + ], + "summary": "Updates the fabric.", + "description": "Performs update on the fabric.", + "operationId": "Fabric_Update", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "fabricName", + "description": "Fabric Name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "in": "body", + "name": "body", + "description": "Fabric properties.", + "schema": { + "$ref": "#/definitions/FabricModelUpdate" + } + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/FabricModel" + } + }, + "202": { + "description": "Returns success on update.", + "headers": { + "Azure-AsyncOperation": { + "description": "Tracking URL for long running operation.", + "type": "string" + }, + "Location": { + "type": "string" + } + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "Fabric_Update": { + "$ref": "./examples/Fabric_Update.json" + } + } + }, + "delete": { + "tags": [ + "Fabric" + ], + "summary": "Deletes the fabric.", + "description": "Removes the fabric.", + "operationId": "Fabric_Delete", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "fabricName", + "description": "Fabric Name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "202": { + "description": "Returns success on deletion.", + "headers": { + "Azure-AsyncOperation": { + "description": "Tracking URL for long running operation.", + "type": "string" + }, + "Location": { + "type": "string" + } + } + }, + "204": { + "description": "No Content" + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "Fabric_Delete": { + "$ref": "./examples/Fabric_Delete.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.DataReplication/replicationFabrics": { + "get": { + "tags": [ + "Fabric" + ], + "summary": "Lists the fabrics.", + "description": "Gets the list of fabrics in the given subscription.", + "operationId": "Fabric_ListBySubscription", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "in": "query", + "name": "continuationToken", + "description": "Continuation token from the previous call.", + "type": "string" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Fabric Model Collection on success.", + "schema": { + "$ref": "#/definitions/FabricModelCollection" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "Fabric_ListBySubscription": { + "$ref": "./examples/Fabric_ListBySubscription.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationFabrics": { + "get": { + "tags": [ + "Fabric" + ], + "summary": "Lists the fabrics.", + "description": "Gets the list of fabrics in the given subscription and resource group.", + "operationId": "Fabric_List", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "query", + "name": "continuationToken", + "description": "Continuation token from the previous call.", + "type": "string" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Fabric Model Collection on success.", + "schema": { + "$ref": "#/definitions/FabricModelCollection" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "Fabric_List": { + "$ref": "./examples/Fabric_List.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationFabrics/{fabricName}/operations/{operationId}": { + "get": { + "tags": [ + "Fabric" + ], + "summary": "Gets the fabric operation status.", + "description": "Tracks the results of an asynchronous operation on the fabric.", + "operationId": "FabricOperationsStatus_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "fabricName", + "description": "Fabric name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "operationId", + "description": "Operation Id.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/OperationStatus" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "FabricOperationsStatus_Get": { + "$ref": "./examples/FabricOperationsStatus_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/replicationPolicies/{policyName}": { + "get": { + "tags": [ + "Policy" + ], + "summary": "Gets the policy.", + "description": "Gets the details of the policy.", + "operationId": "Policy_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "policyName", + "description": "Policy name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Policy Model on success.", + "schema": { + "$ref": "#/definitions/PolicyModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "Policy_Get": { + "$ref": "./examples/Policy_Get.json" + } + } + }, + "put": { + "tags": [ + "Policy" + ], + "summary": "Puts the policy.", + "description": "Creates the policy.", + "operationId": "Policy_Create", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "policyName", + "description": "Policy name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "in": "body", + "name": "body", + "description": "Policy model.", + "schema": { + "$ref": "#/definitions/PolicyModel" + } + } + ], + "responses": { + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/PolicyModel" + } + }, + "200": { + "description": "Updated", + "schema": { + "$ref": "#/definitions/PolicyModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "Policy_Create": { + "$ref": "./examples/Policy_Create.json" + } + } + }, + "delete": { + "tags": [ + "Policy" + ], + "summary": "Deletes the policy.", + "description": "Removes the policy.", + "operationId": "Policy_Delete", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault Name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "policyName", + "description": "Policy Name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "202": { + "description": "Returns success on deletion.", + "headers": { + "Azure-AsyncOperation": { + "description": "Tracking URL for long running operation.", + "type": "string" + }, + "Location": { + "type": "string" + } + } + }, + "204": { + "description": "No Content" + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "Policy_Delete": { + "$ref": "./examples/Policy_Delete.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/replicationPolicies": { + "get": { + "tags": [ + "Policy" + ], + "summary": "Lists the policies.", + "description": "Gets the list of policies in the given vault.", + "operationId": "Policy_List", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Policy Model Collection on success.", + "schema": { + "$ref": "#/definitions/PolicyModelCollection" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "Policy_List": { + "$ref": "./examples/Policy_List.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/replicationPolicies/{policyName}/operations/{operationId}": { + "get": { + "tags": [ + "Policy" + ], + "summary": "Gets the policy operation status.", + "description": "Tracks the results of an asynchronous operation on the policy.", + "operationId": "PolicyOperationStatus_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "policyName", + "description": "Policy name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "operationId", + "description": "Operation Id.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/OperationStatus" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "PolicyOperationStatus_Get": { + "$ref": "./examples/PolicyOperationStatus_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/protectedItems/{protectedItemName}": { + "get": { + "tags": [ + "ProtectedItem" + ], + "summary": "Gets the protected item.", + "description": "Gets the details of the protected item.", + "operationId": "ProtectedItem_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "protectedItemName", + "description": "Protected item name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns ProtectedItem Model on success.", + "schema": { + "$ref": "#/definitions/ProtectedItemModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "ProtectedItem_Get": { + "$ref": "./examples/ProtectedItem_Get.json" + } + } + }, + "put": { + "tags": [ + "ProtectedItem" + ], + "summary": "Puts the protected item.", + "description": "Creates the protected item.", + "operationId": "ProtectedItem_Create", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "protectedItemName", + "description": "Protected item name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "in": "body", + "name": "body", + "description": "Protected item model.", + "schema": { + "$ref": "#/definitions/ProtectedItemModel" + } + } + ], + "responses": { + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/ProtectedItemModel" + } + }, + "200": { + "description": "Updated", + "schema": { + "$ref": "#/definitions/ProtectedItemModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "ProtectedItem_Create": { + "$ref": "./examples/ProtectedItem_Create.json" + } + } + }, + "delete": { + "tags": [ + "ProtectedItem" + ], + "summary": "Deletes the protected item.", + "description": "Removes the protected item.", + "operationId": "ProtectedItem_Delete", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "protectedItemName", + "description": "Protected item name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "query", + "name": "forceDelete", + "description": "A flag indicating whether to do force delete or not.", + "type": "boolean" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "202": { + "description": "Accepted", + "headers": { + "Azure-AsyncOperation": { + "description": "Tracking URL for long running operation.", + "type": "string" + }, + "Location": { + "type": "string" + } + } + }, + "204": { + "description": "No Content" + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "ProtectedItem_Delete": { + "$ref": "./examples/ProtectedItem_Delete.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/protectedItems": { + "get": { + "tags": [ + "ProtectedItem" + ], + "summary": "Lists the protected items.", + "description": "Gets the list of protected items in the given vault.", + "operationId": "ProtectedItem_List", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns ProtectedItem Model Collection on success.", + "schema": { + "$ref": "#/definitions/ProtectedItemModelCollection" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "ProtectedItem_List": { + "$ref": "./examples/ProtectedItem_List.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/protectedItems/{protectedItemName}/plannedFailover": { + "post": { + "tags": [ + "ProtectedItem" + ], + "summary": "Performs planned failover.", + "description": "Performs the planned failover on the protected item.", + "operationId": "ProtectedItem_PlannedFailover", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "protectedItemName", + "description": "Protected item name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "in": "body", + "name": "body", + "description": "Planned failover model.", + "schema": { + "$ref": "#/definitions/PlannedFailoverModel" + } + } + ], + "responses": { + "202": { + "description": "Accepted", + "headers": { + "Azure-AsyncOperation": { + "description": "Tracking URL for long running operation.", + "type": "string" + }, + "Location": { + "type": "string" + } + } + }, + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/PlannedFailoverModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "ProtectedItem_PlannedFailover": { + "$ref": "./examples/ProtectedItem_PlannedFailover.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/protectedItems/{protectedItemName}/operations/{operationId}": { + "get": { + "tags": [ + "ProtectedItem" + ], + "summary": "Gets the protected item operation status.", + "description": "Tracks the results of an asynchronous operation on the protected item.", + "operationId": "ProtectedItemOperationStatus_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "protectedItemName", + "description": "Protected Item name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "operationId", + "description": "Operation Id.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/OperationStatus" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "ProtectedItemOperationStatus_Get": { + "$ref": "./examples/ProtectedItemOperationStatus_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/protectedItems/{protectedItemName}/recoveryPoints/{recoveryPointName}": { + "get": { + "tags": [ + "RecoveryPoint" + ], + "summary": "Gets the recovery point.", + "description": "Gets the details of the recovery point of a protected item.", + "operationId": "RecoveryPoints_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "protectedItemName", + "description": "Protected item name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "recoveryPointName", + "description": "Recovery point name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/RecoveryPointModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "RecoveryPoints_Get": { + "$ref": "./examples/RecoveryPoints_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/protectedItems/{protectedItemName}/recoveryPoints": { + "get": { + "tags": [ + "RecoveryPoint" + ], + "summary": "Lists the recovery points.", + "description": "Gets the list of recovery points of the given protected item.", + "operationId": "RecoveryPoints_List", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "protectedItemName", + "description": "Protected item name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/RecoveryPointModelCollection" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "RecoveryPoints_List": { + "$ref": "./examples/RecoveryPoints_List.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/replicationExtensions/{replicationExtensionName}": { + "get": { + "tags": [ + "ReplicationExtension" + ], + "summary": "Gets the replication extension.", + "description": "Gets the details of the replication extension.", + "operationId": "ReplicationExtension_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "replicationExtensionName", + "description": "Replication extension name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Replication extension Model on success.", + "schema": { + "$ref": "#/definitions/ReplicationExtensionModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "ReplicationExtension_Get": { + "$ref": "./examples/ReplicationExtension_Get.json" + } + } + }, + "put": { + "tags": [ + "ReplicationExtension" + ], + "summary": "Puts the replication extension.", + "description": "Creates the replication extension in the given vault.", + "operationId": "ReplicationExtension_Create", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "replicationExtensionName", + "description": "Replication extension name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "in": "body", + "name": "body", + "description": "Replication extension model.", + "schema": { + "$ref": "#/definitions/ReplicationExtensionModel" + } + } + ], + "responses": { + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/ReplicationExtensionModel" + } + }, + "200": { + "description": "Updated", + "schema": { + "$ref": "#/definitions/ReplicationExtensionModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "ReplicationExtension_Create": { + "$ref": "./examples/ReplicationExtension_Create.json" + } + } + }, + "delete": { + "tags": [ + "ReplicationExtension" + ], + "summary": "Deletes the replication extension.", + "description": "Deletes the replication extension in the given vault.", + "operationId": "ReplicationExtension_Delete", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault Name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "replicationExtensionName", + "description": "Replication extension name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "202": { + "description": "Returns success on deletion.", + "headers": { + "Azure-AsyncOperation": { + "description": "Tracking URL for long running operation.", + "type": "string" + }, + "Location": { + "type": "string" + } + } + }, + "204": { + "description": "No Content" + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "ReplicationExtension_Delete": { + "$ref": "./examples/ReplicationExtension_Delete.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/replicationExtensions": { + "get": { + "tags": [ + "ReplicationExtension" + ], + "summary": "Lists the replication extensions.", + "description": "Gets the list of replication extensions in the given vault.", + "operationId": "ReplicationExtension_List", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Replication extension Model Collection on success.", + "schema": { + "$ref": "#/definitions/ReplicationExtensionModelCollection" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "ReplicationExtension_List": { + "$ref": "./examples/ReplicationExtension_List.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/replicationExtensions/{replicationExtensionName}/operations/{operationId}": { + "get": { + "tags": [ + "ReplicationExtension" + ], + "summary": "Gets the replication extension operation status.", + "description": "Tracks the results of an asynchronous operation on the replication extension.", + "operationId": "ReplicationExtensionOperationStatus_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "replicationExtensionName", + "description": "Replication extension name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "operationId", + "description": "Operation Id.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/OperationStatus" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "ReplicationExtensionOperationStatus_Get": { + "$ref": "./examples/ReplicationExtensionOperationStatus_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.DataReplication/locations/{location}/checkNameAvailability": { + "post": { + "tags": [ + "Tenant" + ], + "summary": "Performs the resource name availability check.", + "description": "Checks the resource name availability.", + "operationId": "CheckNameAvailability", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "in": "path", + "name": "location", + "description": "Resource location.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "in": "body", + "name": "body", + "description": "Resource details.", + "schema": { + "$ref": "#/definitions/CheckNameAvailabilityModel" + } + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/CheckNameAvailabilityResponseModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "CheckNameAvailability": { + "$ref": "./examples/CheckNameAvailability.json" + } + } + } + }, + "/providers/Microsoft.DataReplication/operations": { + "get": { + "tags": [ + "Tenant" + ], + "summary": "Get a list of REST API operations supported by Microsoft.DataReplication.", + "description": "Gets the operations.", + "operationId": "Operations_List", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "type": "array", + "items": { + "$ref": "#/definitions/OperationModel" + } + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "Operations_List": { + "$ref": "./examples/Operations_List.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/deployments/{deploymentId}/preflight": { + "post": { + "tags": [ + "Tenant" + ], + "summary": "Performs resource deployment validation.", + "operationId": "DeploymentPreflight", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "deploymentId", + "description": "Deployment Id.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "in": "body", + "name": "body", + "description": "Deployment preflight model.", + "schema": { + "$ref": "#/definitions/DeploymentPreflightModel" + } + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/DeploymentPreflightModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "DeploymentPreflight": { + "$ref": "./examples/DeploymentPreflight.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}": { + "get": { + "tags": [ + "Vault" + ], + "summary": "Gets the vault.", + "description": "Gets the details of the vault.", + "operationId": "Vault_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Vault Model on success.", + "schema": { + "$ref": "#/definitions/VaultModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "Vault_Get": { + "$ref": "./examples/Vault_Get.json" + } + } + }, + "put": { + "tags": [ + "Vault" + ], + "summary": "Puts the vault.", + "description": "Creates the vault.", + "operationId": "Vault_Create", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault Name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "in": "body", + "name": "body", + "description": "Vault properties.", + "schema": { + "$ref": "#/definitions/VaultModel" + } + } + ], + "responses": { + "201": { + "description": "Created", + "schema": { + "$ref": "#/definitions/VaultModel" + } + }, + "200": { + "description": "Updated", + "schema": { + "$ref": "#/definitions/VaultModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "Vault_Create": { + "$ref": "./examples/Vault_Create.json" + } + } + }, + "patch": { + "tags": [ + "Vault" + ], + "summary": "Updates the vault.", + "description": "Performs update on the vault.", + "operationId": "Vault_Update", + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault Name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "in": "body", + "name": "body", + "description": "Vault properties.", + "schema": { + "$ref": "#/definitions/VaultModelUpdate" + } + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/VaultModel" + } + }, + "202": { + "description": "Returns success on update.", + "headers": { + "Azure-AsyncOperation": { + "description": "Tracking URL for long running operation.", + "type": "string" + }, + "Location": { + "type": "string" + } + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "Vault_Update": { + "$ref": "./examples/Vault_Update.json" + } + } + }, + "delete": { + "tags": [ + "Vault" + ], + "summary": "Deletes the vault.", + "description": "Removes the vault.", + "operationId": "Vault_Delete", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault Name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "202": { + "description": "Returns success on deletion.", + "headers": { + "Azure-AsyncOperation": { + "description": "Tracking URL for long running operation.", + "type": "string" + }, + "Location": { + "type": "string" + } + } + }, + "204": { + "description": "No Content" + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-long-running-operation": true, + "x-ms-long-running-operation-options": { + "final-state-via": "location" + }, + "x-ms-examples": { + "Vault_Delete": { + "$ref": "./examples/Vault_Delete.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/providers/Microsoft.DataReplication/replicationVaults": { + "get": { + "tags": [ + "Vault" + ], + "summary": "Lists the vaults.", + "description": "Gets the list of vaults in the given subscription.", + "operationId": "Vault_ListBySubscription", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "in": "query", + "name": "continuationToken", + "description": "Continuation token from the previous call.", + "type": "string" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Vault Model Collection on success.", + "schema": { + "$ref": "#/definitions/VaultModelCollection" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "Vault_ListBySubscription": { + "$ref": "./examples/Vault_ListBySubscription.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults": { + "get": { + "tags": [ + "Vault" + ], + "summary": "Lists the vaults.", + "description": "Gets the list of vaults in the given subscription and resource group.", + "operationId": "Vault_List", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "query", + "name": "continuationToken", + "description": "Continuation token from the previous call.", + "type": "string" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Vault Model Collection on success.", + "schema": { + "$ref": "#/definitions/VaultModelCollection" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "Vault_List": { + "$ref": "./examples/Vault_List.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/operations/{operationId}": { + "get": { + "tags": [ + "Vault" + ], + "summary": "Gets the vault operation status.", + "description": "Tracks the results of an asynchronous operation on the vault.", + "operationId": "VaultOperationStatus_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "operationId", + "description": "Operation Id.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/OperationStatus" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "VaultOperationStatus_Get": { + "$ref": "./examples/VaultOperationStatus_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/jobs/{workflowName}": { + "get": { + "tags": [ + "Workflow" + ], + "summary": "Gets the workflow.", + "description": "Gets the details of the job.", + "operationId": "Workflow_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "workflowName", + "description": "Workflow name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Workflow Model on success.", + "schema": { + "$ref": "#/definitions/WorkflowModel" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "Workflow_Get": { + "$ref": "./examples/Workflow_Get.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/jobs": { + "get": { + "tags": [ + "Workflow" + ], + "summary": "Lists the workflows.", + "description": "Gets the list of jobs in the given vault.", + "operationId": "Workflow_List", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "query", + "name": "$filter", + "description": "Filter string.", + "type": "string" + }, + { + "in": "query", + "name": "continuationToken", + "description": "Continuation token.", + "type": "string" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Returns Workflow Model Collection on success.", + "schema": { + "$ref": "#/definitions/WorkflowModelCollection" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-examples": { + "Workflow_List": { + "$ref": "./examples/Workflow_List.json" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/jobs/{workflowName}/operations/{operationId}": { + "get": { + "tags": [ + "Workflow" + ], + "summary": "Gets the workflow operation status.", + "description": "Tracks the results of an asynchronous operation on the job.", + "operationId": "WorkflowOperationStatus_Get", + "produces": [ + "application/json" + ], + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "in": "path", + "name": "vaultName", + "description": "Vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "workflowName", + "description": "Workflow name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + { + "in": "path", + "name": "operationId", + "description": "Operation Id.", + "required": true, + "type": "string" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Success", + "schema": { + "$ref": "#/definitions/OperationStatus" + } + }, + "default": { + "description": "Error", + "schema": { + "$ref": "#/definitions/ArmError" + } + } + }, + "x-ms-examples": { + "WorkflowOperationStatus_Get": { + "$ref": "./examples/WorkflowOperationStatus_Get.json" + } + } + } + } + }, + "definitions": { + "ArmError": { + "description": "ARM error resembling ErrorResponse.", + "type": "object", + "properties": { + "error": { + "$ref": "#/definitions/ArmErrorInfo" + } + } + }, + "ArmErrorInfo": { + "description": "Arm error info resembling ErrorDetail.", + "type": "object", + "properties": { + "code": { + "description": "Gets the error code.", + "type": "string", + "readOnly": true + }, + "message": { + "description": "Gets the error message.", + "type": "string", + "readOnly": true + } + } + }, + "AzStackHCIClusterProperties": { + "description": "AzStackHCI cluster properties.", + "required": [ + "clusterName", + "resourceName", + "storageAccountName", + "storageContainers" + ], + "type": "object", + "properties": { + "clusterName": { + "description": "Gets or sets the AzStackHCICluster FQDN name.", + "minLength": 1, + "type": "string" + }, + "resourceName": { + "description": "Gets or sets the AzStackHCICluster resource name.", + "minLength": 1, + "type": "string" + }, + "storageAccountName": { + "description": "Gets or sets the Storage account name.", + "minLength": 1, + "type": "string" + }, + "storageContainers": { + "description": "Gets or sets the list of AzStackHCICluster Storage Container.", + "type": "array", + "items": { + "$ref": "#/definitions/StorageContainerProperties" + }, + "x-ms-identifiers": [] + } + } + }, + "AzStackHCIFabricModelCustomProperties": { + "description": "AzStackHCI fabric model custom properties.", + "required": [ + "azStackHciSiteId", + "cluster", + "migrationSolutionId" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/FabricModelCustomProperties" + } + ], + "properties": { + "azStackHciSiteId": { + "description": "Gets or sets the ARM Id of the AzStackHCI site.", + "minLength": 1, + "type": "string" + }, + "applianceName": { + "description": "Gets or sets the Appliance name.", + "type": "array", + "items": { + "type": "string" + }, + "readOnly": true + }, + "cluster": { + "$ref": "#/definitions/AzStackHCIClusterProperties" + }, + "fabricResourceId": { + "description": "Gets or sets the fabric resource Id.", + "type": "string", + "readOnly": true + }, + "fabricContainerId": { + "description": "Gets or sets the fabric container Id.", + "type": "string", + "readOnly": true + }, + "migrationSolutionId": { + "description": "Gets or sets the Migration solution ARM Id.", + "minLength": 1, + "type": "string" + }, + "migrationHubUri": { + "description": "Gets or sets the migration hub Uri.", + "type": "string", + "readOnly": true + } + } + }, + "CheckNameAvailabilityModel": { + "description": "Check name availability model.", + "type": "object", + "properties": { + "name": { + "description": "Gets or sets the resource name.", + "type": "string" + }, + "type": { + "description": "Gets or sets the resource type.", + "type": "string" + } + } + }, + "CheckNameAvailabilityResponseModel": { + "description": "Check name availability response model.", + "type": "object", + "properties": { + "nameAvailable": { + "description": "Gets or sets a value indicating whether resource name is available or not.", + "type": "boolean" + }, + "reason": { + "description": "Gets or sets the reason for resource name unavailability.", + "type": "string" + }, + "message": { + "description": "Gets or sets the message for resource name unavailability.", + "type": "string" + } + } + }, + "DeploymentPreflightModel": { + "description": "Deployment preflight model.", + "type": "object", + "properties": { + "resources": { + "description": "Gets or sets the list of resources.", + "type": "array", + "items": { + "$ref": "#/definitions/DeploymentPreflightResource" + }, + "x-ms-identifiers": [] + } + } + }, + "DeploymentPreflightResource": { + "description": "Deployment preflight resource.", + "type": "object", + "properties": { + "name": { + "description": "Gets or sets the resource name.", + "type": "string" + }, + "type": { + "description": "Gets or sets the resource type.", + "type": "string" + }, + "location": { + "description": "Gets or sets the location of the resource.", + "type": "string", + "x-ms-mutability": [ + "create", + "read" + ] + }, + "apiVersion": { + "description": "Gets or sets the Api version.", + "type": "string" + } + } + }, + "DraModel": { + "description": "Dra model.", + "required": [ + "properties" + ], + "type": "object", + "properties": { + "properties": { + "$ref": "#/definitions/DraModelProperties" + }, + "id": { + "description": "Gets or sets the Id of the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Gets or sets the name of the resource.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Gets or sets the type of the resource.", + "type": "string", + "readOnly": true + }, + "systemData": { + "allOf": [ + { + "$ref": "#/definitions/SystemDataModel" + } + ], + "readOnly": true + }, + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "x-ms-azure-resource": true + }, + "DraModelCollection": { + "description": "Dra model collection.", + "type": "object", + "properties": { + "value": { + "description": "Gets or sets the list of Dras.", + "type": "array", + "items": { + "$ref": "#/definitions/DraModel" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "description": "Gets or sets the value of next link.", + "type": "string" + } + } + }, + "DraModelCustomProperties": { + "description": "Dra model custom properties.", + "required": [ + "instanceType" + ], + "type": "object", + "properties": { + "instanceType": { + "description": "Gets or sets the instance type.", + "minLength": 1, + "type": "string" + } + } + }, + "DraModelProperties": { + "description": "Dra model properties.", + "required": [ + "authenticationIdentity", + "customProperties", + "machineId", + "machineName", + "resourceAccessIdentity" + ], + "type": "object", + "properties": { + "correlationId": { + "description": "Gets or sets the Dra correlation Id.", + "type": "string", + "readOnly": true + }, + "machineId": { + "description": "Gets or sets the machine Id where Dra is running.", + "minLength": 1, + "type": "string" + }, + "machineName": { + "description": "Gets or sets the machine name where Dra is running.", + "minLength": 1, + "type": "string" + }, + "authenticationIdentity": { + "$ref": "#/definitions/IdentityModel" + }, + "resourceAccessIdentity": { + "$ref": "#/definitions/IdentityModel" + }, + "isResponsive": { + "description": "Gets or sets a value indicating whether Dra is responsive.", + "type": "boolean", + "readOnly": true + }, + "lastHeartbeat": { + "format": "date-time", + "description": "Gets or sets the time when last heartbeat was sent by the Dra.", + "type": "string", + "readOnly": true + }, + "versionNumber": { + "description": "Gets or sets the Dra version.", + "type": "string", + "readOnly": true + }, + "provisioningState": { + "description": "Gets or sets the provisioning state of the Dra.", + "enum": [ + "Canceled", + "Creating", + "Deleting", + "Deleted", + "Failed", + "Succeeded", + "Updating" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "ProvisioningState", + "modelAsString": true + } + }, + "healthErrors": { + "description": "Gets or sets the list of health errors.", + "type": "array", + "items": { + "$ref": "#/definitions/HealthErrorModel" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "customProperties": { + "$ref": "#/definitions/DraModelCustomProperties" + } + } + }, + "EmailConfigurationModel": { + "description": "Email configuration model.", + "required": [ + "properties" + ], + "type": "object", + "properties": { + "properties": { + "$ref": "#/definitions/EmailConfigurationModelProperties" + }, + "id": { + "description": "Gets or sets the Id of the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Gets or sets the name of the resource.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Gets or sets the type of the resource.", + "type": "string", + "readOnly": true + }, + "systemData": { + "allOf": [ + { + "$ref": "#/definitions/SystemDataModel" + } + ], + "readOnly": true + }, + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "x-ms-azure-resource": true + }, + "EmailConfigurationModelCollection": { + "description": "Email configuration model collection.", + "type": "object", + "properties": { + "value": { + "description": "Gets or sets the list of email configurations.", + "type": "array", + "items": { + "$ref": "#/definitions/EmailConfigurationModel" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "description": "Gets or sets the value of next link.", + "type": "string" + } + } + }, + "EmailConfigurationModelProperties": { + "description": "Email configuration model properties.", + "required": [ + "sendToOwners" + ], + "type": "object", + "properties": { + "sendToOwners": { + "description": "Gets or sets a value indicating whether to send email to subscription administrator.", + "type": "boolean" + }, + "customEmailAddresses": { + "description": "Gets or sets the custom email address for sending emails.", + "type": "array", + "items": { + "type": "string" + } + }, + "locale": { + "description": "Gets or sets the locale for the email notification.", + "type": "string" + } + } + }, + "ErrorModel": { + "description": "Error model.", + "type": "object", + "properties": { + "code": { + "description": "Gets or sets the error code.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Gets or sets the error type.", + "type": "string", + "readOnly": true + }, + "severity": { + "description": "Gets or sets the error severity.", + "type": "string", + "readOnly": true + }, + "creationTime": { + "format": "date-time", + "description": "Gets or sets the creation time of error.", + "type": "string", + "readOnly": true + }, + "message": { + "description": "Gets or sets the error message.", + "type": "string", + "readOnly": true + }, + "causes": { + "description": "Gets or sets the possible causes of error.", + "type": "string", + "readOnly": true + }, + "recommendation": { + "description": "Gets or sets the recommended action to resolve error.", + "type": "string", + "readOnly": true + } + } + }, + "EventModel": { + "description": "Event model.", + "required": [ + "properties" + ], + "type": "object", + "properties": { + "properties": { + "$ref": "#/definitions/EventModelProperties" + }, + "id": { + "description": "Gets or sets the Id of the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Gets or sets the name of the resource.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Gets or sets the type of the resource.", + "type": "string", + "readOnly": true + }, + "systemData": { + "allOf": [ + { + "$ref": "#/definitions/SystemDataModel" + } + ], + "readOnly": true + }, + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + }, + "EventModelCollection": { + "description": "Event model collection.", + "type": "object", + "properties": { + "value": { + "description": "Gets or sets the list of events.", + "type": "array", + "items": { + "$ref": "#/definitions/EventModel" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "description": "Gets or sets the value of next link.", + "type": "string" + } + } + }, + "EventModelCustomProperties": { + "description": "Event model custom properties.", + "required": [ + "instanceType" + ], + "type": "object", + "properties": { + "instanceType": { + "description": "Gets or sets the instance type.", + "minLength": 1, + "type": "string" + } + } + }, + "EventModelProperties": { + "description": "Event model properties.", + "required": [ + "customProperties" + ], + "type": "object", + "properties": { + "resourceType": { + "description": "Gets or sets the resource type.", + "type": "string", + "readOnly": true + }, + "resourceName": { + "description": "Gets or sets the resource name.", + "type": "string", + "readOnly": true + }, + "eventType": { + "description": "Gets or sets the event type.", + "type": "string", + "readOnly": true + }, + "eventName": { + "description": "Gets or sets the event name.", + "type": "string", + "readOnly": true + }, + "timeOfOccurrence": { + "format": "date-time", + "description": "Gets or sets the time at which the event occurred at source.", + "type": "string", + "readOnly": true + }, + "severity": { + "description": "Gets or sets the event severity.", + "type": "string", + "readOnly": true + }, + "description": { + "description": "Gets or sets the event description.", + "type": "string", + "readOnly": true + }, + "correlationId": { + "description": "Gets or sets the event correlation Id.", + "type": "string", + "readOnly": true + }, + "healthErrors": { + "description": "Gets or sets the errors associated with this event.", + "type": "array", + "items": { + "$ref": "#/definitions/HealthErrorModel" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "customProperties": { + "$ref": "#/definitions/EventModelCustomProperties" + } + } + }, + "FabricModel": { + "description": "Fabric model.", + "required": [ + "location", + "properties" + ], + "type": "object", + "properties": { + "location": { + "description": "Gets or sets the location of the fabric.", + "minLength": 1, + "type": "string", + "x-ms-mutability": [ + "create", + "read" + ] + }, + "properties": { + "$ref": "#/definitions/FabricModelProperties" + }, + "id": { + "description": "Gets or sets the Id of the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Gets or sets the name of the resource.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Gets or sets the type of the resource.", + "type": "string", + "readOnly": true + }, + "systemData": { + "allOf": [ + { + "$ref": "#/definitions/SystemDataModel" + } + ], + "readOnly": true + }, + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "x-ms-azure-resource": true + }, + "FabricModelCollection": { + "description": "Fabric model collection.", + "type": "object", + "properties": { + "value": { + "description": "Gets or sets the list of fabrics.", + "type": "array", + "items": { + "$ref": "#/definitions/FabricModel" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "description": "Gets or sets the value of next link.", + "type": "string" + } + } + }, + "FabricModelCustomProperties": { + "description": "Fabric model custom properties.", + "required": [ + "instanceType" + ], + "type": "object", + "properties": { + "instanceType": { + "description": "Gets or sets the instance type.", + "minLength": 1, + "type": "string" + } + } + }, + "FabricModelProperties": { + "description": "Fabric model properties.", + "required": [ + "customProperties" + ], + "type": "object", + "properties": { + "provisioningState": { + "description": "Gets or sets the provisioning state of the fabric.", + "enum": [ + "Canceled", + "Creating", + "Deleting", + "Deleted", + "Failed", + "Succeeded", + "Updating" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "ProvisioningState", + "modelAsString": true + } + }, + "serviceEndpoint": { + "description": "Gets or sets the service endpoint.", + "type": "string", + "readOnly": true + }, + "serviceResourceId": { + "description": "Gets or sets the service resource Id.", + "type": "string", + "readOnly": true + }, + "health": { + "description": "Gets or sets the fabric health.", + "enum": [ + "Normal", + "Warning", + "Critical" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "HealthStatus", + "modelAsString": true + } + }, + "healthErrors": { + "description": "Gets or sets the list of health errors.", + "type": "array", + "items": { + "$ref": "#/definitions/HealthErrorModel" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "customProperties": { + "$ref": "#/definitions/FabricModelCustomProperties" + } + } + }, + "FabricModelUpdate": { + "description": "Fabric model for update.", + "type": "object", + "properties": { + "properties": { + "$ref": "#/definitions/FabricModelProperties" + }, + "id": { + "description": "Gets or sets the Id of the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Gets or sets the name of the resource.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Gets or sets the type of the resource.", + "type": "string", + "readOnly": true + }, + "systemData": { + "allOf": [ + { + "$ref": "#/definitions/SystemDataModel" + } + ], + "readOnly": true + }, + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "x-ms-azure-resource": true + }, + "FailoverProtectedItemProperties": { + "description": "Failover properties of the protected item.", + "type": "object", + "properties": { + "protectedItemName": { + "description": "Gets or sets the protected item name.", + "type": "string", + "readOnly": true + }, + "vmName": { + "description": "Gets or sets the VM name.", + "type": "string", + "readOnly": true + }, + "testVmName": { + "description": "Gets or sets the test VM name.", + "type": "string", + "readOnly": true + }, + "recoveryPointId": { + "description": "Gets or sets the recovery point Id.", + "type": "string", + "readOnly": true + }, + "recoveryPointTime": { + "format": "date-time", + "description": "Gets or sets the recovery point time.", + "type": "string", + "readOnly": true + }, + "networkName": { + "description": "Gets or sets the network name.", + "type": "string", + "readOnly": true + }, + "subnet": { + "description": "Gets or sets the network subnet.", + "type": "string", + "readOnly": true + } + } + }, + "FailoverWorkflowModelCustomProperties": { + "description": "Failover workflow model custom properties.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/WorkflowModelCustomProperties" + } + ], + "properties": { + "protectedItemDetails": { + "description": "Gets or sets the failed over protected item details.", + "type": "array", + "items": { + "$ref": "#/definitions/FailoverProtectedItemProperties" + }, + "readOnly": true, + "x-ms-identifiers": [] + } + } + }, + "HealthErrorModel": { + "description": "Health error model.", + "type": "object", + "properties": { + "affectedResourceType": { + "description": "Gets or sets the type of affected resource type.", + "type": "string" + }, + "affectedResourceCorrelationIds": { + "description": "Gets or sets the list of affected resource correlation Ids. This can be used to\r\nuniquely identify the count of items affected by a specific category and severity\r\nas well as count of item affected by an specific issue.", + "type": "array", + "items": { + "type": "string" + } + }, + "childErrors": { + "description": "Gets or sets a list of child health errors associated with this error.", + "type": "array", + "items": { + "$ref": "#/definitions/InnerHealthErrorModel" + }, + "x-ms-identifiers": [] + }, + "code": { + "description": "Gets or sets the error code.", + "type": "string", + "readOnly": true + }, + "healthCategory": { + "description": "Gets or sets the health category.", + "type": "string", + "readOnly": true + }, + "category": { + "description": "Gets or sets the error category.", + "type": "string", + "readOnly": true + }, + "severity": { + "description": "Gets or sets the error severity.", + "type": "string", + "readOnly": true + }, + "source": { + "description": "Gets or sets the error source.", + "type": "string", + "readOnly": true + }, + "creationTime": { + "format": "date-time", + "description": "Gets or sets the error creation time.", + "type": "string", + "readOnly": true + }, + "isCustomerResolvable": { + "description": "Gets or sets a value indicating whether the error is customer resolvable.", + "type": "boolean", + "readOnly": true + }, + "summary": { + "description": "Gets or sets the error summary.", + "type": "string", + "readOnly": true + }, + "message": { + "description": "Gets or sets the error message.", + "type": "string", + "readOnly": true + }, + "causes": { + "description": "Gets or sets possible causes of the error.", + "type": "string", + "readOnly": true + }, + "recommendation": { + "description": "Gets or sets recommended action to resolve the error.", + "type": "string", + "readOnly": true + } + } + }, + "HyperVMigrateFabricModelCustomProperties": { + "description": "HyperV migrate fabric model custom properties.", + "required": [ + "hyperVSiteId", + "migrationSolutionId" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/FabricModelCustomProperties" + } + ], + "properties": { + "hyperVSiteId": { + "description": "Gets or sets the ARM Id of the HyperV site.", + "minLength": 1, + "type": "string" + }, + "fabricResourceId": { + "description": "Gets or sets the fabric resource Id.", + "type": "string", + "readOnly": true + }, + "fabricContainerId": { + "description": "Gets or sets the fabric container Id.", + "type": "string", + "readOnly": true + }, + "migrationSolutionId": { + "description": "Gets or sets the migration solution ARM Id.", + "minLength": 1, + "type": "string" + }, + "migrationHubUri": { + "description": "Gets or sets the migration hub Uri.", + "type": "string", + "readOnly": true + } + } + }, + "HyperVToAzStackHCIDiskInput": { + "description": "HyperVToAzStack disk input.", + "required": [ + "diskFileFormat", + "diskId", + "diskSizeGB", + "isOsDisk" + ], + "type": "object", + "properties": { + "diskId": { + "description": "Gets or sets the disk Id.", + "minLength": 1, + "type": "string" + }, + "storageContainerId": { + "description": "Gets or sets the target storage account ARM Id.", + "type": "string" + }, + "isDynamic": { + "description": "Gets or sets a value indicating whether dynamic sizing is enabled on the virtual hard\r\ndisk.", + "type": "boolean" + }, + "diskSizeGB": { + "format": "int64", + "description": "Gets or sets the disk size in GB.", + "type": "integer" + }, + "diskFileFormat": { + "description": "Gets or sets the type of the virtual hard disk, vhd or vhdx.", + "minLength": 1, + "type": "string" + }, + "isOsDisk": { + "description": "Gets or sets a value indicating whether disk is os disk.", + "type": "boolean" + } + } + }, + "HyperVToAzStackHCIEventModelCustomProperties": { + "description": "HyperV to AzStackHCI event model custom properties. This class provides provider specific\r\ndetails for events of type DataContract.HealthEvents.HealthEventType.ProtectedItemHealth and\r\nDataContract.HealthEvents.HealthEventType.AgentHealth.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/EventModelCustomProperties" + } + ], + "properties": { + "eventSourceFriendlyName": { + "description": "Gets or sets the friendly name of the source which has raised this health event.", + "type": "string", + "readOnly": true + }, + "protectedItemFriendlyName": { + "description": "Gets or sets the protected item friendly name.", + "type": "string", + "readOnly": true + }, + "sourceApplianceName": { + "description": "Gets or sets the source appliance name.", + "type": "string", + "readOnly": true + }, + "targetApplianceName": { + "description": "Gets or sets the source target name.", + "type": "string", + "readOnly": true + }, + "serverType": { + "description": "Gets or sets the server type.", + "type": "string", + "readOnly": true + } + } + }, + "HyperVToAzStackHCINicInput": { + "description": "HyperVToAzStackHCI NIC properties.", + "required": [ + "nicId", + "selectionTypeForFailover", + "targetNetworkId", + "testNetworkId" + ], + "type": "object", + "properties": { + "nicId": { + "description": "Gets or sets the NIC Id.", + "minLength": 1, + "type": "string" + }, + "networkName": { + "description": "Gets or sets the network name.", + "type": "string", + "readOnly": true + }, + "targetNetworkId": { + "description": "Gets or sets the target network Id within AzStackHCI Cluster.", + "minLength": 1, + "type": "string" + }, + "testNetworkId": { + "description": "Gets or sets the target test network Id within AzStackHCI Cluster.", + "minLength": 1, + "type": "string" + }, + "selectionTypeForFailover": { + "description": "Gets or sets the selection type of the NIC.", + "enum": [ + "NotSelected", + "SelectedByUser", + "SelectedByDefault", + "SelectedByUserOverride" + ], + "type": "string", + "x-ms-enum": { + "name": "VMNicSelection", + "modelAsString": true + } + } + } + }, + "HyperVToAzStackHCIPlannedFailoverModelCustomProperties": { + "description": "HyperV to AzStackHCI planned failover model custom properties.", + "required": [ + "shutdownSourceVM" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/PlannedFailoverModelCustomProperties" + } + ], + "properties": { + "shutdownSourceVM": { + "description": "Gets or sets a value indicating whether VM needs to be shut down.", + "type": "boolean" + } + } + }, + "HyperVToAzStackHCIPolicyModelCustomProperties": { + "description": "HyperV To AzStackHCI Policy model custom properties.", + "required": [ + "appConsistentFrequencyInMinutes", + "crashConsistentFrequencyInMinutes", + "recoveryPointHistoryInMinutes" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/PolicyModelCustomProperties" + } + ], + "properties": { + "recoveryPointHistoryInMinutes": { + "format": "int32", + "description": "Gets or sets the duration in minutes until which the recovery points need to be\r\nstored.", + "type": "integer" + }, + "crashConsistentFrequencyInMinutes": { + "format": "int32", + "description": "Gets or sets the crash consistent snapshot frequency (in minutes).", + "type": "integer" + }, + "appConsistentFrequencyInMinutes": { + "format": "int32", + "description": "Gets or sets the app consistent snapshot frequency (in minutes).", + "type": "integer" + } + } + }, + "HyperVToAzStackHCIProtectedDiskProperties": { + "description": "HyperVToAzStackHCI protected disk properties.", + "type": "object", + "properties": { + "storageContainerId": { + "description": "Gets or sets the ARM Id of the storage container.", + "type": "string", + "readOnly": true + }, + "storageContainerLocalPath": { + "description": "Gets or sets the local path of the storage container.", + "type": "string", + "readOnly": true + }, + "sourceDiskId": { + "description": "Gets or sets the source disk Id.", + "type": "string", + "readOnly": true + }, + "sourceDiskName": { + "description": "Gets or sets the source disk Name.", + "type": "string", + "readOnly": true + }, + "seedDiskName": { + "description": "Gets or sets the seed disk name.", + "type": "string", + "readOnly": true + }, + "testMigrateDiskName": { + "description": "Gets or sets the test failover clone disk.", + "type": "string", + "readOnly": true + }, + "migrateDiskName": { + "description": "Gets or sets the failover clone disk.", + "type": "string", + "readOnly": true + }, + "isOsDisk": { + "description": "Gets or sets a value indicating whether the disk is the OS disk.", + "type": "boolean", + "readOnly": true + }, + "capacityInBytes": { + "format": "int64", + "description": "Gets or sets the disk capacity in bytes.", + "type": "integer", + "readOnly": true + }, + "isDynamic": { + "description": "Gets or sets a value indicating whether dynamic sizing is enabled on the virtual hard\r\ndisk.", + "type": "boolean", + "readOnly": true + }, + "diskType": { + "description": "Gets or sets the disk type.", + "type": "string", + "readOnly": true + } + } + }, + "HyperVToAzStackHCIProtectedItemModelCustomProperties": { + "description": "HyperV to AzStackHCI Protected item model custom properties.", + "required": [ + "customLocationRegion", + "disksToInclude", + "fabricDiscoveryMachineId", + "hyperVGeneration", + "nicsToInclude", + "runAsAccountId", + "sourceDraName", + "storageContainerId", + "targetArcClusterCustomLocationId", + "targetDraName", + "targetHciClusterId", + "targetResourceGroupId" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ProtectedItemModelCustomProperties" + } + ], + "properties": { + "activeLocation": { + "description": "Gets or sets the location of the protected item.", + "enum": [ + "Primary", + "Recovery" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "ProtectedItemActiveLocation", + "modelAsString": true + } + }, + "targetHciClusterId": { + "description": "Gets or sets the Target HCI Cluster ARM Id.", + "minLength": 1, + "type": "string" + }, + "targetArcClusterCustomLocationId": { + "description": "Gets or sets the Target Arc Cluster Custom Location ARM Id.", + "minLength": 1, + "type": "string" + }, + "targetAzStackHciClusterName": { + "description": "Gets or sets the Target AzStackHCI cluster name.", + "type": "string", + "readOnly": true + }, + "fabricDiscoveryMachineId": { + "description": "Gets or sets the ARM Id of the discovered machine.", + "minLength": 1, + "type": "string" + }, + "disksToInclude": { + "description": "Gets or sets the list of disks to replicate.", + "minItems": 1, + "type": "array", + "items": { + "$ref": "#/definitions/HyperVToAzStackHCIDiskInput" + }, + "x-ms-identifiers": [] + }, + "nicsToInclude": { + "description": "Gets or sets the list of VM NIC to replicate.", + "minItems": 1, + "type": "array", + "items": { + "$ref": "#/definitions/HyperVToAzStackHCINicInput" + }, + "x-ms-identifiers": [] + }, + "sourceVmName": { + "description": "Gets or sets the source VM display name.", + "type": "string", + "readOnly": true + }, + "sourceCpuCores": { + "format": "int32", + "description": "Gets or sets the source VM CPU cores.", + "type": "integer", + "readOnly": true + }, + "sourceMemoryInMegaBytes": { + "format": "double", + "description": "Gets or sets the source VM ram memory size in megabytes.", + "type": "number", + "readOnly": true + }, + "targetVmName": { + "description": "Gets or sets the target VM display name.", + "type": "string" + }, + "targetResourceGroupId": { + "description": "Gets or sets the target resource group ARM Id.", + "minLength": 1, + "type": "string" + }, + "storageContainerId": { + "description": "Gets or sets the target storage container ARM Id.", + "minLength": 1, + "type": "string" + }, + "hyperVGeneration": { + "description": "Gets or sets the hypervisor generation of the virtual machine.", + "minLength": 1, + "type": "string" + }, + "targetNetworkId": { + "description": "Gets or sets the target network Id within AzStackHCI Cluster.", + "type": "string" + }, + "testNetworkId": { + "description": "Gets or sets the target test network Id within AzStackHCI Cluster.", + "type": "string" + }, + "targetCpuCores": { + "format": "int32", + "description": "Gets or sets the target CPU cores.", + "type": "integer" + }, + "isDynamicRam": { + "description": "Gets or sets a value indicating whether memory is dynamical.", + "type": "boolean" + }, + "dynamicMemoryConfig": { + "$ref": "#/definitions/ProtectedItemDynamicMemoryConfig" + }, + "targetMemoryInMegaBytes": { + "format": "int32", + "description": "Gets or sets the target memory in mega-bytes.", + "type": "integer" + }, + "runAsAccountId": { + "description": "Gets or sets the Run As account Id.", + "minLength": 1, + "type": "string" + }, + "sourceDraName": { + "description": "Gets or sets the source DRA name.", + "minLength": 1, + "type": "string" + }, + "targetDraName": { + "description": "Gets or sets the target DRA name.", + "minLength": 1, + "type": "string" + }, + "sourceApplianceName": { + "description": "Gets or sets the source appliance name.", + "type": "string", + "readOnly": true + }, + "targetApplianceName": { + "description": "Gets or sets the target appliance name.", + "type": "string", + "readOnly": true + }, + "osType": { + "description": "Gets or sets the type of the OS.", + "type": "string", + "readOnly": true + }, + "osName": { + "description": "Gets or sets the name of the OS.", + "type": "string", + "readOnly": true + }, + "firmwareType": { + "description": "Gets or sets the firmware type.", + "type": "string", + "readOnly": true + }, + "targetLocation": { + "description": "Gets or sets the target location.", + "type": "string", + "readOnly": true + }, + "customLocationRegion": { + "description": "Gets or sets the location of Azure Arc HCI custom location resource.", + "minLength": 1, + "type": "string" + }, + "failoverRecoveryPointId": { + "description": "Gets or sets the recovery point Id to which the VM was failed over.", + "type": "string", + "readOnly": true + }, + "lastRecoveryPointReceived": { + "format": "date-time", + "description": "Gets or sets the last recovery point received time.", + "type": "string", + "readOnly": true + }, + "lastRecoveryPointId": { + "description": "Gets or sets the last recovery point Id.", + "type": "string", + "readOnly": true + }, + "initialReplicationProgressPercentage": { + "format": "int32", + "description": "Gets or sets the initial replication progress percentage. This is calculated based on\r\ntotal bytes processed for all disks in the source VM.", + "type": "integer", + "readOnly": true + }, + "resyncProgressPercentage": { + "format": "int32", + "description": "Gets or sets the resync progress percentage. This is calculated based on total bytes\r\nprocessed for all disks in the source VM.", + "type": "integer", + "readOnly": true + }, + "protectedDisks": { + "description": "Gets or sets the list of protected disks.", + "type": "array", + "items": { + "$ref": "#/definitions/HyperVToAzStackHCIProtectedDiskProperties" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "protectedNics": { + "description": "Gets or sets the VM NIC details.", + "type": "array", + "items": { + "$ref": "#/definitions/HyperVToAzStackHCIProtectedNicProperties" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "targetVmBiosId": { + "description": "Gets or sets the BIOS Id of the target AzStackHCI VM.", + "type": "string", + "readOnly": true + }, + "lastReplicationUpdateTime": { + "format": "date-time", + "description": "Gets or sets the latest timestamp that replication status is updated.", + "type": "string", + "readOnly": true + } + } + }, + "HyperVToAzStackHCIProtectedNicProperties": { + "description": "HyperVToAzStackHCI NIC properties.", + "type": "object", + "properties": { + "nicId": { + "description": "Gets or sets the NIC Id.", + "type": "string", + "readOnly": true + }, + "macAddress": { + "description": "Gets or sets the NIC mac address.", + "type": "string", + "readOnly": true + }, + "networkName": { + "description": "Gets or sets the network name.", + "type": "string", + "readOnly": true + }, + "targetNetworkId": { + "description": "Gets or sets the target network Id within AzStackHCI Cluster.", + "type": "string", + "readOnly": true + }, + "testNetworkId": { + "description": "Gets or sets the target test network Id within AzStackHCI Cluster.", + "type": "string", + "readOnly": true + }, + "selectionTypeForFailover": { + "description": "Gets or sets the selection type of the NIC.", + "enum": [ + "NotSelected", + "SelectedByUser", + "SelectedByDefault", + "SelectedByUserOverride" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "VMNicSelection", + "modelAsString": true + } + } + } + }, + "HyperVToAzStackHCIRecoveryPointModelCustomProperties": { + "description": "HyperV to AzStackHCI recovery point model custom properties.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/RecoveryPointModelCustomProperties" + } + ], + "properties": { + "diskIds": { + "description": "Gets or sets the list of the disk Ids.", + "type": "array", + "items": { + "type": "string" + }, + "readOnly": true + } + } + }, + "HyperVToAzStackHCIReplicationExtensionModelCustomProperties": { + "description": "HyperV to AzStackHCI Replication extension model custom properties.", + "required": [ + "azStackHciFabricArmId", + "hyperVFabricArmId" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ReplicationExtensionModelCustomProperties" + } + ], + "properties": { + "hyperVFabricArmId": { + "description": "Gets or sets the ARM Id of the source HyperV fabric.", + "minLength": 1, + "type": "string" + }, + "hyperVSiteId": { + "description": "Gets or sets the ARM Id of the HyperV site.", + "type": "string", + "readOnly": true + }, + "azStackHciFabricArmId": { + "description": "Gets or sets the ARM Id of the target AzStackHCI fabric.", + "minLength": 1, + "type": "string" + }, + "azStackHciSiteId": { + "description": "Gets or sets the ARM Id of the AzStackHCI site.", + "type": "string", + "readOnly": true + }, + "storageAccountId": { + "description": "Gets or sets the storage account Id.", + "type": "string" + }, + "storageAccountSasSecretName": { + "description": "Gets or sets the Sas Secret of storage account.", + "type": "string" + }, + "asrServiceUri": { + "description": "Gets or sets the Uri of ASR.", + "type": "string", + "readOnly": true + }, + "rcmServiceUri": { + "description": "Gets or sets the Uri of Rcm.", + "type": "string", + "readOnly": true + }, + "gatewayServiceUri": { + "description": "Gets or sets the Uri of Gateway.", + "type": "string", + "readOnly": true + }, + "sourceGatewayServiceId": { + "description": "Gets or sets the gateway service Id of source.", + "type": "string", + "readOnly": true + }, + "targetGatewayServiceId": { + "description": "Gets or sets the gateway service Id of target.", + "type": "string", + "readOnly": true + }, + "sourceStorageContainerName": { + "description": "Gets or sets the source storage container name.", + "type": "string", + "readOnly": true + }, + "targetStorageContainerName": { + "description": "Gets or sets the target storage container name.", + "type": "string", + "readOnly": true + }, + "resourceLocation": { + "description": "Gets or sets the resource location.", + "type": "string", + "readOnly": true + }, + "subscriptionId": { + "description": "Gets or sets the subscription.", + "type": "string", + "readOnly": true + }, + "resourceGroup": { + "description": "Gets or sets the resource group.", + "type": "string", + "readOnly": true + } + } + }, + "IdentityModel": { + "description": "Identity model.", + "required": [ + "aadAuthority", + "applicationId", + "audience", + "objectId", + "tenantId" + ], + "type": "object", + "properties": { + "tenantId": { + "description": "Gets or sets the tenant Id of the SPN with which Dra communicates to service.", + "minLength": 1, + "type": "string" + }, + "applicationId": { + "description": "Gets or sets the client/application Id of the SPN with which Dra communicates to\r\nservice.", + "minLength": 1, + "type": "string" + }, + "objectId": { + "description": "Gets or sets the object Id of the SPN with which Dra communicates to service.", + "minLength": 1, + "type": "string" + }, + "audience": { + "description": "Gets or sets the audience of the SPN with which Dra communicates to service.", + "minLength": 1, + "type": "string" + }, + "aadAuthority": { + "description": "Gets or sets the authority of the SPN with which Dra communicates to service.", + "minLength": 1, + "type": "string" + } + } + }, + "InnerHealthErrorModel": { + "description": "Inner health error model.", + "type": "object", + "properties": { + "code": { + "description": "Gets or sets the error code.", + "type": "string", + "readOnly": true + }, + "healthCategory": { + "description": "Gets or sets the health category.", + "type": "string", + "readOnly": true + }, + "category": { + "description": "Gets or sets the error category.", + "type": "string", + "readOnly": true + }, + "severity": { + "description": "Gets or sets the error severity.", + "type": "string", + "readOnly": true + }, + "source": { + "description": "Gets or sets the error source.", + "type": "string", + "readOnly": true + }, + "creationTime": { + "format": "date-time", + "description": "Gets or sets the error creation time.", + "type": "string", + "readOnly": true + }, + "isCustomerResolvable": { + "description": "Gets or sets a value indicating whether the error is customer resolvable.", + "type": "boolean", + "readOnly": true + }, + "summary": { + "description": "Gets or sets the error summary.", + "type": "string", + "readOnly": true + }, + "message": { + "description": "Gets or sets the error message.", + "type": "string", + "readOnly": true + }, + "causes": { + "description": "Gets or sets possible causes of the error.", + "type": "string", + "readOnly": true + }, + "recommendation": { + "description": "Gets or sets recommended action to resolve the error.", + "type": "string", + "readOnly": true + } + } + }, + "OperationModel": { + "description": "Operation model.", + "type": "object", + "properties": { + "name": { + "description": "Gets or sets the name of the operation.", + "type": "string" + }, + "isDataAction": { + "description": "Gets or sets a value indicating whether the action is specific to data plane or\r\ncontrol plane.", + "type": "boolean" + }, + "origin": { + "description": "Gets or sets the executor of the operation.", + "type": "string" + }, + "display": { + "$ref": "#/definitions/OperationModelProperties" + } + } + }, + "OperationModelProperties": { + "description": "Operation model properties.", + "type": "object", + "properties": { + "provider": { + "description": "Gets or sets the resource provider name.", + "type": "string" + }, + "resource": { + "description": "Gets or sets resource name.", + "type": "string" + }, + "operation": { + "description": "Gets or sets the operation.", + "type": "string" + }, + "description": { + "description": "Gets or sets the description.", + "type": "string" + } + } + }, + "OperationStatus": { + "description": "Defines the operation status.", + "type": "object", + "properties": { + "id": { + "description": "Gets or sets the Id.", + "type": "string" + }, + "name": { + "description": "Gets or sets the operation name.", + "type": "string" + }, + "status": { + "description": "Gets or sets the status of the operation. ARM expects the terminal status to be one of\r\nSucceeded/ Failed/ Canceled. All other values imply that the operation is still running.", + "type": "string" + }, + "startTime": { + "description": "Gets or sets the start time.", + "type": "string" + }, + "endTime": { + "description": "Gets or sets the end time.", + "type": "string" + } + } + }, + "PlannedFailoverModel": { + "description": "Planned failover model.", + "required": [ + "properties" + ], + "type": "object", + "properties": { + "properties": { + "$ref": "#/definitions/PlannedFailoverModelProperties" + } + } + }, + "PlannedFailoverModelCustomProperties": { + "description": "Planned failover model custom properties.", + "required": [ + "instanceType" + ], + "type": "object", + "properties": { + "instanceType": { + "description": "Gets or sets the instance type.", + "minLength": 1, + "type": "string" + } + } + }, + "PlannedFailoverModelProperties": { + "description": "Planned failover model properties.", + "required": [ + "customProperties" + ], + "type": "object", + "properties": { + "customProperties": { + "$ref": "#/definitions/PlannedFailoverModelCustomProperties" + } + } + }, + "PolicyModel": { + "description": "Policy model.", + "required": [ + "properties" + ], + "type": "object", + "properties": { + "properties": { + "$ref": "#/definitions/PolicyModelProperties" + }, + "id": { + "description": "Gets or sets the Id of the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Gets or sets the name of the resource.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Gets or sets the type of the resource.", + "type": "string", + "readOnly": true + }, + "systemData": { + "allOf": [ + { + "$ref": "#/definitions/SystemDataModel" + } + ], + "readOnly": true + }, + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "x-ms-azure-resource": true + }, + "PolicyModelCollection": { + "description": "Policy model collection.", + "type": "object", + "properties": { + "value": { + "description": "Gets or sets the list of policies.", + "type": "array", + "items": { + "$ref": "#/definitions/PolicyModel" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "description": "Gets or sets the value of next link.", + "type": "string" + } + } + }, + "PolicyModelCustomProperties": { + "description": "Policy model custom properties.", + "required": [ + "instanceType" + ], + "type": "object", + "properties": { + "instanceType": { + "description": "Gets or sets the instance type.", + "minLength": 1, + "type": "string" + } + } + }, + "PolicyModelProperties": { + "description": "Policy model properties.", + "required": [ + "customProperties" + ], + "type": "object", + "properties": { + "provisioningState": { + "description": "Gets or sets the provisioning state of the policy.", + "enum": [ + "Canceled", + "Creating", + "Deleting", + "Deleted", + "Failed", + "Succeeded", + "Updating" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "ProvisioningState", + "modelAsString": true + } + }, + "customProperties": { + "$ref": "#/definitions/PolicyModelCustomProperties" + } + } + }, + "ProtectedItemDynamicMemoryConfig": { + "description": "Protected item dynamic memory config.", + "required": [ + "maximumMemoryInMegaBytes", + "minimumMemoryInMegaBytes", + "targetMemoryBufferPercentage" + ], + "type": "object", + "properties": { + "maximumMemoryInMegaBytes": { + "format": "int64", + "description": "Gets or sets maximum memory in MB.", + "type": "integer" + }, + "minimumMemoryInMegaBytes": { + "format": "int64", + "description": "Gets or sets minimum memory in MB.", + "type": "integer" + }, + "targetMemoryBufferPercentage": { + "format": "int32", + "description": "Gets or sets target memory buffer in %.", + "type": "integer" + } + } + }, + "ProtectedItemJobProperties": { + "description": "Protected item job properties.", + "type": "object", + "properties": { + "scenarioName": { + "description": "Gets or sets protection scenario name.", + "type": "string", + "readOnly": true + }, + "id": { + "description": "Gets or sets workflow Id.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Gets or sets workflow name.", + "type": "string", + "readOnly": true + }, + "displayName": { + "description": "Gets or sets the workflow friendly display name.", + "type": "string", + "readOnly": true + }, + "state": { + "description": "Gets or sets workflow state.", + "type": "string", + "readOnly": true + }, + "startTime": { + "format": "date-time", + "description": "Gets or sets start time of the workflow.", + "type": "string", + "readOnly": true + }, + "endTime": { + "format": "date-time", + "description": "Gets or sets end time of the workflow.", + "type": "string", + "readOnly": true + } + } + }, + "ProtectedItemModel": { + "description": "Protected item model.", + "required": [ + "properties" + ], + "type": "object", + "properties": { + "properties": { + "$ref": "#/definitions/ProtectedItemModelProperties" + }, + "id": { + "description": "Gets or sets the Id of the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Gets or sets the name of the resource.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Gets or sets the type of the resource.", + "type": "string", + "readOnly": true + }, + "systemData": { + "allOf": [ + { + "$ref": "#/definitions/SystemDataModel" + } + ], + "readOnly": true + }, + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "x-ms-azure-resource": true + }, + "ProtectedItemModelCollection": { + "description": "Protected item model collection.", + "type": "object", + "properties": { + "value": { + "description": "Gets or sets the list of protected items.", + "type": "array", + "items": { + "$ref": "#/definitions/ProtectedItemModel" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "description": "Gets or sets the value of next link.", + "type": "string" + } + } + }, + "ProtectedItemModelCustomProperties": { + "description": "Protected item model custom properties.", + "required": [ + "instanceType" + ], + "type": "object", + "properties": { + "instanceType": { + "description": "Gets or sets the instance type.", + "minLength": 1, + "type": "string" + } + } + }, + "ProtectedItemModelProperties": { + "description": "Protected item model properties.", + "required": [ + "customProperties", + "policyName", + "replicationExtensionName" + ], + "type": "object", + "properties": { + "policyName": { + "description": "Gets or sets the policy name.", + "minLength": 1, + "type": "string" + }, + "replicationExtensionName": { + "description": "Gets or sets the replication extension name.", + "minLength": 1, + "type": "string" + }, + "correlationId": { + "description": "Gets or sets the protected item correlation Id.", + "type": "string", + "readOnly": true + }, + "provisioningState": { + "description": "Gets or sets the provisioning state of the Dra.", + "enum": [ + "Canceled", + "Creating", + "Deleting", + "Deleted", + "Failed", + "Succeeded", + "Updating" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "ProvisioningState", + "modelAsString": true + } + }, + "protectionState": { + "description": "Gets or sets the protection state.", + "enum": [ + "UnprotectedStatesBegin", + "EnablingProtection", + "EnablingFailed", + "DisablingProtection", + "MarkedForDeletion", + "DisablingFailed", + "UnprotectedStatesEnd", + "InitialReplicationStatesBegin", + "InitialReplicationInProgress", + "InitialReplicationCompletedOnPrimary", + "InitialReplicationCompletedOnRecovery", + "InitialReplicationFailed", + "InitialReplicationStatesEnd", + "ProtectedStatesBegin", + "Protected", + "ProtectedStatesEnd", + "PlannedFailoverTransitionStatesBegin", + "PlannedFailoverInitiated", + "PlannedFailoverCompleting", + "PlannedFailoverCompleted", + "PlannedFailoverFailed", + "PlannedFailoverCompletionFailed", + "PlannedFailoverTransitionStatesEnd", + "UnplannedFailoverTransitionStatesBegin", + "UnplannedFailoverInitiated", + "UnplannedFailoverCompleting", + "UnplannedFailoverCompleted", + "UnplannedFailoverFailed", + "UnplannedFailoverCompletionFailed", + "UnplannedFailoverTransitionStatesEnd", + "CommitFailoverStatesBegin", + "CommitFailoverInProgressOnPrimary", + "CommitFailoverInProgressOnRecovery", + "CommitFailoverCompleted", + "CommitFailoverFailedOnPrimary", + "CommitFailoverFailedOnRecovery", + "CommitFailoverStatesEnd", + "CancelFailoverStatesBegin", + "CancelFailoverInProgressOnPrimary", + "CancelFailoverInProgressOnRecovery", + "CancelFailoverFailedOnPrimary", + "CancelFailoverFailedOnRecovery", + "CancelFailoverStatesEnd", + "ChangeRecoveryPointStatesBegin", + "ChangeRecoveryPointInitiated", + "ChangeRecoveryPointCompleted", + "ChangeRecoveryPointFailed", + "ChangeRecoveryPointStatesEnd", + "ReprotectStatesBegin", + "ReprotectInitiated", + "ReprotectFailed", + "ReprotectStatesEnd" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "ProtectionState", + "modelAsString": true + } + }, + "protectionStateDescription": { + "description": "Gets or sets the protection state description.", + "type": "string", + "readOnly": true + }, + "testFailoverState": { + "description": "Gets or sets the test failover state.", + "enum": [ + "None", + "TestFailoverInitiated", + "TestFailoverCompleting", + "TestFailoverCompleted", + "TestFailoverFailed", + "TestFailoverCompletionFailed", + "TestFailoverCleanupInitiated", + "TestFailoverCleanupCompleting", + "MarkedForDeletion" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "TestFailoverState", + "modelAsString": true + } + }, + "testFailoverStateDescription": { + "description": "Gets or sets the Test failover state description.", + "type": "string", + "readOnly": true + }, + "resynchronizationState": { + "description": "Gets or sets the resynchronization state.", + "enum": [ + "None", + "ResynchronizationInitiated", + "ResynchronizationCompleted", + "ResynchronizationFailed" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "ResynchronizationState", + "modelAsString": true + } + }, + "fabricObjectId": { + "description": "Gets or sets the fabric object Id.", + "type": "string", + "readOnly": true + }, + "fabricObjectName": { + "description": "Gets or sets the fabric object name.", + "type": "string", + "readOnly": true + }, + "sourceFabricProviderId": { + "description": "Gets or sets the source fabric provider Id.", + "type": "string", + "readOnly": true + }, + "targetFabricProviderId": { + "description": "Gets or sets the target fabric provider Id.", + "type": "string", + "readOnly": true + }, + "fabricId": { + "description": "Gets or sets the fabric Id.", + "type": "string", + "readOnly": true + }, + "targetFabricId": { + "description": "Gets or sets the target fabric Id.", + "type": "string", + "readOnly": true + }, + "draId": { + "description": "Gets or sets the DRA Id.", + "type": "string", + "readOnly": true + }, + "targetDraId": { + "description": "Gets or sets the target DRA Id.", + "type": "string", + "readOnly": true + }, + "resyncRequired": { + "description": "Gets or sets a value indicating whether resynchronization is required or not.", + "type": "boolean", + "readOnly": true + }, + "lastSuccessfulPlannedFailoverTime": { + "format": "date-time", + "description": "Gets or sets the Last successful planned failover time.", + "type": "string", + "readOnly": true + }, + "lastSuccessfulUnplannedFailoverTime": { + "format": "date-time", + "description": "Gets or sets the Last successful unplanned failover time.", + "type": "string", + "readOnly": true + }, + "lastSuccessfulTestFailoverTime": { + "format": "date-time", + "description": "Gets or sets the Last successful test failover time.", + "type": "string", + "readOnly": true + }, + "currentJob": { + "allOf": [ + { + "$ref": "#/definitions/ProtectedItemJobProperties" + } + ], + "readOnly": true + }, + "allowedJobs": { + "description": "Gets or sets the allowed scenarios on the protected item.", + "type": "array", + "items": { + "type": "string" + }, + "readOnly": true + }, + "lastFailedEnableProtectionJob": { + "allOf": [ + { + "$ref": "#/definitions/ProtectedItemJobProperties" + } + ], + "readOnly": true + }, + "lastFailedPlannedFailoverJob": { + "allOf": [ + { + "$ref": "#/definitions/ProtectedItemJobProperties" + } + ], + "readOnly": true + }, + "lastTestFailoverJob": { + "allOf": [ + { + "$ref": "#/definitions/ProtectedItemJobProperties" + } + ], + "readOnly": true + }, + "replicationHealth": { + "description": "Gets or sets protected item replication health.", + "enum": [ + "Normal", + "Warning", + "Critical" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "HealthStatus", + "modelAsString": true + } + }, + "healthErrors": { + "description": "Gets or sets the list of health errors.", + "type": "array", + "items": { + "$ref": "#/definitions/HealthErrorModel" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "customProperties": { + "$ref": "#/definitions/ProtectedItemModelCustomProperties" + } + } + }, + "RecoveryPointModel": { + "description": "Recovery point model.", + "required": [ + "properties" + ], + "type": "object", + "properties": { + "properties": { + "$ref": "#/definitions/RecoveryPointModelProperties" + }, + "id": { + "description": "Gets or sets the Id of the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Gets or sets the name of the resource.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Gets or sets the type of the resource.", + "type": "string", + "readOnly": true + }, + "systemData": { + "allOf": [ + { + "$ref": "#/definitions/SystemDataModel" + } + ], + "readOnly": true + }, + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + }, + "RecoveryPointModelCollection": { + "description": "Recovery point model collection.", + "type": "object", + "properties": { + "value": { + "description": "Gets or sets the list of recovery points.", + "type": "array", + "items": { + "$ref": "#/definitions/RecoveryPointModel" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "description": "Gets or sets the value of next link.", + "type": "string" + } + } + }, + "RecoveryPointModelCustomProperties": { + "description": "Recovery point model custom properties.", + "required": [ + "instanceType" + ], + "type": "object", + "properties": { + "instanceType": { + "description": "Gets or sets the instance type.", + "minLength": 1, + "type": "string" + } + } + }, + "RecoveryPointModelProperties": { + "description": "Recovery point model properties.", + "required": [ + "customProperties", + "recoveryPointTime", + "recoveryPointType" + ], + "type": "object", + "properties": { + "recoveryPointTime": { + "format": "date-time", + "description": "Gets or sets the recovery point time.", + "type": "string" + }, + "recoveryPointType": { + "description": "Gets or sets the recovery point type.", + "enum": [ + "ApplicationConsistent", + "CrashConsistent" + ], + "type": "string", + "x-ms-enum": { + "name": "RecoveryPointType", + "modelAsString": true + } + }, + "customProperties": { + "$ref": "#/definitions/RecoveryPointModelCustomProperties" + } + } + }, + "ReplicationExtensionModel": { + "description": "Replication extension model.", + "required": [ + "properties" + ], + "type": "object", + "properties": { + "properties": { + "$ref": "#/definitions/ReplicationExtensionModelProperties" + }, + "id": { + "description": "Gets or sets the Id of the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Gets or sets the name of the resource.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Gets or sets the type of the resource.", + "type": "string", + "readOnly": true + }, + "systemData": { + "allOf": [ + { + "$ref": "#/definitions/SystemDataModel" + } + ], + "readOnly": true + }, + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "x-ms-azure-resource": true + }, + "ReplicationExtensionModelCollection": { + "description": "Replication extension model collection.", + "type": "object", + "properties": { + "value": { + "description": "Gets or sets the list of replication extensions.", + "type": "array", + "items": { + "$ref": "#/definitions/ReplicationExtensionModel" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "description": "Gets or sets the value of next link.", + "type": "string" + } + } + }, + "ReplicationExtensionModelCustomProperties": { + "description": "Replication extension model custom properties.", + "required": [ + "instanceType" + ], + "type": "object", + "properties": { + "instanceType": { + "description": "Gets or sets the instance type.", + "minLength": 1, + "type": "string" + } + } + }, + "ReplicationExtensionModelProperties": { + "description": "Replication extension model properties.", + "required": [ + "customProperties" + ], + "type": "object", + "properties": { + "provisioningState": { + "description": "Gets or sets the provisioning state of the replication extension.", + "enum": [ + "Canceled", + "Creating", + "Deleting", + "Deleted", + "Failed", + "Succeeded", + "Updating" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "ProvisioningState", + "modelAsString": true + } + }, + "customProperties": { + "$ref": "#/definitions/ReplicationExtensionModelCustomProperties" + } + } + }, + "StorageContainerProperties": { + "description": "Storage container properties.", + "required": [ + "clusterSharedVolumePath", + "name" + ], + "type": "object", + "properties": { + "name": { + "description": "Gets or sets the Name.", + "minLength": 1, + "type": "string" + }, + "clusterSharedVolumePath": { + "description": "Gets or sets the ClusterSharedVolumePath.", + "minLength": 1, + "type": "string" + } + } + }, + "SystemDataModel": { + "description": "System data required to be defined for Azure resources.", + "type": "object", + "properties": { + "createdBy": { + "description": "Gets or sets identity that created the resource.", + "type": "string" + }, + "createdByType": { + "description": "Gets or sets the type of identity that created the resource: user, application,\r\nmanagedIdentity.", + "type": "string" + }, + "createdAt": { + "format": "date-time", + "description": "Gets or sets the timestamp of resource creation (UTC).", + "type": "string" + }, + "lastModifiedBy": { + "description": "Gets or sets the identity that last modified the resource.", + "type": "string" + }, + "lastModifiedByType": { + "description": "Gets or sets the type of identity that last modified the resource: user, application,\r\nmanagedIdentity.", + "type": "string" + }, + "lastModifiedAt": { + "format": "date-time", + "description": "Gets or sets the timestamp of resource last modification (UTC).", + "type": "string" + } + } + }, + "TaskModel": { + "description": "Task model.", + "type": "object", + "properties": { + "taskName": { + "description": "Gets or sets the task name.", + "type": "string", + "readOnly": true + }, + "state": { + "description": "Gets or sets the task state.", + "enum": [ + "Pending", + "Started", + "Succeeded", + "Failed", + "Cancelled", + "Skipped" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "TaskState", + "modelAsString": true + } + }, + "startTime": { + "format": "date-time", + "description": "Gets or sets the start time.", + "type": "string", + "readOnly": true + }, + "endTime": { + "format": "date-time", + "description": "Gets or sets the end time.", + "type": "string", + "readOnly": true + }, + "customProperties": { + "$ref": "#/definitions/TaskModelCustomProperties" + }, + "childrenWorkflows": { + "description": "Gets or sets the list of children workflow models.", + "type": "array", + "items": { + "$ref": "#/definitions/WorkflowModel" + }, + "x-ms-identifiers": [] + } + } + }, + "TaskModelCustomProperties": { + "description": "Task model custom properties.", + "required": [ + "instanceType" + ], + "type": "object", + "properties": { + "instanceType": { + "description": "Gets or sets the instance type.", + "minLength": 1, + "type": "string" + } + } + }, + "TestFailoverCleanupWorkflowModelCustomProperties": { + "description": "Test failover cleanup workflow model custom properties.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/WorkflowModelCustomProperties" + } + ], + "properties": { + "comments": { + "description": "Gets or sets the test failover cleanup comments.", + "type": "string", + "readOnly": true + } + } + }, + "TestFailoverWorkflowModelCustomProperties": { + "description": "Test failover workflow model custom properties.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/WorkflowModelCustomProperties" + } + ], + "properties": { + "protectedItemDetails": { + "description": "Gets or sets the test VM details.", + "type": "array", + "items": { + "$ref": "#/definitions/FailoverProtectedItemProperties" + }, + "readOnly": true, + "x-ms-identifiers": [] + } + } + }, + "VMwareDraModelCustomProperties": { + "description": "VMware DRA model custom properties.", + "required": [ + "biosId", + "marsAuthenticationIdentity" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/DraModelCustomProperties" + } + ], + "properties": { + "biosId": { + "description": "Gets or sets the BIOS Id of the DRA machine.", + "minLength": 1, + "type": "string" + }, + "marsAuthenticationIdentity": { + "$ref": "#/definitions/IdentityModel" + } + } + }, + "VMwareMigrateFabricModelCustomProperties": { + "description": "VMware migrate fabric model custom properties.", + "required": [ + "migrationSolutionId", + "vmwareSiteId" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/FabricModelCustomProperties" + } + ], + "properties": { + "vmwareSiteId": { + "description": "Gets or sets the ARM Id of the VMware site.", + "minLength": 1, + "type": "string" + }, + "migrationSolutionId": { + "description": "Gets or sets the ARM Id of the migration solution.", + "minLength": 1, + "type": "string" + } + } + }, + "VMwareToAzStackHCIDiskInput": { + "description": "VMwareToAzStack disk input.", + "required": [ + "diskFileFormat", + "diskId", + "diskSizeGB", + "isOsDisk" + ], + "type": "object", + "properties": { + "diskId": { + "description": "Gets or sets the disk Id.", + "minLength": 1, + "type": "string" + }, + "storageContainerId": { + "description": "Gets or sets the target storage account ARM Id.", + "type": "string" + }, + "isDynamic": { + "description": "Gets or sets a value indicating whether dynamic sizing is enabled on the virtual hard\r\ndisk.", + "type": "boolean" + }, + "diskSizeGB": { + "format": "int64", + "description": "Gets or sets the disk size in GB.", + "type": "integer" + }, + "diskFileFormat": { + "description": "Gets or sets the type of the virtual hard disk, vhd or vhdx.", + "minLength": 1, + "type": "string" + }, + "isOsDisk": { + "description": "Gets or sets a value indicating whether disk is os disk.", + "type": "boolean" + } + } + }, + "VMwareToAzStackHCINicInput": { + "description": "VMwareToAzStackHCI NIC properties.", + "required": [ + "label", + "nicId", + "selectionTypeForFailover", + "targetNetworkId", + "testNetworkId" + ], + "type": "object", + "properties": { + "nicId": { + "description": "Gets or sets the NIC Id.", + "minLength": 1, + "type": "string" + }, + "label": { + "description": "Gets or sets the NIC label.", + "minLength": 1, + "type": "string" + }, + "networkName": { + "description": "Gets or sets the network name.", + "type": "string", + "readOnly": true + }, + "targetNetworkId": { + "description": "Gets or sets the target network Id within AzStackHCI Cluster.", + "minLength": 1, + "type": "string" + }, + "testNetworkId": { + "description": "Gets or sets the target test network Id within AzStackHCI Cluster.", + "minLength": 1, + "type": "string" + }, + "selectionTypeForFailover": { + "description": "Gets or sets the selection type of the NIC.", + "enum": [ + "NotSelected", + "SelectedByUser", + "SelectedByDefault", + "SelectedByUserOverride" + ], + "type": "string", + "x-ms-enum": { + "name": "VMNicSelection", + "modelAsString": true + } + } + } + }, + "VMwareToAzStackHCIPlannedFailoverModelCustomProperties": { + "description": "VMware to AzStackHCI planned failover model custom properties.", + "required": [ + "shutdownSourceVM" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/PlannedFailoverModelCustomProperties" + } + ], + "properties": { + "shutdownSourceVM": { + "description": "Gets or sets a value indicating whether VM needs to be shut down.", + "type": "boolean" + } + } + }, + "VMwareToAzStackHCIPolicyModelCustomProperties": { + "description": "VMware To AzStackHCI Policy model custom properties.", + "required": [ + "appConsistentFrequencyInMinutes", + "crashConsistentFrequencyInMinutes", + "recoveryPointHistoryInMinutes" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/PolicyModelCustomProperties" + } + ], + "properties": { + "recoveryPointHistoryInMinutes": { + "format": "int32", + "description": "Gets or sets the duration in minutes until which the recovery points need to be\r\nstored.", + "type": "integer" + }, + "crashConsistentFrequencyInMinutes": { + "format": "int32", + "description": "Gets or sets the crash consistent snapshot frequency (in minutes).", + "type": "integer" + }, + "appConsistentFrequencyInMinutes": { + "format": "int32", + "description": "Gets or sets the app consistent snapshot frequency (in minutes).", + "type": "integer" + } + } + }, + "VMwareToAzStackHCIProtectedDiskProperties": { + "description": "VMwareToAzStackHCI protected disk properties.", + "type": "object", + "properties": { + "storageContainerId": { + "description": "Gets or sets the ARM Id of the storage container.", + "type": "string", + "readOnly": true + }, + "storageContainerLocalPath": { + "description": "Gets or sets the local path of the storage container.", + "type": "string", + "readOnly": true + }, + "sourceDiskId": { + "description": "Gets or sets the source disk Id.", + "type": "string", + "readOnly": true + }, + "sourceDiskName": { + "description": "Gets or sets the source disk Name.", + "type": "string", + "readOnly": true + }, + "seedDiskName": { + "description": "Gets or sets the seed disk name.", + "type": "string", + "readOnly": true + }, + "testMigrateDiskName": { + "description": "Gets or sets the test failover clone disk.", + "type": "string", + "readOnly": true + }, + "migrateDiskName": { + "description": "Gets or sets the failover clone disk.", + "type": "string", + "readOnly": true + }, + "isOsDisk": { + "description": "Gets or sets a value indicating whether the disk is the OS disk.", + "type": "boolean", + "readOnly": true + }, + "capacityInBytes": { + "format": "int64", + "description": "Gets or sets the disk capacity in bytes.", + "type": "integer", + "readOnly": true + }, + "isDynamic": { + "description": "Gets or sets a value indicating whether dynamic sizing is enabled on the virtual hard\r\ndisk.", + "type": "boolean", + "readOnly": true + }, + "diskType": { + "description": "Gets or sets the disk type.", + "type": "string", + "readOnly": true + } + } + }, + "VMwareToAzStackHCIProtectedItemModelCustomProperties": { + "description": "VMware to AzStackHCI Protected item model custom properties.", + "required": [ + "customLocationRegion", + "disksToInclude", + "fabricDiscoveryMachineId", + "hyperVGeneration", + "nicsToInclude", + "runAsAccountId", + "sourceDraName", + "storageContainerId", + "targetArcClusterCustomLocationId", + "targetDraName", + "targetHciClusterId", + "targetResourceGroupId" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ProtectedItemModelCustomProperties" + } + ], + "properties": { + "activeLocation": { + "description": "Gets or sets the location of the protected item.", + "enum": [ + "Primary", + "Recovery" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "ProtectedItemActiveLocation", + "modelAsString": true + } + }, + "targetHciClusterId": { + "description": "Gets or sets the Target HCI Cluster ARM Id.", + "minLength": 1, + "type": "string" + }, + "targetArcClusterCustomLocationId": { + "description": "Gets or sets the Target Arc Cluster Custom Location ARM Id.", + "minLength": 1, + "type": "string" + }, + "targetAzStackHciClusterName": { + "description": "Gets or sets the Target AzStackHCI cluster name.", + "type": "string", + "readOnly": true + }, + "storageContainerId": { + "description": "Gets or sets the target storage container ARM Id.", + "minLength": 1, + "type": "string" + }, + "targetResourceGroupId": { + "description": "Gets or sets the target resource group ARM Id.", + "minLength": 1, + "type": "string" + }, + "targetLocation": { + "description": "Gets or sets the target location.", + "type": "string", + "readOnly": true + }, + "customLocationRegion": { + "description": "Gets or sets the location of Azure Arc HCI custom location resource.", + "minLength": 1, + "type": "string" + }, + "disksToInclude": { + "description": "Gets or sets the list of disks to replicate.", + "minItems": 1, + "type": "array", + "items": { + "$ref": "#/definitions/VMwareToAzStackHCIDiskInput" + }, + "x-ms-identifiers": [] + }, + "nicsToInclude": { + "description": "Gets or sets the list of VM NIC to replicate.", + "minItems": 1, + "type": "array", + "items": { + "$ref": "#/definitions/VMwareToAzStackHCINicInput" + }, + "x-ms-identifiers": [] + }, + "protectedDisks": { + "description": "Gets or sets the list of protected disks.", + "type": "array", + "items": { + "$ref": "#/definitions/VMwareToAzStackHCIProtectedDiskProperties" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "protectedNics": { + "description": "Gets or sets the VM NIC details.", + "type": "array", + "items": { + "$ref": "#/definitions/VMwareToAzStackHCIProtectedNicProperties" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "targetVmBiosId": { + "description": "Gets or sets the BIOS Id of the target AzStackHCI VM.", + "type": "string", + "readOnly": true + }, + "targetVmName": { + "description": "Gets or sets the target VM display name.", + "type": "string" + }, + "hyperVGeneration": { + "description": "Gets or sets the hypervisor generation of the virtual machine possible values are 1,2.", + "minLength": 1, + "type": "string" + }, + "targetNetworkId": { + "description": "Gets or sets the target network Id within AzStackHCI Cluster.", + "type": "string" + }, + "testNetworkId": { + "description": "Gets or sets the target test network Id within AzStackHCI Cluster.", + "type": "string" + }, + "targetCpuCores": { + "format": "int32", + "description": "Gets or sets the target CPU cores.", + "type": "integer" + }, + "isDynamicRam": { + "description": "Gets or sets a value indicating whether memory is dynamical.", + "type": "boolean" + }, + "dynamicMemoryConfig": { + "$ref": "#/definitions/ProtectedItemDynamicMemoryConfig" + }, + "targetMemoryInMegaBytes": { + "format": "int32", + "description": "Gets or sets the target memory in mega-bytes.", + "type": "integer" + }, + "osType": { + "description": "Gets or sets the type of the OS.", + "type": "string", + "readOnly": true + }, + "osName": { + "description": "Gets or sets the name of the OS.", + "type": "string", + "readOnly": true + }, + "firmwareType": { + "description": "Gets or sets the firmware type.", + "type": "string", + "readOnly": true + }, + "fabricDiscoveryMachineId": { + "description": "Gets or sets the ARM Id of the discovered machine.", + "minLength": 1, + "type": "string" + }, + "sourceVmName": { + "description": "Gets or sets the source VM display name.", + "type": "string", + "readOnly": true + }, + "sourceCpuCores": { + "format": "int32", + "description": "Gets or sets the source VM CPU cores.", + "type": "integer", + "readOnly": true + }, + "sourceMemoryInMegaBytes": { + "format": "double", + "description": "Gets or sets the source VM ram memory size in megabytes.", + "type": "number", + "readOnly": true + }, + "runAsAccountId": { + "description": "Gets or sets the run as account Id.", + "minLength": 1, + "type": "string" + }, + "sourceDraName": { + "description": "Gets or sets the source DRA name.", + "minLength": 1, + "type": "string" + }, + "targetDraName": { + "description": "Gets or sets the target DRA name.", + "minLength": 1, + "type": "string" + }, + "sourceApplianceName": { + "description": "Gets or sets the source appliance name.", + "type": "string", + "readOnly": true + }, + "targetApplianceName": { + "description": "Gets or sets the target appliance name.", + "type": "string", + "readOnly": true + }, + "failoverRecoveryPointId": { + "description": "Gets or sets the recovery point Id to which the VM was failed over.", + "type": "string", + "readOnly": true + }, + "lastRecoveryPointReceived": { + "format": "date-time", + "description": "Gets or sets the last recovery point received time.", + "type": "string", + "readOnly": true + }, + "lastRecoveryPointId": { + "description": "Gets or sets the last recovery point Id.", + "type": "string", + "readOnly": true + }, + "initialReplicationProgressPercentage": { + "format": "int32", + "description": "Gets or sets the initial replication progress percentage. This is calculated based on\r\ntotal bytes processed for all disks in the source VM.", + "type": "integer", + "readOnly": true + }, + "migrationProgressPercentage": { + "format": "int32", + "description": "Gets or sets the migration progress percentage.", + "type": "integer", + "readOnly": true + }, + "resumeProgressPercentage": { + "format": "int32", + "description": "Gets or sets the resume progress percentage.", + "type": "integer", + "readOnly": true + }, + "resyncProgressPercentage": { + "format": "int32", + "description": "Gets or sets the resync progress percentage. This is calculated based on total bytes\r\nprocessed for all disks in the source VM.", + "type": "integer", + "readOnly": true + }, + "resyncRetryCount": { + "format": "int64", + "description": "Gets or sets the resync retry count.", + "type": "integer", + "readOnly": true + }, + "resyncRequired": { + "description": "Gets or sets a value indicating whether resync is required.", + "type": "boolean", + "readOnly": true + }, + "resyncState": { + "description": "Gets or sets the resync state.", + "enum": [ + "None", + "PreparedForResynchronization", + "StartedResynchronization" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "VMwareToAzureMigrateResyncState", + "modelAsString": true + } + }, + "performAutoResync": { + "description": "Gets or sets a value indicating whether auto resync is to be done.", + "type": "boolean" + }, + "resumeRetryCount": { + "format": "int64", + "description": "Gets or sets the resume retry count.", + "type": "integer", + "readOnly": true + }, + "lastReplicationUpdateTime": { + "format": "date-time", + "description": "Gets or sets the latest timestamp that replication status is updated.", + "type": "string", + "readOnly": true + } } - } - }, - "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/operations": { - "get": { - "tags": ["Tag1"], - "operationId": "OperationGroup_Get", - "x-ms-examples": { - "BatchAccountDelete": { "$ref": "./examples/OperationGroupGet.json" } + }, + "VMwareToAzStackHCIProtectedNicProperties": { + "description": "VMwareToAzStackHCI NIC properties.", + "type": "object", + "properties": { + "nicId": { + "description": "Gets or sets the NIC Id.", + "type": "string", + "readOnly": true }, - "description": "This is a sample get operation, please see guidelines in azure-rest-api-specs repository for more info", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" + "macAddress": { + "description": "Gets or sets the NIC mac address.", + "type": "string", + "readOnly": true + }, + "label": { + "description": "Gets or sets the NIC label.", + "type": "string", + "readOnly": true + }, + "isPrimaryNic": { + "description": "Gets or sets a value indicating whether this is the primary NIC.", + "type": "boolean" + }, + "networkName": { + "description": "Gets or sets the network name.", + "type": "string", + "readOnly": true + }, + "targetNetworkId": { + "description": "Gets or sets the target network Id within AzStackHCI Cluster.", + "type": "string", + "readOnly": true + }, + "testNetworkId": { + "description": "Gets or sets the target test network Id within AzStackHCI Cluster.", + "type": "string", + "readOnly": true + }, + "selectionTypeForFailover": { + "description": "Gets or sets the selection type of the NIC.", + "enum": [ + "NotSelected", + "SelectedByUser", + "SelectedByDefault", + "SelectedByUserOverride" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "VMNicSelection", + "modelAsString": true } - ], - "responses": { - "200": { - "description": "Describe the result of a successful operation.", - "schema": { - "$ref": "#/definitions/Result" + } + } + }, + "VMwareToAzStackHCIReplicationExtensionModelCustomProperties": { + "description": "VMware to AzStackHCI Replication extension model custom properties.", + "required": [ + "azStackHciFabricArmId", + "vmwareFabricArmId" + ], + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/ReplicationExtensionModelCustomProperties" + } + ], + "properties": { + "vmwareFabricArmId": { + "description": "Gets or sets the ARM Id of the source VMware fabric.", + "minLength": 1, + "type": "string" + }, + "vmwareSiteId": { + "description": "Gets or sets the ARM Id of the VMware site.", + "type": "string", + "readOnly": true + }, + "azStackHciFabricArmId": { + "description": "Gets or sets the ARM Id of the target AzStackHCI fabric.", + "minLength": 1, + "type": "string" + }, + "azStackHciSiteId": { + "description": "Gets or sets the ARM Id of the AzStackHCI site.", + "type": "string", + "readOnly": true + }, + "storageAccountId": { + "description": "Gets or sets the storage account Id.", + "type": "string" + }, + "storageAccountSasSecretName": { + "description": "Gets or sets the Sas Secret of storage account.", + "type": "string" + }, + "asrServiceUri": { + "description": "Gets or sets the Uri of ASR.", + "type": "string", + "readOnly": true + }, + "rcmServiceUri": { + "description": "Gets or sets the Uri of Rcm.", + "type": "string", + "readOnly": true + }, + "gatewayServiceUri": { + "description": "Gets or sets the Uri of Gateway.", + "type": "string", + "readOnly": true + }, + "sourceGatewayServiceId": { + "description": "Gets or sets the gateway service Id of source.", + "type": "string", + "readOnly": true + }, + "targetGatewayServiceId": { + "description": "Gets or sets the gateway service Id of target.", + "type": "string", + "readOnly": true + }, + "sourceStorageContainerName": { + "description": "Gets or sets the source storage container name.", + "type": "string", + "readOnly": true + }, + "targetStorageContainerName": { + "description": "Gets or sets the target storage container name.", + "type": "string", + "readOnly": true + }, + "resourceLocation": { + "description": "Gets or sets the resource location.", + "type": "string", + "readOnly": true + }, + "subscriptionId": { + "description": "Gets or sets the subscription.", + "type": "string", + "readOnly": true + }, + "resourceGroup": { + "description": "Gets or sets the resource group.", + "type": "string", + "readOnly": true + } + } + }, + "VaultModel": { + "description": "Vault model.", + "required": [ + "location" + ], + "type": "object", + "properties": { + "location": { + "description": "Gets or sets the location of the vault.", + "minLength": 1, + "type": "string", + "x-ms-mutability": [ + "create", + "read" + ] + }, + "properties": { + "$ref": "#/definitions/VaultModelProperties" + }, + "id": { + "description": "Gets or sets the Id of the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Gets or sets the name of the resource.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Gets or sets the type of the resource.", + "type": "string", + "readOnly": true + }, + "systemData": { + "allOf": [ + { + "$ref": "#/definitions/SystemDataModel" } + ], + "readOnly": true + }, + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "x-ms-azure-resource": true + }, + "VaultModelCollection": { + "description": "Vault model collection.", + "type": "object", + "properties": { + "value": { + "description": "Gets or sets the list of vaults.", + "type": "array", + "items": { + "$ref": "#/definitions/VaultModel" }, - "default": { - "description": "Error response describing why the operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } + "x-ms-identifiers": [] + }, + "nextLink": { + "description": "Gets or sets the value of next link.", + "type": "string" + } + } + }, + "VaultModelProperties": { + "description": "Vault properties.", + "type": "object", + "properties": { + "provisioningState": { + "description": "Gets or sets the provisioning state of the vault.", + "enum": [ + "Canceled", + "Creating", + "Deleting", + "Deleted", + "Failed", + "Succeeded", + "Updating" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "ProvisioningState", + "modelAsString": true + } + }, + "serviceResourceId": { + "description": "Gets or sets the service resource Id.", + "type": "string", + "readOnly": true + }, + "vaultType": { + "description": "Gets or sets the type of vault.", + "enum": [ + "DisasterRecovery", + "Migrate" + ], + "type": "string", + "x-ms-enum": { + "name": "ReplicationVaultType", + "modelAsString": true } } } - } - }, - "definitions": { - "Result": { - "description": "Sample result definition", + }, + "VaultModelUpdate": { + "description": "Vault model for update.", + "type": "object", + "properties": { + "properties": { + "$ref": "#/definitions/VaultModelProperties" + }, + "id": { + "description": "Gets or sets the Id of the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Gets or sets the name of the resource.", + "type": "string", + "readOnly": true + }, + "type": { + "description": "Gets or sets the type of the resource.", + "type": "string", + "readOnly": true + }, + "systemData": { + "allOf": [ + { + "$ref": "#/definitions/SystemDataModel" + } + ], + "readOnly": true + }, + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "x-ms-azure-resource": true + }, + "WorkflowModel": { + "description": "Workflow model.", + "required": [ + "properties" + ], + "type": "object", "properties": { - "sampleProperty": { + "properties": { + "$ref": "#/definitions/WorkflowModelProperties" + }, + "id": { + "description": "Gets or sets the Id of the resource.", + "type": "string", + "readOnly": true + }, + "name": { + "description": "Gets or sets the name of the resource.", "type": "string", - "description": "Sample property of type string" + "readOnly": true + }, + "type": { + "description": "Gets or sets the type of the resource.", + "type": "string", + "readOnly": true + }, + "systemData": { + "allOf": [ + { + "$ref": "#/definitions/SystemDataModel" + } + ], + "readOnly": true + }, + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "x-ms-azure-resource": true + }, + "WorkflowModelCollection": { + "description": "Workflow model collection.", + "type": "object", + "properties": { + "value": { + "description": "Gets or sets the list of workflows.", + "type": "array", + "items": { + "$ref": "#/definitions/WorkflowModel" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "description": "Gets or sets the value of next link.", + "type": "string" } } }, - "ErrorResponse": { - "description": "Error response.", + "WorkflowModelCustomProperties": { + "description": "Workflow model custom properties.", + "required": [ + "instanceType" + ], + "type": "object", "properties": { - "error": { - "$ref": "#/definitions/ErrorDefinition", - "description": "The error details." + "instanceType": { + "description": "Gets or sets the instance type.", + "minLength": 1, + "type": "string" + }, + "affectedObjectDetails": { + "description": "Gets or sets any custom properties of the affected object.", + "type": "object", + "additionalProperties": { + "type": "string" + }, + "readOnly": true } } }, - "ErrorDefinition": { - "description": "Error definition.", + "WorkflowModelProperties": { + "description": "Workflow model properties.", + "required": [ + "customProperties" + ], + "type": "object", "properties": { - "code": { - "description": "Service specific error code which serves as the substatus for the HTTP error code.", + "displayName": { + "description": "Gets or sets the friendly display name.", "type": "string", "readOnly": true }, - "message": { - "description": "Description of the error.", + "state": { + "description": "Gets or sets the workflow state.", + "enum": [ + "Pending", + "Started", + "Cancelling", + "Succeeded", + "Failed", + "Cancelled", + "CompletedWithInformation", + "CompletedWithWarnings", + "CompletedWithErrors" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "WorkflowState", + "modelAsString": true + } + }, + "startTime": { + "format": "date-time", + "description": "Gets or sets the start time.", + "type": "string", + "readOnly": true + }, + "endTime": { + "format": "date-time", + "description": "Gets or sets the end time.", + "type": "string", + "readOnly": true + }, + "objectId": { + "description": "Gets or sets the affected object Id.", + "type": "string", + "readOnly": true + }, + "objectName": { + "description": "Gets or sets the affected object name.", + "type": "string", + "readOnly": true + }, + "objectInternalId": { + "description": "Gets or sets the affected object internal Id.", + "type": "string", + "readOnly": true + }, + "objectInternalName": { + "description": "Gets or sets the affected object internal name.", + "type": "string", + "readOnly": true + }, + "objectType": { + "description": "Gets or sets the object type.", + "enum": [ + "AvsDiskPool", + "Dra", + "Fabric", + "Policy", + "ProtectedItem", + "RecoveryPlan", + "ReplicationExtension", + "Vault" + ], + "type": "string", + "readOnly": true, + "x-ms-enum": { + "name": "WorkflowObjectType", + "modelAsString": true + } + }, + "replicationProviderId": { + "description": "Gets or sets the replication provider.", + "type": "string", + "readOnly": true + }, + "sourceFabricProviderId": { + "description": "Gets or sets the source fabric provider.", + "type": "string", + "readOnly": true + }, + "targetFabricProviderId": { + "description": "Gets or sets the target fabric provider.", "type": "string", "readOnly": true }, - "details": { - "description": "Internal error details.", + "allowedActions": { + "description": "Gets or sets the list of allowed actions on the workflow.", "type": "array", "items": { - "$ref": "#/definitions/ErrorDefinition" + "type": "string" }, "readOnly": true + }, + "activityId": { + "description": "Gets or sets the workflow activity id.", + "type": "string", + "readOnly": true + }, + "tasks": { + "description": "Gets or sets the list of tasks.", + "type": "array", + "items": { + "$ref": "#/definitions/TaskModel" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "errors": { + "description": "Gets or sets the list of errors.", + "type": "array", + "items": { + "$ref": "#/definitions/ErrorModel" + }, + "readOnly": true, + "x-ms-identifiers": [] + }, + "customProperties": { + "$ref": "#/definitions/WorkflowModelCustomProperties" } } } }, "parameters": { "SubscriptionIdParameter": { - "name": "subscriptionId", "in": "path", + "name": "subscriptionId", + "description": "The subscription Id.", "required": true, "type": "string", - "description": "The Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000)" + "x-ms-parameter-location": "method" }, "ResourceGroupNameParameter": { - "name": "resourceGroupName", "in": "path", + "name": "resourceGroupName", + "description": "Resource group name.", "required": true, "type": "string", - "description": "The name of the resource group.", + "maxLength": 90, + "minLength": 1, "x-ms-parameter-location": "method" }, "ApiVersionParameter": { - "name": "api-version", "in": "query", + "name": "api-version", + "description": "The client API version.", "required": true, "type": "string", - "description": "The API version to be used with the HTTP request." + "minLength": 1, + "x-ms-parameter-location": "method" + } + }, + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "flow": "implicit", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "scopes": { + "user_impersonation": "impersonate your user account" + }, + "description": "Azure Active Directory OAuth2 Flow" + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], + "tags": [ + { + "name": "Dra", + "description": "Dra Controller." + }, + { + "name": "EmailConfiguration", + "description": "Email configuration Controller." + }, + { + "name": "Event", + "description": "Event Controller." + }, + { + "name": "Fabric", + "description": "Fabric Controller." + }, + { + "name": "Policy", + "description": "Policy Controller." + }, + { + "name": "ProtectedItem", + "description": "Protected items controller." + }, + { + "name": "RecoveryPoint", + "description": "Recovery points controller." + }, + { + "name": "ReplicationExtension", + "description": "Replication extension controller." + }, + { + "name": "Tenant", + "description": "Tenant controller." + }, + { + "name": "Vault", + "description": "Vault Controller." + }, + { + "name": "Workflow", + "description": "Workflow controller." } - } + ] } From 72872e956ba84e16ced4b838aab6253fff201f29 Mon Sep 17 00:00:00 2001 From: Sam Lee Date: Tue, 25 Jul 2023 21:36:05 -0700 Subject: [PATCH 3/9] New version --- .../examples/CheckNameAvailability.json | 12 +- .../examples/DeploymentPreflight.json | 20 +- .../examples/DraOperationStatus_Get.json | 18 +- .../examples/Dra_Create.json | 226 ++++++------ .../examples/Dra_Delete.json | 6 +- .../2021-02-16-preview/examples/Dra_Get.json | 102 +++--- .../2021-02-16-preview/examples/Dra_List.json | 102 +++--- .../examples/EmailConfiguration_Create.json | 60 ++-- .../examples/EmailConfiguration_Get.json | 30 +- .../examples/EmailConfiguration_List.json | 30 +- .../examples/Event_Get.json | 88 ++--- .../examples/Event_List.json | 92 ++--- .../examples/FabricOperationsStatus_Get.json | 16 +- .../examples/Fabric_Create.json | 154 ++++----- .../examples/Fabric_Delete.json | 4 +- .../examples/Fabric_Get.json | 76 ++-- .../examples/Fabric_List.json | 78 ++--- .../examples/Fabric_ListBySubscription.json | 78 ++--- .../examples/Fabric_Update.json | 80 ++--- .../examples/Operations_List.json | 12 +- .../examples/PolicyOperationStatus_Get.json | 18 +- .../examples/Policy_Create.json | 54 +-- .../examples/Policy_Delete.json | 6 +- .../examples/Policy_Get.json | 28 +- .../examples/Policy_List.json | 28 +- .../ProtectedItemOperationStatus_Get.json | 18 +- .../examples/ProtectedItem_Create.json | 326 +++++++++--------- .../examples/ProtectedItem_Delete.json | 6 +- .../examples/ProtectedItem_Get.json | 162 ++++----- .../examples/ProtectedItem_List.json | 162 ++++----- .../ProtectedItem_PlannedFailover.json | 10 +- .../examples/RecoveryPoints_Get.json | 32 +- .../examples/RecoveryPoints_List.json | 32 +- ...plicationExtensionOperationStatus_Get.json | 18 +- .../examples/ReplicationExtension_Create.json | 54 +-- .../examples/ReplicationExtension_Delete.json | 6 +- .../examples/ReplicationExtension_Get.json | 28 +- .../examples/ReplicationExtension_List.json | 28 +- .../examples/VaultOperationStatus_Get.json | 16 +- .../examples/Vault_Create.json | 56 +-- .../examples/Vault_Delete.json | 4 +- .../examples/Vault_Get.json | 28 +- .../examples/Vault_List.json | 30 +- .../examples/Vault_ListBySubscription.json | 30 +- .../examples/Vault_Update.json | 30 +- .../examples/WorkflowOperationStatus_Get.json | 18 +- .../examples/Workflow_Get.json | 76 ++-- .../examples/Workflow_List.json | 80 ++--- .../recoveryservicesdatareplication.json | 78 +++-- 49 files changed, 1386 insertions(+), 1360 deletions(-) diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json index 943bf041dc1e..51aba4c72b2a 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json @@ -2,20 +2,20 @@ "title": "Performs the resource name availability check.", "operationId": "CheckNameAvailability", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", - "location": "ptoejmo", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", + "location": "wlcxzllw", "api-version": "2021-02-16-preview", "body": { - "name": "aotqofonr", - "type": "nanagperrbksqmzypickrtnol" + "name": "kegf", + "type": "cjgvskzsclzccepb" } }, "responses": { "200": { "body": { "nameAvailable": true, - "reason": "kgcudohrpymnyqfftbqvogtjmzqh", - "message": "obvdtltnqfowqa" + "reason": "bbazsyfbdrdskjmuispnrjvn", + "message": "mvvdawkshhmudfjc" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json index af97cd2ad64c..ac0a9b2f838b 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json @@ -2,17 +2,17 @@ "title": "Performs resource deployment validation.", "operationId": "DeploymentPreflight", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "deploymentId": "syocopwtelhyxbcjcxq", + "deploymentId": "nrz", "api-version": "2021-02-16-preview", "body": { "resources": [ { - "name": "ahbmnkcmvbx", - "type": "asoelvqokrryvi", - "location": "eaagxsykycmuvz", - "apiVersion": "rferzaaywthntnceyrkuurugtqir" + "name": "hrfgmsxtdeippmybyynw", + "type": "qaptsbnavvvooohqmeycq", + "location": "mtgtbtvnxyqimq", + "apiVersion": "n" } ] } @@ -22,10 +22,10 @@ "body": { "resources": [ { - "name": "ahbmnkcmvbx", - "type": "asoelvqokrryvi", - "location": "eaagxsykycmuvz", - "apiVersion": "rferzaaywthntnceyrkuurugtqir" + "name": "hrfgmsxtdeippmybyynw", + "type": "qaptsbnavvvooohqmeycq", + "location": "mtgtbtvnxyqimq", + "apiVersion": "n" } ] } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json index af127d796384..cbd225290742 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json @@ -2,21 +2,21 @@ "title": "Gets the Dra operation status.", "operationId": "DraOperationStatus_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "fabricName": "13", - "draName": "6", - "operationId": "memvxgtxvbfkmu", + "fabricName": "UwE", + "draName": "v19K", + "operationId": "q", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "zcuybohcphhgdgfqjiwxlm", - "name": "kjxroclkbeevmcgscli", - "status": "pgcbsyi", - "startTime": "kyeooklagbdaee", - "endTime": "tumaya" + "id": "fh", + "name": "llbceylzpfwmnwunyyiyt", + "status": "tuiziokffdfr", + "startTime": "idpuxubqqdwzo", + "endTime": "zgiqrzfvsgatjmdkzoktumvnge" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json index e4fce1c3ef2b..2cbfb8fbf405 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json @@ -2,35 +2,35 @@ "title": "Puts the Dra.", "operationId": "Dra_Create", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "fabricName": "R73", - "draName": "s", + "fabricName": "81h2M", + "draName": "7j8E", "api-version": "2021-02-16-preview", "body": { "properties": { - "machineId": "vshekucscrlzufwl", - "machineName": "blafadcs", + "machineId": "umh", + "machineName": "qsoxipzvswtmoict", "authenticationIdentity": { - "tenantId": "ossaftcmoyswg", - "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", - "objectId": "uukybltgpnfybfn", - "audience": "eznhtycxq", - "aadAuthority": "hogajvwcxmxmkxocr" + "tenantId": "mkpqknd", + "applicationId": "cgedyfddslnmtuvefziwhvox", + "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", + "audience": "zp", + "aadAuthority": "xivzmegs" }, "resourceAccessIdentity": { - "tenantId": "ossaftcmoyswg", - "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", - "objectId": "uukybltgpnfybfn", - "audience": "eznhtycxq", - "aadAuthority": "hogajvwcxmxmkxocr" + "tenantId": "mkpqknd", + "applicationId": "cgedyfddslnmtuvefziwhvox", + "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", + "audience": "zp", + "aadAuthority": "xivzmegs" }, "customProperties": { - "instanceType": "umhllcxbdt" + "instanceType": "DraModelCustomProperties" } }, "tags": { - "key9027": "bpqrmwciyjelesl" + "key1120": "wrptqefsmdqzwfjhhhzvqc" } } }, @@ -38,78 +38,78 @@ "200": { "body": { "properties": { - "correlationId": "vjwbzrzpuybafbevnu", - "machineId": "vshekucscrlzufwl", - "machineName": "blafadcs", + "correlationId": "b", + "machineId": "umh", + "machineName": "qsoxipzvswtmoict", "authenticationIdentity": { - "tenantId": "ossaftcmoyswg", - "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", - "objectId": "uukybltgpnfybfn", - "audience": "eznhtycxq", - "aadAuthority": "hogajvwcxmxmkxocr" + "tenantId": "mkpqknd", + "applicationId": "cgedyfddslnmtuvefziwhvox", + "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", + "audience": "zp", + "aadAuthority": "xivzmegs" }, "resourceAccessIdentity": { - "tenantId": "ossaftcmoyswg", - "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", - "objectId": "uukybltgpnfybfn", - "audience": "eznhtycxq", - "aadAuthority": "hogajvwcxmxmkxocr" + "tenantId": "mkpqknd", + "applicationId": "cgedyfddslnmtuvefziwhvox", + "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", + "audience": "zp", + "aadAuthority": "xivzmegs" }, "isResponsive": true, - "lastHeartbeat": "2023-07-25T21:05:28.872Z", - "versionNumber": "deczpylckrhbpumapuzsgn", + "lastHeartbeat": "2023-07-26T04:32:07.452Z", + "versionNumber": "drtccooyulwreujrfzcbm", "provisioningState": "Canceled", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "umhllcxbdt" + "instanceType": "DraModelCustomProperties" } }, - "id": "oaxpzccpmwr", - "name": "lvlkxgprubrxadzlhyaeaqaeamn", - "type": "uwivmpmnnepkhtcxjryvoqo", + "id": "xvuitdnpiecyvidj", + "name": "bfxklakimmbjmcijsiadmdwkyzl", + "type": "adrqfjryvcpfdemgsdzqodmwme", "systemData": { - "createdBy": "objvxvasssclvfuhrvygfsxm", - "createdByType": "lewqmgcypzrnwegixxmsxguopwpzp", - "createdAt": "2023-07-25T21:05:28.873Z", - "lastModifiedBy": "tvzxtnefjjrthmtwyccxqmrp", - "lastModifiedByType": "uwaybghbypcavbf", - "lastModifiedAt": "2023-07-25T21:05:28.873Z" + "createdBy": "vu", + "createdByType": "dmd", + "createdAt": "2023-07-26T04:32:07.453Z", + "lastModifiedBy": "vetdwpndjqusvextbwnoenzmqrxm", + "lastModifiedByType": "ndxo", + "lastModifiedAt": "2023-07-26T04:32:07.453Z" }, "tags": { - "key9027": "bpqrmwciyjelesl" + "key1120": "wrptqefsmdqzwfjhhhzvqc" } } }, @@ -119,78 +119,78 @@ }, "body": { "properties": { - "correlationId": "vjwbzrzpuybafbevnu", - "machineId": "vshekucscrlzufwl", - "machineName": "blafadcs", + "correlationId": "b", + "machineId": "umh", + "machineName": "qsoxipzvswtmoict", "authenticationIdentity": { - "tenantId": "ossaftcmoyswg", - "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", - "objectId": "uukybltgpnfybfn", - "audience": "eznhtycxq", - "aadAuthority": "hogajvwcxmxmkxocr" + "tenantId": "mkpqknd", + "applicationId": "cgedyfddslnmtuvefziwhvox", + "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", + "audience": "zp", + "aadAuthority": "xivzmegs" }, "resourceAccessIdentity": { - "tenantId": "ossaftcmoyswg", - "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", - "objectId": "uukybltgpnfybfn", - "audience": "eznhtycxq", - "aadAuthority": "hogajvwcxmxmkxocr" + "tenantId": "mkpqknd", + "applicationId": "cgedyfddslnmtuvefziwhvox", + "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", + "audience": "zp", + "aadAuthority": "xivzmegs" }, "isResponsive": true, - "lastHeartbeat": "2023-07-25T21:05:28.872Z", - "versionNumber": "deczpylckrhbpumapuzsgn", + "lastHeartbeat": "2023-07-26T04:32:07.452Z", + "versionNumber": "drtccooyulwreujrfzcbm", "provisioningState": "Canceled", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "umhllcxbdt" + "instanceType": "DraModelCustomProperties" } }, - "id": "oaxpzccpmwr", - "name": "lvlkxgprubrxadzlhyaeaqaeamn", - "type": "uwivmpmnnepkhtcxjryvoqo", + "id": "xvuitdnpiecyvidj", + "name": "bfxklakimmbjmcijsiadmdwkyzl", + "type": "adrqfjryvcpfdemgsdzqodmwme", "systemData": { - "createdBy": "objvxvasssclvfuhrvygfsxm", - "createdByType": "lewqmgcypzrnwegixxmsxguopwpzp", - "createdAt": "2023-07-25T21:05:28.873Z", - "lastModifiedBy": "tvzxtnefjjrthmtwyccxqmrp", - "lastModifiedByType": "uwaybghbypcavbf", - "lastModifiedAt": "2023-07-25T21:05:28.873Z" + "createdBy": "vu", + "createdByType": "dmd", + "createdAt": "2023-07-26T04:32:07.453Z", + "lastModifiedBy": "vetdwpndjqusvextbwnoenzmqrxm", + "lastModifiedByType": "ndxo", + "lastModifiedAt": "2023-07-26T04:32:07.453Z" }, "tags": { - "key9027": "bpqrmwciyjelesl" + "key1120": "wrptqefsmdqzwfjhhhzvqc" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json index 13ce4fd681b1..501117b2a9bd 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json @@ -2,10 +2,10 @@ "title": "Deletes the Dra.", "operationId": "Dra_Delete", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "fabricName": "tS", - "draName": "z4x", + "fabricName": "MGKN", + "draName": "B", "api-version": "2021-02-16-preview" }, "responses": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json index 0a0c390f6dad..f2e4399a7f72 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json @@ -2,88 +2,88 @@ "title": "Gets the Dra.", "operationId": "Dra_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "fabricName": "hV2", - "draName": "52Jk", + "fabricName": "dasfa", + "draName": "8TF", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { "properties": { - "correlationId": "vjwbzrzpuybafbevnu", - "machineId": "vshekucscrlzufwl", - "machineName": "blafadcs", + "correlationId": "b", + "machineId": "umh", + "machineName": "qsoxipzvswtmoict", "authenticationIdentity": { - "tenantId": "ossaftcmoyswg", - "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", - "objectId": "uukybltgpnfybfn", - "audience": "eznhtycxq", - "aadAuthority": "hogajvwcxmxmkxocr" + "tenantId": "mkpqknd", + "applicationId": "cgedyfddslnmtuvefziwhvox", + "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", + "audience": "zp", + "aadAuthority": "xivzmegs" }, "resourceAccessIdentity": { - "tenantId": "ossaftcmoyswg", - "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", - "objectId": "uukybltgpnfybfn", - "audience": "eznhtycxq", - "aadAuthority": "hogajvwcxmxmkxocr" + "tenantId": "mkpqknd", + "applicationId": "cgedyfddslnmtuvefziwhvox", + "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", + "audience": "zp", + "aadAuthority": "xivzmegs" }, "isResponsive": true, - "lastHeartbeat": "2023-07-25T21:05:28.872Z", - "versionNumber": "deczpylckrhbpumapuzsgn", + "lastHeartbeat": "2023-07-26T04:32:07.452Z", + "versionNumber": "drtccooyulwreujrfzcbm", "provisioningState": "Canceled", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "umhllcxbdt" + "instanceType": "DraModelCustomProperties" } }, - "id": "oaxpzccpmwr", - "name": "lvlkxgprubrxadzlhyaeaqaeamn", - "type": "uwivmpmnnepkhtcxjryvoqo", + "id": "xvuitdnpiecyvidj", + "name": "bfxklakimmbjmcijsiadmdwkyzl", + "type": "adrqfjryvcpfdemgsdzqodmwme", "systemData": { - "createdBy": "objvxvasssclvfuhrvygfsxm", - "createdByType": "lewqmgcypzrnwegixxmsxguopwpzp", - "createdAt": "2023-07-25T21:05:28.873Z", - "lastModifiedBy": "tvzxtnefjjrthmtwyccxqmrp", - "lastModifiedByType": "uwaybghbypcavbf", - "lastModifiedAt": "2023-07-25T21:05:28.873Z" + "createdBy": "vu", + "createdByType": "dmd", + "createdAt": "2023-07-26T04:32:07.453Z", + "lastModifiedBy": "vetdwpndjqusvextbwnoenzmqrxm", + "lastModifiedByType": "ndxo", + "lastModifiedAt": "2023-07-26T04:32:07.453Z" }, "tags": { - "key9027": "bpqrmwciyjelesl" + "key1120": "wrptqefsmdqzwfjhhhzvqc" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json index 59b80bb621c2..5fd748a44d5f 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json @@ -2,9 +2,9 @@ "title": "Lists the Dras.", "operationId": "Dra_List", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "fabricName": "35", + "fabricName": "3RN", "api-version": "2021-02-16-preview" }, "responses": { @@ -13,82 +13,82 @@ "value": [ { "properties": { - "correlationId": "vjwbzrzpuybafbevnu", - "machineId": "vshekucscrlzufwl", - "machineName": "blafadcs", + "correlationId": "b", + "machineId": "umh", + "machineName": "qsoxipzvswtmoict", "authenticationIdentity": { - "tenantId": "ossaftcmoyswg", - "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", - "objectId": "uukybltgpnfybfn", - "audience": "eznhtycxq", - "aadAuthority": "hogajvwcxmxmkxocr" + "tenantId": "mkpqknd", + "applicationId": "cgedyfddslnmtuvefziwhvox", + "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", + "audience": "zp", + "aadAuthority": "xivzmegs" }, "resourceAccessIdentity": { - "tenantId": "ossaftcmoyswg", - "applicationId": "srwgtqqoqskjnupljshtmuqlxbjmw", - "objectId": "uukybltgpnfybfn", - "audience": "eznhtycxq", - "aadAuthority": "hogajvwcxmxmkxocr" + "tenantId": "mkpqknd", + "applicationId": "cgedyfddslnmtuvefziwhvox", + "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", + "audience": "zp", + "aadAuthority": "xivzmegs" }, "isResponsive": true, - "lastHeartbeat": "2023-07-25T21:05:28.872Z", - "versionNumber": "deczpylckrhbpumapuzsgn", + "lastHeartbeat": "2023-07-26T04:32:07.452Z", + "versionNumber": "drtccooyulwreujrfzcbm", "provisioningState": "Canceled", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "umhllcxbdt" + "instanceType": "DraModelCustomProperties" } }, - "id": "oaxpzccpmwr", - "name": "lvlkxgprubrxadzlhyaeaqaeamn", - "type": "uwivmpmnnepkhtcxjryvoqo", + "id": "xvuitdnpiecyvidj", + "name": "bfxklakimmbjmcijsiadmdwkyzl", + "type": "adrqfjryvcpfdemgsdzqodmwme", "systemData": { - "createdBy": "objvxvasssclvfuhrvygfsxm", - "createdByType": "lewqmgcypzrnwegixxmsxguopwpzp", - "createdAt": "2023-07-25T21:05:28.873Z", - "lastModifiedBy": "tvzxtnefjjrthmtwyccxqmrp", - "lastModifiedByType": "uwaybghbypcavbf", - "lastModifiedAt": "2023-07-25T21:05:28.873Z" + "createdBy": "vu", + "createdByType": "dmd", + "createdAt": "2023-07-26T04:32:07.453Z", + "lastModifiedBy": "vetdwpndjqusvextbwnoenzmqrxm", + "lastModifiedByType": "ndxo", + "lastModifiedAt": "2023-07-26T04:32:07.453Z" }, "tags": { - "key9027": "bpqrmwciyjelesl" + "key1120": "wrptqefsmdqzwfjhhhzvqc" } } ], - "nextLink": "vdahqsmjxxfe" + "nextLink": "brassaihigev" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json index 744172e356bb..ed25bc0bb4d4 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json @@ -2,21 +2,21 @@ "title": "Creates email configuration settings.", "operationId": "EmailConfiguration_Create", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "0LIE", - "emailConfigurationName": "sadafa", + "vaultName": "Ht", + "emailConfigurationName": "KHT8KT", "api-version": "2021-02-16-preview", "body": { "properties": { "sendToOwners": true, "customEmailAddresses": [ - "x" + "wfefbwpvtijdmwvanwvazdby" ], - "locale": "aaweznwhxjakrzhbemeurwyc" + "locale": "ilfssgfckjxo" }, "tags": { - "key2456": "iboxrhhlcrixqsdcybdh" + "key9204": "b" } } }, @@ -26,23 +26,23 @@ "properties": { "sendToOwners": true, "customEmailAddresses": [ - "x" + "wfefbwpvtijdmwvanwvazdby" ], - "locale": "aaweznwhxjakrzhbemeurwyc" + "locale": "ilfssgfckjxo" }, - "id": "zxgkuqd", - "name": "wzamd", - "type": "tvyresqxz", + "id": "ijftucod", + "name": "gmistubhnbzrlnfzolovzemhmlqe", + "type": "taehlwy", "systemData": { - "createdBy": "mmpongmqmclenmmdbhtmlwnvaf", - "createdByType": "kkhytofairkplczfulrozicok", - "createdAt": "2023-07-25T21:05:29.734Z", - "lastModifiedBy": "aacooloptoxxa", - "lastModifiedByType": "akgiproijejraaybzd", - "lastModifiedAt": "2023-07-25T21:05:29.734Z" + "createdBy": "oyinfscpxpupdvm", + "createdByType": "cbbfvspkiyirzxeyhquifazl", + "createdAt": "2023-07-26T04:32:08.325Z", + "lastModifiedBy": "ouviwjddahjtcyawsbsyrzgrpf", + "lastModifiedByType": "wcvedljnuhimq", + "lastModifiedAt": "2023-07-26T04:32:08.325Z" }, "tags": { - "key2456": "iboxrhhlcrixqsdcybdh" + "key9204": "b" } } }, @@ -51,23 +51,23 @@ "properties": { "sendToOwners": true, "customEmailAddresses": [ - "x" + "wfefbwpvtijdmwvanwvazdby" ], - "locale": "aaweznwhxjakrzhbemeurwyc" + "locale": "ilfssgfckjxo" }, - "id": "zxgkuqd", - "name": "wzamd", - "type": "tvyresqxz", + "id": "ijftucod", + "name": "gmistubhnbzrlnfzolovzemhmlqe", + "type": "taehlwy", "systemData": { - "createdBy": "mmpongmqmclenmmdbhtmlwnvaf", - "createdByType": "kkhytofairkplczfulrozicok", - "createdAt": "2023-07-25T21:05:29.734Z", - "lastModifiedBy": "aacooloptoxxa", - "lastModifiedByType": "akgiproijejraaybzd", - "lastModifiedAt": "2023-07-25T21:05:29.734Z" + "createdBy": "oyinfscpxpupdvm", + "createdByType": "cbbfvspkiyirzxeyhquifazl", + "createdAt": "2023-07-26T04:32:08.325Z", + "lastModifiedBy": "ouviwjddahjtcyawsbsyrzgrpf", + "lastModifiedByType": "wcvedljnuhimq", + "lastModifiedAt": "2023-07-26T04:32:08.325Z" }, "tags": { - "key2456": "iboxrhhlcrixqsdcybdh" + "key9204": "b" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json index 6f9248bac6a4..008abaf48f6d 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json @@ -2,10 +2,10 @@ "title": "Gets the email configuration setting.", "operationId": "EmailConfiguration_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "0M", - "emailConfigurationName": "H", + "vaultName": "7", + "emailConfigurationName": "kPECy", "api-version": "2021-02-16-preview" }, "responses": { @@ -14,23 +14,23 @@ "properties": { "sendToOwners": true, "customEmailAddresses": [ - "x" + "wfefbwpvtijdmwvanwvazdby" ], - "locale": "aaweznwhxjakrzhbemeurwyc" + "locale": "ilfssgfckjxo" }, - "id": "zxgkuqd", - "name": "wzamd", - "type": "tvyresqxz", + "id": "ijftucod", + "name": "gmistubhnbzrlnfzolovzemhmlqe", + "type": "taehlwy", "systemData": { - "createdBy": "mmpongmqmclenmmdbhtmlwnvaf", - "createdByType": "kkhytofairkplczfulrozicok", - "createdAt": "2023-07-25T21:05:29.734Z", - "lastModifiedBy": "aacooloptoxxa", - "lastModifiedByType": "akgiproijejraaybzd", - "lastModifiedAt": "2023-07-25T21:05:29.734Z" + "createdBy": "oyinfscpxpupdvm", + "createdByType": "cbbfvspkiyirzxeyhquifazl", + "createdAt": "2023-07-26T04:32:08.325Z", + "lastModifiedBy": "ouviwjddahjtcyawsbsyrzgrpf", + "lastModifiedByType": "wcvedljnuhimq", + "lastModifiedAt": "2023-07-26T04:32:08.325Z" }, "tags": { - "key2456": "iboxrhhlcrixqsdcybdh" + "key9204": "b" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json index 6659dded4b2a..60b63e2b6b98 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json @@ -2,9 +2,9 @@ "title": "Lists the email configuration settings.", "operationId": "EmailConfiguration_List", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "Eiv", + "vaultName": "1Hq", "api-version": "2021-02-16-preview" }, "responses": { @@ -15,27 +15,27 @@ "properties": { "sendToOwners": true, "customEmailAddresses": [ - "x" + "wfefbwpvtijdmwvanwvazdby" ], - "locale": "aaweznwhxjakrzhbemeurwyc" + "locale": "ilfssgfckjxo" }, - "id": "zxgkuqd", - "name": "wzamd", - "type": "tvyresqxz", + "id": "ijftucod", + "name": "gmistubhnbzrlnfzolovzemhmlqe", + "type": "taehlwy", "systemData": { - "createdBy": "mmpongmqmclenmmdbhtmlwnvaf", - "createdByType": "kkhytofairkplczfulrozicok", - "createdAt": "2023-07-25T21:05:29.734Z", - "lastModifiedBy": "aacooloptoxxa", - "lastModifiedByType": "akgiproijejraaybzd", - "lastModifiedAt": "2023-07-25T21:05:29.734Z" + "createdBy": "oyinfscpxpupdvm", + "createdByType": "cbbfvspkiyirzxeyhquifazl", + "createdAt": "2023-07-26T04:32:08.325Z", + "lastModifiedBy": "ouviwjddahjtcyawsbsyrzgrpf", + "lastModifiedByType": "wcvedljnuhimq", + "lastModifiedAt": "2023-07-26T04:32:08.325Z" }, "tags": { - "key2456": "iboxrhhlcrixqsdcybdh" + "key9204": "b" } } ], - "nextLink": "sqvlnxoemqskcvllekczibnznaoon" + "nextLink": "qomttmpfv" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json index 6f2a7b46ae3e..14349d1ee67f 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json @@ -2,75 +2,75 @@ "title": "Gets the event.", "operationId": "Event_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "dC66X", - "eventName": "5WEQs", + "vaultName": "5Q6", + "eventName": "C", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { "properties": { - "resourceType": "qg", - "resourceName": "mhvqqlqhgraiswjjjwqwkzocb", - "eventType": "pkynhcerccvouektbiil", - "eventName": "hqvrogcsaiabtewoef", - "timeOfOccurrence": "2023-07-25T21:05:30.191Z", - "severity": "eedquqxlan", - "description": "ggnscbcazdmmoqexnvuakgjpfasmkl", - "correlationId": "cf", + "resourceType": "dkzwppymeql", + "resourceName": "kekpfxammlgwjnizfifjvhyzems", + "eventType": "upsqkxrmilmfep", + "eventName": "fejnbdighonk", + "timeOfOccurrence": "2023-07-26T04:32:08.740Z", + "severity": "urv", + "description": "rianhvskmmxsliuuaxtnxy", + "correlationId": "hzridatsrqduc", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "ywuqbzgr" + "instanceType": "EventModelCustomProperties" } }, - "id": "wqvxhucgunqjuuowecl", - "name": "ghnyhffxksutuirjumawimjmucu", - "type": "wnkgfadwfnvd", + "id": "doeogisfvokuvrt", + "name": "uvmsnksztjhdsiwooamruiffxf", + "type": "wt", "systemData": { - "createdBy": "qvbpvooicqjkgwdvwkroy", - "createdByType": "awqunprlepimvj", - "createdAt": "2023-07-25T21:05:30.191Z", - "lastModifiedBy": "lcyjrckjrbsvgb", - "lastModifiedByType": "cquszlcvjbbbwdihknmwaeeaobyz", - "lastModifiedAt": "2023-07-25T21:05:30.191Z" + "createdBy": "dfepst", + "createdByType": "lyscpagbjwiuqpivbxzxsvjsmhm", + "createdAt": "2023-07-26T04:32:08.740Z", + "lastModifiedBy": "ypdlwlvglbrplgtycxqt", + "lastModifiedByType": "vubuhjesjekqbrvrnnsmrz", + "lastModifiedAt": "2023-07-26T04:32:08.740Z" }, "tags": { - "key7117": "atjpcvlwjtam" + "key1588": "tctegpfwyluhkvvadsojfnykah" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json index 8e32dcaf8482..ec001960f5b6 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json @@ -2,11 +2,11 @@ "title": "Lists the events.", "operationId": "Event_List", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "fewfcv", - "$filter": "pcsjimptptanpkif", - "continuationToken": "iqqptqxdquqjycvsdnweuovvwuls", + "vaultName": "7", + "$filter": "jnarznmmf", + "continuationToken": "lmtufvozavzwslnmlotv", "api-version": "2021-02-16-preview" }, "responses": { @@ -15,69 +15,69 @@ "value": [ { "properties": { - "resourceType": "qg", - "resourceName": "mhvqqlqhgraiswjjjwqwkzocb", - "eventType": "pkynhcerccvouektbiil", - "eventName": "hqvrogcsaiabtewoef", - "timeOfOccurrence": "2023-07-25T21:05:30.191Z", - "severity": "eedquqxlan", - "description": "ggnscbcazdmmoqexnvuakgjpfasmkl", - "correlationId": "cf", + "resourceType": "dkzwppymeql", + "resourceName": "kekpfxammlgwjnizfifjvhyzems", + "eventType": "upsqkxrmilmfep", + "eventName": "fejnbdighonk", + "timeOfOccurrence": "2023-07-26T04:32:08.740Z", + "severity": "urv", + "description": "rianhvskmmxsliuuaxtnxy", + "correlationId": "hzridatsrqduc", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "ywuqbzgr" + "instanceType": "EventModelCustomProperties" } }, - "id": "wqvxhucgunqjuuowecl", - "name": "ghnyhffxksutuirjumawimjmucu", - "type": "wnkgfadwfnvd", + "id": "doeogisfvokuvrt", + "name": "uvmsnksztjhdsiwooamruiffxf", + "type": "wt", "systemData": { - "createdBy": "qvbpvooicqjkgwdvwkroy", - "createdByType": "awqunprlepimvj", - "createdAt": "2023-07-25T21:05:30.191Z", - "lastModifiedBy": "lcyjrckjrbsvgb", - "lastModifiedByType": "cquszlcvjbbbwdihknmwaeeaobyz", - "lastModifiedAt": "2023-07-25T21:05:30.191Z" + "createdBy": "dfepst", + "createdByType": "lyscpagbjwiuqpivbxzxsvjsmhm", + "createdAt": "2023-07-26T04:32:08.740Z", + "lastModifiedBy": "ypdlwlvglbrplgtycxqt", + "lastModifiedByType": "vubuhjesjekqbrvrnnsmrz", + "lastModifiedAt": "2023-07-26T04:32:08.740Z" }, "tags": { - "key7117": "atjpcvlwjtam" + "key1588": "tctegpfwyluhkvvadsojfnykah" } } ], - "nextLink": "apgwshhvjxckgjmapbrr" + "nextLink": "zejobyppbcptvicckpseb" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json index af623b20f4a4..b6b0486a8a3b 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json @@ -2,20 +2,20 @@ "title": "Gets the fabric operation status.", "operationId": "FabricOperationsStatus_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "fabricName": "lVZPA", - "operationId": "heazntihkbpmydskcfcnexybuktj", + "fabricName": "ICNY", + "operationId": "hxuxobsjsvjpgjkgqbnrpqrlcut", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "zcuybohcphhgdgfqjiwxlm", - "name": "kjxroclkbeevmcgscli", - "status": "pgcbsyi", - "startTime": "kyeooklagbdaee", - "endTime": "tumaya" + "id": "fh", + "name": "llbceylzpfwmnwunyyiyt", + "status": "tuiziokffdfr", + "startTime": "idpuxubqqdwzo", + "endTime": "zgiqrzfvsgatjmdkzoktumvnge" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json index 63209ad3afaf..c0442b5981fa 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json @@ -2,82 +2,82 @@ "title": "Puts the fabric.", "operationId": "Fabric_Create", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "fabricName": "v6GYfK", + "fabricName": "i", "api-version": "2021-02-16-preview", "body": { - "location": "rvbbhvhtkwzfyjqut", + "location": "wvkxqwrjdrvu", "properties": { "customProperties": { - "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + "instanceType": "FabricModelCustomProperties" } }, "tags": { - "key9710": "soficsfcudvbndf" + "key3645": "eoit" } } }, "responses": { "200": { "body": { - "location": "rvbbhvhtkwzfyjqut", + "location": "wvkxqwrjdrvu", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "gpokivcdeeww", - "serviceResourceId": "pgzdf", + "serviceEndpoint": "vomirdvyglo", + "serviceResourceId": "wtomuipayfulqfboiuakkkpbyvz", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + "instanceType": "FabricModelCustomProperties" } }, - "id": "ixrzdeblclwgkewykpnhvi", - "name": "qrtuarbogfimneoeweqr", - "type": "kqofvveejltqxoqhqisuzfy", + "id": "xa", + "name": "fzvtywgrhylmczvvsl", + "type": "ufayitsooblolh", "systemData": { - "createdBy": "ipszhb", - "createdByType": "tavffigxzmbsemwwklmjfzxrezi", - "createdAt": "2023-07-25T21:05:30.441Z", - "lastModifiedBy": "tiinubrvppkofxakdhrkopf", - "lastModifiedByType": "pblhyfzw", - "lastModifiedAt": "2023-07-25T21:05:30.441Z" + "createdBy": "gxbmqcnfpzbarchrpifteigmub", + "createdByType": "bfzenuqbxnemujb", + "createdAt": "2023-07-26T04:32:09.014Z", + "lastModifiedBy": "c", + "lastModifiedByType": "tyjxrnwik", + "lastModifiedAt": "2023-07-26T04:32:09.014Z" }, "tags": { - "key9710": "soficsfcudvbndf" + "key3645": "eoit" } } }, @@ -86,63 +86,63 @@ "location": "https://contoso.com/operationstatus" }, "body": { - "location": "rvbbhvhtkwzfyjqut", + "location": "wvkxqwrjdrvu", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "gpokivcdeeww", - "serviceResourceId": "pgzdf", + "serviceEndpoint": "vomirdvyglo", + "serviceResourceId": "wtomuipayfulqfboiuakkkpbyvz", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + "instanceType": "FabricModelCustomProperties" } }, - "id": "ixrzdeblclwgkewykpnhvi", - "name": "qrtuarbogfimneoeweqr", - "type": "kqofvveejltqxoqhqisuzfy", + "id": "xa", + "name": "fzvtywgrhylmczvvsl", + "type": "ufayitsooblolh", "systemData": { - "createdBy": "ipszhb", - "createdByType": "tavffigxzmbsemwwklmjfzxrezi", - "createdAt": "2023-07-25T21:05:30.441Z", - "lastModifiedBy": "tiinubrvppkofxakdhrkopf", - "lastModifiedByType": "pblhyfzw", - "lastModifiedAt": "2023-07-25T21:05:30.441Z" + "createdBy": "gxbmqcnfpzbarchrpifteigmub", + "createdByType": "bfzenuqbxnemujb", + "createdAt": "2023-07-26T04:32:09.014Z", + "lastModifiedBy": "c", + "lastModifiedByType": "tyjxrnwik", + "lastModifiedAt": "2023-07-26T04:32:09.014Z" }, "tags": { - "key9710": "soficsfcudvbndf" + "key3645": "eoit" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json index 2ab23ef9d7ba..fa3b8f77bb4c 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json @@ -2,9 +2,9 @@ "title": "Deletes the fabric.", "operationId": "Fabric_Delete", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "fabricName": "GgE1Rp", + "fabricName": "0", "api-version": "2021-02-16-preview" }, "responses": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json index 7fde6d0e5c06..9d3516f5b747 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json @@ -2,71 +2,71 @@ "title": "Gets the fabric.", "operationId": "Fabric_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "fabricName": "7Y8Md", + "fabricName": "Ic7S6", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "location": "rvbbhvhtkwzfyjqut", + "location": "wvkxqwrjdrvu", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "gpokivcdeeww", - "serviceResourceId": "pgzdf", + "serviceEndpoint": "vomirdvyglo", + "serviceResourceId": "wtomuipayfulqfboiuakkkpbyvz", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + "instanceType": "FabricModelCustomProperties" } }, - "id": "ixrzdeblclwgkewykpnhvi", - "name": "qrtuarbogfimneoeweqr", - "type": "kqofvveejltqxoqhqisuzfy", + "id": "xa", + "name": "fzvtywgrhylmczvvsl", + "type": "ufayitsooblolh", "systemData": { - "createdBy": "ipszhb", - "createdByType": "tavffigxzmbsemwwklmjfzxrezi", - "createdAt": "2023-07-25T21:05:30.441Z", - "lastModifiedBy": "tiinubrvppkofxakdhrkopf", - "lastModifiedByType": "pblhyfzw", - "lastModifiedAt": "2023-07-25T21:05:30.441Z" + "createdBy": "gxbmqcnfpzbarchrpifteigmub", + "createdByType": "bfzenuqbxnemujb", + "createdAt": "2023-07-26T04:32:09.014Z", + "lastModifiedBy": "c", + "lastModifiedByType": "tyjxrnwik", + "lastModifiedAt": "2023-07-26T04:32:09.014Z" }, "tags": { - "key9710": "soficsfcudvbndf" + "key3645": "eoit" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json index b335f65f8dfe..669f68a4b538 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json @@ -2,9 +2,9 @@ "title": "Lists the fabrics.", "operationId": "Fabric_List", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "continuationToken": "agauift", + "continuationToken": "kupv", "api-version": "2021-02-16-preview" }, "responses": { @@ -12,67 +12,67 @@ "body": { "value": [ { - "location": "rvbbhvhtkwzfyjqut", + "location": "wvkxqwrjdrvu", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "gpokivcdeeww", - "serviceResourceId": "pgzdf", + "serviceEndpoint": "vomirdvyglo", + "serviceResourceId": "wtomuipayfulqfboiuakkkpbyvz", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + "instanceType": "FabricModelCustomProperties" } }, - "id": "ixrzdeblclwgkewykpnhvi", - "name": "qrtuarbogfimneoeweqr", - "type": "kqofvveejltqxoqhqisuzfy", + "id": "xa", + "name": "fzvtywgrhylmczvvsl", + "type": "ufayitsooblolh", "systemData": { - "createdBy": "ipszhb", - "createdByType": "tavffigxzmbsemwwklmjfzxrezi", - "createdAt": "2023-07-25T21:05:30.441Z", - "lastModifiedBy": "tiinubrvppkofxakdhrkopf", - "lastModifiedByType": "pblhyfzw", - "lastModifiedAt": "2023-07-25T21:05:30.441Z" + "createdBy": "gxbmqcnfpzbarchrpifteigmub", + "createdByType": "bfzenuqbxnemujb", + "createdAt": "2023-07-26T04:32:09.014Z", + "lastModifiedBy": "c", + "lastModifiedByType": "tyjxrnwik", + "lastModifiedAt": "2023-07-26T04:32:09.014Z" }, "tags": { - "key9710": "soficsfcudvbndf" + "key3645": "eoit" } } ], - "nextLink": "zkowbuqcrfosqfgoiwsfpwqoips" + "nextLink": "mi" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json index c426703fc21a..5fabda393930 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json @@ -2,8 +2,8 @@ "title": "Lists the fabrics.", "operationId": "Fabric_ListBySubscription", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", - "continuationToken": "chr", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", + "continuationToken": "rphmgemm", "api-version": "2021-02-16-preview" }, "responses": { @@ -11,67 +11,67 @@ "body": { "value": [ { - "location": "rvbbhvhtkwzfyjqut", + "location": "wvkxqwrjdrvu", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "gpokivcdeeww", - "serviceResourceId": "pgzdf", + "serviceEndpoint": "vomirdvyglo", + "serviceResourceId": "wtomuipayfulqfboiuakkkpbyvz", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + "instanceType": "FabricModelCustomProperties" } }, - "id": "ixrzdeblclwgkewykpnhvi", - "name": "qrtuarbogfimneoeweqr", - "type": "kqofvveejltqxoqhqisuzfy", + "id": "xa", + "name": "fzvtywgrhylmczvvsl", + "type": "ufayitsooblolh", "systemData": { - "createdBy": "ipszhb", - "createdByType": "tavffigxzmbsemwwklmjfzxrezi", - "createdAt": "2023-07-25T21:05:30.441Z", - "lastModifiedBy": "tiinubrvppkofxakdhrkopf", - "lastModifiedByType": "pblhyfzw", - "lastModifiedAt": "2023-07-25T21:05:30.441Z" + "createdBy": "gxbmqcnfpzbarchrpifteigmub", + "createdByType": "bfzenuqbxnemujb", + "createdAt": "2023-07-26T04:32:09.014Z", + "lastModifiedBy": "c", + "lastModifiedByType": "tyjxrnwik", + "lastModifiedAt": "2023-07-26T04:32:09.014Z" }, "tags": { - "key9710": "soficsfcudvbndf" + "key3645": "eoit" } } ], - "nextLink": "zkowbuqcrfosqfgoiwsfpwqoips" + "nextLink": "mi" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json index decdf483bc02..002362f22195 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json @@ -2,81 +2,81 @@ "title": "Updates the fabric.", "operationId": "Fabric_Update", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "fabricName": "ZRNF", + "fabricName": "H", "api-version": "2021-02-16-preview", "body": { "properties": { "customProperties": { - "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + "instanceType": "FabricModelCustomProperties" } }, "tags": { - "key5088": "wrjazrblsfifszxolt" + "key6220": "fxif" } } }, "responses": { "200": { "body": { - "location": "rvbbhvhtkwzfyjqut", + "location": "wvkxqwrjdrvu", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "gpokivcdeeww", - "serviceResourceId": "pgzdf", + "serviceEndpoint": "vomirdvyglo", + "serviceResourceId": "wtomuipayfulqfboiuakkkpbyvz", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "fyvtwmhbhmtsdpnexicilsduvxpd" + "instanceType": "FabricModelCustomProperties" } }, - "id": "ixrzdeblclwgkewykpnhvi", - "name": "qrtuarbogfimneoeweqr", - "type": "kqofvveejltqxoqhqisuzfy", + "id": "xa", + "name": "fzvtywgrhylmczvvsl", + "type": "ufayitsooblolh", "systemData": { - "createdBy": "ipszhb", - "createdByType": "tavffigxzmbsemwwklmjfzxrezi", - "createdAt": "2023-07-25T21:05:30.441Z", - "lastModifiedBy": "tiinubrvppkofxakdhrkopf", - "lastModifiedByType": "pblhyfzw", - "lastModifiedAt": "2023-07-25T21:05:30.441Z" + "createdBy": "gxbmqcnfpzbarchrpifteigmub", + "createdByType": "bfzenuqbxnemujb", + "createdAt": "2023-07-26T04:32:09.014Z", + "lastModifiedBy": "c", + "lastModifiedByType": "tyjxrnwik", + "lastModifiedAt": "2023-07-26T04:32:09.014Z" }, "tags": { - "key9710": "soficsfcudvbndf" + "key3645": "eoit" } } }, diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json index ebfa6828ef72..d392f4af58b6 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json @@ -8,14 +8,14 @@ "200": { "body": [ { - "name": "euofnydejrn", + "name": "hrjfuunoagodkwpmnxfgaux", "isDataAction": true, - "origin": "gbpifrlzeepjkpnlqpctrgoyldul", + "origin": "srmpwtslowcccgc", "display": { - "provider": "nwfglbolumlcovc", - "resource": "gtahbahmylbscimpkbgurvdeims", - "operation": "xpqrm", - "description": "wzdvwrlzhdvctuvmmseeranf" + "provider": "cfexcstlytaitcknjoff", + "resource": "swuekeeeekzyfpijvaswbjobtrj", + "operation": "xzkdjxxwsiqeyfzygdxxpkcywuo", + "description": "kqpmfsfnutxaqeodomxtwttn" } } ] diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json index 778601119d09..8e78e9187b2f 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json @@ -2,21 +2,21 @@ "title": "Gets the policy operation status.", "operationId": "PolicyOperationStatus_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "2Y", - "policyName": "0I", - "operationId": "idsrlxhozzfuxhra", + "vaultName": "PC", + "policyName": "Wg", + "operationId": "cdiamiljmctyhkhl", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "zcuybohcphhgdgfqjiwxlm", - "name": "kjxroclkbeevmcgscli", - "status": "pgcbsyi", - "startTime": "kyeooklagbdaee", - "endTime": "tumaya" + "id": "fh", + "name": "llbceylzpfwmnwunyyiyt", + "status": "tuiziokffdfr", + "startTime": "idpuxubqqdwzo", + "endTime": "zgiqrzfvsgatjmdkzoktumvnge" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json index 6afa6980016d..5784e14ce4e3 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json @@ -2,19 +2,19 @@ "title": "Puts the policy.", "operationId": "Policy_Create", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "17", - "policyName": "9jKn", + "vaultName": "kJI86", + "policyName": "5D", "api-version": "2021-02-16-preview", "body": { "properties": { "customProperties": { - "instanceType": "wqo" + "instanceType": "PolicyModelCustomProperties" } }, "tags": { - "key6853": "aobhcuamqqiykuniswnokrgbjwmgq" + "key1888": "jwufyjxndqyruxprrvhx" } } }, @@ -24,22 +24,22 @@ "properties": { "provisioningState": "Canceled", "customProperties": { - "instanceType": "wqo" + "instanceType": "PolicyModelCustomProperties" } }, - "id": "ckybzrqmhvrfkyhxkmwsshiiac", - "name": "neyrqhcsinv", - "type": "erghifgttifeuyl", + "id": "nigj", + "name": "dr", + "type": "mvl", "systemData": { - "createdBy": "kckoa", - "createdByType": "bmegmyaqz", - "createdAt": "2023-07-25T21:05:31.383Z", - "lastModifiedBy": "czcboaaaktaczpuznworrvmrr", - "lastModifiedByType": "cupfcabydsc", - "lastModifiedAt": "2023-07-25T21:05:31.383Z" + "createdBy": "nnbzyoegnycocdfoui", + "createdByType": "ngzumvrsdh", + "createdAt": "2023-07-26T04:32:09.993Z", + "lastModifiedBy": "vmwlf", + "lastModifiedByType": "ebczdwrblqnxelnyzsdvmevyyqoot", + "lastModifiedAt": "2023-07-26T04:32:09.993Z" }, "tags": { - "key6853": "aobhcuamqqiykuniswnokrgbjwmgq" + "key1888": "jwufyjxndqyruxprrvhx" } } }, @@ -51,22 +51,22 @@ "properties": { "provisioningState": "Canceled", "customProperties": { - "instanceType": "wqo" + "instanceType": "PolicyModelCustomProperties" } }, - "id": "ckybzrqmhvrfkyhxkmwsshiiac", - "name": "neyrqhcsinv", - "type": "erghifgttifeuyl", + "id": "nigj", + "name": "dr", + "type": "mvl", "systemData": { - "createdBy": "kckoa", - "createdByType": "bmegmyaqz", - "createdAt": "2023-07-25T21:05:31.383Z", - "lastModifiedBy": "czcboaaaktaczpuznworrvmrr", - "lastModifiedByType": "cupfcabydsc", - "lastModifiedAt": "2023-07-25T21:05:31.383Z" + "createdBy": "nnbzyoegnycocdfoui", + "createdByType": "ngzumvrsdh", + "createdAt": "2023-07-26T04:32:09.993Z", + "lastModifiedBy": "vmwlf", + "lastModifiedByType": "ebczdwrblqnxelnyzsdvmevyyqoot", + "lastModifiedAt": "2023-07-26T04:32:09.993Z" }, "tags": { - "key6853": "aobhcuamqqiykuniswnokrgbjwmgq" + "key1888": "jwufyjxndqyruxprrvhx" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json index a609f51b3d2b..720468241ee0 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json @@ -2,10 +2,10 @@ "title": "Deletes the policy.", "operationId": "Policy_Delete", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "cK", - "policyName": "4", + "vaultName": "iMK", + "policyName": "DX", "api-version": "2021-02-16-preview" }, "responses": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json index 7f5ca35599ae..4d6e9b5716b5 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json @@ -2,10 +2,10 @@ "title": "Gets the policy.", "operationId": "Policy_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "m", - "policyName": "Y5", + "vaultName": "MswB", + "policyName": "3", "api-version": "2021-02-16-preview" }, "responses": { @@ -14,22 +14,22 @@ "properties": { "provisioningState": "Canceled", "customProperties": { - "instanceType": "wqo" + "instanceType": "PolicyModelCustomProperties" } }, - "id": "ckybzrqmhvrfkyhxkmwsshiiac", - "name": "neyrqhcsinv", - "type": "erghifgttifeuyl", + "id": "nigj", + "name": "dr", + "type": "mvl", "systemData": { - "createdBy": "kckoa", - "createdByType": "bmegmyaqz", - "createdAt": "2023-07-25T21:05:31.383Z", - "lastModifiedBy": "czcboaaaktaczpuznworrvmrr", - "lastModifiedByType": "cupfcabydsc", - "lastModifiedAt": "2023-07-25T21:05:31.383Z" + "createdBy": "nnbzyoegnycocdfoui", + "createdByType": "ngzumvrsdh", + "createdAt": "2023-07-26T04:32:09.993Z", + "lastModifiedBy": "vmwlf", + "lastModifiedByType": "ebczdwrblqnxelnyzsdvmevyyqoot", + "lastModifiedAt": "2023-07-26T04:32:09.993Z" }, "tags": { - "key6853": "aobhcuamqqiykuniswnokrgbjwmgq" + "key1888": "jwufyjxndqyruxprrvhx" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json index 764987caa810..e2cb9d83e1b4 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json @@ -2,9 +2,9 @@ "title": "Lists the policies.", "operationId": "Policy_List", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "YY", + "vaultName": "2", "api-version": "2021-02-16-preview" }, "responses": { @@ -15,26 +15,26 @@ "properties": { "provisioningState": "Canceled", "customProperties": { - "instanceType": "wqo" + "instanceType": "PolicyModelCustomProperties" } }, - "id": "ckybzrqmhvrfkyhxkmwsshiiac", - "name": "neyrqhcsinv", - "type": "erghifgttifeuyl", + "id": "nigj", + "name": "dr", + "type": "mvl", "systemData": { - "createdBy": "kckoa", - "createdByType": "bmegmyaqz", - "createdAt": "2023-07-25T21:05:31.383Z", - "lastModifiedBy": "czcboaaaktaczpuznworrvmrr", - "lastModifiedByType": "cupfcabydsc", - "lastModifiedAt": "2023-07-25T21:05:31.383Z" + "createdBy": "nnbzyoegnycocdfoui", + "createdByType": "ngzumvrsdh", + "createdAt": "2023-07-26T04:32:09.993Z", + "lastModifiedBy": "vmwlf", + "lastModifiedByType": "ebczdwrblqnxelnyzsdvmevyyqoot", + "lastModifiedAt": "2023-07-26T04:32:09.993Z" }, "tags": { - "key6853": "aobhcuamqqiykuniswnokrgbjwmgq" + "key1888": "jwufyjxndqyruxprrvhx" } } ], - "nextLink": "wkz" + "nextLink": "bmyycqba" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json index 0841a104b6f2..74bef342e67e 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json @@ -2,21 +2,21 @@ "title": "Gets the protected item operation status.", "operationId": "ProtectedItemOperationStatus_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "vY8Iu", - "protectedItemName": "KF", - "operationId": "vpbtibpsnqwhpoew", + "vaultName": "9b", + "protectedItemName": "mh", + "operationId": "kksqlhkpqowhafdodcizhkdxg", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "zcuybohcphhgdgfqjiwxlm", - "name": "kjxroclkbeevmcgscli", - "status": "pgcbsyi", - "startTime": "kyeooklagbdaee", - "endTime": "tumaya" + "id": "fh", + "name": "llbceylzpfwmnwunyyiyt", + "status": "tuiziokffdfr", + "startTime": "idpuxubqqdwzo", + "endTime": "zgiqrzfvsgatjmdkzoktumvnge" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json index eb408e01f098..b94ba678d3ff 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json @@ -2,21 +2,21 @@ "title": "Puts the protected item.", "operationId": "ProtectedItem_Create", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "LqK", - "protectedItemName": "DSLA6", + "vaultName": "Q", + "protectedItemName": "L", "api-version": "2021-02-16-preview", "body": { "properties": { - "policyName": "zpdyqrcfqbflupnfcoov", - "replicationExtensionName": "glhlsarsbfvomqflpgxqnqqr", + "policyName": "sgxncsesajon", + "replicationExtensionName": "vpc", "customProperties": { - "instanceType": "wxwqypliymbvcombkhwekdzdfqnrb" + "instanceType": "ProtectedItemModelCustomProperties" } }, "tags": { - "key3470": "suqaow" + "key4295": "uqmnjhggs" } } }, @@ -24,118 +24,118 @@ "200": { "body": { "properties": { - "policyName": "zpdyqrcfqbflupnfcoov", - "replicationExtensionName": "glhlsarsbfvomqflpgxqnqqr", - "correlationId": "hfzloprgttrkttzkfihpyxdzdlfay", + "policyName": "sgxncsesajon", + "replicationExtensionName": "vpc", + "correlationId": "tjxubphagtxvopmkkxsrcail", "provisioningState": "Canceled", "protectionState": "UnprotectedStatesBegin", - "protectionStateDescription": "n", + "protectionStateDescription": "q", "testFailoverState": "None", - "testFailoverStateDescription": "bubqnxmh", + "testFailoverStateDescription": "btsazlqowahtbcigjm", "resynchronizationState": "None", - "fabricObjectId": "hv", - "fabricObjectName": "lqm", - "sourceFabricProviderId": "lp", - "targetFabricProviderId": "anfxjqtunc", - "fabricId": "ip", - "targetFabricId": "ewt", - "draId": "jgwzuaqji", - "targetDraId": "sv", + "fabricObjectId": "lrxgas", + "fabricObjectName": "lfjkbjywinwfsmt", + "sourceFabricProviderId": "xplqjevidar", + "targetFabricProviderId": "pfqfytwspbcq", + "fabricId": "ghfpgijrekipfpuc", + "targetFabricId": "iejrlgpgtvumdysuokz", + "draId": "plwccvutrkasiq", + "targetDraId": "kfvnbpxeuodfhhvmmlkloxgv", "resyncRequired": true, - "lastSuccessfulPlannedFailoverTime": "2023-07-25T21:05:32.074Z", - "lastSuccessfulUnplannedFailoverTime": "2023-07-25T21:05:32.074Z", - "lastSuccessfulTestFailoverTime": "2023-07-25T21:05:32.074Z", + "lastSuccessfulPlannedFailoverTime": "2023-07-26T04:32:10.699Z", + "lastSuccessfulUnplannedFailoverTime": "2023-07-26T04:32:10.699Z", + "lastSuccessfulTestFailoverTime": "2023-07-26T04:32:10.699Z", "currentJob": { - "scenarioName": "wxuhylnhmlrp", - "id": "yeyyjnhrdpvgmg", - "name": "blszmtqqqvywgpngdbl", - "displayName": "pyynbpmxaqruxgvl", - "state": "aihrepmnnsmtfshneh", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "sqhzavonxvrv", + "id": "kzwh", + "name": "ulwohmkldvggnuqjjc", + "displayName": "xsyleqecj", + "state": "z", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "allowedJobs": [ - "eoqighzgsomlrjzmvgh" + "yxfyvnqqjnjsehokpyprrjwtpvoy" ], "lastFailedEnableProtectionJob": { - "scenarioName": "me", - "id": "ttzjnqpkiywdjcim", - "name": "q", - "displayName": "hlvesvvxmsdukhdimomaubcewrryr", - "state": "ssxzcreyfxdxkozjwnpbyjlrvqkg", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "wlfquvltzmsuvicsxz", + "id": "myvaphlzsolgldz", + "name": "gicgfarlyxks", + "displayName": "vn", + "state": "ix", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "lastFailedPlannedFailoverJob": { - "scenarioName": "qg", - "id": "wyyygyvuotwwia", - "name": "fjqocrrirdqxxyujizyprvvqxnb", - "displayName": "mgjkzbtjigetnqy", - "state": "rxavfzodqzaoropvqxmchck", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "aknwtw", + "id": "cacudatqwcubevm", + "name": "oefaigdzgvacdsjnceoapdjaij", + "displayName": "uwrnhrmfbpwraat", + "state": "gdyglhw", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "lastTestFailoverJob": { - "scenarioName": "ydqfagbmfdwnkotjvhht", - "id": "mortsmzwdedfzrlri", - "name": "wbghfohlgskdhevmxzcwtbplfuphxp", - "displayName": "haszbpzqnuvpkeexuultdh", - "state": "xfmjarvsimxqagakaognccenj", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "ykyequkgzgb", + "id": "mfspzgpueawary", + "name": "hjysgzkfigfp", + "displayName": "mfcmhindfznpees", + "state": "flzlkmimylodonvntbidsfthid", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "replicationHealth": "Normal", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "wxwqypliymbvcombkhwekdzdfqnrb" + "instanceType": "ProtectedItemModelCustomProperties" } }, - "id": "zjiwvchoqwqkkitqqggmwltcj", - "name": "kstkrayqxybbmagw", - "type": "tyjkiivxnndpwqoodtyzqtg", + "id": "ocjekervkcluyvsbgtph", + "name": "plxev", + "type": "dkewgqjjofrfbjrqvrygjvinttfrae", "systemData": { - "createdBy": "fuimettztqlochcrgdecx", - "createdByType": "rvwlvzhhfmziy", - "createdAt": "2023-07-25T21:05:32.074Z", - "lastModifiedBy": "snwttpckohmitadxdlcfmjhvzjmdh", - "lastModifiedByType": "rtwpnadsop", - "lastModifiedAt": "2023-07-25T21:05:32.074Z" + "createdBy": "qjejzz", + "createdByType": "osqwubo", + "createdAt": "2023-07-26T04:32:10.699Z", + "lastModifiedBy": "kpky", + "lastModifiedByType": "wpfsftqebdtqosoadts", + "lastModifiedAt": "2023-07-26T04:32:10.699Z" }, "tags": { - "key3470": "suqaow" + "key4295": "uqmnjhggs" } } }, @@ -145,118 +145,118 @@ }, "body": { "properties": { - "policyName": "zpdyqrcfqbflupnfcoov", - "replicationExtensionName": "glhlsarsbfvomqflpgxqnqqr", - "correlationId": "hfzloprgttrkttzkfihpyxdzdlfay", + "policyName": "sgxncsesajon", + "replicationExtensionName": "vpc", + "correlationId": "tjxubphagtxvopmkkxsrcail", "provisioningState": "Canceled", "protectionState": "UnprotectedStatesBegin", - "protectionStateDescription": "n", + "protectionStateDescription": "q", "testFailoverState": "None", - "testFailoverStateDescription": "bubqnxmh", + "testFailoverStateDescription": "btsazlqowahtbcigjm", "resynchronizationState": "None", - "fabricObjectId": "hv", - "fabricObjectName": "lqm", - "sourceFabricProviderId": "lp", - "targetFabricProviderId": "anfxjqtunc", - "fabricId": "ip", - "targetFabricId": "ewt", - "draId": "jgwzuaqji", - "targetDraId": "sv", + "fabricObjectId": "lrxgas", + "fabricObjectName": "lfjkbjywinwfsmt", + "sourceFabricProviderId": "xplqjevidar", + "targetFabricProviderId": "pfqfytwspbcq", + "fabricId": "ghfpgijrekipfpuc", + "targetFabricId": "iejrlgpgtvumdysuokz", + "draId": "plwccvutrkasiq", + "targetDraId": "kfvnbpxeuodfhhvmmlkloxgv", "resyncRequired": true, - "lastSuccessfulPlannedFailoverTime": "2023-07-25T21:05:32.074Z", - "lastSuccessfulUnplannedFailoverTime": "2023-07-25T21:05:32.074Z", - "lastSuccessfulTestFailoverTime": "2023-07-25T21:05:32.074Z", + "lastSuccessfulPlannedFailoverTime": "2023-07-26T04:32:10.699Z", + "lastSuccessfulUnplannedFailoverTime": "2023-07-26T04:32:10.699Z", + "lastSuccessfulTestFailoverTime": "2023-07-26T04:32:10.699Z", "currentJob": { - "scenarioName": "wxuhylnhmlrp", - "id": "yeyyjnhrdpvgmg", - "name": "blszmtqqqvywgpngdbl", - "displayName": "pyynbpmxaqruxgvl", - "state": "aihrepmnnsmtfshneh", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "sqhzavonxvrv", + "id": "kzwh", + "name": "ulwohmkldvggnuqjjc", + "displayName": "xsyleqecj", + "state": "z", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "allowedJobs": [ - "eoqighzgsomlrjzmvgh" + "yxfyvnqqjnjsehokpyprrjwtpvoy" ], "lastFailedEnableProtectionJob": { - "scenarioName": "me", - "id": "ttzjnqpkiywdjcim", - "name": "q", - "displayName": "hlvesvvxmsdukhdimomaubcewrryr", - "state": "ssxzcreyfxdxkozjwnpbyjlrvqkg", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "wlfquvltzmsuvicsxz", + "id": "myvaphlzsolgldz", + "name": "gicgfarlyxks", + "displayName": "vn", + "state": "ix", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "lastFailedPlannedFailoverJob": { - "scenarioName": "qg", - "id": "wyyygyvuotwwia", - "name": "fjqocrrirdqxxyujizyprvvqxnb", - "displayName": "mgjkzbtjigetnqy", - "state": "rxavfzodqzaoropvqxmchck", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "aknwtw", + "id": "cacudatqwcubevm", + "name": "oefaigdzgvacdsjnceoapdjaij", + "displayName": "uwrnhrmfbpwraat", + "state": "gdyglhw", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "lastTestFailoverJob": { - "scenarioName": "ydqfagbmfdwnkotjvhht", - "id": "mortsmzwdedfzrlri", - "name": "wbghfohlgskdhevmxzcwtbplfuphxp", - "displayName": "haszbpzqnuvpkeexuultdh", - "state": "xfmjarvsimxqagakaognccenj", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "ykyequkgzgb", + "id": "mfspzgpueawary", + "name": "hjysgzkfigfp", + "displayName": "mfcmhindfznpees", + "state": "flzlkmimylodonvntbidsfthid", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "replicationHealth": "Normal", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "wxwqypliymbvcombkhwekdzdfqnrb" + "instanceType": "ProtectedItemModelCustomProperties" } }, - "id": "zjiwvchoqwqkkitqqggmwltcj", - "name": "kstkrayqxybbmagw", - "type": "tyjkiivxnndpwqoodtyzqtg", + "id": "ocjekervkcluyvsbgtph", + "name": "plxev", + "type": "dkewgqjjofrfbjrqvrygjvinttfrae", "systemData": { - "createdBy": "fuimettztqlochcrgdecx", - "createdByType": "rvwlvzhhfmziy", - "createdAt": "2023-07-25T21:05:32.074Z", - "lastModifiedBy": "snwttpckohmitadxdlcfmjhvzjmdh", - "lastModifiedByType": "rtwpnadsop", - "lastModifiedAt": "2023-07-25T21:05:32.074Z" + "createdBy": "qjejzz", + "createdByType": "osqwubo", + "createdAt": "2023-07-26T04:32:10.699Z", + "lastModifiedBy": "kpky", + "lastModifiedByType": "wpfsftqebdtqosoadts", + "lastModifiedAt": "2023-07-26T04:32:10.699Z" }, "tags": { - "key3470": "suqaow" + "key4295": "uqmnjhggs" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json index 848f277d2f1d..620c12926c03 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json @@ -2,10 +2,10 @@ "title": "Deletes the protected item.", "operationId": "ProtectedItem_Delete", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "Gk84c", - "protectedItemName": "lf", + "vaultName": "p", + "protectedItemName": "G3Bxc", "forceDelete": true, "api-version": "2021-02-16-preview" }, diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json index 2334c382bca4..deb79ac53a42 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json @@ -2,128 +2,128 @@ "title": "Gets the protected item.", "operationId": "ProtectedItem_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "8C", - "protectedItemName": "SD4", + "vaultName": "cJRT", + "protectedItemName": "C8TiPfJ", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { "properties": { - "policyName": "zpdyqrcfqbflupnfcoov", - "replicationExtensionName": "glhlsarsbfvomqflpgxqnqqr", - "correlationId": "hfzloprgttrkttzkfihpyxdzdlfay", + "policyName": "sgxncsesajon", + "replicationExtensionName": "vpc", + "correlationId": "tjxubphagtxvopmkkxsrcail", "provisioningState": "Canceled", "protectionState": "UnprotectedStatesBegin", - "protectionStateDescription": "n", + "protectionStateDescription": "q", "testFailoverState": "None", - "testFailoverStateDescription": "bubqnxmh", + "testFailoverStateDescription": "btsazlqowahtbcigjm", "resynchronizationState": "None", - "fabricObjectId": "hv", - "fabricObjectName": "lqm", - "sourceFabricProviderId": "lp", - "targetFabricProviderId": "anfxjqtunc", - "fabricId": "ip", - "targetFabricId": "ewt", - "draId": "jgwzuaqji", - "targetDraId": "sv", + "fabricObjectId": "lrxgas", + "fabricObjectName": "lfjkbjywinwfsmt", + "sourceFabricProviderId": "xplqjevidar", + "targetFabricProviderId": "pfqfytwspbcq", + "fabricId": "ghfpgijrekipfpuc", + "targetFabricId": "iejrlgpgtvumdysuokz", + "draId": "plwccvutrkasiq", + "targetDraId": "kfvnbpxeuodfhhvmmlkloxgv", "resyncRequired": true, - "lastSuccessfulPlannedFailoverTime": "2023-07-25T21:05:32.074Z", - "lastSuccessfulUnplannedFailoverTime": "2023-07-25T21:05:32.074Z", - "lastSuccessfulTestFailoverTime": "2023-07-25T21:05:32.074Z", + "lastSuccessfulPlannedFailoverTime": "2023-07-26T04:32:10.699Z", + "lastSuccessfulUnplannedFailoverTime": "2023-07-26T04:32:10.699Z", + "lastSuccessfulTestFailoverTime": "2023-07-26T04:32:10.699Z", "currentJob": { - "scenarioName": "wxuhylnhmlrp", - "id": "yeyyjnhrdpvgmg", - "name": "blszmtqqqvywgpngdbl", - "displayName": "pyynbpmxaqruxgvl", - "state": "aihrepmnnsmtfshneh", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "sqhzavonxvrv", + "id": "kzwh", + "name": "ulwohmkldvggnuqjjc", + "displayName": "xsyleqecj", + "state": "z", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "allowedJobs": [ - "eoqighzgsomlrjzmvgh" + "yxfyvnqqjnjsehokpyprrjwtpvoy" ], "lastFailedEnableProtectionJob": { - "scenarioName": "me", - "id": "ttzjnqpkiywdjcim", - "name": "q", - "displayName": "hlvesvvxmsdukhdimomaubcewrryr", - "state": "ssxzcreyfxdxkozjwnpbyjlrvqkg", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "wlfquvltzmsuvicsxz", + "id": "myvaphlzsolgldz", + "name": "gicgfarlyxks", + "displayName": "vn", + "state": "ix", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "lastFailedPlannedFailoverJob": { - "scenarioName": "qg", - "id": "wyyygyvuotwwia", - "name": "fjqocrrirdqxxyujizyprvvqxnb", - "displayName": "mgjkzbtjigetnqy", - "state": "rxavfzodqzaoropvqxmchck", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "aknwtw", + "id": "cacudatqwcubevm", + "name": "oefaigdzgvacdsjnceoapdjaij", + "displayName": "uwrnhrmfbpwraat", + "state": "gdyglhw", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "lastTestFailoverJob": { - "scenarioName": "ydqfagbmfdwnkotjvhht", - "id": "mortsmzwdedfzrlri", - "name": "wbghfohlgskdhevmxzcwtbplfuphxp", - "displayName": "haszbpzqnuvpkeexuultdh", - "state": "xfmjarvsimxqagakaognccenj", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "ykyequkgzgb", + "id": "mfspzgpueawary", + "name": "hjysgzkfigfp", + "displayName": "mfcmhindfznpees", + "state": "flzlkmimylodonvntbidsfthid", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "replicationHealth": "Normal", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "wxwqypliymbvcombkhwekdzdfqnrb" + "instanceType": "ProtectedItemModelCustomProperties" } }, - "id": "zjiwvchoqwqkkitqqggmwltcj", - "name": "kstkrayqxybbmagw", - "type": "tyjkiivxnndpwqoodtyzqtg", + "id": "ocjekervkcluyvsbgtph", + "name": "plxev", + "type": "dkewgqjjofrfbjrqvrygjvinttfrae", "systemData": { - "createdBy": "fuimettztqlochcrgdecx", - "createdByType": "rvwlvzhhfmziy", - "createdAt": "2023-07-25T21:05:32.074Z", - "lastModifiedBy": "snwttpckohmitadxdlcfmjhvzjmdh", - "lastModifiedByType": "rtwpnadsop", - "lastModifiedAt": "2023-07-25T21:05:32.074Z" + "createdBy": "qjejzz", + "createdByType": "osqwubo", + "createdAt": "2023-07-26T04:32:10.699Z", + "lastModifiedBy": "kpky", + "lastModifiedByType": "wpfsftqebdtqosoadts", + "lastModifiedAt": "2023-07-26T04:32:10.699Z" }, "tags": { - "key3470": "suqaow" + "key4295": "uqmnjhggs" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json index 3361a780a248..b09c7d4f1b82 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json @@ -2,9 +2,9 @@ "title": "Lists the protected items.", "operationId": "ProtectedItem_List", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "35I7I4R", + "vaultName": "7BjN1", "api-version": "2021-02-16-preview" }, "responses": { @@ -13,122 +13,122 @@ "value": [ { "properties": { - "policyName": "zpdyqrcfqbflupnfcoov", - "replicationExtensionName": "glhlsarsbfvomqflpgxqnqqr", - "correlationId": "hfzloprgttrkttzkfihpyxdzdlfay", + "policyName": "sgxncsesajon", + "replicationExtensionName": "vpc", + "correlationId": "tjxubphagtxvopmkkxsrcail", "provisioningState": "Canceled", "protectionState": "UnprotectedStatesBegin", - "protectionStateDescription": "n", + "protectionStateDescription": "q", "testFailoverState": "None", - "testFailoverStateDescription": "bubqnxmh", + "testFailoverStateDescription": "btsazlqowahtbcigjm", "resynchronizationState": "None", - "fabricObjectId": "hv", - "fabricObjectName": "lqm", - "sourceFabricProviderId": "lp", - "targetFabricProviderId": "anfxjqtunc", - "fabricId": "ip", - "targetFabricId": "ewt", - "draId": "jgwzuaqji", - "targetDraId": "sv", + "fabricObjectId": "lrxgas", + "fabricObjectName": "lfjkbjywinwfsmt", + "sourceFabricProviderId": "xplqjevidar", + "targetFabricProviderId": "pfqfytwspbcq", + "fabricId": "ghfpgijrekipfpuc", + "targetFabricId": "iejrlgpgtvumdysuokz", + "draId": "plwccvutrkasiq", + "targetDraId": "kfvnbpxeuodfhhvmmlkloxgv", "resyncRequired": true, - "lastSuccessfulPlannedFailoverTime": "2023-07-25T21:05:32.074Z", - "lastSuccessfulUnplannedFailoverTime": "2023-07-25T21:05:32.074Z", - "lastSuccessfulTestFailoverTime": "2023-07-25T21:05:32.074Z", + "lastSuccessfulPlannedFailoverTime": "2023-07-26T04:32:10.699Z", + "lastSuccessfulUnplannedFailoverTime": "2023-07-26T04:32:10.699Z", + "lastSuccessfulTestFailoverTime": "2023-07-26T04:32:10.699Z", "currentJob": { - "scenarioName": "wxuhylnhmlrp", - "id": "yeyyjnhrdpvgmg", - "name": "blszmtqqqvywgpngdbl", - "displayName": "pyynbpmxaqruxgvl", - "state": "aihrepmnnsmtfshneh", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "sqhzavonxvrv", + "id": "kzwh", + "name": "ulwohmkldvggnuqjjc", + "displayName": "xsyleqecj", + "state": "z", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "allowedJobs": [ - "eoqighzgsomlrjzmvgh" + "yxfyvnqqjnjsehokpyprrjwtpvoy" ], "lastFailedEnableProtectionJob": { - "scenarioName": "me", - "id": "ttzjnqpkiywdjcim", - "name": "q", - "displayName": "hlvesvvxmsdukhdimomaubcewrryr", - "state": "ssxzcreyfxdxkozjwnpbyjlrvqkg", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "wlfquvltzmsuvicsxz", + "id": "myvaphlzsolgldz", + "name": "gicgfarlyxks", + "displayName": "vn", + "state": "ix", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "lastFailedPlannedFailoverJob": { - "scenarioName": "qg", - "id": "wyyygyvuotwwia", - "name": "fjqocrrirdqxxyujizyprvvqxnb", - "displayName": "mgjkzbtjigetnqy", - "state": "rxavfzodqzaoropvqxmchck", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "aknwtw", + "id": "cacudatqwcubevm", + "name": "oefaigdzgvacdsjnceoapdjaij", + "displayName": "uwrnhrmfbpwraat", + "state": "gdyglhw", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "lastTestFailoverJob": { - "scenarioName": "ydqfagbmfdwnkotjvhht", - "id": "mortsmzwdedfzrlri", - "name": "wbghfohlgskdhevmxzcwtbplfuphxp", - "displayName": "haszbpzqnuvpkeexuultdh", - "state": "xfmjarvsimxqagakaognccenj", - "startTime": "2023-07-25T21:05:32.074Z", - "endTime": "2023-07-25T21:05:32.074Z" + "scenarioName": "ykyequkgzgb", + "id": "mfspzgpueawary", + "name": "hjysgzkfigfp", + "displayName": "mfcmhindfznpees", + "state": "flzlkmimylodonvntbidsfthid", + "startTime": "2023-07-26T04:32:10.699Z", + "endTime": "2023-07-26T04:32:10.699Z" }, "replicationHealth": "Normal", "healthErrors": [ { - "affectedResourceType": "zknoz", + "affectedResourceType": "scl", "affectedResourceCorrelationIds": [ - "yuxzyymanvtjmebiwd" + "suuuksmcktnxbpjywtkxj" ], "childErrors": [ { - "code": "fmldj", - "healthCategory": "rkapzmqeav", - "category": "bowuv", - "severity": "obywcgvmbqawschaaylnlrgofsmn", - "source": "ofqouiupakzvrwgygpvcnbsadj", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "ihcnououhlwaebhspvcdnjmac", + "healthCategory": "s", + "category": "xdntalnemzkpfxwgwwcwmlo", + "severity": "qzthnuuqmqhjuwcg", + "source": "wxntxvg", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "sxoyvhcxkwgykftqfcswhaobmqq", - "message": "eljftexyqffnlfpxvdcvpuequhzsf", - "causes": "kffjbffgsajkobmldhganvmqpdxcoa", - "recommendation": "pftabvw" + "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", + "message": "egvpexikcoeupndafkhvvnke", + "causes": "vhhcrzefquivxrplrfyeyr", + "recommendation": "fmpvbeldyd" } ], - "code": "amdqhdrqsctrqetpszqvs", - "healthCategory": "ozrreultvoesoc", - "category": "wx", - "severity": "q", - "source": "wcl", - "creationTime": "2023-07-25T21:05:28.873Z", + "code": "kycicesglsgolsvt", + "healthCategory": "aonpppqnslmdbrjdiqtemqemw", + "category": "btxndsmwktytkkawzk", + "severity": "qmjndhxeqtjpavz", + "source": "slduvicpgjyasvine", + "creationTime": "2023-07-26T04:32:07.452Z", "isCustomerResolvable": true, - "summary": "fsuqmxspsouylpwkd", - "message": "zdgjnokbybdvahcgyl", - "causes": "obcgxrezj", - "recommendation": "tecojkzqbqiswotzz" + "summary": "ndpli", + "message": "ghceiapqtyyfystxuuwbykowtxt", + "causes": "ajsyt", + "recommendation": "zjlmfqtbphnrsontgzmpftlsily" } ], "customProperties": { - "instanceType": "wxwqypliymbvcombkhwekdzdfqnrb" + "instanceType": "ProtectedItemModelCustomProperties" } }, - "id": "zjiwvchoqwqkkitqqggmwltcj", - "name": "kstkrayqxybbmagw", - "type": "tyjkiivxnndpwqoodtyzqtg", + "id": "ocjekervkcluyvsbgtph", + "name": "plxev", + "type": "dkewgqjjofrfbjrqvrygjvinttfrae", "systemData": { - "createdBy": "fuimettztqlochcrgdecx", - "createdByType": "rvwlvzhhfmziy", - "createdAt": "2023-07-25T21:05:32.074Z", - "lastModifiedBy": "snwttpckohmitadxdlcfmjhvzjmdh", - "lastModifiedByType": "rtwpnadsop", - "lastModifiedAt": "2023-07-25T21:05:32.074Z" + "createdBy": "qjejzz", + "createdByType": "osqwubo", + "createdAt": "2023-07-26T04:32:10.699Z", + "lastModifiedBy": "kpky", + "lastModifiedByType": "wpfsftqebdtqosoadts", + "lastModifiedAt": "2023-07-26T04:32:10.699Z" }, "tags": { - "key3470": "suqaow" + "key4295": "uqmnjhggs" } } ], - "nextLink": "vinjxkxcdyzdkslgdwahpcq" + "nextLink": "tydg" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json index 6e42eb78e8f3..63adce398b2b 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json @@ -2,15 +2,15 @@ "title": "Performs planned failover.", "operationId": "ProtectedItem_PlannedFailover", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "2dR", - "protectedItemName": "UOWoZ", + "vaultName": "PRVt", + "protectedItemName": "K", "api-version": "2021-02-16-preview", "body": { "properties": { "customProperties": { - "instanceType": "scgwaqqnohaxvsckpiihlbbbjdn" + "instanceType": "PlannedFailoverModelCustomProperties" } } } @@ -20,7 +20,7 @@ "body": { "properties": { "customProperties": { - "instanceType": "scgwaqqnohaxvsckpiihlbbbjdn" + "instanceType": "PlannedFailoverModelCustomProperties" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json index 2a834ee7edfe..beb455467c7f 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json @@ -2,36 +2,36 @@ "title": "Gets the recovery point.", "operationId": "RecoveryPoints_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "U", - "protectedItemName": "QUPC", - "recoveryPointName": "Se", + "vaultName": "7nHV", + "protectedItemName": "fK", + "recoveryPointName": "m1O", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { "properties": { - "recoveryPointTime": "2023-07-25T21:05:32.969Z", + "recoveryPointTime": "2023-07-26T04:32:11.594Z", "recoveryPointType": "ApplicationConsistent", "customProperties": { - "instanceType": "z" + "instanceType": "RecoveryPointModelCustomProperties" } }, - "id": "wr", - "name": "sncjm", - "type": "jxaaxlzwqpcvtqhngvduulgqojizbf", + "id": "xbsljvumvjutuz", + "name": "psctevbcfcdwbxioxkdnwriw", + "type": "zxaqwdkjmstfhmtsoifhtt", "systemData": { - "createdBy": "itqfchnegmsgxqeay", - "createdByType": "unphsegufgqne", - "createdAt": "2023-07-25T21:05:32.969Z", - "lastModifiedBy": "vqmce", - "lastModifiedByType": "ayltd", - "lastModifiedAt": "2023-07-25T21:05:32.969Z" + "createdBy": "pxycxedbfyrxukcnxbeadmak", + "createdByType": "ajqhoxlocziqqyhvhjoz", + "createdAt": "2023-07-26T04:32:11.594Z", + "lastModifiedBy": "pzqmyimexbppjdivztdrf", + "lastModifiedByType": "eyf", + "lastModifiedAt": "2023-07-26T04:32:11.594Z" }, "tags": { - "key755": "vbausuyhessg" + "key7962": "crudy" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json index 6b6e0d345813..6b119de8ae45 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json @@ -2,10 +2,10 @@ "title": "Lists the recovery points.", "operationId": "RecoveryPoints_List", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "rMY", - "protectedItemName": "EbV", + "vaultName": "L", + "protectedItemName": "t", "api-version": "2021-02-16-preview" }, "responses": { @@ -14,29 +14,29 @@ "value": [ { "properties": { - "recoveryPointTime": "2023-07-25T21:05:32.969Z", + "recoveryPointTime": "2023-07-26T04:32:11.594Z", "recoveryPointType": "ApplicationConsistent", "customProperties": { - "instanceType": "z" + "instanceType": "RecoveryPointModelCustomProperties" } }, - "id": "wr", - "name": "sncjm", - "type": "jxaaxlzwqpcvtqhngvduulgqojizbf", + "id": "xbsljvumvjutuz", + "name": "psctevbcfcdwbxioxkdnwriw", + "type": "zxaqwdkjmstfhmtsoifhtt", "systemData": { - "createdBy": "itqfchnegmsgxqeay", - "createdByType": "unphsegufgqne", - "createdAt": "2023-07-25T21:05:32.969Z", - "lastModifiedBy": "vqmce", - "lastModifiedByType": "ayltd", - "lastModifiedAt": "2023-07-25T21:05:32.969Z" + "createdBy": "pxycxedbfyrxukcnxbeadmak", + "createdByType": "ajqhoxlocziqqyhvhjoz", + "createdAt": "2023-07-26T04:32:11.594Z", + "lastModifiedBy": "pzqmyimexbppjdivztdrf", + "lastModifiedByType": "eyf", + "lastModifiedAt": "2023-07-26T04:32:11.594Z" }, "tags": { - "key755": "vbausuyhessg" + "key7962": "crudy" } } ], - "nextLink": "mdznysprp" + "nextLink": "kpptlihghunzhzpkqqexkebkdix" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json index da69fd34c56f..359c0c9c6cef 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json @@ -2,21 +2,21 @@ "title": "Gets the replication extension operation status.", "operationId": "ReplicationExtensionOperationStatus_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "n8X", - "replicationExtensionName": "7", - "operationId": "llcgbgozqanaiokilhpnfjphftxmg", + "vaultName": "DFr", + "replicationExtensionName": "LV", + "operationId": "g", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "zcuybohcphhgdgfqjiwxlm", - "name": "kjxroclkbeevmcgscli", - "status": "pgcbsyi", - "startTime": "kyeooklagbdaee", - "endTime": "tumaya" + "id": "fh", + "name": "llbceylzpfwmnwunyyiyt", + "status": "tuiziokffdfr", + "startTime": "idpuxubqqdwzo", + "endTime": "zgiqrzfvsgatjmdkzoktumvnge" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json index 395c81971e69..65347b66854f 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json @@ -2,19 +2,19 @@ "title": "Puts the replication extension.", "operationId": "ReplicationExtension_Create", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "bbAYm", - "replicationExtensionName": "4G5", + "vaultName": "DHTw4i", + "replicationExtensionName": "y4f23", "api-version": "2021-02-16-preview", "body": { "properties": { "customProperties": { - "instanceType": "qijdsschdbrgekdeddoabcfcvqinwd" + "instanceType": "ReplicationExtensionModelCustomProperties" } }, "tags": { - "key2074": "spcoaabosorx" + "key4223": "binha" } } }, @@ -24,22 +24,22 @@ "properties": { "provisioningState": "Canceled", "customProperties": { - "instanceType": "qijdsschdbrgekdeddoabcfcvqinwd" + "instanceType": "ReplicationExtensionModelCustomProperties" } }, - "id": "mcohqfpvhudsjghvkbespt", - "name": "kjdkwgcfuavrfswgivkpkr", - "type": "lpfmrnsuav", + "id": "imhavbkjsftwsausjlaksdowiwwac", + "name": "mdyzsrhsmhyjq", + "type": "scxrabylhsjbzsptbopmahhesfvbr", "systemData": { - "createdBy": "lppkryag", - "createdByType": "swapxfrczqzpmxsr", - "createdAt": "2023-07-25T21:05:33.259Z", - "lastModifiedBy": "aqb", - "lastModifiedByType": "paim", - "lastModifiedAt": "2023-07-25T21:05:33.259Z" + "createdBy": "giebfpdmloxwpf", + "createdByType": "n", + "createdAt": "2023-07-26T04:32:11.891Z", + "lastModifiedBy": "qiuvpcngcedqaaw", + "lastModifiedByType": "pwrtzqlmtydsluijjgyl", + "lastModifiedAt": "2023-07-26T04:32:11.891Z" }, "tags": { - "key2074": "spcoaabosorx" + "key4223": "binha" } } }, @@ -51,22 +51,22 @@ "properties": { "provisioningState": "Canceled", "customProperties": { - "instanceType": "qijdsschdbrgekdeddoabcfcvqinwd" + "instanceType": "ReplicationExtensionModelCustomProperties" } }, - "id": "mcohqfpvhudsjghvkbespt", - "name": "kjdkwgcfuavrfswgivkpkr", - "type": "lpfmrnsuav", + "id": "imhavbkjsftwsausjlaksdowiwwac", + "name": "mdyzsrhsmhyjq", + "type": "scxrabylhsjbzsptbopmahhesfvbr", "systemData": { - "createdBy": "lppkryag", - "createdByType": "swapxfrczqzpmxsr", - "createdAt": "2023-07-25T21:05:33.259Z", - "lastModifiedBy": "aqb", - "lastModifiedByType": "paim", - "lastModifiedAt": "2023-07-25T21:05:33.259Z" + "createdBy": "giebfpdmloxwpf", + "createdByType": "n", + "createdAt": "2023-07-26T04:32:11.891Z", + "lastModifiedBy": "qiuvpcngcedqaaw", + "lastModifiedByType": "pwrtzqlmtydsluijjgyl", + "lastModifiedAt": "2023-07-26T04:32:11.891Z" }, "tags": { - "key2074": "spcoaabosorx" + "key4223": "binha" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json index cb73a9783b11..6e38c389f8cd 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json @@ -2,10 +2,10 @@ "title": "Deletes the replication extension.", "operationId": "ReplicationExtension_Delete", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "4TTHN", - "replicationExtensionName": "OLQ", + "vaultName": "Ras", + "replicationExtensionName": "edHtri", "api-version": "2021-02-16-preview" }, "responses": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json index ee17550b1dab..0deb4d2f605f 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json @@ -2,10 +2,10 @@ "title": "Gets the replication extension.", "operationId": "ReplicationExtension_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "W87", - "replicationExtensionName": "XP", + "vaultName": "N", + "replicationExtensionName": "3", "api-version": "2021-02-16-preview" }, "responses": { @@ -14,22 +14,22 @@ "properties": { "provisioningState": "Canceled", "customProperties": { - "instanceType": "qijdsschdbrgekdeddoabcfcvqinwd" + "instanceType": "ReplicationExtensionModelCustomProperties" } }, - "id": "mcohqfpvhudsjghvkbespt", - "name": "kjdkwgcfuavrfswgivkpkr", - "type": "lpfmrnsuav", + "id": "imhavbkjsftwsausjlaksdowiwwac", + "name": "mdyzsrhsmhyjq", + "type": "scxrabylhsjbzsptbopmahhesfvbr", "systemData": { - "createdBy": "lppkryag", - "createdByType": "swapxfrczqzpmxsr", - "createdAt": "2023-07-25T21:05:33.259Z", - "lastModifiedBy": "aqb", - "lastModifiedByType": "paim", - "lastModifiedAt": "2023-07-25T21:05:33.259Z" + "createdBy": "giebfpdmloxwpf", + "createdByType": "n", + "createdAt": "2023-07-26T04:32:11.891Z", + "lastModifiedBy": "qiuvpcngcedqaaw", + "lastModifiedByType": "pwrtzqlmtydsluijjgyl", + "lastModifiedAt": "2023-07-26T04:32:11.891Z" }, "tags": { - "key2074": "spcoaabosorx" + "key4223": "binha" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json index f5e33af75f4f..151c39751a28 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json @@ -2,9 +2,9 @@ "title": "Lists the replication extensions.", "operationId": "ReplicationExtension_List", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "L2Zn", + "vaultName": "regerg", "api-version": "2021-02-16-preview" }, "responses": { @@ -15,26 +15,26 @@ "properties": { "provisioningState": "Canceled", "customProperties": { - "instanceType": "qijdsschdbrgekdeddoabcfcvqinwd" + "instanceType": "ReplicationExtensionModelCustomProperties" } }, - "id": "mcohqfpvhudsjghvkbespt", - "name": "kjdkwgcfuavrfswgivkpkr", - "type": "lpfmrnsuav", + "id": "imhavbkjsftwsausjlaksdowiwwac", + "name": "mdyzsrhsmhyjq", + "type": "scxrabylhsjbzsptbopmahhesfvbr", "systemData": { - "createdBy": "lppkryag", - "createdByType": "swapxfrczqzpmxsr", - "createdAt": "2023-07-25T21:05:33.259Z", - "lastModifiedBy": "aqb", - "lastModifiedByType": "paim", - "lastModifiedAt": "2023-07-25T21:05:33.259Z" + "createdBy": "giebfpdmloxwpf", + "createdByType": "n", + "createdAt": "2023-07-26T04:32:11.891Z", + "lastModifiedBy": "qiuvpcngcedqaaw", + "lastModifiedByType": "pwrtzqlmtydsluijjgyl", + "lastModifiedAt": "2023-07-26T04:32:11.891Z" }, "tags": { - "key2074": "spcoaabosorx" + "key4223": "binha" } } ], - "nextLink": "cumlgj" + "nextLink": "pbhzuytshsr" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json index d4fda48db0ee..298fd860f2da 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json @@ -2,20 +2,20 @@ "title": "Gets the vault operation status.", "operationId": "VaultOperationStatus_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "IJu", - "operationId": "fdyseyzxgr", + "vaultName": "WU", + "operationId": "hlgocyhwscx", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "zcuybohcphhgdgfqjiwxlm", - "name": "kjxroclkbeevmcgscli", - "status": "pgcbsyi", - "startTime": "kyeooklagbdaee", - "endTime": "tumaya" + "id": "fh", + "name": "llbceylzpfwmnwunyyiyt", + "status": "tuiziokffdfr", + "startTime": "idpuxubqqdwzo", + "endTime": "zgiqrzfvsgatjmdkzoktumvnge" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json index 30c329063a8c..ed70e2f312c6 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json @@ -2,42 +2,42 @@ "title": "Puts the vault.", "operationId": "Vault_Create", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "KR", + "vaultName": "5Mh", "api-version": "2021-02-16-preview", "body": { - "location": "oimyeslkpxriwgxazxxq", + "location": "gabkaxdnzsghooejvnpvhdsonzj", "properties": { "vaultType": "DisasterRecovery" }, "tags": { - "key8037": "t" + "key8258": "htodycwxeg" } } }, "responses": { "200": { "body": { - "location": "oimyeslkpxriwgxazxxq", + "location": "gabkaxdnzsghooejvnpvhdsonzj", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "oatasztyczvhgifyvvolbyvqg", + "serviceResourceId": "gkposk", "vaultType": "DisasterRecovery" }, - "id": "rmotcdqhiogvszvctymyltfte", - "name": "mhqnduqvhucwkwqcarakcca", - "type": "brtcjulrhejroneysoint", + "id": "jikhuieptl", + "name": "azbulb", + "type": "drddfpr", "systemData": { - "createdBy": "mpvmofukxomrqmekuzvxmmjdrdiebt", - "createdByType": "lbcbpi", - "createdAt": "2023-07-25T21:05:34.513Z", - "lastModifiedBy": "w", - "lastModifiedByType": "tfgtvyysiuzqbvebesrpaas", - "lastModifiedAt": "2023-07-25T21:05:34.513Z" + "createdBy": "ysrtx", + "createdByType": "axhcnhxrmaewrgbqqt", + "createdAt": "2023-07-26T04:32:13.162Z", + "lastModifiedBy": "xzmrneulnwsgkew", + "lastModifiedByType": "xdiyqsszzlk", + "lastModifiedAt": "2023-07-26T04:32:13.162Z" }, "tags": { - "key8037": "t" + "key8258": "htodycwxeg" } } }, @@ -46,25 +46,25 @@ "location": "https://contoso.com/operationstatus" }, "body": { - "location": "oimyeslkpxriwgxazxxq", + "location": "gabkaxdnzsghooejvnpvhdsonzj", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "oatasztyczvhgifyvvolbyvqg", + "serviceResourceId": "gkposk", "vaultType": "DisasterRecovery" }, - "id": "rmotcdqhiogvszvctymyltfte", - "name": "mhqnduqvhucwkwqcarakcca", - "type": "brtcjulrhejroneysoint", + "id": "jikhuieptl", + "name": "azbulb", + "type": "drddfpr", "systemData": { - "createdBy": "mpvmofukxomrqmekuzvxmmjdrdiebt", - "createdByType": "lbcbpi", - "createdAt": "2023-07-25T21:05:34.513Z", - "lastModifiedBy": "w", - "lastModifiedByType": "tfgtvyysiuzqbvebesrpaas", - "lastModifiedAt": "2023-07-25T21:05:34.513Z" + "createdBy": "ysrtx", + "createdByType": "axhcnhxrmaewrgbqqt", + "createdAt": "2023-07-26T04:32:13.162Z", + "lastModifiedBy": "xzmrneulnwsgkew", + "lastModifiedByType": "xdiyqsszzlk", + "lastModifiedAt": "2023-07-26T04:32:13.162Z" }, "tags": { - "key8037": "t" + "key8258": "htodycwxeg" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json index 07486d9b6b30..4e5a91c98a14 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json @@ -2,9 +2,9 @@ "title": "Deletes the vault.", "operationId": "Vault_Delete", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "6", + "vaultName": "6X8", "api-version": "2021-02-16-preview" }, "responses": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json index 7dfe8fff728f..31e86c2c0717 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json @@ -2,33 +2,33 @@ "title": "Gets the vault.", "operationId": "Vault_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "7WC3W", + "vaultName": "Yp", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "location": "oimyeslkpxriwgxazxxq", + "location": "gabkaxdnzsghooejvnpvhdsonzj", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "oatasztyczvhgifyvvolbyvqg", + "serviceResourceId": "gkposk", "vaultType": "DisasterRecovery" }, - "id": "rmotcdqhiogvszvctymyltfte", - "name": "mhqnduqvhucwkwqcarakcca", - "type": "brtcjulrhejroneysoint", + "id": "jikhuieptl", + "name": "azbulb", + "type": "drddfpr", "systemData": { - "createdBy": "mpvmofukxomrqmekuzvxmmjdrdiebt", - "createdByType": "lbcbpi", - "createdAt": "2023-07-25T21:05:34.513Z", - "lastModifiedBy": "w", - "lastModifiedByType": "tfgtvyysiuzqbvebesrpaas", - "lastModifiedAt": "2023-07-25T21:05:34.513Z" + "createdBy": "ysrtx", + "createdByType": "axhcnhxrmaewrgbqqt", + "createdAt": "2023-07-26T04:32:13.162Z", + "lastModifiedBy": "xzmrneulnwsgkew", + "lastModifiedByType": "xdiyqsszzlk", + "lastModifiedAt": "2023-07-26T04:32:13.162Z" }, "tags": { - "key8037": "t" + "key8258": "htodycwxeg" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json index feccffdc2b3a..c9c432c417ff 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json @@ -2,9 +2,9 @@ "title": "Lists the vaults.", "operationId": "Vault_List", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "continuationToken": "gjhvdjclpyissyadjqtorj", + "continuationToken": "fqhlwposrssxviubalpqsj", "api-version": "2021-02-16-preview" }, "responses": { @@ -12,29 +12,29 @@ "body": { "value": [ { - "location": "oimyeslkpxriwgxazxxq", + "location": "gabkaxdnzsghooejvnpvhdsonzj", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "oatasztyczvhgifyvvolbyvqg", + "serviceResourceId": "gkposk", "vaultType": "DisasterRecovery" }, - "id": "rmotcdqhiogvszvctymyltfte", - "name": "mhqnduqvhucwkwqcarakcca", - "type": "brtcjulrhejroneysoint", + "id": "jikhuieptl", + "name": "azbulb", + "type": "drddfpr", "systemData": { - "createdBy": "mpvmofukxomrqmekuzvxmmjdrdiebt", - "createdByType": "lbcbpi", - "createdAt": "2023-07-25T21:05:34.513Z", - "lastModifiedBy": "w", - "lastModifiedByType": "tfgtvyysiuzqbvebesrpaas", - "lastModifiedAt": "2023-07-25T21:05:34.513Z" + "createdBy": "ysrtx", + "createdByType": "axhcnhxrmaewrgbqqt", + "createdAt": "2023-07-26T04:32:13.162Z", + "lastModifiedBy": "xzmrneulnwsgkew", + "lastModifiedByType": "xdiyqsszzlk", + "lastModifiedAt": "2023-07-26T04:32:13.162Z" }, "tags": { - "key8037": "t" + "key8258": "htodycwxeg" } } ], - "nextLink": "fy" + "nextLink": "kd" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json index 26e3ed4cf459..a34629d1821e 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json @@ -2,8 +2,8 @@ "title": "Lists the vaults.", "operationId": "Vault_ListBySubscription", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", - "continuationToken": "zkpigwaculhda", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", + "continuationToken": "xotdqonaywnugu", "api-version": "2021-02-16-preview" }, "responses": { @@ -11,29 +11,29 @@ "body": { "value": [ { - "location": "oimyeslkpxriwgxazxxq", + "location": "gabkaxdnzsghooejvnpvhdsonzj", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "oatasztyczvhgifyvvolbyvqg", + "serviceResourceId": "gkposk", "vaultType": "DisasterRecovery" }, - "id": "rmotcdqhiogvszvctymyltfte", - "name": "mhqnduqvhucwkwqcarakcca", - "type": "brtcjulrhejroneysoint", + "id": "jikhuieptl", + "name": "azbulb", + "type": "drddfpr", "systemData": { - "createdBy": "mpvmofukxomrqmekuzvxmmjdrdiebt", - "createdByType": "lbcbpi", - "createdAt": "2023-07-25T21:05:34.513Z", - "lastModifiedBy": "w", - "lastModifiedByType": "tfgtvyysiuzqbvebesrpaas", - "lastModifiedAt": "2023-07-25T21:05:34.513Z" + "createdBy": "ysrtx", + "createdByType": "axhcnhxrmaewrgbqqt", + "createdAt": "2023-07-26T04:32:13.162Z", + "lastModifiedBy": "xzmrneulnwsgkew", + "lastModifiedByType": "xdiyqsszzlk", + "lastModifiedAt": "2023-07-26T04:32:13.162Z" }, "tags": { - "key8037": "t" + "key8258": "htodycwxeg" } } ], - "nextLink": "fy" + "nextLink": "kd" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json index 2d14dfbe8b40..be470ad3414f 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json @@ -2,41 +2,41 @@ "title": "Updates the vault.", "operationId": "Vault_Update", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "b4GQL", + "vaultName": "P4WC", "api-version": "2021-02-16-preview", "body": { "properties": { "vaultType": "DisasterRecovery" }, "tags": { - "key665": "dh" + "key1230": "yscomshqercxttuicl" } } }, "responses": { "200": { "body": { - "location": "oimyeslkpxriwgxazxxq", + "location": "gabkaxdnzsghooejvnpvhdsonzj", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "oatasztyczvhgifyvvolbyvqg", + "serviceResourceId": "gkposk", "vaultType": "DisasterRecovery" }, - "id": "rmotcdqhiogvszvctymyltfte", - "name": "mhqnduqvhucwkwqcarakcca", - "type": "brtcjulrhejroneysoint", + "id": "jikhuieptl", + "name": "azbulb", + "type": "drddfpr", "systemData": { - "createdBy": "mpvmofukxomrqmekuzvxmmjdrdiebt", - "createdByType": "lbcbpi", - "createdAt": "2023-07-25T21:05:34.513Z", - "lastModifiedBy": "w", - "lastModifiedByType": "tfgtvyysiuzqbvebesrpaas", - "lastModifiedAt": "2023-07-25T21:05:34.513Z" + "createdBy": "ysrtx", + "createdByType": "axhcnhxrmaewrgbqqt", + "createdAt": "2023-07-26T04:32:13.162Z", + "lastModifiedBy": "xzmrneulnwsgkew", + "lastModifiedByType": "xdiyqsszzlk", + "lastModifiedAt": "2023-07-26T04:32:13.162Z" }, "tags": { - "key8037": "t" + "key8258": "htodycwxeg" } } }, diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json index 140f54dfd5fa..edde8a5f9929 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json @@ -2,21 +2,21 @@ "title": "Gets the workflow operation status.", "operationId": "WorkflowOperationStatus_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "V8b", - "workflowName": "9LZU", - "operationId": "lrkkxaqmutmhgmyx", + "vaultName": "Vn", + "workflowName": "2tL", + "operationId": "nzdxyjlssvwtyzdvib", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "zcuybohcphhgdgfqjiwxlm", - "name": "kjxroclkbeevmcgscli", - "status": "pgcbsyi", - "startTime": "kyeooklagbdaee", - "endTime": "tumaya" + "id": "fh", + "name": "llbceylzpfwmnwunyyiyt", + "status": "tuiziokffdfr", + "startTime": "idpuxubqqdwzo", + "endTime": "zgiqrzfvsgatjmdkzoktumvnge" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json index 1278589d9573..547f40eb13f6 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json @@ -2,75 +2,75 @@ "title": "Gets the workflow.", "operationId": "Workflow_Get", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "zxasda", - "workflowName": "gwedsvs", + "vaultName": "4GC", + "workflowName": "AF", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { "properties": { - "displayName": "sruvbluvpztaisrermotfqb", + "displayName": "zjztmllyyjcmwehdatjjlqqxcceroo", "state": "Pending", - "startTime": "2023-07-25T21:05:35.689Z", - "endTime": "2023-07-25T21:05:35.689Z", - "objectId": "jxjmhuq", - "objectName": "nmabrwusadfmqiniicupdjute", - "objectInternalId": "uegdumzdecmbgsipyuky", - "objectInternalName": "goo", + "startTime": "2023-07-26T04:32:14.264Z", + "endTime": "2023-07-26T04:32:14.264Z", + "objectId": "jwf", + "objectName": "rkrcruhxardvwyvcjazekxja", + "objectInternalId": "xakqplmyhhvneqg", + "objectInternalName": "vpaox", "objectType": "AvsDiskPool", - "replicationProviderId": "amdslnyc", - "sourceFabricProviderId": "ljmqaalvxmsovyfjiu", - "targetFabricProviderId": "ylbrzuwqwjpvrdudllqxeeyolx", + "replicationProviderId": "brudafscxssusuzhrvkrfunmpxtywf", + "sourceFabricProviderId": "l", + "targetFabricProviderId": "yjjntkc", "allowedActions": [ - "solnaulgojasioodmgldykszs" + "nqzmuj" ], - "activityId": "uedulfnlpguntfpryxi", + "activityId": "qjsvwxtvotwucqucfcb", "tasks": [ { - "taskName": "tmvf", + "taskName": "mvjsfppkkqvxsykartysepkpjps", "state": "Pending", - "startTime": "2023-07-25T21:05:35.689Z", - "endTime": "2023-07-25T21:05:35.689Z", + "startTime": "2023-07-26T04:32:14.265Z", + "endTime": "2023-07-26T04:32:14.265Z", "customProperties": { - "instanceType": "dqdsh" + "instanceType": "tklj" }, "childrenWorkflows": [] } ], "errors": [ { - "code": "csrbfcccyjzmanlgmpalienoki", - "type": "gfrrmmnfrxpbntdaenzzlw", - "severity": "gbbhdkvydq", - "creationTime": "2023-07-25T21:05:35.689Z", - "message": "swdcmpadrylzi", - "causes": "ngzlczhpjewgxl", - "recommendation": "tdecvvlzghkrj" + "code": "nslfjsjojkljcldnzlfhzbs", + "type": "lrkgcmyzrzwxzwdyucoghnblnkgqoe", + "severity": "oeyrqoxahsxhjmqk", + "creationTime": "2023-07-26T04:32:14.265Z", + "message": "xlqtdvgadguyyyfvnehhtokhmsy", + "causes": "tlkagyjmezxhfzy", + "recommendation": "yvxmdgyvcy" } ], "customProperties": { - "instanceType": "wzjlzrccysqirymwstrgf", + "instanceType": "WorkflowModelCustomProperties", "affectedObjectDetails": { - "key6778": "cfbtgj" + "key6534": "prappvfwq" } } }, - "id": "wihoj", - "name": "cstqdvznbjz", - "type": "vd", + "id": "nyrqapeztcru", + "name": "vyrbochibdgx", + "type": "mnhxegiqghpllpbfebhsdv", "systemData": { - "createdBy": "ygawudvedgqpoymik", - "createdByType": "fsmozbkecpdec", - "createdAt": "2023-07-25T21:05:35.689Z", - "lastModifiedBy": "qphxeebkhyajppoipozahpazxvdjdw", - "lastModifiedByType": "uqmlbnn", - "lastModifiedAt": "2023-07-25T21:05:35.689Z" + "createdBy": "gzlyuhvtqfmmx", + "createdByType": "fyelpv", + "createdAt": "2023-07-26T04:32:14.265Z", + "lastModifiedBy": "yhsyihwglqcfpff", + "lastModifiedByType": "uggcsnyfsruwqezjtufeuaqamifdrd", + "lastModifiedAt": "2023-07-26T04:32:14.265Z" }, "tags": { - "key6821": "jeyfslnnwenivgqmyiauber" + "key1759": "pquyqrlwracd" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json index 73430a06388b..c95799b92dbc 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json @@ -2,11 +2,11 @@ "title": "Lists the workflows.", "operationId": "Workflow_List", "parameters": { - "subscriptionId": "1A51DD2D-B07A-4427-83DE-188345FA695E", + "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", "resourceGroupName": "rgswagger", - "vaultName": "qa", - "$filter": "yslhfos", - "continuationToken": "reepeqlwhkyx", + "vaultName": "LH", + "$filter": "ufnozsna", + "continuationToken": "nrzxpawwdxypnnhgthaug", "api-version": "2021-02-16-preview" }, "responses": { @@ -15,69 +15,69 @@ "value": [ { "properties": { - "displayName": "sruvbluvpztaisrermotfqb", + "displayName": "zjztmllyyjcmwehdatjjlqqxcceroo", "state": "Pending", - "startTime": "2023-07-25T21:05:35.689Z", - "endTime": "2023-07-25T21:05:35.689Z", - "objectId": "jxjmhuq", - "objectName": "nmabrwusadfmqiniicupdjute", - "objectInternalId": "uegdumzdecmbgsipyuky", - "objectInternalName": "goo", + "startTime": "2023-07-26T04:32:14.264Z", + "endTime": "2023-07-26T04:32:14.264Z", + "objectId": "jwf", + "objectName": "rkrcruhxardvwyvcjazekxja", + "objectInternalId": "xakqplmyhhvneqg", + "objectInternalName": "vpaox", "objectType": "AvsDiskPool", - "replicationProviderId": "amdslnyc", - "sourceFabricProviderId": "ljmqaalvxmsovyfjiu", - "targetFabricProviderId": "ylbrzuwqwjpvrdudllqxeeyolx", + "replicationProviderId": "brudafscxssusuzhrvkrfunmpxtywf", + "sourceFabricProviderId": "l", + "targetFabricProviderId": "yjjntkc", "allowedActions": [ - "solnaulgojasioodmgldykszs" + "nqzmuj" ], - "activityId": "uedulfnlpguntfpryxi", + "activityId": "qjsvwxtvotwucqucfcb", "tasks": [ { - "taskName": "tmvf", + "taskName": "mvjsfppkkqvxsykartysepkpjps", "state": "Pending", - "startTime": "2023-07-25T21:05:35.689Z", - "endTime": "2023-07-25T21:05:35.689Z", + "startTime": "2023-07-26T04:32:14.265Z", + "endTime": "2023-07-26T04:32:14.265Z", "customProperties": { - "instanceType": "dqdsh" + "instanceType": "tklj" }, "childrenWorkflows": [] } ], "errors": [ { - "code": "csrbfcccyjzmanlgmpalienoki", - "type": "gfrrmmnfrxpbntdaenzzlw", - "severity": "gbbhdkvydq", - "creationTime": "2023-07-25T21:05:35.689Z", - "message": "swdcmpadrylzi", - "causes": "ngzlczhpjewgxl", - "recommendation": "tdecvvlzghkrj" + "code": "nslfjsjojkljcldnzlfhzbs", + "type": "lrkgcmyzrzwxzwdyucoghnblnkgqoe", + "severity": "oeyrqoxahsxhjmqk", + "creationTime": "2023-07-26T04:32:14.265Z", + "message": "xlqtdvgadguyyyfvnehhtokhmsy", + "causes": "tlkagyjmezxhfzy", + "recommendation": "yvxmdgyvcy" } ], "customProperties": { - "instanceType": "wzjlzrccysqirymwstrgf", + "instanceType": "WorkflowModelCustomProperties", "affectedObjectDetails": { - "key6778": "cfbtgj" + "key6534": "prappvfwq" } } }, - "id": "wihoj", - "name": "cstqdvznbjz", - "type": "vd", + "id": "nyrqapeztcru", + "name": "vyrbochibdgx", + "type": "mnhxegiqghpllpbfebhsdv", "systemData": { - "createdBy": "ygawudvedgqpoymik", - "createdByType": "fsmozbkecpdec", - "createdAt": "2023-07-25T21:05:35.689Z", - "lastModifiedBy": "qphxeebkhyajppoipozahpazxvdjdw", - "lastModifiedByType": "uqmlbnn", - "lastModifiedAt": "2023-07-25T21:05:35.689Z" + "createdBy": "gzlyuhvtqfmmx", + "createdByType": "fyelpv", + "createdAt": "2023-07-26T04:32:14.265Z", + "lastModifiedBy": "yhsyihwglqcfpff", + "lastModifiedByType": "uggcsnyfsruwqezjtufeuaqamifdrd", + "lastModifiedAt": "2023-07-26T04:32:14.265Z" }, "tags": { - "key6821": "jeyfslnnwenivgqmyiauber" + "key1759": "pquyqrlwracd" } } ], - "nextLink": "lmlvodzyaqyl" + "nextLink": "vgocvvzghpvqnrqpvksadaachw" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json index f7af9eea6c4d..61145bb74747 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json @@ -3148,7 +3148,8 @@ "type": "string", "readOnly": true } - } + }, + "x-ms-discriminator-value": "AzStackHCI" }, "CheckNameAvailabilityModel": { "description": "Check name availability model.", @@ -3296,7 +3297,8 @@ "minLength": 1, "type": "string" } - } + }, + "discriminator": "instanceType" }, "DraModelProperties": { "description": "Dra model properties.", @@ -3579,7 +3581,8 @@ "minLength": 1, "type": "string" } - } + }, + "discriminator": "instanceType" }, "EventModelProperties": { "description": "Event model properties.", @@ -3727,7 +3730,8 @@ "minLength": 1, "type": "string" } - } + }, + "discriminator": "instanceType" }, "FabricModelProperties": { "description": "Fabric model properties.", @@ -3893,7 +3897,8 @@ "readOnly": true, "x-ms-identifiers": [] } - } + }, + "x-ms-discriminator-value": "FailoverWorkflowDetails" }, "HealthErrorModel": { "description": "Health error model.", @@ -4014,7 +4019,8 @@ "type": "string", "readOnly": true } - } + }, + "x-ms-discriminator-value": "HyperVMigrate" }, "HyperVToAzStackHCIDiskInput": { "description": "HyperVToAzStack disk input.", @@ -4089,7 +4095,8 @@ "type": "string", "readOnly": true } - } + }, + "x-ms-discriminator-value": "HyperVToAzStackHCI" }, "HyperVToAzStackHCINicInput": { "description": "HyperVToAzStackHCI NIC properties.", @@ -4153,7 +4160,8 @@ "description": "Gets or sets a value indicating whether VM needs to be shut down.", "type": "boolean" } - } + }, + "x-ms-discriminator-value": "HyperVToAzStackHCI" }, "HyperVToAzStackHCIPolicyModelCustomProperties": { "description": "HyperV To AzStackHCI Policy model custom properties.", @@ -4184,7 +4192,8 @@ "description": "Gets or sets the app consistent snapshot frequency (in minutes).", "type": "integer" } - } + }, + "x-ms-discriminator-value": "HyperVToAzStackHCI" }, "HyperVToAzStackHCIProtectedDiskProperties": { "description": "HyperVToAzStackHCI protected disk properties.", @@ -4490,7 +4499,8 @@ "type": "string", "readOnly": true } - } + }, + "x-ms-discriminator-value": "HyperVToAzStackHCI" }, "HyperVToAzStackHCIProtectedNicProperties": { "description": "HyperVToAzStackHCI NIC properties.", @@ -4555,7 +4565,8 @@ }, "readOnly": true } - } + }, + "x-ms-discriminator-value": "HyperVToAzStackHCI" }, "HyperVToAzStackHCIReplicationExtensionModelCustomProperties": { "description": "HyperV to AzStackHCI Replication extension model custom properties.", @@ -4648,7 +4659,8 @@ "type": "string", "readOnly": true } - } + }, + "x-ms-discriminator-value": "HyperVToAzStackHCI" }, "IdentityModel": { "description": "Identity model.", @@ -4843,7 +4855,8 @@ "minLength": 1, "type": "string" } - } + }, + "discriminator": "instanceType" }, "PlannedFailoverModelProperties": { "description": "Planned failover model properties.", @@ -4931,7 +4944,8 @@ "minLength": 1, "type": "string" } - } + }, + "discriminator": "instanceType" }, "PolicyModelProperties": { "description": "Policy model properties.", @@ -5106,7 +5120,8 @@ "minLength": 1, "type": "string" } - } + }, + "discriminator": "instanceType" }, "ProtectedItemModelProperties": { "description": "Protected item model properties.", @@ -5462,7 +5477,8 @@ "minLength": 1, "type": "string" } - } + }, + "discriminator": "instanceType" }, "RecoveryPointModelProperties": { "description": "Recovery point model properties.", @@ -5569,7 +5585,8 @@ "minLength": 1, "type": "string" } - } + }, + "discriminator": "instanceType" }, "ReplicationExtensionModelProperties": { "description": "Replication extension model properties.", @@ -5732,7 +5749,8 @@ "type": "string", "readOnly": true } - } + }, + "x-ms-discriminator-value": "TestFailoverCleanupWorkflowDetails" }, "TestFailoverWorkflowModelCustomProperties": { "description": "Test failover workflow model custom properties.", @@ -5752,7 +5770,8 @@ "readOnly": true, "x-ms-identifiers": [] } - } + }, + "x-ms-discriminator-value": "TestFailoverWorkflowDetails" }, "VMwareDraModelCustomProperties": { "description": "VMware DRA model custom properties.", @@ -5775,7 +5794,8 @@ "marsAuthenticationIdentity": { "$ref": "#/definitions/IdentityModel" } - } + }, + "x-ms-discriminator-value": "VMware" }, "VMwareMigrateFabricModelCustomProperties": { "description": "VMware migrate fabric model custom properties.", @@ -5800,7 +5820,8 @@ "minLength": 1, "type": "string" } - } + }, + "x-ms-discriminator-value": "VMwareMigrate" }, "VMwareToAzStackHCIDiskInput": { "description": "VMwareToAzStack disk input.", @@ -5909,7 +5930,8 @@ "description": "Gets or sets a value indicating whether VM needs to be shut down.", "type": "boolean" } - } + }, + "x-ms-discriminator-value": "VMwareToAzStackHCI" }, "VMwareToAzStackHCIPolicyModelCustomProperties": { "description": "VMware To AzStackHCI Policy model custom properties.", @@ -5940,7 +5962,8 @@ "description": "Gets or sets the app consistent snapshot frequency (in minutes).", "type": "integer" } - } + }, + "x-ms-discriminator-value": "VMwareToAzStackHCI" }, "VMwareToAzStackHCIProtectedDiskProperties": { "description": "VMwareToAzStackHCI protected disk properties.", @@ -6293,7 +6316,8 @@ "type": "string", "readOnly": true } - } + }, + "x-ms-discriminator-value": "VMwareToAzStackHCI" }, "VMwareToAzStackHCIProtectedNicProperties": { "description": "VMwareToAzStackHCI NIC properties.", @@ -6441,7 +6465,8 @@ "type": "string", "readOnly": true } - } + }, + "x-ms-discriminator-value": "VMwareToAzStackHCI" }, "VaultModel": { "description": "Vault model.", @@ -6678,7 +6703,8 @@ }, "readOnly": true } - } + }, + "discriminator": "instanceType" }, "WorkflowModelProperties": { "description": "Workflow model properties.", From 117fb665b01b2924032748d2f38f8107503df666 Mon Sep 17 00:00:00 2001 From: Sam Lee Date: Wed, 2 Aug 2023 15:57:13 -0700 Subject: [PATCH 4/9] Fixed LintDiff with common types --- .../examples/CheckNameAvailability.json | 12 +- .../examples/DeploymentPreflight.json | 22 +- .../examples/DraOperationStatus_Get.json | 20 +- .../examples/Dra_Create.json | 222 +++++----- .../examples/Dra_Delete.json | 8 +- .../2021-02-16-preview/examples/Dra_Get.json | 102 ++--- .../2021-02-16-preview/examples/Dra_List.json | 102 ++--- .../examples/EmailConfiguration_Create.json | 62 +-- .../examples/EmailConfiguration_Get.json | 32 +- .../examples/EmailConfiguration_List.json | 32 +- .../examples/Event_Get.json | 88 ++-- .../examples/Event_List.json | 92 ++-- .../examples/FabricOperationsStatus_Get.json | 18 +- .../examples/Fabric_Create.json | 150 +++---- .../examples/Fabric_Delete.json | 6 +- .../examples/Fabric_Get.json | 76 ++-- .../examples/Fabric_List.json | 78 ++-- .../examples/Fabric_ListBySubscription.json | 76 ++-- .../examples/Fabric_Update.json | 78 ++-- .../examples/Operations_List.json | 28 +- .../examples/PolicyOperationStatus_Get.json | 20 +- .../examples/Policy_Create.json | 50 +-- .../examples/Policy_Delete.json | 8 +- .../examples/Policy_Get.json | 28 +- .../examples/Policy_List.json | 28 +- .../ProtectedItemOperationStatus_Get.json | 20 +- .../examples/ProtectedItem_Create.json | 322 +++++++------- .../examples/ProtectedItem_Delete.json | 8 +- .../examples/ProtectedItem_Get.json | 162 +++---- .../examples/ProtectedItem_List.json | 162 +++---- .../ProtectedItem_PlannedFailover.json | 8 +- .../examples/RecoveryPoints_Get.json | 32 +- .../examples/RecoveryPoints_List.json | 32 +- ...plicationExtensionOperationStatus_Get.json | 20 +- .../examples/ReplicationExtension_Create.json | 50 +-- .../examples/ReplicationExtension_Delete.json | 8 +- .../examples/ReplicationExtension_Get.json | 28 +- .../examples/ReplicationExtension_List.json | 28 +- .../examples/VaultOperationStatus_Get.json | 18 +- .../examples/Vault_Create.json | 58 +-- .../examples/Vault_Delete.json | 6 +- .../examples/Vault_Get.json | 30 +- .../examples/Vault_List.json | 32 +- .../examples/Vault_ListBySubscription.json | 30 +- .../examples/Vault_Update.json | 32 +- .../examples/WorkflowOperationStatus_Get.json | 20 +- .../examples/Workflow_Get.json | 76 ++-- .../examples/Workflow_List.json | 80 ++-- .../recoveryservicesdatareplication.json | 411 ++++++++---------- 49 files changed, 1536 insertions(+), 1575 deletions(-) diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json index 51aba4c72b2a..ca4d234a8fc1 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json @@ -2,20 +2,20 @@ "title": "Performs the resource name availability check.", "operationId": "CheckNameAvailability", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "location": "wlcxzllw", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "location": "vzgizvpokgqkrw", "api-version": "2021-02-16-preview", "body": { - "name": "kegf", - "type": "cjgvskzsclzccepb" + "name": "dmjsumuatpokhpldhujnuruc", + "type": "qxsvsic" } }, "responses": { "200": { "body": { "nameAvailable": true, - "reason": "bbazsyfbdrdskjmuispnrjvn", - "message": "mvvdawkshhmudfjc" + "reason": "xbjsorbgkebysgabhahm", + "message": "blnzcnjtjjibljpbwbqyjxbexgbi" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json index ac0a9b2f838b..a94c15855c25 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json @@ -2,17 +2,17 @@ "title": "Performs resource deployment validation.", "operationId": "DeploymentPreflight", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "deploymentId": "nrz", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "deploymentId": "uspggiwhcbianaagsbwx", "api-version": "2021-02-16-preview", "body": { "resources": [ { - "name": "hrfgmsxtdeippmybyynw", - "type": "qaptsbnavvvooohqmeycq", - "location": "mtgtbtvnxyqimq", - "apiVersion": "n" + "name": "dfvhhgjkdtookuxpsdvtwppfdbvx", + "type": "kousblgcxrienbeuqhgdh", + "location": "jdxidnafiqrssdkei", + "apiVersion": "knvtxulontvpzdt" } ] } @@ -22,10 +22,10 @@ "body": { "resources": [ { - "name": "hrfgmsxtdeippmybyynw", - "type": "qaptsbnavvvooohqmeycq", - "location": "mtgtbtvnxyqimq", - "apiVersion": "n" + "name": "dfvhhgjkdtookuxpsdvtwppfdbvx", + "type": "kousblgcxrienbeuqhgdh", + "location": "jdxidnafiqrssdkei", + "apiVersion": "knvtxulontvpzdt" } ] } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json index cbd225290742..7e78240ad042 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json @@ -2,21 +2,21 @@ "title": "Gets the Dra operation status.", "operationId": "DraOperationStatus_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "fabricName": "UwE", - "draName": "v19K", - "operationId": "q", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "fabricName": "7", + "draName": "hMmX", + "operationId": "laq", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "fh", - "name": "llbceylzpfwmnwunyyiyt", - "status": "tuiziokffdfr", - "startTime": "idpuxubqqdwzo", - "endTime": "zgiqrzfvsgatjmdkzoktumvnge" + "id": "qyvq", + "name": "etlwwkikigezxhr", + "status": "qilxkagrud", + "startTime": "blauxaexlidnzohzumt", + "endTime": "fiqojtkadhzrjonytznioepo" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json index 2cbfb8fbf405..cf9a32678da3 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json @@ -2,35 +2,35 @@ "title": "Puts the Dra.", "operationId": "Dra_Create", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "fabricName": "81h2M", - "draName": "7j8E", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "fabricName": "Jy", + "draName": "jD2", "api-version": "2021-02-16-preview", "body": { "properties": { - "machineId": "umh", - "machineName": "qsoxipzvswtmoict", + "machineId": "am", + "machineName": "piawkdstcyodciukvpalonozuz", "authenticationIdentity": { - "tenantId": "mkpqknd", - "applicationId": "cgedyfddslnmtuvefziwhvox", - "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", - "audience": "zp", - "aadAuthority": "xivzmegs" + "tenantId": "gxdlpjnazlyaqs", + "applicationId": "anhxaj", + "objectId": "ggydypqmkdmlwvtytrqplzpwq", + "audience": "gevtbcwybpynzgibnpq", + "aadAuthority": "cpmhjcadlgivxojsr" }, "resourceAccessIdentity": { - "tenantId": "mkpqknd", - "applicationId": "cgedyfddslnmtuvefziwhvox", - "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", - "audience": "zp", - "aadAuthority": "xivzmegs" + "tenantId": "gxdlpjnazlyaqs", + "applicationId": "anhxaj", + "objectId": "ggydypqmkdmlwvtytrqplzpwq", + "audience": "gevtbcwybpynzgibnpq", + "aadAuthority": "cpmhjcadlgivxojsr" }, "customProperties": { "instanceType": "DraModelCustomProperties" } }, "tags": { - "key1120": "wrptqefsmdqzwfjhhhzvqc" + "key7583": "yeswlxwyzvmwmsaxztqcukdpgerb" } } }, @@ -38,78 +38,78 @@ "200": { "body": { "properties": { - "correlationId": "b", - "machineId": "umh", - "machineName": "qsoxipzvswtmoict", + "correlationId": "wyrffcyudbyyh", + "machineId": "am", + "machineName": "piawkdstcyodciukvpalonozuz", "authenticationIdentity": { - "tenantId": "mkpqknd", - "applicationId": "cgedyfddslnmtuvefziwhvox", - "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", - "audience": "zp", - "aadAuthority": "xivzmegs" + "tenantId": "gxdlpjnazlyaqs", + "applicationId": "anhxaj", + "objectId": "ggydypqmkdmlwvtytrqplzpwq", + "audience": "gevtbcwybpynzgibnpq", + "aadAuthority": "cpmhjcadlgivxojsr" }, "resourceAccessIdentity": { - "tenantId": "mkpqknd", - "applicationId": "cgedyfddslnmtuvefziwhvox", - "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", - "audience": "zp", - "aadAuthority": "xivzmegs" + "tenantId": "gxdlpjnazlyaqs", + "applicationId": "anhxaj", + "objectId": "ggydypqmkdmlwvtytrqplzpwq", + "audience": "gevtbcwybpynzgibnpq", + "aadAuthority": "cpmhjcadlgivxojsr" }, "isResponsive": true, - "lastHeartbeat": "2023-07-26T04:32:07.452Z", - "versionNumber": "drtccooyulwreujrfzcbm", + "lastHeartbeat": "2023-08-02T22:38:38.125Z", + "versionNumber": "cjhvevwclvdmbdoafbzsmcrqlq", "provisioningState": "Canceled", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "DraModelCustomProperties" } }, - "id": "xvuitdnpiecyvidj", - "name": "bfxklakimmbjmcijsiadmdwkyzl", - "type": "adrqfjryvcpfdemgsdzqodmwme", + "id": "ugueerfglrefvyxhiszpinslrqs", + "name": "dwrroktoqjoh", + "type": "oqrtmmouawyfolvicnphammonubto", "systemData": { - "createdBy": "vu", - "createdByType": "dmd", - "createdAt": "2023-07-26T04:32:07.453Z", - "lastModifiedBy": "vetdwpndjqusvextbwnoenzmqrxm", - "lastModifiedByType": "ndxo", - "lastModifiedAt": "2023-07-26T04:32:07.453Z" + "createdBy": "jgovrjieeilgjdkyqsiwcwlwhomcg", + "createdByType": "lytjpiqaeogjjyosmx", + "createdAt": "2023-08-02T22:38:38.126Z", + "lastModifiedBy": "bessmlynindybdbq", + "lastModifiedByType": "hgvxiftbotjpnhzkuflldypwg", + "lastModifiedAt": "2023-08-02T22:38:38.126Z" }, "tags": { - "key1120": "wrptqefsmdqzwfjhhhzvqc" + "key7583": "yeswlxwyzvmwmsaxztqcukdpgerb" } } }, @@ -119,78 +119,78 @@ }, "body": { "properties": { - "correlationId": "b", - "machineId": "umh", - "machineName": "qsoxipzvswtmoict", + "correlationId": "wyrffcyudbyyh", + "machineId": "am", + "machineName": "piawkdstcyodciukvpalonozuz", "authenticationIdentity": { - "tenantId": "mkpqknd", - "applicationId": "cgedyfddslnmtuvefziwhvox", - "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", - "audience": "zp", - "aadAuthority": "xivzmegs" + "tenantId": "gxdlpjnazlyaqs", + "applicationId": "anhxaj", + "objectId": "ggydypqmkdmlwvtytrqplzpwq", + "audience": "gevtbcwybpynzgibnpq", + "aadAuthority": "cpmhjcadlgivxojsr" }, "resourceAccessIdentity": { - "tenantId": "mkpqknd", - "applicationId": "cgedyfddslnmtuvefziwhvox", - "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", - "audience": "zp", - "aadAuthority": "xivzmegs" + "tenantId": "gxdlpjnazlyaqs", + "applicationId": "anhxaj", + "objectId": "ggydypqmkdmlwvtytrqplzpwq", + "audience": "gevtbcwybpynzgibnpq", + "aadAuthority": "cpmhjcadlgivxojsr" }, "isResponsive": true, - "lastHeartbeat": "2023-07-26T04:32:07.452Z", - "versionNumber": "drtccooyulwreujrfzcbm", + "lastHeartbeat": "2023-08-02T22:38:38.125Z", + "versionNumber": "cjhvevwclvdmbdoafbzsmcrqlq", "provisioningState": "Canceled", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "DraModelCustomProperties" } }, - "id": "xvuitdnpiecyvidj", - "name": "bfxklakimmbjmcijsiadmdwkyzl", - "type": "adrqfjryvcpfdemgsdzqodmwme", + "id": "ugueerfglrefvyxhiszpinslrqs", + "name": "dwrroktoqjoh", + "type": "oqrtmmouawyfolvicnphammonubto", "systemData": { - "createdBy": "vu", - "createdByType": "dmd", - "createdAt": "2023-07-26T04:32:07.453Z", - "lastModifiedBy": "vetdwpndjqusvextbwnoenzmqrxm", - "lastModifiedByType": "ndxo", - "lastModifiedAt": "2023-07-26T04:32:07.453Z" + "createdBy": "jgovrjieeilgjdkyqsiwcwlwhomcg", + "createdByType": "lytjpiqaeogjjyosmx", + "createdAt": "2023-08-02T22:38:38.126Z", + "lastModifiedBy": "bessmlynindybdbq", + "lastModifiedByType": "hgvxiftbotjpnhzkuflldypwg", + "lastModifiedAt": "2023-08-02T22:38:38.126Z" }, "tags": { - "key1120": "wrptqefsmdqzwfjhhhzvqc" + "key7583": "yeswlxwyzvmwmsaxztqcukdpgerb" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json index 501117b2a9bd..86cc330b062e 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json @@ -2,10 +2,10 @@ "title": "Deletes the Dra.", "operationId": "Dra_Delete", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "fabricName": "MGKN", - "draName": "B", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "fabricName": "e", + "draName": "GFh", "api-version": "2021-02-16-preview" }, "responses": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json index f2e4399a7f72..076e6a368836 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json @@ -2,88 +2,88 @@ "title": "Gets the Dra.", "operationId": "Dra_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "fabricName": "dasfa", - "draName": "8TF", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "fabricName": "Ym4WC", + "draName": "TIIDt", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { "properties": { - "correlationId": "b", - "machineId": "umh", - "machineName": "qsoxipzvswtmoict", + "correlationId": "wyrffcyudbyyh", + "machineId": "am", + "machineName": "piawkdstcyodciukvpalonozuz", "authenticationIdentity": { - "tenantId": "mkpqknd", - "applicationId": "cgedyfddslnmtuvefziwhvox", - "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", - "audience": "zp", - "aadAuthority": "xivzmegs" + "tenantId": "gxdlpjnazlyaqs", + "applicationId": "anhxaj", + "objectId": "ggydypqmkdmlwvtytrqplzpwq", + "audience": "gevtbcwybpynzgibnpq", + "aadAuthority": "cpmhjcadlgivxojsr" }, "resourceAccessIdentity": { - "tenantId": "mkpqknd", - "applicationId": "cgedyfddslnmtuvefziwhvox", - "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", - "audience": "zp", - "aadAuthority": "xivzmegs" + "tenantId": "gxdlpjnazlyaqs", + "applicationId": "anhxaj", + "objectId": "ggydypqmkdmlwvtytrqplzpwq", + "audience": "gevtbcwybpynzgibnpq", + "aadAuthority": "cpmhjcadlgivxojsr" }, "isResponsive": true, - "lastHeartbeat": "2023-07-26T04:32:07.452Z", - "versionNumber": "drtccooyulwreujrfzcbm", + "lastHeartbeat": "2023-08-02T22:38:38.125Z", + "versionNumber": "cjhvevwclvdmbdoafbzsmcrqlq", "provisioningState": "Canceled", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "DraModelCustomProperties" } }, - "id": "xvuitdnpiecyvidj", - "name": "bfxklakimmbjmcijsiadmdwkyzl", - "type": "adrqfjryvcpfdemgsdzqodmwme", + "id": "ugueerfglrefvyxhiszpinslrqs", + "name": "dwrroktoqjoh", + "type": "oqrtmmouawyfolvicnphammonubto", "systemData": { - "createdBy": "vu", - "createdByType": "dmd", - "createdAt": "2023-07-26T04:32:07.453Z", - "lastModifiedBy": "vetdwpndjqusvextbwnoenzmqrxm", - "lastModifiedByType": "ndxo", - "lastModifiedAt": "2023-07-26T04:32:07.453Z" + "createdBy": "jgovrjieeilgjdkyqsiwcwlwhomcg", + "createdByType": "lytjpiqaeogjjyosmx", + "createdAt": "2023-08-02T22:38:38.126Z", + "lastModifiedBy": "bessmlynindybdbq", + "lastModifiedByType": "hgvxiftbotjpnhzkuflldypwg", + "lastModifiedAt": "2023-08-02T22:38:38.126Z" }, "tags": { - "key1120": "wrptqefsmdqzwfjhhhzvqc" + "key7583": "yeswlxwyzvmwmsaxztqcukdpgerb" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json index 5fd748a44d5f..93775048edb9 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json @@ -2,9 +2,9 @@ "title": "Lists the Dras.", "operationId": "Dra_List", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "fabricName": "3RN", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "fabricName": "TJTh", "api-version": "2021-02-16-preview" }, "responses": { @@ -13,82 +13,82 @@ "value": [ { "properties": { - "correlationId": "b", - "machineId": "umh", - "machineName": "qsoxipzvswtmoict", + "correlationId": "wyrffcyudbyyh", + "machineId": "am", + "machineName": "piawkdstcyodciukvpalonozuz", "authenticationIdentity": { - "tenantId": "mkpqknd", - "applicationId": "cgedyfddslnmtuvefziwhvox", - "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", - "audience": "zp", - "aadAuthority": "xivzmegs" + "tenantId": "gxdlpjnazlyaqs", + "applicationId": "anhxaj", + "objectId": "ggydypqmkdmlwvtytrqplzpwq", + "audience": "gevtbcwybpynzgibnpq", + "aadAuthority": "cpmhjcadlgivxojsr" }, "resourceAccessIdentity": { - "tenantId": "mkpqknd", - "applicationId": "cgedyfddslnmtuvefziwhvox", - "objectId": "efumzrdblnrzhqkkmblqyxrgyjakv", - "audience": "zp", - "aadAuthority": "xivzmegs" + "tenantId": "gxdlpjnazlyaqs", + "applicationId": "anhxaj", + "objectId": "ggydypqmkdmlwvtytrqplzpwq", + "audience": "gevtbcwybpynzgibnpq", + "aadAuthority": "cpmhjcadlgivxojsr" }, "isResponsive": true, - "lastHeartbeat": "2023-07-26T04:32:07.452Z", - "versionNumber": "drtccooyulwreujrfzcbm", + "lastHeartbeat": "2023-08-02T22:38:38.125Z", + "versionNumber": "cjhvevwclvdmbdoafbzsmcrqlq", "provisioningState": "Canceled", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "DraModelCustomProperties" } }, - "id": "xvuitdnpiecyvidj", - "name": "bfxklakimmbjmcijsiadmdwkyzl", - "type": "adrqfjryvcpfdemgsdzqodmwme", + "id": "ugueerfglrefvyxhiszpinslrqs", + "name": "dwrroktoqjoh", + "type": "oqrtmmouawyfolvicnphammonubto", "systemData": { - "createdBy": "vu", - "createdByType": "dmd", - "createdAt": "2023-07-26T04:32:07.453Z", - "lastModifiedBy": "vetdwpndjqusvextbwnoenzmqrxm", - "lastModifiedByType": "ndxo", - "lastModifiedAt": "2023-07-26T04:32:07.453Z" + "createdBy": "jgovrjieeilgjdkyqsiwcwlwhomcg", + "createdByType": "lytjpiqaeogjjyosmx", + "createdAt": "2023-08-02T22:38:38.126Z", + "lastModifiedBy": "bessmlynindybdbq", + "lastModifiedByType": "hgvxiftbotjpnhzkuflldypwg", + "lastModifiedAt": "2023-08-02T22:38:38.126Z" }, "tags": { - "key1120": "wrptqefsmdqzwfjhhhzvqc" + "key7583": "yeswlxwyzvmwmsaxztqcukdpgerb" } } ], - "nextLink": "brassaihigev" + "nextLink": "xcxxdtfntzqqdkysfrmawfp" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json index ed25bc0bb4d4..e77d03e608da 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json @@ -2,21 +2,21 @@ "title": "Creates email configuration settings.", "operationId": "EmailConfiguration_Create", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "Ht", - "emailConfigurationName": "KHT8KT", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "l", + "emailConfigurationName": "DD", "api-version": "2021-02-16-preview", "body": { "properties": { "sendToOwners": true, "customEmailAddresses": [ - "wfefbwpvtijdmwvanwvazdby" + "osutqdiotz" ], - "locale": "ilfssgfckjxo" + "locale": "mjlhfcvrrtdld" }, "tags": { - "key9204": "b" + "key3236": "oece" } } }, @@ -26,23 +26,23 @@ "properties": { "sendToOwners": true, "customEmailAddresses": [ - "wfefbwpvtijdmwvanwvazdby" + "osutqdiotz" ], - "locale": "ilfssgfckjxo" + "locale": "mjlhfcvrrtdld" }, - "id": "ijftucod", - "name": "gmistubhnbzrlnfzolovzemhmlqe", - "type": "taehlwy", + "id": "pltvzvksnwcdlxymekx", + "name": "swzygs", + "type": "rytinviucwfrauexy", "systemData": { - "createdBy": "oyinfscpxpupdvm", - "createdByType": "cbbfvspkiyirzxeyhquifazl", - "createdAt": "2023-07-26T04:32:08.325Z", - "lastModifiedBy": "ouviwjddahjtcyawsbsyrzgrpf", - "lastModifiedByType": "wcvedljnuhimq", - "lastModifiedAt": "2023-07-26T04:32:08.325Z" + "createdBy": "ulvkkiokkqpspffpzrgfvgofvliz", + "createdByType": "zzeuyuuaze", + "createdAt": "2023-08-02T22:38:39.004Z", + "lastModifiedBy": "nlizcaruxowvdjspljihdqoadyjvq", + "lastModifiedByType": "nshxhzyuitledwpptnbcfsqbtyg", + "lastModifiedAt": "2023-08-02T22:38:39.004Z" }, "tags": { - "key9204": "b" + "key3236": "oece" } } }, @@ -51,23 +51,23 @@ "properties": { "sendToOwners": true, "customEmailAddresses": [ - "wfefbwpvtijdmwvanwvazdby" + "osutqdiotz" ], - "locale": "ilfssgfckjxo" + "locale": "mjlhfcvrrtdld" }, - "id": "ijftucod", - "name": "gmistubhnbzrlnfzolovzemhmlqe", - "type": "taehlwy", + "id": "pltvzvksnwcdlxymekx", + "name": "swzygs", + "type": "rytinviucwfrauexy", "systemData": { - "createdBy": "oyinfscpxpupdvm", - "createdByType": "cbbfvspkiyirzxeyhquifazl", - "createdAt": "2023-07-26T04:32:08.325Z", - "lastModifiedBy": "ouviwjddahjtcyawsbsyrzgrpf", - "lastModifiedByType": "wcvedljnuhimq", - "lastModifiedAt": "2023-07-26T04:32:08.325Z" + "createdBy": "ulvkkiokkqpspffpzrgfvgofvliz", + "createdByType": "zzeuyuuaze", + "createdAt": "2023-08-02T22:38:39.004Z", + "lastModifiedBy": "nlizcaruxowvdjspljihdqoadyjvq", + "lastModifiedByType": "nshxhzyuitledwpptnbcfsqbtyg", + "lastModifiedAt": "2023-08-02T22:38:39.004Z" }, "tags": { - "key9204": "b" + "key3236": "oece" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json index 008abaf48f6d..5b88f9e18116 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json @@ -2,10 +2,10 @@ "title": "Gets the email configuration setting.", "operationId": "EmailConfiguration_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "7", - "emailConfigurationName": "kPECy", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "wFQ", + "emailConfigurationName": "N", "api-version": "2021-02-16-preview" }, "responses": { @@ -14,23 +14,23 @@ "properties": { "sendToOwners": true, "customEmailAddresses": [ - "wfefbwpvtijdmwvanwvazdby" + "osutqdiotz" ], - "locale": "ilfssgfckjxo" + "locale": "mjlhfcvrrtdld" }, - "id": "ijftucod", - "name": "gmistubhnbzrlnfzolovzemhmlqe", - "type": "taehlwy", + "id": "pltvzvksnwcdlxymekx", + "name": "swzygs", + "type": "rytinviucwfrauexy", "systemData": { - "createdBy": "oyinfscpxpupdvm", - "createdByType": "cbbfvspkiyirzxeyhquifazl", - "createdAt": "2023-07-26T04:32:08.325Z", - "lastModifiedBy": "ouviwjddahjtcyawsbsyrzgrpf", - "lastModifiedByType": "wcvedljnuhimq", - "lastModifiedAt": "2023-07-26T04:32:08.325Z" + "createdBy": "ulvkkiokkqpspffpzrgfvgofvliz", + "createdByType": "zzeuyuuaze", + "createdAt": "2023-08-02T22:38:39.004Z", + "lastModifiedBy": "nlizcaruxowvdjspljihdqoadyjvq", + "lastModifiedByType": "nshxhzyuitledwpptnbcfsqbtyg", + "lastModifiedAt": "2023-08-02T22:38:39.004Z" }, "tags": { - "key9204": "b" + "key3236": "oece" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json index 60b63e2b6b98..ee1f35fe9185 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json @@ -2,9 +2,9 @@ "title": "Lists the email configuration settings.", "operationId": "EmailConfiguration_List", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "1Hq", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "9Ly", "api-version": "2021-02-16-preview" }, "responses": { @@ -15,27 +15,27 @@ "properties": { "sendToOwners": true, "customEmailAddresses": [ - "wfefbwpvtijdmwvanwvazdby" + "osutqdiotz" ], - "locale": "ilfssgfckjxo" + "locale": "mjlhfcvrrtdld" }, - "id": "ijftucod", - "name": "gmistubhnbzrlnfzolovzemhmlqe", - "type": "taehlwy", + "id": "pltvzvksnwcdlxymekx", + "name": "swzygs", + "type": "rytinviucwfrauexy", "systemData": { - "createdBy": "oyinfscpxpupdvm", - "createdByType": "cbbfvspkiyirzxeyhquifazl", - "createdAt": "2023-07-26T04:32:08.325Z", - "lastModifiedBy": "ouviwjddahjtcyawsbsyrzgrpf", - "lastModifiedByType": "wcvedljnuhimq", - "lastModifiedAt": "2023-07-26T04:32:08.325Z" + "createdBy": "ulvkkiokkqpspffpzrgfvgofvliz", + "createdByType": "zzeuyuuaze", + "createdAt": "2023-08-02T22:38:39.004Z", + "lastModifiedBy": "nlizcaruxowvdjspljihdqoadyjvq", + "lastModifiedByType": "nshxhzyuitledwpptnbcfsqbtyg", + "lastModifiedAt": "2023-08-02T22:38:39.004Z" }, "tags": { - "key9204": "b" + "key3236": "oece" } } ], - "nextLink": "qomttmpfv" + "nextLink": "srwmocnbmqovjpqudc" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json index 14349d1ee67f..9c2e98b2f403 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json @@ -2,75 +2,75 @@ "title": "Gets the event.", "operationId": "Event_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "5Q6", - "eventName": "C", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "P", + "eventName": "vs", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { "properties": { - "resourceType": "dkzwppymeql", - "resourceName": "kekpfxammlgwjnizfifjvhyzems", - "eventType": "upsqkxrmilmfep", - "eventName": "fejnbdighonk", - "timeOfOccurrence": "2023-07-26T04:32:08.740Z", - "severity": "urv", - "description": "rianhvskmmxsliuuaxtnxy", - "correlationId": "hzridatsrqduc", + "resourceType": "kweoggspwhbaktjhfvhkatuk", + "resourceName": "cyxdqtu", + "eventType": "yxxolgohndew", + "eventName": "avmvpbtw", + "timeOfOccurrence": "2023-08-02T22:38:39.424Z", + "severity": "szxzwooikhhbflaozwmjyhs", + "description": "ojifkrwt", + "correlationId": "mpz", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "EventModelCustomProperties" } }, - "id": "doeogisfvokuvrt", - "name": "uvmsnksztjhdsiwooamruiffxf", - "type": "wt", + "id": "kestyytbyphqaocfpreevm", + "name": "ajsnogoe", + "type": "bx", "systemData": { - "createdBy": "dfepst", - "createdByType": "lyscpagbjwiuqpivbxzxsvjsmhm", - "createdAt": "2023-07-26T04:32:08.740Z", - "lastModifiedBy": "ypdlwlvglbrplgtycxqt", - "lastModifiedByType": "vubuhjesjekqbrvrnnsmrz", - "lastModifiedAt": "2023-07-26T04:32:08.740Z" + "createdBy": "vaagiashoyxjghabffjuf", + "createdByType": "ylgpjgjsecubztauznjsqs", + "createdAt": "2023-08-02T22:38:39.424Z", + "lastModifiedBy": "mclylh", + "lastModifiedByType": "nfzkfwhjekhaorhqaconbmgx", + "lastModifiedAt": "2023-08-02T22:38:39.424Z" }, "tags": { - "key1588": "tctegpfwyluhkvvadsojfnykah" + "key4547": "ohchifajpqnnwuaxxiexynii" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json index ec001960f5b6..cf5273937633 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json @@ -2,11 +2,11 @@ "title": "Lists the events.", "operationId": "Event_List", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "7", - "$filter": "jnarznmmf", - "continuationToken": "lmtufvozavzwslnmlotv", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "s4O", + "$filter": "jhiqirwxvbnloocjwgstrkneu", + "continuationToken": "fen", "api-version": "2021-02-16-preview" }, "responses": { @@ -15,69 +15,69 @@ "value": [ { "properties": { - "resourceType": "dkzwppymeql", - "resourceName": "kekpfxammlgwjnizfifjvhyzems", - "eventType": "upsqkxrmilmfep", - "eventName": "fejnbdighonk", - "timeOfOccurrence": "2023-07-26T04:32:08.740Z", - "severity": "urv", - "description": "rianhvskmmxsliuuaxtnxy", - "correlationId": "hzridatsrqduc", + "resourceType": "kweoggspwhbaktjhfvhkatuk", + "resourceName": "cyxdqtu", + "eventType": "yxxolgohndew", + "eventName": "avmvpbtw", + "timeOfOccurrence": "2023-08-02T22:38:39.424Z", + "severity": "szxzwooikhhbflaozwmjyhs", + "description": "ojifkrwt", + "correlationId": "mpz", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "EventModelCustomProperties" } }, - "id": "doeogisfvokuvrt", - "name": "uvmsnksztjhdsiwooamruiffxf", - "type": "wt", + "id": "kestyytbyphqaocfpreevm", + "name": "ajsnogoe", + "type": "bx", "systemData": { - "createdBy": "dfepst", - "createdByType": "lyscpagbjwiuqpivbxzxsvjsmhm", - "createdAt": "2023-07-26T04:32:08.740Z", - "lastModifiedBy": "ypdlwlvglbrplgtycxqt", - "lastModifiedByType": "vubuhjesjekqbrvrnnsmrz", - "lastModifiedAt": "2023-07-26T04:32:08.740Z" + "createdBy": "vaagiashoyxjghabffjuf", + "createdByType": "ylgpjgjsecubztauznjsqs", + "createdAt": "2023-08-02T22:38:39.424Z", + "lastModifiedBy": "mclylh", + "lastModifiedByType": "nfzkfwhjekhaorhqaconbmgx", + "lastModifiedAt": "2023-08-02T22:38:39.424Z" }, "tags": { - "key1588": "tctegpfwyluhkvvadsojfnykah" + "key4547": "ohchifajpqnnwuaxxiexynii" } } ], - "nextLink": "zejobyppbcptvicckpseb" + "nextLink": "msadyg" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json index b6b0486a8a3b..d396f9ca4cb1 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json @@ -2,20 +2,20 @@ "title": "Gets the fabric operation status.", "operationId": "FabricOperationsStatus_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "fabricName": "ICNY", - "operationId": "hxuxobsjsvjpgjkgqbnrpqrlcut", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "fabricName": "RG2P", + "operationId": "laq", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "fh", - "name": "llbceylzpfwmnwunyyiyt", - "status": "tuiziokffdfr", - "startTime": "idpuxubqqdwzo", - "endTime": "zgiqrzfvsgatjmdkzoktumvnge" + "id": "qyvq", + "name": "etlwwkikigezxhr", + "status": "qilxkagrud", + "startTime": "blauxaexlidnzohzumt", + "endTime": "fiqojtkadhzrjonytznioepo" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json index c0442b5981fa..e789de7979ee 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json @@ -2,82 +2,82 @@ "title": "Puts the fabric.", "operationId": "Fabric_Create", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "fabricName": "i", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "fabricName": "TH", "api-version": "2021-02-16-preview", "body": { - "location": "wvkxqwrjdrvu", + "location": "isl", "properties": { "customProperties": { "instanceType": "FabricModelCustomProperties" } }, "tags": { - "key3645": "eoit" + "key7612": "pomiuxzfnwzdnvrkehckjzshh" } } }, "responses": { "200": { "body": { - "location": "wvkxqwrjdrvu", + "location": "isl", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "vomirdvyglo", - "serviceResourceId": "wtomuipayfulqfboiuakkkpbyvz", + "serviceEndpoint": "elchprtkawhfkeepkmwz", + "serviceResourceId": "fwcrpwpc", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "FabricModelCustomProperties" } }, - "id": "xa", - "name": "fzvtywgrhylmczvvsl", - "type": "ufayitsooblolh", + "id": "kvzkiwmiuvagcjvzhq", + "name": "migcmd", + "type": "sinhxdiqbocyokgwbppl", "systemData": { - "createdBy": "gxbmqcnfpzbarchrpifteigmub", - "createdByType": "bfzenuqbxnemujb", - "createdAt": "2023-07-26T04:32:09.014Z", - "lastModifiedBy": "c", - "lastModifiedByType": "tyjxrnwik", - "lastModifiedAt": "2023-07-26T04:32:09.014Z" + "createdBy": "ywmkcpkbjgzaypba", + "createdByType": "ngxxmvoisqmiqrobaicqdeptmgjrt", + "createdAt": "2023-08-02T22:38:39.718Z", + "lastModifiedBy": "lxooqdnnlowfajutuklbfcn", + "lastModifiedByType": "hiubylhnsdwjjmppbqjb", + "lastModifiedAt": "2023-08-02T22:38:39.718Z" }, "tags": { - "key3645": "eoit" + "key7612": "pomiuxzfnwzdnvrkehckjzshh" } } }, @@ -86,63 +86,63 @@ "location": "https://contoso.com/operationstatus" }, "body": { - "location": "wvkxqwrjdrvu", + "location": "isl", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "vomirdvyglo", - "serviceResourceId": "wtomuipayfulqfboiuakkkpbyvz", + "serviceEndpoint": "elchprtkawhfkeepkmwz", + "serviceResourceId": "fwcrpwpc", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "FabricModelCustomProperties" } }, - "id": "xa", - "name": "fzvtywgrhylmczvvsl", - "type": "ufayitsooblolh", + "id": "kvzkiwmiuvagcjvzhq", + "name": "migcmd", + "type": "sinhxdiqbocyokgwbppl", "systemData": { - "createdBy": "gxbmqcnfpzbarchrpifteigmub", - "createdByType": "bfzenuqbxnemujb", - "createdAt": "2023-07-26T04:32:09.014Z", - "lastModifiedBy": "c", - "lastModifiedByType": "tyjxrnwik", - "lastModifiedAt": "2023-07-26T04:32:09.014Z" + "createdBy": "ywmkcpkbjgzaypba", + "createdByType": "ngxxmvoisqmiqrobaicqdeptmgjrt", + "createdAt": "2023-08-02T22:38:39.718Z", + "lastModifiedBy": "lxooqdnnlowfajutuklbfcn", + "lastModifiedByType": "hiubylhnsdwjjmppbqjb", + "lastModifiedAt": "2023-08-02T22:38:39.718Z" }, "tags": { - "key3645": "eoit" + "key7612": "pomiuxzfnwzdnvrkehckjzshh" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json index fa3b8f77bb4c..9a623aa76cca 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json @@ -2,9 +2,9 @@ "title": "Deletes the fabric.", "operationId": "Fabric_Delete", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "fabricName": "0", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "fabricName": "t", "api-version": "2021-02-16-preview" }, "responses": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json index 9d3516f5b747..3c917d8e2093 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json @@ -2,71 +2,71 @@ "title": "Gets the fabric.", "operationId": "Fabric_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "fabricName": "Ic7S6", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "fabricName": "m5", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "location": "wvkxqwrjdrvu", + "location": "isl", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "vomirdvyglo", - "serviceResourceId": "wtomuipayfulqfboiuakkkpbyvz", + "serviceEndpoint": "elchprtkawhfkeepkmwz", + "serviceResourceId": "fwcrpwpc", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "FabricModelCustomProperties" } }, - "id": "xa", - "name": "fzvtywgrhylmczvvsl", - "type": "ufayitsooblolh", + "id": "kvzkiwmiuvagcjvzhq", + "name": "migcmd", + "type": "sinhxdiqbocyokgwbppl", "systemData": { - "createdBy": "gxbmqcnfpzbarchrpifteigmub", - "createdByType": "bfzenuqbxnemujb", - "createdAt": "2023-07-26T04:32:09.014Z", - "lastModifiedBy": "c", - "lastModifiedByType": "tyjxrnwik", - "lastModifiedAt": "2023-07-26T04:32:09.014Z" + "createdBy": "ywmkcpkbjgzaypba", + "createdByType": "ngxxmvoisqmiqrobaicqdeptmgjrt", + "createdAt": "2023-08-02T22:38:39.718Z", + "lastModifiedBy": "lxooqdnnlowfajutuklbfcn", + "lastModifiedByType": "hiubylhnsdwjjmppbqjb", + "lastModifiedAt": "2023-08-02T22:38:39.718Z" }, "tags": { - "key3645": "eoit" + "key7612": "pomiuxzfnwzdnvrkehckjzshh" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json index 669f68a4b538..2c35bdaa5344 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json @@ -2,9 +2,9 @@ "title": "Lists the fabrics.", "operationId": "Fabric_List", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "continuationToken": "kupv", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "continuationToken": "mhihsmmjtir", "api-version": "2021-02-16-preview" }, "responses": { @@ -12,67 +12,67 @@ "body": { "value": [ { - "location": "wvkxqwrjdrvu", + "location": "isl", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "vomirdvyglo", - "serviceResourceId": "wtomuipayfulqfboiuakkkpbyvz", + "serviceEndpoint": "elchprtkawhfkeepkmwz", + "serviceResourceId": "fwcrpwpc", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "FabricModelCustomProperties" } }, - "id": "xa", - "name": "fzvtywgrhylmczvvsl", - "type": "ufayitsooblolh", + "id": "kvzkiwmiuvagcjvzhq", + "name": "migcmd", + "type": "sinhxdiqbocyokgwbppl", "systemData": { - "createdBy": "gxbmqcnfpzbarchrpifteigmub", - "createdByType": "bfzenuqbxnemujb", - "createdAt": "2023-07-26T04:32:09.014Z", - "lastModifiedBy": "c", - "lastModifiedByType": "tyjxrnwik", - "lastModifiedAt": "2023-07-26T04:32:09.014Z" + "createdBy": "ywmkcpkbjgzaypba", + "createdByType": "ngxxmvoisqmiqrobaicqdeptmgjrt", + "createdAt": "2023-08-02T22:38:39.718Z", + "lastModifiedBy": "lxooqdnnlowfajutuklbfcn", + "lastModifiedByType": "hiubylhnsdwjjmppbqjb", + "lastModifiedAt": "2023-08-02T22:38:39.718Z" }, "tags": { - "key3645": "eoit" + "key7612": "pomiuxzfnwzdnvrkehckjzshh" } } ], - "nextLink": "mi" + "nextLink": "lrykuhpezupzhpcbkfmnarut" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json index 5fabda393930..e556e111288a 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json @@ -2,8 +2,8 @@ "title": "Lists the fabrics.", "operationId": "Fabric_ListBySubscription", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "continuationToken": "rphmgemm", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "continuationToken": "nerkvqjoskvf", "api-version": "2021-02-16-preview" }, "responses": { @@ -11,67 +11,67 @@ "body": { "value": [ { - "location": "wvkxqwrjdrvu", + "location": "isl", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "vomirdvyglo", - "serviceResourceId": "wtomuipayfulqfboiuakkkpbyvz", + "serviceEndpoint": "elchprtkawhfkeepkmwz", + "serviceResourceId": "fwcrpwpc", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "FabricModelCustomProperties" } }, - "id": "xa", - "name": "fzvtywgrhylmczvvsl", - "type": "ufayitsooblolh", + "id": "kvzkiwmiuvagcjvzhq", + "name": "migcmd", + "type": "sinhxdiqbocyokgwbppl", "systemData": { - "createdBy": "gxbmqcnfpzbarchrpifteigmub", - "createdByType": "bfzenuqbxnemujb", - "createdAt": "2023-07-26T04:32:09.014Z", - "lastModifiedBy": "c", - "lastModifiedByType": "tyjxrnwik", - "lastModifiedAt": "2023-07-26T04:32:09.014Z" + "createdBy": "ywmkcpkbjgzaypba", + "createdByType": "ngxxmvoisqmiqrobaicqdeptmgjrt", + "createdAt": "2023-08-02T22:38:39.718Z", + "lastModifiedBy": "lxooqdnnlowfajutuklbfcn", + "lastModifiedByType": "hiubylhnsdwjjmppbqjb", + "lastModifiedAt": "2023-08-02T22:38:39.718Z" }, "tags": { - "key3645": "eoit" + "key7612": "pomiuxzfnwzdnvrkehckjzshh" } } ], - "nextLink": "mi" + "nextLink": "lrykuhpezupzhpcbkfmnarut" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json index 002362f22195..11c213e0c1d0 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json @@ -2,9 +2,9 @@ "title": "Updates the fabric.", "operationId": "Fabric_Update", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "fabricName": "H", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "fabricName": "34X", "api-version": "2021-02-16-preview", "body": { "properties": { @@ -13,70 +13,70 @@ } }, "tags": { - "key6220": "fxif" + "key9396": "qwof" } } }, "responses": { "200": { "body": { - "location": "wvkxqwrjdrvu", + "location": "isl", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "vomirdvyglo", - "serviceResourceId": "wtomuipayfulqfboiuakkkpbyvz", + "serviceEndpoint": "elchprtkawhfkeepkmwz", + "serviceResourceId": "fwcrpwpc", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "FabricModelCustomProperties" } }, - "id": "xa", - "name": "fzvtywgrhylmczvvsl", - "type": "ufayitsooblolh", + "id": "kvzkiwmiuvagcjvzhq", + "name": "migcmd", + "type": "sinhxdiqbocyokgwbppl", "systemData": { - "createdBy": "gxbmqcnfpzbarchrpifteigmub", - "createdByType": "bfzenuqbxnemujb", - "createdAt": "2023-07-26T04:32:09.014Z", - "lastModifiedBy": "c", - "lastModifiedByType": "tyjxrnwik", - "lastModifiedAt": "2023-07-26T04:32:09.014Z" + "createdBy": "ywmkcpkbjgzaypba", + "createdByType": "ngxxmvoisqmiqrobaicqdeptmgjrt", + "createdAt": "2023-08-02T22:38:39.718Z", + "lastModifiedBy": "lxooqdnnlowfajutuklbfcn", + "lastModifiedByType": "hiubylhnsdwjjmppbqjb", + "lastModifiedAt": "2023-08-02T22:38:39.718Z" }, "tags": { - "key3645": "eoit" + "key7612": "pomiuxzfnwzdnvrkehckjzshh" } } }, diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json index d392f4af58b6..58aabf28bd05 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json @@ -6,19 +6,23 @@ }, "responses": { "200": { - "body": [ - { - "name": "hrjfuunoagodkwpmnxfgaux", - "isDataAction": true, - "origin": "srmpwtslowcccgc", - "display": { - "provider": "cfexcstlytaitcknjoff", - "resource": "swuekeeeekzyfpijvaswbjobtrj", - "operation": "xzkdjxxwsiqeyfzygdxxpkcywuo", - "description": "kqpmfsfnutxaqeodomxtwttn" + "body": { + "value": [ + { + "name": "zknwyhlxiugtjb", + "isDataAction": true, + "display": { + "provider": "uvfguotwkwd", + "resource": "t", + "operation": "tptufgdmsfajjlnpm", + "description": "gmmdeveprtxrzdcvxznqbk" + }, + "origin": "user", + "actionType": "Internal" } - } - ] + ], + "nextLink": "https://microsoft.com/a" + } } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json index 8e78e9187b2f..6a3e3858c47e 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json @@ -2,21 +2,21 @@ "title": "Gets the policy operation status.", "operationId": "PolicyOperationStatus_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "PC", - "policyName": "Wg", - "operationId": "cdiamiljmctyhkhl", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "DW8yQ", + "policyName": "iRLJ5", + "operationId": "laq", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "fh", - "name": "llbceylzpfwmnwunyyiyt", - "status": "tuiziokffdfr", - "startTime": "idpuxubqqdwzo", - "endTime": "zgiqrzfvsgatjmdkzoktumvnge" + "id": "qyvq", + "name": "etlwwkikigezxhr", + "status": "qilxkagrud", + "startTime": "blauxaexlidnzohzumt", + "endTime": "fiqojtkadhzrjonytznioepo" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json index 5784e14ce4e3..26a69f811567 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json @@ -2,10 +2,10 @@ "title": "Puts the policy.", "operationId": "Policy_Create", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "kJI86", - "policyName": "5D", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "mBH", + "policyName": "F", "api-version": "2021-02-16-preview", "body": { "properties": { @@ -14,7 +14,7 @@ } }, "tags": { - "key1888": "jwufyjxndqyruxprrvhx" + "key8545": "jduymqurvbrrgbmmo" } } }, @@ -27,19 +27,19 @@ "instanceType": "PolicyModelCustomProperties" } }, - "id": "nigj", - "name": "dr", - "type": "mvl", + "id": "nrwxjuvtcmibjsvxsmoxd", + "name": "fgbkshfmax", + "type": "horrbmzdmkkbikrcsqizngoknct", "systemData": { - "createdBy": "nnbzyoegnycocdfoui", - "createdByType": "ngzumvrsdh", - "createdAt": "2023-07-26T04:32:09.993Z", - "lastModifiedBy": "vmwlf", - "lastModifiedByType": "ebczdwrblqnxelnyzsdvmevyyqoot", - "lastModifiedAt": "2023-07-26T04:32:09.993Z" + "createdBy": "kukxrnxub", + "createdByType": "fsufmqzhyfylnmbzvqttmanmdhnwo", + "createdAt": "2023-08-02T22:38:40.738Z", + "lastModifiedBy": "jhyfpncwajty", + "lastModifiedByType": "mzhvyfjokdswie", + "lastModifiedAt": "2023-08-02T22:38:40.738Z" }, "tags": { - "key1888": "jwufyjxndqyruxprrvhx" + "key8545": "jduymqurvbrrgbmmo" } } }, @@ -54,19 +54,19 @@ "instanceType": "PolicyModelCustomProperties" } }, - "id": "nigj", - "name": "dr", - "type": "mvl", + "id": "nrwxjuvtcmibjsvxsmoxd", + "name": "fgbkshfmax", + "type": "horrbmzdmkkbikrcsqizngoknct", "systemData": { - "createdBy": "nnbzyoegnycocdfoui", - "createdByType": "ngzumvrsdh", - "createdAt": "2023-07-26T04:32:09.993Z", - "lastModifiedBy": "vmwlf", - "lastModifiedByType": "ebczdwrblqnxelnyzsdvmevyyqoot", - "lastModifiedAt": "2023-07-26T04:32:09.993Z" + "createdBy": "kukxrnxub", + "createdByType": "fsufmqzhyfylnmbzvqttmanmdhnwo", + "createdAt": "2023-08-02T22:38:40.738Z", + "lastModifiedBy": "jhyfpncwajty", + "lastModifiedByType": "mzhvyfjokdswie", + "lastModifiedAt": "2023-08-02T22:38:40.738Z" }, "tags": { - "key1888": "jwufyjxndqyruxprrvhx" + "key8545": "jduymqurvbrrgbmmo" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json index 720468241ee0..9a2a85a3ee09 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json @@ -2,10 +2,10 @@ "title": "Deletes the policy.", "operationId": "Policy_Delete", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "iMK", - "policyName": "DX", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "P7B", + "policyName": "9", "api-version": "2021-02-16-preview" }, "responses": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json index 4d6e9b5716b5..eb94704ada4b 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json @@ -2,10 +2,10 @@ "title": "Gets the policy.", "operationId": "Policy_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "MswB", - "policyName": "3", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "YG1Q", + "policyName": "dasqwd", "api-version": "2021-02-16-preview" }, "responses": { @@ -17,19 +17,19 @@ "instanceType": "PolicyModelCustomProperties" } }, - "id": "nigj", - "name": "dr", - "type": "mvl", + "id": "nrwxjuvtcmibjsvxsmoxd", + "name": "fgbkshfmax", + "type": "horrbmzdmkkbikrcsqizngoknct", "systemData": { - "createdBy": "nnbzyoegnycocdfoui", - "createdByType": "ngzumvrsdh", - "createdAt": "2023-07-26T04:32:09.993Z", - "lastModifiedBy": "vmwlf", - "lastModifiedByType": "ebczdwrblqnxelnyzsdvmevyyqoot", - "lastModifiedAt": "2023-07-26T04:32:09.993Z" + "createdBy": "kukxrnxub", + "createdByType": "fsufmqzhyfylnmbzvqttmanmdhnwo", + "createdAt": "2023-08-02T22:38:40.738Z", + "lastModifiedBy": "jhyfpncwajty", + "lastModifiedByType": "mzhvyfjokdswie", + "lastModifiedAt": "2023-08-02T22:38:40.738Z" }, "tags": { - "key1888": "jwufyjxndqyruxprrvhx" + "key8545": "jduymqurvbrrgbmmo" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json index e2cb9d83e1b4..6f608bdd41b9 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json @@ -2,9 +2,9 @@ "title": "Lists the policies.", "operationId": "Policy_List", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "2", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "X5PS", "api-version": "2021-02-16-preview" }, "responses": { @@ -18,23 +18,23 @@ "instanceType": "PolicyModelCustomProperties" } }, - "id": "nigj", - "name": "dr", - "type": "mvl", + "id": "nrwxjuvtcmibjsvxsmoxd", + "name": "fgbkshfmax", + "type": "horrbmzdmkkbikrcsqizngoknct", "systemData": { - "createdBy": "nnbzyoegnycocdfoui", - "createdByType": "ngzumvrsdh", - "createdAt": "2023-07-26T04:32:09.993Z", - "lastModifiedBy": "vmwlf", - "lastModifiedByType": "ebczdwrblqnxelnyzsdvmevyyqoot", - "lastModifiedAt": "2023-07-26T04:32:09.993Z" + "createdBy": "kukxrnxub", + "createdByType": "fsufmqzhyfylnmbzvqttmanmdhnwo", + "createdAt": "2023-08-02T22:38:40.738Z", + "lastModifiedBy": "jhyfpncwajty", + "lastModifiedByType": "mzhvyfjokdswie", + "lastModifiedAt": "2023-08-02T22:38:40.738Z" }, "tags": { - "key1888": "jwufyjxndqyruxprrvhx" + "key8545": "jduymqurvbrrgbmmo" } } ], - "nextLink": "bmyycqba" + "nextLink": "fxq" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json index 74bef342e67e..4aaa46980fe9 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json @@ -2,21 +2,21 @@ "title": "Gets the protected item operation status.", "operationId": "ProtectedItemOperationStatus_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "9b", - "protectedItemName": "mh", - "operationId": "kksqlhkpqowhafdodcizhkdxg", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "E9", + "protectedItemName": "6HN", + "operationId": "laq", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "fh", - "name": "llbceylzpfwmnwunyyiyt", - "status": "tuiziokffdfr", - "startTime": "idpuxubqqdwzo", - "endTime": "zgiqrzfvsgatjmdkzoktumvnge" + "id": "qyvq", + "name": "etlwwkikigezxhr", + "status": "qilxkagrud", + "startTime": "blauxaexlidnzohzumt", + "endTime": "fiqojtkadhzrjonytznioepo" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json index b94ba678d3ff..3e3f67c59256 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json @@ -2,21 +2,21 @@ "title": "Puts the protected item.", "operationId": "ProtectedItem_Create", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "Q", - "protectedItemName": "L", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "jO", + "protectedItemName": "6S", "api-version": "2021-02-16-preview", "body": { "properties": { - "policyName": "sgxncsesajon", - "replicationExtensionName": "vpc", + "policyName": "kgahoneh", + "replicationExtensionName": "ra", "customProperties": { "instanceType": "ProtectedItemModelCustomProperties" } }, "tags": { - "key4295": "uqmnjhggs" + "key506": "ksuv" } } }, @@ -24,118 +24,118 @@ "200": { "body": { "properties": { - "policyName": "sgxncsesajon", - "replicationExtensionName": "vpc", - "correlationId": "tjxubphagtxvopmkkxsrcail", + "policyName": "kgahoneh", + "replicationExtensionName": "ra", + "correlationId": "ynykvizrjkliiab", "provisioningState": "Canceled", "protectionState": "UnprotectedStatesBegin", - "protectionStateDescription": "q", + "protectionStateDescription": "cwccvvryeshblczlnevwwxwxvqjtov", "testFailoverState": "None", - "testFailoverStateDescription": "btsazlqowahtbcigjm", + "testFailoverStateDescription": "suysizrdlcbouxqycxmllvehdzv", "resynchronizationState": "None", - "fabricObjectId": "lrxgas", - "fabricObjectName": "lfjkbjywinwfsmt", - "sourceFabricProviderId": "xplqjevidar", - "targetFabricProviderId": "pfqfytwspbcq", - "fabricId": "ghfpgijrekipfpuc", - "targetFabricId": "iejrlgpgtvumdysuokz", - "draId": "plwccvutrkasiq", - "targetDraId": "kfvnbpxeuodfhhvmmlkloxgv", + "fabricObjectId": "hdwqqzyvlylyhno", + "fabricObjectName": "neffchwmyoixetcfdwivsvpgz", + "sourceFabricProviderId": "pegbqsbisnzjmkhexe", + "targetFabricProviderId": "fummhhiwjcbbyvyyvhjjmogwkvljkg", + "fabricId": "pngqu", + "targetFabricId": "n", + "draId": "rrpzzgiewegjdrkoxdjq", + "targetDraId": "zcfiusfbvulsijiokgwzjgarh", "resyncRequired": true, - "lastSuccessfulPlannedFailoverTime": "2023-07-26T04:32:10.699Z", - "lastSuccessfulUnplannedFailoverTime": "2023-07-26T04:32:10.699Z", - "lastSuccessfulTestFailoverTime": "2023-07-26T04:32:10.699Z", + "lastSuccessfulPlannedFailoverTime": "2023-08-02T22:38:41.470Z", + "lastSuccessfulUnplannedFailoverTime": "2023-08-02T22:38:41.470Z", + "lastSuccessfulTestFailoverTime": "2023-08-02T22:38:41.470Z", "currentJob": { - "scenarioName": "sqhzavonxvrv", - "id": "kzwh", - "name": "ulwohmkldvggnuqjjc", - "displayName": "xsyleqecj", - "state": "z", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "xbwdhyqofcqcsaovsvwinngqwuaguz", + "id": "suiypqsjg", + "name": "dgpusgkt", + "displayName": "mmku", + "state": "mk", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "allowedJobs": [ - "yxfyvnqqjnjsehokpyprrjwtpvoy" + "nwqzxmyfhjmnmgynyulk" ], "lastFailedEnableProtectionJob": { - "scenarioName": "wlfquvltzmsuvicsxz", - "id": "myvaphlzsolgldz", - "name": "gicgfarlyxks", - "displayName": "vn", - "state": "ix", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "menampbsksxi", + "id": "qimdhgdmaglwojsmwyjieeiai", + "name": "skbvklopgfv", + "displayName": "cpydidwcdcyiwmesyytwdkdiq", + "state": "oswgwvtnjbilslwmujol", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "lastFailedPlannedFailoverJob": { - "scenarioName": "aknwtw", - "id": "cacudatqwcubevm", - "name": "oefaigdzgvacdsjnceoapdjaij", - "displayName": "uwrnhrmfbpwraat", - "state": "gdyglhw", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "xaw", + "id": "rvtgbifqihz", + "name": "i", + "displayName": "havjvyyrfc", + "state": "zfbmplsvmr", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "lastTestFailoverJob": { - "scenarioName": "ykyequkgzgb", - "id": "mfspzgpueawary", - "name": "hjysgzkfigfp", - "displayName": "mfcmhindfznpees", - "state": "flzlkmimylodonvntbidsfthid", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "mcbqzgeattozofartntparcu", + "id": "judbfmidcrfru", + "name": "cu", + "displayName": "ftmrfttpjiagnzrenxpymigukh", + "state": "ybrrrubekgekyfgmxtglqacpag", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "replicationHealth": "Normal", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "ProtectedItemModelCustomProperties" } }, - "id": "ocjekervkcluyvsbgtph", - "name": "plxev", - "type": "dkewgqjjofrfbjrqvrygjvinttfrae", + "id": "hqjupkwib", + "name": "fesmksblzbokuxojgbpffltdvdfpz", + "type": "xjt", "systemData": { - "createdBy": "qjejzz", - "createdByType": "osqwubo", - "createdAt": "2023-07-26T04:32:10.699Z", - "lastModifiedBy": "kpky", - "lastModifiedByType": "wpfsftqebdtqosoadts", - "lastModifiedAt": "2023-07-26T04:32:10.699Z" + "createdBy": "r", + "createdByType": "zyghlshuwovjhfpitwcfhkddscjkl", + "createdAt": "2023-08-02T22:38:41.470Z", + "lastModifiedBy": "nhfjnudsb", + "lastModifiedByType": "nmwthqlvbmwdcgui", + "lastModifiedAt": "2023-08-02T22:38:41.470Z" }, "tags": { - "key4295": "uqmnjhggs" + "key506": "ksuv" } } }, @@ -145,118 +145,118 @@ }, "body": { "properties": { - "policyName": "sgxncsesajon", - "replicationExtensionName": "vpc", - "correlationId": "tjxubphagtxvopmkkxsrcail", + "policyName": "kgahoneh", + "replicationExtensionName": "ra", + "correlationId": "ynykvizrjkliiab", "provisioningState": "Canceled", "protectionState": "UnprotectedStatesBegin", - "protectionStateDescription": "q", + "protectionStateDescription": "cwccvvryeshblczlnevwwxwxvqjtov", "testFailoverState": "None", - "testFailoverStateDescription": "btsazlqowahtbcigjm", + "testFailoverStateDescription": "suysizrdlcbouxqycxmllvehdzv", "resynchronizationState": "None", - "fabricObjectId": "lrxgas", - "fabricObjectName": "lfjkbjywinwfsmt", - "sourceFabricProviderId": "xplqjevidar", - "targetFabricProviderId": "pfqfytwspbcq", - "fabricId": "ghfpgijrekipfpuc", - "targetFabricId": "iejrlgpgtvumdysuokz", - "draId": "plwccvutrkasiq", - "targetDraId": "kfvnbpxeuodfhhvmmlkloxgv", + "fabricObjectId": "hdwqqzyvlylyhno", + "fabricObjectName": "neffchwmyoixetcfdwivsvpgz", + "sourceFabricProviderId": "pegbqsbisnzjmkhexe", + "targetFabricProviderId": "fummhhiwjcbbyvyyvhjjmogwkvljkg", + "fabricId": "pngqu", + "targetFabricId": "n", + "draId": "rrpzzgiewegjdrkoxdjq", + "targetDraId": "zcfiusfbvulsijiokgwzjgarh", "resyncRequired": true, - "lastSuccessfulPlannedFailoverTime": "2023-07-26T04:32:10.699Z", - "lastSuccessfulUnplannedFailoverTime": "2023-07-26T04:32:10.699Z", - "lastSuccessfulTestFailoverTime": "2023-07-26T04:32:10.699Z", + "lastSuccessfulPlannedFailoverTime": "2023-08-02T22:38:41.470Z", + "lastSuccessfulUnplannedFailoverTime": "2023-08-02T22:38:41.470Z", + "lastSuccessfulTestFailoverTime": "2023-08-02T22:38:41.470Z", "currentJob": { - "scenarioName": "sqhzavonxvrv", - "id": "kzwh", - "name": "ulwohmkldvggnuqjjc", - "displayName": "xsyleqecj", - "state": "z", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "xbwdhyqofcqcsaovsvwinngqwuaguz", + "id": "suiypqsjg", + "name": "dgpusgkt", + "displayName": "mmku", + "state": "mk", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "allowedJobs": [ - "yxfyvnqqjnjsehokpyprrjwtpvoy" + "nwqzxmyfhjmnmgynyulk" ], "lastFailedEnableProtectionJob": { - "scenarioName": "wlfquvltzmsuvicsxz", - "id": "myvaphlzsolgldz", - "name": "gicgfarlyxks", - "displayName": "vn", - "state": "ix", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "menampbsksxi", + "id": "qimdhgdmaglwojsmwyjieeiai", + "name": "skbvklopgfv", + "displayName": "cpydidwcdcyiwmesyytwdkdiq", + "state": "oswgwvtnjbilslwmujol", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "lastFailedPlannedFailoverJob": { - "scenarioName": "aknwtw", - "id": "cacudatqwcubevm", - "name": "oefaigdzgvacdsjnceoapdjaij", - "displayName": "uwrnhrmfbpwraat", - "state": "gdyglhw", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "xaw", + "id": "rvtgbifqihz", + "name": "i", + "displayName": "havjvyyrfc", + "state": "zfbmplsvmr", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "lastTestFailoverJob": { - "scenarioName": "ykyequkgzgb", - "id": "mfspzgpueawary", - "name": "hjysgzkfigfp", - "displayName": "mfcmhindfznpees", - "state": "flzlkmimylodonvntbidsfthid", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "mcbqzgeattozofartntparcu", + "id": "judbfmidcrfru", + "name": "cu", + "displayName": "ftmrfttpjiagnzrenxpymigukh", + "state": "ybrrrubekgekyfgmxtglqacpag", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "replicationHealth": "Normal", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "ProtectedItemModelCustomProperties" } }, - "id": "ocjekervkcluyvsbgtph", - "name": "plxev", - "type": "dkewgqjjofrfbjrqvrygjvinttfrae", + "id": "hqjupkwib", + "name": "fesmksblzbokuxojgbpffltdvdfpz", + "type": "xjt", "systemData": { - "createdBy": "qjejzz", - "createdByType": "osqwubo", - "createdAt": "2023-07-26T04:32:10.699Z", - "lastModifiedBy": "kpky", - "lastModifiedByType": "wpfsftqebdtqosoadts", - "lastModifiedAt": "2023-07-26T04:32:10.699Z" + "createdBy": "r", + "createdByType": "zyghlshuwovjhfpitwcfhkddscjkl", + "createdAt": "2023-08-02T22:38:41.470Z", + "lastModifiedBy": "nhfjnudsb", + "lastModifiedByType": "nmwthqlvbmwdcgui", + "lastModifiedAt": "2023-08-02T22:38:41.470Z" }, "tags": { - "key4295": "uqmnjhggs" + "key506": "ksuv" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json index 620c12926c03..4fb152deb560 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json @@ -2,10 +2,10 @@ "title": "Deletes the protected item.", "operationId": "ProtectedItem_Delete", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "p", - "protectedItemName": "G3Bxc", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "GHxwtWx", + "protectedItemName": "G7J", "forceDelete": true, "api-version": "2021-02-16-preview" }, diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json index deb79ac53a42..ad99e905b955 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json @@ -2,128 +2,128 @@ "title": "Gets the protected item.", "operationId": "ProtectedItem_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "cJRT", - "protectedItemName": "C8TiPfJ", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "lW", + "protectedItemName": "3", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { "properties": { - "policyName": "sgxncsesajon", - "replicationExtensionName": "vpc", - "correlationId": "tjxubphagtxvopmkkxsrcail", + "policyName": "kgahoneh", + "replicationExtensionName": "ra", + "correlationId": "ynykvizrjkliiab", "provisioningState": "Canceled", "protectionState": "UnprotectedStatesBegin", - "protectionStateDescription": "q", + "protectionStateDescription": "cwccvvryeshblczlnevwwxwxvqjtov", "testFailoverState": "None", - "testFailoverStateDescription": "btsazlqowahtbcigjm", + "testFailoverStateDescription": "suysizrdlcbouxqycxmllvehdzv", "resynchronizationState": "None", - "fabricObjectId": "lrxgas", - "fabricObjectName": "lfjkbjywinwfsmt", - "sourceFabricProviderId": "xplqjevidar", - "targetFabricProviderId": "pfqfytwspbcq", - "fabricId": "ghfpgijrekipfpuc", - "targetFabricId": "iejrlgpgtvumdysuokz", - "draId": "plwccvutrkasiq", - "targetDraId": "kfvnbpxeuodfhhvmmlkloxgv", + "fabricObjectId": "hdwqqzyvlylyhno", + "fabricObjectName": "neffchwmyoixetcfdwivsvpgz", + "sourceFabricProviderId": "pegbqsbisnzjmkhexe", + "targetFabricProviderId": "fummhhiwjcbbyvyyvhjjmogwkvljkg", + "fabricId": "pngqu", + "targetFabricId": "n", + "draId": "rrpzzgiewegjdrkoxdjq", + "targetDraId": "zcfiusfbvulsijiokgwzjgarh", "resyncRequired": true, - "lastSuccessfulPlannedFailoverTime": "2023-07-26T04:32:10.699Z", - "lastSuccessfulUnplannedFailoverTime": "2023-07-26T04:32:10.699Z", - "lastSuccessfulTestFailoverTime": "2023-07-26T04:32:10.699Z", + "lastSuccessfulPlannedFailoverTime": "2023-08-02T22:38:41.470Z", + "lastSuccessfulUnplannedFailoverTime": "2023-08-02T22:38:41.470Z", + "lastSuccessfulTestFailoverTime": "2023-08-02T22:38:41.470Z", "currentJob": { - "scenarioName": "sqhzavonxvrv", - "id": "kzwh", - "name": "ulwohmkldvggnuqjjc", - "displayName": "xsyleqecj", - "state": "z", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "xbwdhyqofcqcsaovsvwinngqwuaguz", + "id": "suiypqsjg", + "name": "dgpusgkt", + "displayName": "mmku", + "state": "mk", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "allowedJobs": [ - "yxfyvnqqjnjsehokpyprrjwtpvoy" + "nwqzxmyfhjmnmgynyulk" ], "lastFailedEnableProtectionJob": { - "scenarioName": "wlfquvltzmsuvicsxz", - "id": "myvaphlzsolgldz", - "name": "gicgfarlyxks", - "displayName": "vn", - "state": "ix", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "menampbsksxi", + "id": "qimdhgdmaglwojsmwyjieeiai", + "name": "skbvklopgfv", + "displayName": "cpydidwcdcyiwmesyytwdkdiq", + "state": "oswgwvtnjbilslwmujol", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "lastFailedPlannedFailoverJob": { - "scenarioName": "aknwtw", - "id": "cacudatqwcubevm", - "name": "oefaigdzgvacdsjnceoapdjaij", - "displayName": "uwrnhrmfbpwraat", - "state": "gdyglhw", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "xaw", + "id": "rvtgbifqihz", + "name": "i", + "displayName": "havjvyyrfc", + "state": "zfbmplsvmr", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "lastTestFailoverJob": { - "scenarioName": "ykyequkgzgb", - "id": "mfspzgpueawary", - "name": "hjysgzkfigfp", - "displayName": "mfcmhindfznpees", - "state": "flzlkmimylodonvntbidsfthid", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "mcbqzgeattozofartntparcu", + "id": "judbfmidcrfru", + "name": "cu", + "displayName": "ftmrfttpjiagnzrenxpymigukh", + "state": "ybrrrubekgekyfgmxtglqacpag", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "replicationHealth": "Normal", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "ProtectedItemModelCustomProperties" } }, - "id": "ocjekervkcluyvsbgtph", - "name": "plxev", - "type": "dkewgqjjofrfbjrqvrygjvinttfrae", + "id": "hqjupkwib", + "name": "fesmksblzbokuxojgbpffltdvdfpz", + "type": "xjt", "systemData": { - "createdBy": "qjejzz", - "createdByType": "osqwubo", - "createdAt": "2023-07-26T04:32:10.699Z", - "lastModifiedBy": "kpky", - "lastModifiedByType": "wpfsftqebdtqosoadts", - "lastModifiedAt": "2023-07-26T04:32:10.699Z" + "createdBy": "r", + "createdByType": "zyghlshuwovjhfpitwcfhkddscjkl", + "createdAt": "2023-08-02T22:38:41.470Z", + "lastModifiedBy": "nhfjnudsb", + "lastModifiedByType": "nmwthqlvbmwdcgui", + "lastModifiedAt": "2023-08-02T22:38:41.470Z" }, "tags": { - "key4295": "uqmnjhggs" + "key506": "ksuv" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json index b09c7d4f1b82..0e3e7a3a33bf 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json @@ -2,9 +2,9 @@ "title": "Lists the protected items.", "operationId": "ProtectedItem_List", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "7BjN1", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "C66y", "api-version": "2021-02-16-preview" }, "responses": { @@ -13,122 +13,122 @@ "value": [ { "properties": { - "policyName": "sgxncsesajon", - "replicationExtensionName": "vpc", - "correlationId": "tjxubphagtxvopmkkxsrcail", + "policyName": "kgahoneh", + "replicationExtensionName": "ra", + "correlationId": "ynykvizrjkliiab", "provisioningState": "Canceled", "protectionState": "UnprotectedStatesBegin", - "protectionStateDescription": "q", + "protectionStateDescription": "cwccvvryeshblczlnevwwxwxvqjtov", "testFailoverState": "None", - "testFailoverStateDescription": "btsazlqowahtbcigjm", + "testFailoverStateDescription": "suysizrdlcbouxqycxmllvehdzv", "resynchronizationState": "None", - "fabricObjectId": "lrxgas", - "fabricObjectName": "lfjkbjywinwfsmt", - "sourceFabricProviderId": "xplqjevidar", - "targetFabricProviderId": "pfqfytwspbcq", - "fabricId": "ghfpgijrekipfpuc", - "targetFabricId": "iejrlgpgtvumdysuokz", - "draId": "plwccvutrkasiq", - "targetDraId": "kfvnbpxeuodfhhvmmlkloxgv", + "fabricObjectId": "hdwqqzyvlylyhno", + "fabricObjectName": "neffchwmyoixetcfdwivsvpgz", + "sourceFabricProviderId": "pegbqsbisnzjmkhexe", + "targetFabricProviderId": "fummhhiwjcbbyvyyvhjjmogwkvljkg", + "fabricId": "pngqu", + "targetFabricId": "n", + "draId": "rrpzzgiewegjdrkoxdjq", + "targetDraId": "zcfiusfbvulsijiokgwzjgarh", "resyncRequired": true, - "lastSuccessfulPlannedFailoverTime": "2023-07-26T04:32:10.699Z", - "lastSuccessfulUnplannedFailoverTime": "2023-07-26T04:32:10.699Z", - "lastSuccessfulTestFailoverTime": "2023-07-26T04:32:10.699Z", + "lastSuccessfulPlannedFailoverTime": "2023-08-02T22:38:41.470Z", + "lastSuccessfulUnplannedFailoverTime": "2023-08-02T22:38:41.470Z", + "lastSuccessfulTestFailoverTime": "2023-08-02T22:38:41.470Z", "currentJob": { - "scenarioName": "sqhzavonxvrv", - "id": "kzwh", - "name": "ulwohmkldvggnuqjjc", - "displayName": "xsyleqecj", - "state": "z", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "xbwdhyqofcqcsaovsvwinngqwuaguz", + "id": "suiypqsjg", + "name": "dgpusgkt", + "displayName": "mmku", + "state": "mk", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "allowedJobs": [ - "yxfyvnqqjnjsehokpyprrjwtpvoy" + "nwqzxmyfhjmnmgynyulk" ], "lastFailedEnableProtectionJob": { - "scenarioName": "wlfquvltzmsuvicsxz", - "id": "myvaphlzsolgldz", - "name": "gicgfarlyxks", - "displayName": "vn", - "state": "ix", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "menampbsksxi", + "id": "qimdhgdmaglwojsmwyjieeiai", + "name": "skbvklopgfv", + "displayName": "cpydidwcdcyiwmesyytwdkdiq", + "state": "oswgwvtnjbilslwmujol", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "lastFailedPlannedFailoverJob": { - "scenarioName": "aknwtw", - "id": "cacudatqwcubevm", - "name": "oefaigdzgvacdsjnceoapdjaij", - "displayName": "uwrnhrmfbpwraat", - "state": "gdyglhw", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "xaw", + "id": "rvtgbifqihz", + "name": "i", + "displayName": "havjvyyrfc", + "state": "zfbmplsvmr", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "lastTestFailoverJob": { - "scenarioName": "ykyequkgzgb", - "id": "mfspzgpueawary", - "name": "hjysgzkfigfp", - "displayName": "mfcmhindfznpees", - "state": "flzlkmimylodonvntbidsfthid", - "startTime": "2023-07-26T04:32:10.699Z", - "endTime": "2023-07-26T04:32:10.699Z" + "scenarioName": "mcbqzgeattozofartntparcu", + "id": "judbfmidcrfru", + "name": "cu", + "displayName": "ftmrfttpjiagnzrenxpymigukh", + "state": "ybrrrubekgekyfgmxtglqacpag", + "startTime": "2023-08-02T22:38:41.470Z", + "endTime": "2023-08-02T22:38:41.470Z" }, "replicationHealth": "Normal", "healthErrors": [ { - "affectedResourceType": "scl", + "affectedResourceType": "vrnurlgsrdvsdllfjabewr", "affectedResourceCorrelationIds": [ - "suuuksmcktnxbpjywtkxj" + "elaxsdyoauts" ], "childErrors": [ { - "code": "ihcnououhlwaebhspvcdnjmac", - "healthCategory": "s", - "category": "xdntalnemzkpfxwgwwcwmlo", - "severity": "qzthnuuqmqhjuwcg", - "source": "wxntxvg", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "jso", + "healthCategory": "eoqmuxhpveoh", + "category": "wwxaepbgymevx", + "severity": "emehrmfqjuenocdndpx", + "source": "jgafmixbefrftrebblrsf", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "aujalvaefgdhjgtvfzkcnnwkjvzbb", - "message": "egvpexikcoeupndafkhvvnke", - "causes": "vhhcrzefquivxrplrfyeyr", - "recommendation": "fmpvbeldyd" + "summary": "vqljp", + "message": "diqwh", + "causes": "vsfbghitg", + "recommendation": "g" } ], - "code": "kycicesglsgolsvt", - "healthCategory": "aonpppqnslmdbrjdiqtemqemw", - "category": "btxndsmwktytkkawzk", - "severity": "qmjndhxeqtjpavz", - "source": "slduvicpgjyasvine", - "creationTime": "2023-07-26T04:32:07.452Z", + "code": "xvkhvxpmxvycl", + "healthCategory": "gxqisiwkkgyqisxlnq", + "category": "ddqarlwkajosfgiffuijtgwxf", + "severity": "lttaeoxsmxh", + "source": "mrxerzl", + "creationTime": "2023-08-02T22:38:38.126Z", "isCustomerResolvable": true, - "summary": "ndpli", - "message": "ghceiapqtyyfystxuuwbykowtxt", - "causes": "ajsyt", - "recommendation": "zjlmfqtbphnrsontgzmpftlsily" + "summary": "suashwmirng", + "message": "esibtugwmflwpm", + "causes": "w", + "recommendation": "kptcqaavmhmti" } ], "customProperties": { "instanceType": "ProtectedItemModelCustomProperties" } }, - "id": "ocjekervkcluyvsbgtph", - "name": "plxev", - "type": "dkewgqjjofrfbjrqvrygjvinttfrae", + "id": "hqjupkwib", + "name": "fesmksblzbokuxojgbpffltdvdfpz", + "type": "xjt", "systemData": { - "createdBy": "qjejzz", - "createdByType": "osqwubo", - "createdAt": "2023-07-26T04:32:10.699Z", - "lastModifiedBy": "kpky", - "lastModifiedByType": "wpfsftqebdtqosoadts", - "lastModifiedAt": "2023-07-26T04:32:10.699Z" + "createdBy": "r", + "createdByType": "zyghlshuwovjhfpitwcfhkddscjkl", + "createdAt": "2023-08-02T22:38:41.470Z", + "lastModifiedBy": "nhfjnudsb", + "lastModifiedByType": "nmwthqlvbmwdcgui", + "lastModifiedAt": "2023-08-02T22:38:41.470Z" }, "tags": { - "key4295": "uqmnjhggs" + "key506": "ksuv" } } ], - "nextLink": "tydg" + "nextLink": "qhdjurlgwpxpxzirxuyxqtwlqlfkiq" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json index 63adce398b2b..d3215f473d84 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json @@ -2,10 +2,10 @@ "title": "Performs planned failover.", "operationId": "ProtectedItem_PlannedFailover", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "PRVt", - "protectedItemName": "K", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "WSTc", + "protectedItemName": "2Y7U", "api-version": "2021-02-16-preview", "body": { "properties": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json index beb455467c7f..31091aa76999 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json @@ -2,36 +2,36 @@ "title": "Gets the recovery point.", "operationId": "RecoveryPoints_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "7nHV", - "protectedItemName": "fK", - "recoveryPointName": "m1O", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "ksiNF", + "protectedItemName": "H", + "recoveryPointName": "WS9P", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { "properties": { - "recoveryPointTime": "2023-07-26T04:32:11.594Z", + "recoveryPointTime": "2023-08-02T22:38:42.395Z", "recoveryPointType": "ApplicationConsistent", "customProperties": { "instanceType": "RecoveryPointModelCustomProperties" } }, - "id": "xbsljvumvjutuz", - "name": "psctevbcfcdwbxioxkdnwriw", - "type": "zxaqwdkjmstfhmtsoifhtt", + "id": "uwndxbvkcbdcmklpamlsvflqeytfxm", + "name": "ymc", + "type": "rxtsj", "systemData": { - "createdBy": "pxycxedbfyrxukcnxbeadmak", - "createdByType": "ajqhoxlocziqqyhvhjoz", - "createdAt": "2023-07-26T04:32:11.594Z", - "lastModifiedBy": "pzqmyimexbppjdivztdrf", - "lastModifiedByType": "eyf", - "lastModifiedAt": "2023-07-26T04:32:11.594Z" + "createdBy": "dkuqaqlwjdfukpyd", + "createdByType": "bsknvjcdsmwgrovsuqvsbtbgkb", + "createdAt": "2023-08-02T22:38:42.395Z", + "lastModifiedBy": "hddqeefddwawcxewidiy", + "lastModifiedByType": "ys", + "lastModifiedAt": "2023-08-02T22:38:42.395Z" }, "tags": { - "key7962": "crudy" + "key5895": "ary" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json index 6b119de8ae45..c1a8e04ee361 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json @@ -2,10 +2,10 @@ "title": "Lists the recovery points.", "operationId": "RecoveryPoints_List", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "L", - "protectedItemName": "t", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "j7P", + "protectedItemName": "gR", "api-version": "2021-02-16-preview" }, "responses": { @@ -14,29 +14,29 @@ "value": [ { "properties": { - "recoveryPointTime": "2023-07-26T04:32:11.594Z", + "recoveryPointTime": "2023-08-02T22:38:42.395Z", "recoveryPointType": "ApplicationConsistent", "customProperties": { "instanceType": "RecoveryPointModelCustomProperties" } }, - "id": "xbsljvumvjutuz", - "name": "psctevbcfcdwbxioxkdnwriw", - "type": "zxaqwdkjmstfhmtsoifhtt", + "id": "uwndxbvkcbdcmklpamlsvflqeytfxm", + "name": "ymc", + "type": "rxtsj", "systemData": { - "createdBy": "pxycxedbfyrxukcnxbeadmak", - "createdByType": "ajqhoxlocziqqyhvhjoz", - "createdAt": "2023-07-26T04:32:11.594Z", - "lastModifiedBy": "pzqmyimexbppjdivztdrf", - "lastModifiedByType": "eyf", - "lastModifiedAt": "2023-07-26T04:32:11.594Z" + "createdBy": "dkuqaqlwjdfukpyd", + "createdByType": "bsknvjcdsmwgrovsuqvsbtbgkb", + "createdAt": "2023-08-02T22:38:42.395Z", + "lastModifiedBy": "hddqeefddwawcxewidiy", + "lastModifiedByType": "ys", + "lastModifiedAt": "2023-08-02T22:38:42.395Z" }, "tags": { - "key7962": "crudy" + "key5895": "ary" } } ], - "nextLink": "kpptlihghunzhzpkqqexkebkdix" + "nextLink": "soecwvmsezmzilocjthrztz" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json index 359c0c9c6cef..aa4a3144f48e 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json @@ -2,21 +2,21 @@ "title": "Gets the replication extension operation status.", "operationId": "ReplicationExtensionOperationStatus_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "DFr", - "replicationExtensionName": "LV", - "operationId": "g", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "1iqo7", + "replicationExtensionName": "w4", + "operationId": "laq", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "fh", - "name": "llbceylzpfwmnwunyyiyt", - "status": "tuiziokffdfr", - "startTime": "idpuxubqqdwzo", - "endTime": "zgiqrzfvsgatjmdkzoktumvnge" + "id": "qyvq", + "name": "etlwwkikigezxhr", + "status": "qilxkagrud", + "startTime": "blauxaexlidnzohzumt", + "endTime": "fiqojtkadhzrjonytznioepo" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json index 65347b66854f..6d0fac8faa75 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json @@ -2,10 +2,10 @@ "title": "Puts the replication extension.", "operationId": "ReplicationExtension_Create", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "DHTw4i", - "replicationExtensionName": "y4f23", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "J7V4PL", + "replicationExtensionName": "x", "api-version": "2021-02-16-preview", "body": { "properties": { @@ -14,7 +14,7 @@ } }, "tags": { - "key4223": "binha" + "key9390": "stxdfawjgowxwuhxffjci" } } }, @@ -27,19 +27,19 @@ "instanceType": "ReplicationExtensionModelCustomProperties" } }, - "id": "imhavbkjsftwsausjlaksdowiwwac", - "name": "mdyzsrhsmhyjq", - "type": "scxrabylhsjbzsptbopmahhesfvbr", + "id": "szcbqcnl", + "name": "uuwtylzwr", + "type": "gsnuwrzdhywgzvmkhdmwmqtw", "systemData": { - "createdBy": "giebfpdmloxwpf", - "createdByType": "n", - "createdAt": "2023-07-26T04:32:11.891Z", - "lastModifiedBy": "qiuvpcngcedqaaw", - "lastModifiedByType": "pwrtzqlmtydsluijjgyl", - "lastModifiedAt": "2023-07-26T04:32:11.891Z" + "createdBy": "esaomplibtkkbtjhpw", + "createdByType": "iiykhxkmijit", + "createdAt": "2023-08-02T22:38:42.704Z", + "lastModifiedBy": "vuvnrdks", + "lastModifiedByType": "uuektjzeunwbatsksnaoplhzru", + "lastModifiedAt": "2023-08-02T22:38:42.705Z" }, "tags": { - "key4223": "binha" + "key9390": "stxdfawjgowxwuhxffjci" } } }, @@ -54,19 +54,19 @@ "instanceType": "ReplicationExtensionModelCustomProperties" } }, - "id": "imhavbkjsftwsausjlaksdowiwwac", - "name": "mdyzsrhsmhyjq", - "type": "scxrabylhsjbzsptbopmahhesfvbr", + "id": "szcbqcnl", + "name": "uuwtylzwr", + "type": "gsnuwrzdhywgzvmkhdmwmqtw", "systemData": { - "createdBy": "giebfpdmloxwpf", - "createdByType": "n", - "createdAt": "2023-07-26T04:32:11.891Z", - "lastModifiedBy": "qiuvpcngcedqaaw", - "lastModifiedByType": "pwrtzqlmtydsluijjgyl", - "lastModifiedAt": "2023-07-26T04:32:11.891Z" + "createdBy": "esaomplibtkkbtjhpw", + "createdByType": "iiykhxkmijit", + "createdAt": "2023-08-02T22:38:42.704Z", + "lastModifiedBy": "vuvnrdks", + "lastModifiedByType": "uuektjzeunwbatsksnaoplhzru", + "lastModifiedAt": "2023-08-02T22:38:42.705Z" }, "tags": { - "key4223": "binha" + "key9390": "stxdfawjgowxwuhxffjci" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json index 6e38c389f8cd..8b7069a7e029 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json @@ -2,10 +2,10 @@ "title": "Deletes the replication extension.", "operationId": "ReplicationExtension_Delete", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "Ras", - "replicationExtensionName": "edHtri", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "R4lR05", + "replicationExtensionName": "WMOG2", "api-version": "2021-02-16-preview" }, "responses": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json index 0deb4d2f605f..7e114c14a954 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json @@ -2,10 +2,10 @@ "title": "Gets the replication extension.", "operationId": "ReplicationExtension_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "N", - "replicationExtensionName": "3", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "KR", + "replicationExtensionName": "D", "api-version": "2021-02-16-preview" }, "responses": { @@ -17,19 +17,19 @@ "instanceType": "ReplicationExtensionModelCustomProperties" } }, - "id": "imhavbkjsftwsausjlaksdowiwwac", - "name": "mdyzsrhsmhyjq", - "type": "scxrabylhsjbzsptbopmahhesfvbr", + "id": "szcbqcnl", + "name": "uuwtylzwr", + "type": "gsnuwrzdhywgzvmkhdmwmqtw", "systemData": { - "createdBy": "giebfpdmloxwpf", - "createdByType": "n", - "createdAt": "2023-07-26T04:32:11.891Z", - "lastModifiedBy": "qiuvpcngcedqaaw", - "lastModifiedByType": "pwrtzqlmtydsluijjgyl", - "lastModifiedAt": "2023-07-26T04:32:11.891Z" + "createdBy": "esaomplibtkkbtjhpw", + "createdByType": "iiykhxkmijit", + "createdAt": "2023-08-02T22:38:42.704Z", + "lastModifiedBy": "vuvnrdks", + "lastModifiedByType": "uuektjzeunwbatsksnaoplhzru", + "lastModifiedAt": "2023-08-02T22:38:42.705Z" }, "tags": { - "key4223": "binha" + "key9390": "stxdfawjgowxwuhxffjci" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json index 151c39751a28..b1758d36b64d 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json @@ -2,9 +2,9 @@ "title": "Lists the replication extensions.", "operationId": "ReplicationExtension_List", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "regerg", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "0wO55W", "api-version": "2021-02-16-preview" }, "responses": { @@ -18,23 +18,23 @@ "instanceType": "ReplicationExtensionModelCustomProperties" } }, - "id": "imhavbkjsftwsausjlaksdowiwwac", - "name": "mdyzsrhsmhyjq", - "type": "scxrabylhsjbzsptbopmahhesfvbr", + "id": "szcbqcnl", + "name": "uuwtylzwr", + "type": "gsnuwrzdhywgzvmkhdmwmqtw", "systemData": { - "createdBy": "giebfpdmloxwpf", - "createdByType": "n", - "createdAt": "2023-07-26T04:32:11.891Z", - "lastModifiedBy": "qiuvpcngcedqaaw", - "lastModifiedByType": "pwrtzqlmtydsluijjgyl", - "lastModifiedAt": "2023-07-26T04:32:11.891Z" + "createdBy": "esaomplibtkkbtjhpw", + "createdByType": "iiykhxkmijit", + "createdAt": "2023-08-02T22:38:42.704Z", + "lastModifiedBy": "vuvnrdks", + "lastModifiedByType": "uuektjzeunwbatsksnaoplhzru", + "lastModifiedAt": "2023-08-02T22:38:42.705Z" }, "tags": { - "key4223": "binha" + "key9390": "stxdfawjgowxwuhxffjci" } } ], - "nextLink": "pbhzuytshsr" + "nextLink": "ihczqreb" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json index 298fd860f2da..c2849601e921 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json @@ -2,20 +2,20 @@ "title": "Gets the vault operation status.", "operationId": "VaultOperationStatus_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "WU", - "operationId": "hlgocyhwscx", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "5Lx", + "operationId": "laq", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "fh", - "name": "llbceylzpfwmnwunyyiyt", - "status": "tuiziokffdfr", - "startTime": "idpuxubqqdwzo", - "endTime": "zgiqrzfvsgatjmdkzoktumvnge" + "id": "qyvq", + "name": "etlwwkikigezxhr", + "status": "qilxkagrud", + "startTime": "blauxaexlidnzohzumt", + "endTime": "fiqojtkadhzrjonytznioepo" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json index ed70e2f312c6..ea808430f2c3 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json @@ -2,42 +2,42 @@ "title": "Puts the vault.", "operationId": "Vault_Create", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "5Mh", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "X", "api-version": "2021-02-16-preview", "body": { - "location": "gabkaxdnzsghooejvnpvhdsonzj", + "location": "djlbaafksfkekjmkzmozwcrfszg", "properties": { "vaultType": "DisasterRecovery" }, "tags": { - "key8258": "htodycwxeg" + "key9501": "lebrdtqhchahzhcvv" } } }, "responses": { "200": { "body": { - "location": "gabkaxdnzsghooejvnpvhdsonzj", + "location": "djlbaafksfkekjmkzmozwcrfszg", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "gkposk", + "serviceResourceId": "j", "vaultType": "DisasterRecovery" }, - "id": "jikhuieptl", - "name": "azbulb", - "type": "drddfpr", + "id": "kfvgrqssuleofijfafmagzjvq", + "name": "pkudpdjwr", + "type": "ppkskgaqzebey", "systemData": { - "createdBy": "ysrtx", - "createdByType": "axhcnhxrmaewrgbqqt", - "createdAt": "2023-07-26T04:32:13.162Z", - "lastModifiedBy": "xzmrneulnwsgkew", - "lastModifiedByType": "xdiyqsszzlk", - "lastModifiedAt": "2023-07-26T04:32:13.162Z" + "createdBy": "dkxnvugbdthzslyqxgqu", + "createdByType": "wsmjfduhnsdajdpfikbjm", + "createdAt": "2023-08-02T22:38:44.004Z", + "lastModifiedBy": "umixkaudrur", + "lastModifiedByType": "cmaetzxzfbxsskqpblaafj", + "lastModifiedAt": "2023-08-02T22:38:44.004Z" }, "tags": { - "key8258": "htodycwxeg" + "key9501": "lebrdtqhchahzhcvv" } } }, @@ -46,25 +46,25 @@ "location": "https://contoso.com/operationstatus" }, "body": { - "location": "gabkaxdnzsghooejvnpvhdsonzj", + "location": "djlbaafksfkekjmkzmozwcrfszg", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "gkposk", + "serviceResourceId": "j", "vaultType": "DisasterRecovery" }, - "id": "jikhuieptl", - "name": "azbulb", - "type": "drddfpr", + "id": "kfvgrqssuleofijfafmagzjvq", + "name": "pkudpdjwr", + "type": "ppkskgaqzebey", "systemData": { - "createdBy": "ysrtx", - "createdByType": "axhcnhxrmaewrgbqqt", - "createdAt": "2023-07-26T04:32:13.162Z", - "lastModifiedBy": "xzmrneulnwsgkew", - "lastModifiedByType": "xdiyqsszzlk", - "lastModifiedAt": "2023-07-26T04:32:13.162Z" + "createdBy": "dkxnvugbdthzslyqxgqu", + "createdByType": "wsmjfduhnsdajdpfikbjm", + "createdAt": "2023-08-02T22:38:44.004Z", + "lastModifiedBy": "umixkaudrur", + "lastModifiedByType": "cmaetzxzfbxsskqpblaafj", + "lastModifiedAt": "2023-08-02T22:38:44.004Z" }, "tags": { - "key8258": "htodycwxeg" + "key9501": "lebrdtqhchahzhcvv" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json index 4e5a91c98a14..b31450731616 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json @@ -2,9 +2,9 @@ "title": "Deletes the vault.", "operationId": "Vault_Delete", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "6X8", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "iHY", "api-version": "2021-02-16-preview" }, "responses": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json index 31e86c2c0717..6bc03d7889d6 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json @@ -2,33 +2,33 @@ "title": "Gets the vault.", "operationId": "Vault_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "Yp", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "fawfqwe", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "location": "gabkaxdnzsghooejvnpvhdsonzj", + "location": "djlbaafksfkekjmkzmozwcrfszg", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "gkposk", + "serviceResourceId": "j", "vaultType": "DisasterRecovery" }, - "id": "jikhuieptl", - "name": "azbulb", - "type": "drddfpr", + "id": "kfvgrqssuleofijfafmagzjvq", + "name": "pkudpdjwr", + "type": "ppkskgaqzebey", "systemData": { - "createdBy": "ysrtx", - "createdByType": "axhcnhxrmaewrgbqqt", - "createdAt": "2023-07-26T04:32:13.162Z", - "lastModifiedBy": "xzmrneulnwsgkew", - "lastModifiedByType": "xdiyqsszzlk", - "lastModifiedAt": "2023-07-26T04:32:13.162Z" + "createdBy": "dkxnvugbdthzslyqxgqu", + "createdByType": "wsmjfduhnsdajdpfikbjm", + "createdAt": "2023-08-02T22:38:44.004Z", + "lastModifiedBy": "umixkaudrur", + "lastModifiedByType": "cmaetzxzfbxsskqpblaafj", + "lastModifiedAt": "2023-08-02T22:38:44.004Z" }, "tags": { - "key8258": "htodycwxeg" + "key9501": "lebrdtqhchahzhcvv" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json index c9c432c417ff..3fc19eb5646b 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json @@ -2,9 +2,9 @@ "title": "Lists the vaults.", "operationId": "Vault_List", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "continuationToken": "fqhlwposrssxviubalpqsj", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "continuationToken": "sfoxdqyvsjfou", "api-version": "2021-02-16-preview" }, "responses": { @@ -12,29 +12,29 @@ "body": { "value": [ { - "location": "gabkaxdnzsghooejvnpvhdsonzj", + "location": "djlbaafksfkekjmkzmozwcrfszg", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "gkposk", + "serviceResourceId": "j", "vaultType": "DisasterRecovery" }, - "id": "jikhuieptl", - "name": "azbulb", - "type": "drddfpr", + "id": "kfvgrqssuleofijfafmagzjvq", + "name": "pkudpdjwr", + "type": "ppkskgaqzebey", "systemData": { - "createdBy": "ysrtx", - "createdByType": "axhcnhxrmaewrgbqqt", - "createdAt": "2023-07-26T04:32:13.162Z", - "lastModifiedBy": "xzmrneulnwsgkew", - "lastModifiedByType": "xdiyqsszzlk", - "lastModifiedAt": "2023-07-26T04:32:13.162Z" + "createdBy": "dkxnvugbdthzslyqxgqu", + "createdByType": "wsmjfduhnsdajdpfikbjm", + "createdAt": "2023-08-02T22:38:44.004Z", + "lastModifiedBy": "umixkaudrur", + "lastModifiedByType": "cmaetzxzfbxsskqpblaafj", + "lastModifiedAt": "2023-08-02T22:38:44.004Z" }, "tags": { - "key8258": "htodycwxeg" + "key9501": "lebrdtqhchahzhcvv" } } ], - "nextLink": "kd" + "nextLink": "spfwgmbdadmvimthvdjsfyezwuj" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json index a34629d1821e..864cf78ddc77 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json @@ -2,8 +2,8 @@ "title": "Lists the vaults.", "operationId": "Vault_ListBySubscription", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "continuationToken": "xotdqonaywnugu", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "continuationToken": "u", "api-version": "2021-02-16-preview" }, "responses": { @@ -11,29 +11,29 @@ "body": { "value": [ { - "location": "gabkaxdnzsghooejvnpvhdsonzj", + "location": "djlbaafksfkekjmkzmozwcrfszg", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "gkposk", + "serviceResourceId": "j", "vaultType": "DisasterRecovery" }, - "id": "jikhuieptl", - "name": "azbulb", - "type": "drddfpr", + "id": "kfvgrqssuleofijfafmagzjvq", + "name": "pkudpdjwr", + "type": "ppkskgaqzebey", "systemData": { - "createdBy": "ysrtx", - "createdByType": "axhcnhxrmaewrgbqqt", - "createdAt": "2023-07-26T04:32:13.162Z", - "lastModifiedBy": "xzmrneulnwsgkew", - "lastModifiedByType": "xdiyqsszzlk", - "lastModifiedAt": "2023-07-26T04:32:13.162Z" + "createdBy": "dkxnvugbdthzslyqxgqu", + "createdByType": "wsmjfduhnsdajdpfikbjm", + "createdAt": "2023-08-02T22:38:44.004Z", + "lastModifiedBy": "umixkaudrur", + "lastModifiedByType": "cmaetzxzfbxsskqpblaafj", + "lastModifiedAt": "2023-08-02T22:38:44.004Z" }, "tags": { - "key8258": "htodycwxeg" + "key9501": "lebrdtqhchahzhcvv" } } ], - "nextLink": "kd" + "nextLink": "spfwgmbdadmvimthvdjsfyezwuj" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json index be470ad3414f..ede3756d7be2 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json @@ -2,41 +2,41 @@ "title": "Updates the vault.", "operationId": "Vault_Update", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "P4WC", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "AI", "api-version": "2021-02-16-preview", "body": { "properties": { "vaultType": "DisasterRecovery" }, "tags": { - "key1230": "yscomshqercxttuicl" + "key5654": "zeevnibcrp" } } }, "responses": { "200": { "body": { - "location": "gabkaxdnzsghooejvnpvhdsonzj", + "location": "djlbaafksfkekjmkzmozwcrfszg", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "gkposk", + "serviceResourceId": "j", "vaultType": "DisasterRecovery" }, - "id": "jikhuieptl", - "name": "azbulb", - "type": "drddfpr", + "id": "kfvgrqssuleofijfafmagzjvq", + "name": "pkudpdjwr", + "type": "ppkskgaqzebey", "systemData": { - "createdBy": "ysrtx", - "createdByType": "axhcnhxrmaewrgbqqt", - "createdAt": "2023-07-26T04:32:13.162Z", - "lastModifiedBy": "xzmrneulnwsgkew", - "lastModifiedByType": "xdiyqsszzlk", - "lastModifiedAt": "2023-07-26T04:32:13.162Z" + "createdBy": "dkxnvugbdthzslyqxgqu", + "createdByType": "wsmjfduhnsdajdpfikbjm", + "createdAt": "2023-08-02T22:38:44.004Z", + "lastModifiedBy": "umixkaudrur", + "lastModifiedByType": "cmaetzxzfbxsskqpblaafj", + "lastModifiedAt": "2023-08-02T22:38:44.004Z" }, "tags": { - "key8258": "htodycwxeg" + "key9501": "lebrdtqhchahzhcvv" } } }, diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json index edde8a5f9929..f1a4b9024585 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json @@ -2,21 +2,21 @@ "title": "Gets the workflow operation status.", "operationId": "WorkflowOperationStatus_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "Vn", - "workflowName": "2tL", - "operationId": "nzdxyjlssvwtyzdvib", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "I9pM", + "workflowName": "E", + "operationId": "laq", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "fh", - "name": "llbceylzpfwmnwunyyiyt", - "status": "tuiziokffdfr", - "startTime": "idpuxubqqdwzo", - "endTime": "zgiqrzfvsgatjmdkzoktumvnge" + "id": "qyvq", + "name": "etlwwkikigezxhr", + "status": "qilxkagrud", + "startTime": "blauxaexlidnzohzumt", + "endTime": "fiqojtkadhzrjonytznioepo" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json index 547f40eb13f6..ee82fe31e1ec 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json @@ -2,75 +2,75 @@ "title": "Gets the workflow.", "operationId": "Workflow_Get", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "4GC", - "workflowName": "AF", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "Dn", + "workflowName": "NX", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { "properties": { - "displayName": "zjztmllyyjcmwehdatjjlqqxcceroo", + "displayName": "kambseidlajvwcdaldfzr", "state": "Pending", - "startTime": "2023-07-26T04:32:14.264Z", - "endTime": "2023-07-26T04:32:14.264Z", - "objectId": "jwf", - "objectName": "rkrcruhxardvwyvcjazekxja", - "objectInternalId": "xakqplmyhhvneqg", - "objectInternalName": "vpaox", + "startTime": "2023-08-02T22:38:45.135Z", + "endTime": "2023-08-02T22:38:45.135Z", + "objectId": "flkbzthppkuesnjnnvowl", + "objectName": "ydnlvsnyicpvockadteqmsg", + "objectInternalId": "tgjzjeotrf", + "objectInternalName": "hyreabdbzaeenygkknxzmfs", "objectType": "AvsDiskPool", - "replicationProviderId": "brudafscxssusuzhrvkrfunmpxtywf", - "sourceFabricProviderId": "l", - "targetFabricProviderId": "yjjntkc", + "replicationProviderId": "novwcoizgpgmaa", + "sourceFabricProviderId": "nei", + "targetFabricProviderId": "jraqvcadxfmivvhnvbomzrxldco", "allowedActions": [ - "nqzmuj" + "zewakbufnlylifaaobhjjxtfwpoeqn" ], - "activityId": "qjsvwxtvotwucqucfcb", + "activityId": "wucdoxnzffdwsozprzktkjizyqrkns", "tasks": [ { - "taskName": "mvjsfppkkqvxsykartysepkpjps", + "taskName": "sygpksfmdhyncwowssknqwhjjxub", "state": "Pending", - "startTime": "2023-07-26T04:32:14.265Z", - "endTime": "2023-07-26T04:32:14.265Z", + "startTime": "2023-08-02T22:38:45.135Z", + "endTime": "2023-08-02T22:38:45.135Z", "customProperties": { - "instanceType": "tklj" + "instanceType": "bhyoyfq" }, "childrenWorkflows": [] } ], "errors": [ { - "code": "nslfjsjojkljcldnzlfhzbs", - "type": "lrkgcmyzrzwxzwdyucoghnblnkgqoe", - "severity": "oeyrqoxahsxhjmqk", - "creationTime": "2023-07-26T04:32:14.265Z", - "message": "xlqtdvgadguyyyfvnehhtokhmsy", - "causes": "tlkagyjmezxhfzy", - "recommendation": "yvxmdgyvcy" + "code": "muqkfbsyeuqszcuhmqmys", + "type": "qoicsqpdtdohfgru", + "severity": "qrptjrcjscqrwamhq", + "creationTime": "2023-08-02T22:38:45.135Z", + "message": "cnyuqbml", + "causes": "gif", + "recommendation": "hjmkfejqstqyavccprhnktbzwn" } ], "customProperties": { "instanceType": "WorkflowModelCustomProperties", "affectedObjectDetails": { - "key6534": "prappvfwq" + "key1346": "naqlkgoniettwajucne" } } }, - "id": "nyrqapeztcru", - "name": "vyrbochibdgx", - "type": "mnhxegiqghpllpbfebhsdv", + "id": "etefsobdlziegmrbxbaepazxiv", + "name": "lwjmflmykbwimd", + "type": "rwfvikrdrhkeeybh", "systemData": { - "createdBy": "gzlyuhvtqfmmx", - "createdByType": "fyelpv", - "createdAt": "2023-07-26T04:32:14.265Z", - "lastModifiedBy": "yhsyihwglqcfpff", - "lastModifiedByType": "uggcsnyfsruwqezjtufeuaqamifdrd", - "lastModifiedAt": "2023-07-26T04:32:14.265Z" + "createdBy": "ugucktvcpnguz", + "createdByType": "kiosithzkl", + "createdAt": "2023-08-02T22:38:45.135Z", + "lastModifiedBy": "erqkwgkhjkz", + "lastModifiedByType": "iwrrr", + "lastModifiedAt": "2023-08-02T22:38:45.135Z" }, "tags": { - "key1759": "pquyqrlwracd" + "key7706": "dhsmuirnxnijxikddttrdhyik" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json index c95799b92dbc..5a72c1774090 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json @@ -2,11 +2,11 @@ "title": "Lists the workflows.", "operationId": "Workflow_List", "parameters": { - "subscriptionId": "DE774BD4-740F-489C-B9DC-DA49F4939755", - "resourceGroupName": "rgswagger", - "vaultName": "LH", - "$filter": "ufnozsna", - "continuationToken": "nrzxpawwdxypnnhgthaug", + "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "resourceGroupName": "rgrecoveryservicesdatareplication", + "vaultName": "7R5M1", + "$filter": "pkfnqjgr", + "continuationToken": "kdchwymzlhpqfudyvm", "api-version": "2021-02-16-preview" }, "responses": { @@ -15,69 +15,69 @@ "value": [ { "properties": { - "displayName": "zjztmllyyjcmwehdatjjlqqxcceroo", + "displayName": "kambseidlajvwcdaldfzr", "state": "Pending", - "startTime": "2023-07-26T04:32:14.264Z", - "endTime": "2023-07-26T04:32:14.264Z", - "objectId": "jwf", - "objectName": "rkrcruhxardvwyvcjazekxja", - "objectInternalId": "xakqplmyhhvneqg", - "objectInternalName": "vpaox", + "startTime": "2023-08-02T22:38:45.135Z", + "endTime": "2023-08-02T22:38:45.135Z", + "objectId": "flkbzthppkuesnjnnvowl", + "objectName": "ydnlvsnyicpvockadteqmsg", + "objectInternalId": "tgjzjeotrf", + "objectInternalName": "hyreabdbzaeenygkknxzmfs", "objectType": "AvsDiskPool", - "replicationProviderId": "brudafscxssusuzhrvkrfunmpxtywf", - "sourceFabricProviderId": "l", - "targetFabricProviderId": "yjjntkc", + "replicationProviderId": "novwcoizgpgmaa", + "sourceFabricProviderId": "nei", + "targetFabricProviderId": "jraqvcadxfmivvhnvbomzrxldco", "allowedActions": [ - "nqzmuj" + "zewakbufnlylifaaobhjjxtfwpoeqn" ], - "activityId": "qjsvwxtvotwucqucfcb", + "activityId": "wucdoxnzffdwsozprzktkjizyqrkns", "tasks": [ { - "taskName": "mvjsfppkkqvxsykartysepkpjps", + "taskName": "sygpksfmdhyncwowssknqwhjjxub", "state": "Pending", - "startTime": "2023-07-26T04:32:14.265Z", - "endTime": "2023-07-26T04:32:14.265Z", + "startTime": "2023-08-02T22:38:45.135Z", + "endTime": "2023-08-02T22:38:45.135Z", "customProperties": { - "instanceType": "tklj" + "instanceType": "bhyoyfq" }, "childrenWorkflows": [] } ], "errors": [ { - "code": "nslfjsjojkljcldnzlfhzbs", - "type": "lrkgcmyzrzwxzwdyucoghnblnkgqoe", - "severity": "oeyrqoxahsxhjmqk", - "creationTime": "2023-07-26T04:32:14.265Z", - "message": "xlqtdvgadguyyyfvnehhtokhmsy", - "causes": "tlkagyjmezxhfzy", - "recommendation": "yvxmdgyvcy" + "code": "muqkfbsyeuqszcuhmqmys", + "type": "qoicsqpdtdohfgru", + "severity": "qrptjrcjscqrwamhq", + "creationTime": "2023-08-02T22:38:45.135Z", + "message": "cnyuqbml", + "causes": "gif", + "recommendation": "hjmkfejqstqyavccprhnktbzwn" } ], "customProperties": { "instanceType": "WorkflowModelCustomProperties", "affectedObjectDetails": { - "key6534": "prappvfwq" + "key1346": "naqlkgoniettwajucne" } } }, - "id": "nyrqapeztcru", - "name": "vyrbochibdgx", - "type": "mnhxegiqghpllpbfebhsdv", + "id": "etefsobdlziegmrbxbaepazxiv", + "name": "lwjmflmykbwimd", + "type": "rwfvikrdrhkeeybh", "systemData": { - "createdBy": "gzlyuhvtqfmmx", - "createdByType": "fyelpv", - "createdAt": "2023-07-26T04:32:14.265Z", - "lastModifiedBy": "yhsyihwglqcfpff", - "lastModifiedByType": "uggcsnyfsruwqezjtufeuaqamifdrd", - "lastModifiedAt": "2023-07-26T04:32:14.265Z" + "createdBy": "ugucktvcpnguz", + "createdByType": "kiosithzkl", + "createdAt": "2023-08-02T22:38:45.135Z", + "lastModifiedBy": "erqkwgkhjkz", + "lastModifiedByType": "iwrrr", + "lastModifiedAt": "2023-08-02T22:38:45.135Z" }, "tags": { - "key1759": "pquyqrlwracd" + "key7706": "dhsmuirnxnijxikddttrdhyik" } } ], - "nextLink": "vgocvvzghpvqnrqpvksadaachw" + "nextLink": "lzzavjshbbatwxblbbgqewre" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json index 61145bb74747..b0c7ac41f6b4 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json @@ -23,10 +23,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -45,7 +45,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -83,10 +83,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -105,7 +105,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { "in": "body", @@ -132,7 +132,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -158,10 +158,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -180,7 +180,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -202,7 +202,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -230,10 +230,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -244,7 +244,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -284,10 +284,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -306,14 +306,10 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "in": "path", - "name": "operationId", - "description": "Operation Id.", - "required": true, - "type": "string" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -350,10 +346,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -372,7 +368,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -410,10 +406,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -432,7 +428,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { "in": "body", @@ -483,10 +479,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -497,7 +493,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -537,10 +533,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -559,7 +555,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -596,10 +592,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -622,7 +618,7 @@ "type": "string" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -662,10 +658,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -676,7 +672,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -714,10 +710,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -728,7 +724,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { "in": "body", @@ -755,7 +751,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -784,10 +780,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -798,7 +794,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { "in": "body", @@ -831,7 +827,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -857,10 +853,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -871,7 +867,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -893,7 +889,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -921,7 +917,7 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { "in": "query", @@ -930,7 +926,7 @@ "type": "string" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -970,10 +966,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "query", @@ -982,7 +978,7 @@ "type": "string" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1022,10 +1018,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -1036,14 +1032,10 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "in": "path", - "name": "operationId", - "description": "Operation Id.", - "required": true, - "type": "string" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1080,10 +1072,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -1102,7 +1094,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1140,10 +1132,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -1162,7 +1154,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { "in": "body", @@ -1189,7 +1181,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1215,10 +1207,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -1237,7 +1229,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1259,7 +1251,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1287,10 +1279,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -1301,7 +1293,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1341,10 +1333,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -1363,14 +1355,10 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "in": "path", - "name": "operationId", - "description": "Operation Id.", - "required": true, - "type": "string" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1407,10 +1395,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -1429,7 +1417,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1467,10 +1455,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -1489,7 +1477,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { "in": "body", @@ -1516,7 +1504,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1542,10 +1530,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -1570,7 +1558,7 @@ "type": "boolean" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1592,7 +1580,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1620,10 +1608,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -1634,7 +1622,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1677,10 +1665,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -1699,7 +1687,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { "in": "body", @@ -1732,7 +1720,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1760,10 +1748,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -1782,14 +1770,10 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "in": "path", - "name": "operationId", - "description": "Operation Id.", - "required": true, - "type": "string" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1826,10 +1810,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -1856,7 +1840,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1893,10 +1877,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -1915,7 +1899,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -1955,10 +1939,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -1977,7 +1961,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2015,10 +1999,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -2037,7 +2021,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { "in": "body", @@ -2064,7 +2048,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2090,10 +2074,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -2112,7 +2096,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2134,7 +2118,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2162,10 +2146,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -2176,7 +2160,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2216,10 +2200,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -2238,14 +2222,10 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "in": "path", - "name": "operationId", - "description": "Operation Id.", - "required": true, - "type": "string" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2285,17 +2265,13 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "in": "path", - "name": "location", - "description": "Resource location.", - "required": true, - "type": "string" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/LocationParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { "in": "body", @@ -2340,17 +2316,14 @@ ], "parameters": [ { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { "200": { "description": "Success", "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/OperationModel" - } + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/OperationListResult" } }, "default": { @@ -2360,6 +2333,9 @@ } } }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, "x-ms-examples": { "Operations_List": { "$ref": "./examples/Operations_List.json" @@ -2382,10 +2358,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -2395,7 +2371,7 @@ "type": "string" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { "in": "body", @@ -2440,10 +2416,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -2454,7 +2430,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2492,10 +2468,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -2506,7 +2482,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { "in": "body", @@ -2533,7 +2509,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2562,10 +2538,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -2576,7 +2552,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { "in": "body", @@ -2609,7 +2585,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2635,10 +2611,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -2649,7 +2625,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2671,7 +2647,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2699,7 +2675,7 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { "in": "query", @@ -2708,7 +2684,7 @@ "type": "string" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2748,10 +2724,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "query", @@ -2760,7 +2736,7 @@ "type": "string" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2800,10 +2776,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -2814,14 +2790,10 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "in": "path", - "name": "operationId", - "description": "Operation Id.", - "required": true, - "type": "string" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2858,10 +2830,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -2880,7 +2852,7 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2917,10 +2889,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -2943,7 +2915,7 @@ "type": "string" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -2983,10 +2955,10 @@ ], "parameters": [ { - "$ref": "#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "in": "path", @@ -3005,14 +2977,10 @@ "pattern": "^[a-zA-Z0-9]*$" }, { - "in": "path", - "name": "operationId", - "description": "Operation Id.", - "required": true, - "type": "string" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" }, { - "$ref": "#/parameters/ApiVersionParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { @@ -4783,6 +4751,24 @@ } } }, + "OperationModelCollection": { + "description": "Available operations of the service.", + "type": "object", + "properties": { + "value": { + "description": "Gets or sets the list of operations.", + "type": "array", + "items": { + "$ref": "#/definitions/OperationModel" + }, + "x-ms-identifiers": [] + }, + "nextLink": { + "description": "Gets or sets the value of next link.", + "type": "string" + } + } + }, "OperationModelProperties": { "description": "Operation model properties.", "type": "object", @@ -6841,35 +6827,6 @@ } } }, - "parameters": { - "SubscriptionIdParameter": { - "in": "path", - "name": "subscriptionId", - "description": "The subscription Id.", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - }, - "ResourceGroupNameParameter": { - "in": "path", - "name": "resourceGroupName", - "description": "Resource group name.", - "required": true, - "type": "string", - "maxLength": 90, - "minLength": 1, - "x-ms-parameter-location": "method" - }, - "ApiVersionParameter": { - "in": "query", - "name": "api-version", - "description": "The client API version.", - "required": true, - "type": "string", - "minLength": 1, - "x-ms-parameter-location": "method" - } - }, "securityDefinitions": { "azure_auth": { "type": "oauth2", From 57eb648f4042e369227e48ceec890ec6b8274e9e Mon Sep 17 00:00:00 2001 From: Sam Lee Date: Wed, 2 Aug 2023 20:16:30 -0700 Subject: [PATCH 5/9] Included auto gen net sdk --- .../recoveryservicesdatareplication.json | 140 ++++++++++++++++-- .../resource-manager/readme.md | 2 +- 2 files changed, 125 insertions(+), 17 deletions(-) diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json index b0c7ac41f6b4..f4dbcc60bab0 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json @@ -3066,6 +3066,16 @@ } } }, + "AzStackHCIDraModelCustomProperties": { + "description": "AzStackHCI DRA model custom properties.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/DraModelCustomProperties" + } + ], + "x-ms-discriminator-value": "AzStackHCI" + }, "AzStackHCIFabricModelCustomProperties": { "description": "AzStackHCI fabric model custom properties.", "required": [ @@ -3262,8 +3272,20 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "minLength": 1, - "type": "string" + "enum": [ + "None", + "VMware", + "AVS", + "Azure", + "AzStackHCI", + "HyperVMigrate", + "VMwareMigrate" + ], + "type": "string", + "x-ms-enum": { + "name": "FabricType", + "modelAsString": true + } } }, "discriminator": "instanceType" @@ -3546,8 +3568,19 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "minLength": 1, - "type": "string" + "enum": [ + "None", + "VMwareToAvs", + "VMwareToAvsFailback", + "VMwareToAzureMigrate", + "HyperVToAzStackHCI", + "VMwareToAzStackHCI" + ], + "type": "string", + "x-ms-enum": { + "name": "ReplicationType", + "modelAsString": true + } } }, "discriminator": "instanceType" @@ -3695,8 +3728,20 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "minLength": 1, - "type": "string" + "enum": [ + "None", + "VMware", + "AVS", + "Azure", + "AzStackHCI", + "HyperVMigrate", + "VMwareMigrate" + ], + "type": "string", + "x-ms-enum": { + "name": "FabricType", + "modelAsString": true + } } }, "discriminator": "instanceType" @@ -3949,6 +3994,16 @@ } } }, + "HyperVMigrateDraModelCustomProperties": { + "description": "HyperVMigrate DRA model custom properties.", + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/DraModelCustomProperties" + } + ], + "x-ms-discriminator-value": "HyperVMigrate" + }, "HyperVMigrateFabricModelCustomProperties": { "description": "HyperV migrate fabric model custom properties.", "required": [ @@ -4927,8 +4982,19 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "minLength": 1, - "type": "string" + "enum": [ + "None", + "VMwareToAvs", + "VMwareToAvsFailback", + "VMwareToAzureMigrate", + "HyperVToAzStackHCI", + "VMwareToAzStackHCI" + ], + "type": "string", + "x-ms-enum": { + "name": "ReplicationType", + "modelAsString": true + } } }, "discriminator": "instanceType" @@ -5103,8 +5169,19 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "minLength": 1, - "type": "string" + "enum": [ + "None", + "VMwareToAvs", + "VMwareToAvsFailback", + "VMwareToAzureMigrate", + "HyperVToAzStackHCI", + "VMwareToAzStackHCI" + ], + "type": "string", + "x-ms-enum": { + "name": "ReplicationType", + "modelAsString": true + } } }, "discriminator": "instanceType" @@ -5460,8 +5537,19 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "minLength": 1, - "type": "string" + "enum": [ + "None", + "VMwareToAvs", + "VMwareToAvsFailback", + "VMwareToAzureMigrate", + "HyperVToAzStackHCI", + "VMwareToAzStackHCI" + ], + "type": "string", + "x-ms-enum": { + "name": "ReplicationType", + "modelAsString": true + } } }, "discriminator": "instanceType" @@ -5568,8 +5656,19 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "minLength": 1, - "type": "string" + "enum": [ + "None", + "VMwareToAvs", + "VMwareToAvsFailback", + "VMwareToAzureMigrate", + "HyperVToAzStackHCI", + "VMwareToAzStackHCI" + ], + "type": "string", + "x-ms-enum": { + "name": "ReplicationType", + "modelAsString": true + } } }, "discriminator": "instanceType" @@ -6678,8 +6777,17 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "minLength": 1, - "type": "string" + "enum": [ + "WorkflowDetails", + "FailoverWorkflowDetails", + "TestFailoverWorkflowDetails", + "TestFailoverCleanupWorkflowDetails" + ], + "type": "string", + "x-ms-enum": { + "name": "WorkflowDetailsType", + "modelAsString": true + } }, "affectedObjectDetails": { "description": "Gets or sets any custom properties of the affected object.", diff --git a/specification/recoveryservicesdatareplication/resource-manager/readme.md b/specification/recoveryservicesdatareplication/resource-manager/readme.md index ea4501511361..9c291b98b92c 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/readme.md +++ b/specification/recoveryservicesdatareplication/resource-manager/readme.md @@ -55,7 +55,7 @@ swagger-to-sdk: - repo: azure-sdk-for-js - repo: azure-resource-manager-schemas - repo: azure-cli-extensions - - repo: azure-powershell + - repo: azure-sdk-for-net-track2 ``` ## Az From ee00645d827577cba8adcc02d6fa716284ac3cbf Mon Sep 17 00:00:00 2001 From: Sam Lee Date: Thu, 24 Aug 2023 17:35:51 -0700 Subject: [PATCH 6/9] Addressed some ARM feedback --- .../examples/CheckNameAvailability.json | 12 +- .../examples/DeploymentPreflight.json | 20 +- .../examples/DraOperationStatus_Get.json | 20 +- .../examples/Dra_Create.json | 222 ++--- .../examples/Dra_Delete.json | 8 +- .../2021-02-16-preview/examples/Dra_Get.json | 102 +-- .../2021-02-16-preview/examples/Dra_List.json | 102 +-- .../examples/EmailConfiguration_Create.json | 60 +- .../examples/EmailConfiguration_Get.json | 30 +- .../examples/EmailConfiguration_List.json | 30 +- .../examples/Event_Get.json | 86 +- .../examples/Event_List.json | 90 +-- .../examples/FabricOperationsStatus_Get.json | 16 +- .../examples/Fabric_Create.json | 148 ++-- .../examples/Fabric_Delete.json | 4 +- .../examples/Fabric_Get.json | 74 +- .../examples/Fabric_List.json | 76 +- .../examples/Fabric_ListBySubscription.json | 76 +- .../examples/Fabric_Update.json | 76 +- .../examples/Operations_List.json | 10 +- .../examples/PolicyOperationStatus_Get.json | 18 +- .../examples/Policy_Create.json | 48 +- .../examples/Policy_Delete.json | 6 +- .../examples/Policy_Get.json | 26 +- .../examples/Policy_List.json | 26 +- .../ProtectedItemOperationStatus_Get.json | 18 +- .../examples/ProtectedItem_Create.json | 320 ++++---- .../examples/ProtectedItem_Delete.json | 6 +- .../examples/ProtectedItem_Get.json | 160 ++-- .../examples/ProtectedItem_List.json | 160 ++-- .../ProtectedItem_PlannedFailover.json | 6 +- .../examples/RecoveryPoints_Get.json | 30 +- .../examples/RecoveryPoints_List.json | 30 +- ...plicationExtensionOperationStatus_Get.json | 18 +- .../examples/ReplicationExtension_Create.json | 48 +- .../examples/ReplicationExtension_Delete.json | 6 +- .../examples/ReplicationExtension_Get.json | 26 +- .../examples/ReplicationExtension_List.json | 26 +- .../examples/VaultOperationStatus_Get.json | 16 +- .../examples/Vault_Create.json | 56 +- .../examples/Vault_Delete.json | 4 +- .../examples/Vault_Get.json | 28 +- .../examples/Vault_List.json | 30 +- .../examples/Vault_ListBySubscription.json | 30 +- .../examples/Vault_Update.json | 30 +- .../examples/WorkflowOperationStatus_Get.json | 20 +- .../examples/Workflow_Get.json | 76 +- .../examples/Workflow_List.json | 80 +- .../recoveryservicesdatareplication.json | 757 +++++------------- 49 files changed, 1523 insertions(+), 1844 deletions(-) diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json index ca4d234a8fc1..6af13d182d29 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/CheckNameAvailability.json @@ -2,20 +2,20 @@ "title": "Performs the resource name availability check.", "operationId": "CheckNameAvailability", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", - "location": "vzgizvpokgqkrw", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", + "location": "trfqtbtmusswpibw", "api-version": "2021-02-16-preview", "body": { - "name": "dmjsumuatpokhpldhujnuruc", - "type": "qxsvsic" + "name": "updkdcixs", + "type": "gngmcancdauwhdixjjvqnfkvqc" } }, "responses": { "200": { "body": { "nameAvailable": true, - "reason": "xbjsorbgkebysgabhahm", - "message": "blnzcnjtjjibljpbwbqyjxbexgbi" + "reason": "wwbvswyrmghbmv", + "message": "gddmrunlrhtuhm" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json index a94c15855c25..f504ce8177ca 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DeploymentPreflight.json @@ -2,17 +2,17 @@ "title": "Performs resource deployment validation.", "operationId": "DeploymentPreflight", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "deploymentId": "uspggiwhcbianaagsbwx", + "deploymentId": "kjoiahxljomjcmvabaobumg", "api-version": "2021-02-16-preview", "body": { "resources": [ { - "name": "dfvhhgjkdtookuxpsdvtwppfdbvx", - "type": "kousblgcxrienbeuqhgdh", - "location": "jdxidnafiqrssdkei", - "apiVersion": "knvtxulontvpzdt" + "name": "xtgugoflfc", + "type": "nsnaptduolqcxsikrewvgjbxqpt", + "location": "cbsgtxkjdzwbyp", + "apiVersion": "otihymhvzblycdoxo" } ] } @@ -22,10 +22,10 @@ "body": { "resources": [ { - "name": "dfvhhgjkdtookuxpsdvtwppfdbvx", - "type": "kousblgcxrienbeuqhgdh", - "location": "jdxidnafiqrssdkei", - "apiVersion": "knvtxulontvpzdt" + "name": "xtgugoflfc", + "type": "nsnaptduolqcxsikrewvgjbxqpt", + "location": "cbsgtxkjdzwbyp", + "apiVersion": "otihymhvzblycdoxo" } ] } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json index 7e78240ad042..401664854084 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/DraOperationStatus_Get.json @@ -1,22 +1,22 @@ { - "title": "Gets the Dra operation status.", + "title": "Gets the fabric agent (Dra) operation status.", "operationId": "DraOperationStatus_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "fabricName": "7", - "draName": "hMmX", - "operationId": "laq", + "fabricName": "wPR", + "fabricAgentName": "M", + "operationId": "dadsqwcq", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "qyvq", - "name": "etlwwkikigezxhr", - "status": "qilxkagrud", - "startTime": "blauxaexlidnzohzumt", - "endTime": "fiqojtkadhzrjonytznioepo" + "id": "sf", + "name": "wzdasptnwlxgobklayoqapjcgcf", + "status": "plbnngzfppdram", + "startTime": "xuzwmfrhluafmwwsmzqxsytyehsh", + "endTime": "nauyrfh" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json index cf9a32678da3..2ce35da0a0e5 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json @@ -1,36 +1,36 @@ { - "title": "Puts the Dra.", + "title": "Puts the fabric agent (Dra).", "operationId": "Dra_Create", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "fabricName": "Jy", - "draName": "jD2", + "fabricName": "wPR", + "fabricAgentName": "M", "api-version": "2021-02-16-preview", "body": { "properties": { - "machineId": "am", - "machineName": "piawkdstcyodciukvpalonozuz", + "machineId": "envzcoijbqhtrpncbjbhk", + "machineName": "y", "authenticationIdentity": { - "tenantId": "gxdlpjnazlyaqs", - "applicationId": "anhxaj", - "objectId": "ggydypqmkdmlwvtytrqplzpwq", - "audience": "gevtbcwybpynzgibnpq", - "aadAuthority": "cpmhjcadlgivxojsr" + "tenantId": "joclkkdovixwapephhxaqtefubhhmq", + "applicationId": "cwktzrwajuvfyyymfstpey", + "objectId": "khsiaqfbpuhp", + "audience": "dkjobanyqgzenivyxhvavottpc", + "aadAuthority": "bubwwbowfhdmujrt" }, "resourceAccessIdentity": { - "tenantId": "gxdlpjnazlyaqs", - "applicationId": "anhxaj", - "objectId": "ggydypqmkdmlwvtytrqplzpwq", - "audience": "gevtbcwybpynzgibnpq", - "aadAuthority": "cpmhjcadlgivxojsr" + "tenantId": "joclkkdovixwapephhxaqtefubhhmq", + "applicationId": "cwktzrwajuvfyyymfstpey", + "objectId": "khsiaqfbpuhp", + "audience": "dkjobanyqgzenivyxhvavottpc", + "aadAuthority": "bubwwbowfhdmujrt" }, "customProperties": { "instanceType": "DraModelCustomProperties" } }, "tags": { - "key7583": "yeswlxwyzvmwmsaxztqcukdpgerb" + "key3120": "u" } } }, @@ -38,78 +38,78 @@ "200": { "body": { "properties": { - "correlationId": "wyrffcyudbyyh", - "machineId": "am", - "machineName": "piawkdstcyodciukvpalonozuz", + "correlationId": "t", + "machineId": "envzcoijbqhtrpncbjbhk", + "machineName": "y", "authenticationIdentity": { - "tenantId": "gxdlpjnazlyaqs", - "applicationId": "anhxaj", - "objectId": "ggydypqmkdmlwvtytrqplzpwq", - "audience": "gevtbcwybpynzgibnpq", - "aadAuthority": "cpmhjcadlgivxojsr" + "tenantId": "joclkkdovixwapephhxaqtefubhhmq", + "applicationId": "cwktzrwajuvfyyymfstpey", + "objectId": "khsiaqfbpuhp", + "audience": "dkjobanyqgzenivyxhvavottpc", + "aadAuthority": "bubwwbowfhdmujrt" }, "resourceAccessIdentity": { - "tenantId": "gxdlpjnazlyaqs", - "applicationId": "anhxaj", - "objectId": "ggydypqmkdmlwvtytrqplzpwq", - "audience": "gevtbcwybpynzgibnpq", - "aadAuthority": "cpmhjcadlgivxojsr" + "tenantId": "joclkkdovixwapephhxaqtefubhhmq", + "applicationId": "cwktzrwajuvfyyymfstpey", + "objectId": "khsiaqfbpuhp", + "audience": "dkjobanyqgzenivyxhvavottpc", + "aadAuthority": "bubwwbowfhdmujrt" }, "isResponsive": true, - "lastHeartbeat": "2023-08-02T22:38:38.125Z", - "versionNumber": "cjhvevwclvdmbdoafbzsmcrqlq", + "lastHeartbeat": "2023-08-25T00:28:52.127Z", + "versionNumber": "wnksfnisrhs", "provisioningState": "Canceled", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "DraModelCustomProperties" } }, - "id": "ugueerfglrefvyxhiszpinslrqs", - "name": "dwrroktoqjoh", - "type": "oqrtmmouawyfolvicnphammonubto", + "id": "anp", + "name": "ioxmwhzrzdilxivkvhpvzexl", + "type": "ptgmahzsyv", "systemData": { - "createdBy": "jgovrjieeilgjdkyqsiwcwlwhomcg", - "createdByType": "lytjpiqaeogjjyosmx", - "createdAt": "2023-08-02T22:38:38.126Z", - "lastModifiedBy": "bessmlynindybdbq", - "lastModifiedByType": "hgvxiftbotjpnhzkuflldypwg", - "lastModifiedAt": "2023-08-02T22:38:38.126Z" + "createdBy": "fazidmklka", + "createdByType": "obpndgkaeyklqzmpjh", + "createdAt": "2023-08-25T00:28:52.128Z", + "lastModifiedBy": "cfoopkrisaroztncgss", + "lastModifiedByType": "dysxbvohxhrpl", + "lastModifiedAt": "2023-08-25T00:28:52.128Z" }, "tags": { - "key7583": "yeswlxwyzvmwmsaxztqcukdpgerb" + "key3120": "u" } } }, @@ -119,78 +119,78 @@ }, "body": { "properties": { - "correlationId": "wyrffcyudbyyh", - "machineId": "am", - "machineName": "piawkdstcyodciukvpalonozuz", + "correlationId": "t", + "machineId": "envzcoijbqhtrpncbjbhk", + "machineName": "y", "authenticationIdentity": { - "tenantId": "gxdlpjnazlyaqs", - "applicationId": "anhxaj", - "objectId": "ggydypqmkdmlwvtytrqplzpwq", - "audience": "gevtbcwybpynzgibnpq", - "aadAuthority": "cpmhjcadlgivxojsr" + "tenantId": "joclkkdovixwapephhxaqtefubhhmq", + "applicationId": "cwktzrwajuvfyyymfstpey", + "objectId": "khsiaqfbpuhp", + "audience": "dkjobanyqgzenivyxhvavottpc", + "aadAuthority": "bubwwbowfhdmujrt" }, "resourceAccessIdentity": { - "tenantId": "gxdlpjnazlyaqs", - "applicationId": "anhxaj", - "objectId": "ggydypqmkdmlwvtytrqplzpwq", - "audience": "gevtbcwybpynzgibnpq", - "aadAuthority": "cpmhjcadlgivxojsr" + "tenantId": "joclkkdovixwapephhxaqtefubhhmq", + "applicationId": "cwktzrwajuvfyyymfstpey", + "objectId": "khsiaqfbpuhp", + "audience": "dkjobanyqgzenivyxhvavottpc", + "aadAuthority": "bubwwbowfhdmujrt" }, "isResponsive": true, - "lastHeartbeat": "2023-08-02T22:38:38.125Z", - "versionNumber": "cjhvevwclvdmbdoafbzsmcrqlq", + "lastHeartbeat": "2023-08-25T00:28:52.127Z", + "versionNumber": "wnksfnisrhs", "provisioningState": "Canceled", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "DraModelCustomProperties" } }, - "id": "ugueerfglrefvyxhiszpinslrqs", - "name": "dwrroktoqjoh", - "type": "oqrtmmouawyfolvicnphammonubto", + "id": "anp", + "name": "ioxmwhzrzdilxivkvhpvzexl", + "type": "ptgmahzsyv", "systemData": { - "createdBy": "jgovrjieeilgjdkyqsiwcwlwhomcg", - "createdByType": "lytjpiqaeogjjyosmx", - "createdAt": "2023-08-02T22:38:38.126Z", - "lastModifiedBy": "bessmlynindybdbq", - "lastModifiedByType": "hgvxiftbotjpnhzkuflldypwg", - "lastModifiedAt": "2023-08-02T22:38:38.126Z" + "createdBy": "fazidmklka", + "createdByType": "obpndgkaeyklqzmpjh", + "createdAt": "2023-08-25T00:28:52.128Z", + "lastModifiedBy": "cfoopkrisaroztncgss", + "lastModifiedByType": "dysxbvohxhrpl", + "lastModifiedAt": "2023-08-25T00:28:52.128Z" }, "tags": { - "key7583": "yeswlxwyzvmwmsaxztqcukdpgerb" + "key3120": "u" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json index 86cc330b062e..2898cf1df620 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Delete.json @@ -1,11 +1,11 @@ { - "title": "Deletes the Dra.", + "title": "Deletes the fabric agent (Dra).", "operationId": "Dra_Delete", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "fabricName": "e", - "draName": "GFh", + "fabricName": "wPR", + "fabricAgentName": "M", "api-version": "2021-02-16-preview" }, "responses": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json index 076e6a368836..68d2802ecebd 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json @@ -1,89 +1,89 @@ { - "title": "Gets the Dra.", + "title": "Gets the fabric agent (Dra).", "operationId": "Dra_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "fabricName": "Ym4WC", - "draName": "TIIDt", + "fabricName": "wPR", + "fabricAgentName": "M", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { "properties": { - "correlationId": "wyrffcyudbyyh", - "machineId": "am", - "machineName": "piawkdstcyodciukvpalonozuz", + "correlationId": "t", + "machineId": "envzcoijbqhtrpncbjbhk", + "machineName": "y", "authenticationIdentity": { - "tenantId": "gxdlpjnazlyaqs", - "applicationId": "anhxaj", - "objectId": "ggydypqmkdmlwvtytrqplzpwq", - "audience": "gevtbcwybpynzgibnpq", - "aadAuthority": "cpmhjcadlgivxojsr" + "tenantId": "joclkkdovixwapephhxaqtefubhhmq", + "applicationId": "cwktzrwajuvfyyymfstpey", + "objectId": "khsiaqfbpuhp", + "audience": "dkjobanyqgzenivyxhvavottpc", + "aadAuthority": "bubwwbowfhdmujrt" }, "resourceAccessIdentity": { - "tenantId": "gxdlpjnazlyaqs", - "applicationId": "anhxaj", - "objectId": "ggydypqmkdmlwvtytrqplzpwq", - "audience": "gevtbcwybpynzgibnpq", - "aadAuthority": "cpmhjcadlgivxojsr" + "tenantId": "joclkkdovixwapephhxaqtefubhhmq", + "applicationId": "cwktzrwajuvfyyymfstpey", + "objectId": "khsiaqfbpuhp", + "audience": "dkjobanyqgzenivyxhvavottpc", + "aadAuthority": "bubwwbowfhdmujrt" }, "isResponsive": true, - "lastHeartbeat": "2023-08-02T22:38:38.125Z", - "versionNumber": "cjhvevwclvdmbdoafbzsmcrqlq", + "lastHeartbeat": "2023-08-25T00:28:52.127Z", + "versionNumber": "wnksfnisrhs", "provisioningState": "Canceled", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "DraModelCustomProperties" } }, - "id": "ugueerfglrefvyxhiszpinslrqs", - "name": "dwrroktoqjoh", - "type": "oqrtmmouawyfolvicnphammonubto", + "id": "anp", + "name": "ioxmwhzrzdilxivkvhpvzexl", + "type": "ptgmahzsyv", "systemData": { - "createdBy": "jgovrjieeilgjdkyqsiwcwlwhomcg", - "createdByType": "lytjpiqaeogjjyosmx", - "createdAt": "2023-08-02T22:38:38.126Z", - "lastModifiedBy": "bessmlynindybdbq", - "lastModifiedByType": "hgvxiftbotjpnhzkuflldypwg", - "lastModifiedAt": "2023-08-02T22:38:38.126Z" + "createdBy": "fazidmklka", + "createdByType": "obpndgkaeyklqzmpjh", + "createdAt": "2023-08-25T00:28:52.128Z", + "lastModifiedBy": "cfoopkrisaroztncgss", + "lastModifiedByType": "dysxbvohxhrpl", + "lastModifiedAt": "2023-08-25T00:28:52.128Z" }, "tags": { - "key7583": "yeswlxwyzvmwmsaxztqcukdpgerb" + "key3120": "u" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json index 93775048edb9..20a85203e7fe 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json @@ -1,10 +1,10 @@ { - "title": "Lists the Dras.", + "title": "Lists the fabric agents (Dras).", "operationId": "Dra_List", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "fabricName": "TJTh", + "fabricName": "wPR", "api-version": "2021-02-16-preview" }, "responses": { @@ -13,82 +13,82 @@ "value": [ { "properties": { - "correlationId": "wyrffcyudbyyh", - "machineId": "am", - "machineName": "piawkdstcyodciukvpalonozuz", + "correlationId": "t", + "machineId": "envzcoijbqhtrpncbjbhk", + "machineName": "y", "authenticationIdentity": { - "tenantId": "gxdlpjnazlyaqs", - "applicationId": "anhxaj", - "objectId": "ggydypqmkdmlwvtytrqplzpwq", - "audience": "gevtbcwybpynzgibnpq", - "aadAuthority": "cpmhjcadlgivxojsr" + "tenantId": "joclkkdovixwapephhxaqtefubhhmq", + "applicationId": "cwktzrwajuvfyyymfstpey", + "objectId": "khsiaqfbpuhp", + "audience": "dkjobanyqgzenivyxhvavottpc", + "aadAuthority": "bubwwbowfhdmujrt" }, "resourceAccessIdentity": { - "tenantId": "gxdlpjnazlyaqs", - "applicationId": "anhxaj", - "objectId": "ggydypqmkdmlwvtytrqplzpwq", - "audience": "gevtbcwybpynzgibnpq", - "aadAuthority": "cpmhjcadlgivxojsr" + "tenantId": "joclkkdovixwapephhxaqtefubhhmq", + "applicationId": "cwktzrwajuvfyyymfstpey", + "objectId": "khsiaqfbpuhp", + "audience": "dkjobanyqgzenivyxhvavottpc", + "aadAuthority": "bubwwbowfhdmujrt" }, "isResponsive": true, - "lastHeartbeat": "2023-08-02T22:38:38.125Z", - "versionNumber": "cjhvevwclvdmbdoafbzsmcrqlq", + "lastHeartbeat": "2023-08-25T00:28:52.127Z", + "versionNumber": "wnksfnisrhs", "provisioningState": "Canceled", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "DraModelCustomProperties" } }, - "id": "ugueerfglrefvyxhiszpinslrqs", - "name": "dwrroktoqjoh", - "type": "oqrtmmouawyfolvicnphammonubto", + "id": "anp", + "name": "ioxmwhzrzdilxivkvhpvzexl", + "type": "ptgmahzsyv", "systemData": { - "createdBy": "jgovrjieeilgjdkyqsiwcwlwhomcg", - "createdByType": "lytjpiqaeogjjyosmx", - "createdAt": "2023-08-02T22:38:38.126Z", - "lastModifiedBy": "bessmlynindybdbq", - "lastModifiedByType": "hgvxiftbotjpnhzkuflldypwg", - "lastModifiedAt": "2023-08-02T22:38:38.126Z" + "createdBy": "fazidmklka", + "createdByType": "obpndgkaeyklqzmpjh", + "createdAt": "2023-08-25T00:28:52.128Z", + "lastModifiedBy": "cfoopkrisaroztncgss", + "lastModifiedByType": "dysxbvohxhrpl", + "lastModifiedAt": "2023-08-25T00:28:52.128Z" }, "tags": { - "key7583": "yeswlxwyzvmwmsaxztqcukdpgerb" + "key3120": "u" } } ], - "nextLink": "xcxxdtfntzqqdkysfrmawfp" + "nextLink": "orh" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json index e77d03e608da..969deed6ff8b 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json @@ -2,21 +2,21 @@ "title": "Creates email configuration settings.", "operationId": "EmailConfiguration_Create", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "l", - "emailConfigurationName": "DD", + "vaultName": "4", + "emailConfigurationName": "0", "api-version": "2021-02-16-preview", "body": { "properties": { "sendToOwners": true, "customEmailAddresses": [ - "osutqdiotz" + "ketvbducyailcny" ], - "locale": "mjlhfcvrrtdld" + "locale": "vpnjxjvdqtebnucyxiyrjiko" }, "tags": { - "key3236": "oece" + "key6763": "urnmiqiksxjgowb" } } }, @@ -26,23 +26,23 @@ "properties": { "sendToOwners": true, "customEmailAddresses": [ - "osutqdiotz" + "ketvbducyailcny" ], - "locale": "mjlhfcvrrtdld" + "locale": "vpnjxjvdqtebnucyxiyrjiko" }, - "id": "pltvzvksnwcdlxymekx", - "name": "swzygs", - "type": "rytinviucwfrauexy", + "id": "bvbfy", + "name": "ywjplnjzaeu", + "type": "bkaq", "systemData": { - "createdBy": "ulvkkiokkqpspffpzrgfvgofvliz", - "createdByType": "zzeuyuuaze", - "createdAt": "2023-08-02T22:38:39.004Z", - "lastModifiedBy": "nlizcaruxowvdjspljihdqoadyjvq", - "lastModifiedByType": "nshxhzyuitledwpptnbcfsqbtyg", - "lastModifiedAt": "2023-08-02T22:38:39.004Z" + "createdBy": "ewufpudzcjrljhmmzhfnxoqdqwnya", + "createdByType": "zioqm", + "createdAt": "2023-08-25T00:28:53.022Z", + "lastModifiedBy": "rx", + "lastModifiedByType": "tqbvuqoakaaqij", + "lastModifiedAt": "2023-08-25T00:28:53.022Z" }, "tags": { - "key3236": "oece" + "key6763": "urnmiqiksxjgowb" } } }, @@ -51,23 +51,23 @@ "properties": { "sendToOwners": true, "customEmailAddresses": [ - "osutqdiotz" + "ketvbducyailcny" ], - "locale": "mjlhfcvrrtdld" + "locale": "vpnjxjvdqtebnucyxiyrjiko" }, - "id": "pltvzvksnwcdlxymekx", - "name": "swzygs", - "type": "rytinviucwfrauexy", + "id": "bvbfy", + "name": "ywjplnjzaeu", + "type": "bkaq", "systemData": { - "createdBy": "ulvkkiokkqpspffpzrgfvgofvliz", - "createdByType": "zzeuyuuaze", - "createdAt": "2023-08-02T22:38:39.004Z", - "lastModifiedBy": "nlizcaruxowvdjspljihdqoadyjvq", - "lastModifiedByType": "nshxhzyuitledwpptnbcfsqbtyg", - "lastModifiedAt": "2023-08-02T22:38:39.004Z" + "createdBy": "ewufpudzcjrljhmmzhfnxoqdqwnya", + "createdByType": "zioqm", + "createdAt": "2023-08-25T00:28:53.022Z", + "lastModifiedBy": "rx", + "lastModifiedByType": "tqbvuqoakaaqij", + "lastModifiedAt": "2023-08-25T00:28:53.022Z" }, "tags": { - "key3236": "oece" + "key6763": "urnmiqiksxjgowb" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json index 5b88f9e18116..83720147e991 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json @@ -2,10 +2,10 @@ "title": "Gets the email configuration setting.", "operationId": "EmailConfiguration_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "wFQ", - "emailConfigurationName": "N", + "vaultName": "4", + "emailConfigurationName": "0", "api-version": "2021-02-16-preview" }, "responses": { @@ -14,23 +14,23 @@ "properties": { "sendToOwners": true, "customEmailAddresses": [ - "osutqdiotz" + "ketvbducyailcny" ], - "locale": "mjlhfcvrrtdld" + "locale": "vpnjxjvdqtebnucyxiyrjiko" }, - "id": "pltvzvksnwcdlxymekx", - "name": "swzygs", - "type": "rytinviucwfrauexy", + "id": "bvbfy", + "name": "ywjplnjzaeu", + "type": "bkaq", "systemData": { - "createdBy": "ulvkkiokkqpspffpzrgfvgofvliz", - "createdByType": "zzeuyuuaze", - "createdAt": "2023-08-02T22:38:39.004Z", - "lastModifiedBy": "nlizcaruxowvdjspljihdqoadyjvq", - "lastModifiedByType": "nshxhzyuitledwpptnbcfsqbtyg", - "lastModifiedAt": "2023-08-02T22:38:39.004Z" + "createdBy": "ewufpudzcjrljhmmzhfnxoqdqwnya", + "createdByType": "zioqm", + "createdAt": "2023-08-25T00:28:53.022Z", + "lastModifiedBy": "rx", + "lastModifiedByType": "tqbvuqoakaaqij", + "lastModifiedAt": "2023-08-25T00:28:53.022Z" }, "tags": { - "key3236": "oece" + "key6763": "urnmiqiksxjgowb" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json index ee1f35fe9185..8c16d786feb5 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json @@ -2,9 +2,9 @@ "title": "Lists the email configuration settings.", "operationId": "EmailConfiguration_List", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "9Ly", + "vaultName": "4", "api-version": "2021-02-16-preview" }, "responses": { @@ -15,27 +15,27 @@ "properties": { "sendToOwners": true, "customEmailAddresses": [ - "osutqdiotz" + "ketvbducyailcny" ], - "locale": "mjlhfcvrrtdld" + "locale": "vpnjxjvdqtebnucyxiyrjiko" }, - "id": "pltvzvksnwcdlxymekx", - "name": "swzygs", - "type": "rytinviucwfrauexy", + "id": "bvbfy", + "name": "ywjplnjzaeu", + "type": "bkaq", "systemData": { - "createdBy": "ulvkkiokkqpspffpzrgfvgofvliz", - "createdByType": "zzeuyuuaze", - "createdAt": "2023-08-02T22:38:39.004Z", - "lastModifiedBy": "nlizcaruxowvdjspljihdqoadyjvq", - "lastModifiedByType": "nshxhzyuitledwpptnbcfsqbtyg", - "lastModifiedAt": "2023-08-02T22:38:39.004Z" + "createdBy": "ewufpudzcjrljhmmzhfnxoqdqwnya", + "createdByType": "zioqm", + "createdAt": "2023-08-25T00:28:53.022Z", + "lastModifiedBy": "rx", + "lastModifiedByType": "tqbvuqoakaaqij", + "lastModifiedAt": "2023-08-25T00:28:53.022Z" }, "tags": { - "key3236": "oece" + "key6763": "urnmiqiksxjgowb" } } ], - "nextLink": "srwmocnbmqovjpqudc" + "nextLink": "ityfjzcjldq" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json index 9c2e98b2f403..3f0ae3ea8181 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json @@ -2,75 +2,75 @@ "title": "Gets the event.", "operationId": "Event_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "P", - "eventName": "vs", + "vaultName": "4", + "eventName": "231CIG", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { "properties": { - "resourceType": "kweoggspwhbaktjhfvhkatuk", - "resourceName": "cyxdqtu", - "eventType": "yxxolgohndew", - "eventName": "avmvpbtw", - "timeOfOccurrence": "2023-08-02T22:38:39.424Z", - "severity": "szxzwooikhhbflaozwmjyhs", - "description": "ojifkrwt", - "correlationId": "mpz", + "resourceType": "surgdzezskgregozynvlinfutyh", + "resourceName": "yhpkowkbvtqnbiklnjzc", + "eventType": "npumqmvspm", + "eventName": "s", + "timeOfOccurrence": "2023-08-25T00:28:53.432Z", + "severity": "sjous", + "description": "hkeiogebluvfpdgxogwesjmtbbok", + "correlationId": "lwfsxforxnhvpmheujutjicflmxv", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "EventModelCustomProperties" } }, - "id": "kestyytbyphqaocfpreevm", - "name": "ajsnogoe", - "type": "bx", + "id": "fgbppsytxctsrsxlfugyohhu", + "name": "j", + "type": "lgk", "systemData": { - "createdBy": "vaagiashoyxjghabffjuf", - "createdByType": "ylgpjgjsecubztauznjsqs", - "createdAt": "2023-08-02T22:38:39.424Z", - "lastModifiedBy": "mclylh", - "lastModifiedByType": "nfzkfwhjekhaorhqaconbmgx", - "lastModifiedAt": "2023-08-02T22:38:39.424Z" + "createdBy": "uske", + "createdByType": "luzowppyxjalugkef", + "createdAt": "2023-08-25T00:28:53.432Z", + "lastModifiedBy": "ufrixpmhben", + "lastModifiedByType": "aubgraubkuaeipwzvbcgnlpseobx", + "lastModifiedAt": "2023-08-25T00:28:53.432Z" }, "tags": { - "key4547": "ohchifajpqnnwuaxxiexynii" + "key5043": "bfaqnmbzy" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json index cf5273937633..c1438a971ddd 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json @@ -2,11 +2,11 @@ "title": "Lists the events.", "operationId": "Event_List", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "s4O", - "$filter": "jhiqirwxvbnloocjwgstrkneu", - "continuationToken": "fen", + "vaultName": "4", + "$filter": "wbglupjzvkirtgnnyasxom", + "continuationToken": "cxtufi", "api-version": "2021-02-16-preview" }, "responses": { @@ -15,69 +15,69 @@ "value": [ { "properties": { - "resourceType": "kweoggspwhbaktjhfvhkatuk", - "resourceName": "cyxdqtu", - "eventType": "yxxolgohndew", - "eventName": "avmvpbtw", - "timeOfOccurrence": "2023-08-02T22:38:39.424Z", - "severity": "szxzwooikhhbflaozwmjyhs", - "description": "ojifkrwt", - "correlationId": "mpz", + "resourceType": "surgdzezskgregozynvlinfutyh", + "resourceName": "yhpkowkbvtqnbiklnjzc", + "eventType": "npumqmvspm", + "eventName": "s", + "timeOfOccurrence": "2023-08-25T00:28:53.432Z", + "severity": "sjous", + "description": "hkeiogebluvfpdgxogwesjmtbbok", + "correlationId": "lwfsxforxnhvpmheujutjicflmxv", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "EventModelCustomProperties" } }, - "id": "kestyytbyphqaocfpreevm", - "name": "ajsnogoe", - "type": "bx", + "id": "fgbppsytxctsrsxlfugyohhu", + "name": "j", + "type": "lgk", "systemData": { - "createdBy": "vaagiashoyxjghabffjuf", - "createdByType": "ylgpjgjsecubztauznjsqs", - "createdAt": "2023-08-02T22:38:39.424Z", - "lastModifiedBy": "mclylh", - "lastModifiedByType": "nfzkfwhjekhaorhqaconbmgx", - "lastModifiedAt": "2023-08-02T22:38:39.424Z" + "createdBy": "uske", + "createdByType": "luzowppyxjalugkef", + "createdAt": "2023-08-25T00:28:53.432Z", + "lastModifiedBy": "ufrixpmhben", + "lastModifiedByType": "aubgraubkuaeipwzvbcgnlpseobx", + "lastModifiedAt": "2023-08-25T00:28:53.432Z" }, "tags": { - "key4547": "ohchifajpqnnwuaxxiexynii" + "key5043": "bfaqnmbzy" } } ], - "nextLink": "msadyg" + "nextLink": "pzo" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json index d396f9ca4cb1..128b0498c1e4 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/FabricOperationsStatus_Get.json @@ -2,20 +2,20 @@ "title": "Gets the fabric operation status.", "operationId": "FabricOperationsStatus_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "fabricName": "RG2P", - "operationId": "laq", + "fabricName": "wPR", + "operationId": "dvfwerv", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "qyvq", - "name": "etlwwkikigezxhr", - "status": "qilxkagrud", - "startTime": "blauxaexlidnzohzumt", - "endTime": "fiqojtkadhzrjonytznioepo" + "id": "sf", + "name": "wzdasptnwlxgobklayoqapjcgcf", + "status": "plbnngzfppdram", + "startTime": "xuzwmfrhluafmwwsmzqxsytyehsh", + "endTime": "nauyrfh" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json index e789de7979ee..6a3d13ca41f4 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Create.json @@ -2,82 +2,82 @@ "title": "Puts the fabric.", "operationId": "Fabric_Create", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "fabricName": "TH", + "fabricName": "wPR", "api-version": "2021-02-16-preview", "body": { - "location": "isl", + "location": "tqygutlpob", "properties": { "customProperties": { "instanceType": "FabricModelCustomProperties" } }, "tags": { - "key7612": "pomiuxzfnwzdnvrkehckjzshh" + "key3917": "vgralu" } } }, "responses": { "200": { "body": { - "location": "isl", + "location": "tqygutlpob", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "elchprtkawhfkeepkmwz", - "serviceResourceId": "fwcrpwpc", + "serviceEndpoint": "ilrfl", + "serviceResourceId": "xukigpdrbyyy", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "FabricModelCustomProperties" } }, - "id": "kvzkiwmiuvagcjvzhq", - "name": "migcmd", - "type": "sinhxdiqbocyokgwbppl", + "id": "ycaxtshcmldt", + "name": "rhojydcwjgvgexpdwswjib", + "type": "toipsryjyqchikyakeiuatshiu", "systemData": { - "createdBy": "ywmkcpkbjgzaypba", - "createdByType": "ngxxmvoisqmiqrobaicqdeptmgjrt", - "createdAt": "2023-08-02T22:38:39.718Z", - "lastModifiedBy": "lxooqdnnlowfajutuklbfcn", - "lastModifiedByType": "hiubylhnsdwjjmppbqjb", - "lastModifiedAt": "2023-08-02T22:38:39.718Z" + "createdBy": "yhdmbqrsgimuucexvpas", + "createdByType": "brnojz", + "createdAt": "2023-08-25T00:28:53.716Z", + "lastModifiedBy": "balecqnwu", + "lastModifiedByType": "ukvqlncihf", + "lastModifiedAt": "2023-08-25T00:28:53.716Z" }, "tags": { - "key7612": "pomiuxzfnwzdnvrkehckjzshh" + "key3917": "vgralu" } } }, @@ -86,63 +86,63 @@ "location": "https://contoso.com/operationstatus" }, "body": { - "location": "isl", + "location": "tqygutlpob", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "elchprtkawhfkeepkmwz", - "serviceResourceId": "fwcrpwpc", + "serviceEndpoint": "ilrfl", + "serviceResourceId": "xukigpdrbyyy", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "FabricModelCustomProperties" } }, - "id": "kvzkiwmiuvagcjvzhq", - "name": "migcmd", - "type": "sinhxdiqbocyokgwbppl", + "id": "ycaxtshcmldt", + "name": "rhojydcwjgvgexpdwswjib", + "type": "toipsryjyqchikyakeiuatshiu", "systemData": { - "createdBy": "ywmkcpkbjgzaypba", - "createdByType": "ngxxmvoisqmiqrobaicqdeptmgjrt", - "createdAt": "2023-08-02T22:38:39.718Z", - "lastModifiedBy": "lxooqdnnlowfajutuklbfcn", - "lastModifiedByType": "hiubylhnsdwjjmppbqjb", - "lastModifiedAt": "2023-08-02T22:38:39.718Z" + "createdBy": "yhdmbqrsgimuucexvpas", + "createdByType": "brnojz", + "createdAt": "2023-08-25T00:28:53.716Z", + "lastModifiedBy": "balecqnwu", + "lastModifiedByType": "ukvqlncihf", + "lastModifiedAt": "2023-08-25T00:28:53.716Z" }, "tags": { - "key7612": "pomiuxzfnwzdnvrkehckjzshh" + "key3917": "vgralu" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json index 9a623aa76cca..d271405f5eb8 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Delete.json @@ -2,9 +2,9 @@ "title": "Deletes the fabric.", "operationId": "Fabric_Delete", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "fabricName": "t", + "fabricName": "wPR", "api-version": "2021-02-16-preview" }, "responses": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json index 3c917d8e2093..20c9b7c67a7a 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Get.json @@ -2,71 +2,71 @@ "title": "Gets the fabric.", "operationId": "Fabric_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "fabricName": "m5", + "fabricName": "wPR", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "location": "isl", + "location": "tqygutlpob", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "elchprtkawhfkeepkmwz", - "serviceResourceId": "fwcrpwpc", + "serviceEndpoint": "ilrfl", + "serviceResourceId": "xukigpdrbyyy", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "FabricModelCustomProperties" } }, - "id": "kvzkiwmiuvagcjvzhq", - "name": "migcmd", - "type": "sinhxdiqbocyokgwbppl", + "id": "ycaxtshcmldt", + "name": "rhojydcwjgvgexpdwswjib", + "type": "toipsryjyqchikyakeiuatshiu", "systemData": { - "createdBy": "ywmkcpkbjgzaypba", - "createdByType": "ngxxmvoisqmiqrobaicqdeptmgjrt", - "createdAt": "2023-08-02T22:38:39.718Z", - "lastModifiedBy": "lxooqdnnlowfajutuklbfcn", - "lastModifiedByType": "hiubylhnsdwjjmppbqjb", - "lastModifiedAt": "2023-08-02T22:38:39.718Z" + "createdBy": "yhdmbqrsgimuucexvpas", + "createdByType": "brnojz", + "createdAt": "2023-08-25T00:28:53.716Z", + "lastModifiedBy": "balecqnwu", + "lastModifiedByType": "ukvqlncihf", + "lastModifiedAt": "2023-08-25T00:28:53.716Z" }, "tags": { - "key7612": "pomiuxzfnwzdnvrkehckjzshh" + "key3917": "vgralu" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json index 2c35bdaa5344..927c6e1cdfa6 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_List.json @@ -2,9 +2,9 @@ "title": "Lists the fabrics.", "operationId": "Fabric_List", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "continuationToken": "mhihsmmjtir", + "continuationToken": "mjzsxwwmtvd", "api-version": "2021-02-16-preview" }, "responses": { @@ -12,67 +12,67 @@ "body": { "value": [ { - "location": "isl", + "location": "tqygutlpob", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "elchprtkawhfkeepkmwz", - "serviceResourceId": "fwcrpwpc", + "serviceEndpoint": "ilrfl", + "serviceResourceId": "xukigpdrbyyy", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "FabricModelCustomProperties" } }, - "id": "kvzkiwmiuvagcjvzhq", - "name": "migcmd", - "type": "sinhxdiqbocyokgwbppl", + "id": "ycaxtshcmldt", + "name": "rhojydcwjgvgexpdwswjib", + "type": "toipsryjyqchikyakeiuatshiu", "systemData": { - "createdBy": "ywmkcpkbjgzaypba", - "createdByType": "ngxxmvoisqmiqrobaicqdeptmgjrt", - "createdAt": "2023-08-02T22:38:39.718Z", - "lastModifiedBy": "lxooqdnnlowfajutuklbfcn", - "lastModifiedByType": "hiubylhnsdwjjmppbqjb", - "lastModifiedAt": "2023-08-02T22:38:39.718Z" + "createdBy": "yhdmbqrsgimuucexvpas", + "createdByType": "brnojz", + "createdAt": "2023-08-25T00:28:53.716Z", + "lastModifiedBy": "balecqnwu", + "lastModifiedByType": "ukvqlncihf", + "lastModifiedAt": "2023-08-25T00:28:53.716Z" }, "tags": { - "key7612": "pomiuxzfnwzdnvrkehckjzshh" + "key3917": "vgralu" } } ], - "nextLink": "lrykuhpezupzhpcbkfmnarut" + "nextLink": "nyrnwuxo" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json index e556e111288a..fcc4adec1d77 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_ListBySubscription.json @@ -2,8 +2,8 @@ "title": "Lists the fabrics.", "operationId": "Fabric_ListBySubscription", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", - "continuationToken": "nerkvqjoskvf", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", + "continuationToken": "rmgqrpzucsizbyjscxzockbiyg", "api-version": "2021-02-16-preview" }, "responses": { @@ -11,67 +11,67 @@ "body": { "value": [ { - "location": "isl", + "location": "tqygutlpob", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "elchprtkawhfkeepkmwz", - "serviceResourceId": "fwcrpwpc", + "serviceEndpoint": "ilrfl", + "serviceResourceId": "xukigpdrbyyy", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "FabricModelCustomProperties" } }, - "id": "kvzkiwmiuvagcjvzhq", - "name": "migcmd", - "type": "sinhxdiqbocyokgwbppl", + "id": "ycaxtshcmldt", + "name": "rhojydcwjgvgexpdwswjib", + "type": "toipsryjyqchikyakeiuatshiu", "systemData": { - "createdBy": "ywmkcpkbjgzaypba", - "createdByType": "ngxxmvoisqmiqrobaicqdeptmgjrt", - "createdAt": "2023-08-02T22:38:39.718Z", - "lastModifiedBy": "lxooqdnnlowfajutuklbfcn", - "lastModifiedByType": "hiubylhnsdwjjmppbqjb", - "lastModifiedAt": "2023-08-02T22:38:39.718Z" + "createdBy": "yhdmbqrsgimuucexvpas", + "createdByType": "brnojz", + "createdAt": "2023-08-25T00:28:53.716Z", + "lastModifiedBy": "balecqnwu", + "lastModifiedByType": "ukvqlncihf", + "lastModifiedAt": "2023-08-25T00:28:53.716Z" }, "tags": { - "key7612": "pomiuxzfnwzdnvrkehckjzshh" + "key3917": "vgralu" } } ], - "nextLink": "lrykuhpezupzhpcbkfmnarut" + "nextLink": "nyrnwuxo" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json index 11c213e0c1d0..7bb2b7164577 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Fabric_Update.json @@ -2,9 +2,9 @@ "title": "Updates the fabric.", "operationId": "Fabric_Update", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "fabricName": "34X", + "fabricName": "wPR", "api-version": "2021-02-16-preview", "body": { "properties": { @@ -13,70 +13,70 @@ } }, "tags": { - "key9396": "qwof" + "key6664": "def" } } }, "responses": { "200": { "body": { - "location": "isl", + "location": "tqygutlpob", "properties": { "provisioningState": "Canceled", - "serviceEndpoint": "elchprtkawhfkeepkmwz", - "serviceResourceId": "fwcrpwpc", + "serviceEndpoint": "ilrfl", + "serviceResourceId": "xukigpdrbyyy", "health": "Normal", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "FabricModelCustomProperties" } }, - "id": "kvzkiwmiuvagcjvzhq", - "name": "migcmd", - "type": "sinhxdiqbocyokgwbppl", + "id": "ycaxtshcmldt", + "name": "rhojydcwjgvgexpdwswjib", + "type": "toipsryjyqchikyakeiuatshiu", "systemData": { - "createdBy": "ywmkcpkbjgzaypba", - "createdByType": "ngxxmvoisqmiqrobaicqdeptmgjrt", - "createdAt": "2023-08-02T22:38:39.718Z", - "lastModifiedBy": "lxooqdnnlowfajutuklbfcn", - "lastModifiedByType": "hiubylhnsdwjjmppbqjb", - "lastModifiedAt": "2023-08-02T22:38:39.718Z" + "createdBy": "yhdmbqrsgimuucexvpas", + "createdByType": "brnojz", + "createdAt": "2023-08-25T00:28:53.716Z", + "lastModifiedBy": "balecqnwu", + "lastModifiedByType": "ukvqlncihf", + "lastModifiedAt": "2023-08-25T00:28:53.716Z" }, "tags": { - "key7612": "pomiuxzfnwzdnvrkehckjzshh" + "key3917": "vgralu" } } }, diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json index 58aabf28bd05..8cdfe4b52d7b 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Operations_List.json @@ -9,13 +9,13 @@ "body": { "value": [ { - "name": "zknwyhlxiugtjb", + "name": "chktcqashuxscvbp", "isDataAction": true, "display": { - "provider": "uvfguotwkwd", - "resource": "t", - "operation": "tptufgdmsfajjlnpm", - "description": "gmmdeveprtxrzdcvxznqbk" + "provider": "yembewkfmaq", + "resource": "epyscqvmqhxbwgyqhzeaumpor", + "operation": "dfal", + "description": "bjdvnagzxjandxcbcrf" }, "origin": "user", "actionType": "Internal" diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json index 6a3e3858c47e..6ca44b1120fc 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/PolicyOperationStatus_Get.json @@ -2,21 +2,21 @@ "title": "Gets the policy operation status.", "operationId": "PolicyOperationStatus_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "DW8yQ", - "policyName": "iRLJ5", - "operationId": "laq", + "vaultName": "4", + "policyName": "xczxcwec", + "operationId": "wdqfsdxv", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "qyvq", - "name": "etlwwkikigezxhr", - "status": "qilxkagrud", - "startTime": "blauxaexlidnzohzumt", - "endTime": "fiqojtkadhzrjonytznioepo" + "id": "sf", + "name": "wzdasptnwlxgobklayoqapjcgcf", + "status": "plbnngzfppdram", + "startTime": "xuzwmfrhluafmwwsmzqxsytyehsh", + "endTime": "nauyrfh" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json index 26a69f811567..9021637ec017 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json @@ -2,10 +2,10 @@ "title": "Puts the policy.", "operationId": "Policy_Create", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "mBH", - "policyName": "F", + "vaultName": "4", + "policyName": "fafqwc", "api-version": "2021-02-16-preview", "body": { "properties": { @@ -14,7 +14,7 @@ } }, "tags": { - "key8545": "jduymqurvbrrgbmmo" + "key8304": "cnhiedlpsalbptkklizi" } } }, @@ -27,19 +27,19 @@ "instanceType": "PolicyModelCustomProperties" } }, - "id": "nrwxjuvtcmibjsvxsmoxd", - "name": "fgbkshfmax", - "type": "horrbmzdmkkbikrcsqizngoknct", + "id": "ffivjzdtqgguqlenedikvdilazliwm", + "name": "ocmty", + "type": "pvltqld", "systemData": { - "createdBy": "kukxrnxub", - "createdByType": "fsufmqzhyfylnmbzvqttmanmdhnwo", - "createdAt": "2023-08-02T22:38:40.738Z", - "lastModifiedBy": "jhyfpncwajty", - "lastModifiedByType": "mzhvyfjokdswie", - "lastModifiedAt": "2023-08-02T22:38:40.738Z" + "createdBy": "yiaelkrpuzsfumovsxeb", + "createdByType": "qwzrkjsfloruegijrfnfpn", + "createdAt": "2023-08-25T00:28:54.713Z", + "lastModifiedBy": "xy", + "lastModifiedByType": "rnc", + "lastModifiedAt": "2023-08-25T00:28:54.713Z" }, "tags": { - "key8545": "jduymqurvbrrgbmmo" + "key8304": "cnhiedlpsalbptkklizi" } } }, @@ -54,19 +54,19 @@ "instanceType": "PolicyModelCustomProperties" } }, - "id": "nrwxjuvtcmibjsvxsmoxd", - "name": "fgbkshfmax", - "type": "horrbmzdmkkbikrcsqizngoknct", + "id": "ffivjzdtqgguqlenedikvdilazliwm", + "name": "ocmty", + "type": "pvltqld", "systemData": { - "createdBy": "kukxrnxub", - "createdByType": "fsufmqzhyfylnmbzvqttmanmdhnwo", - "createdAt": "2023-08-02T22:38:40.738Z", - "lastModifiedBy": "jhyfpncwajty", - "lastModifiedByType": "mzhvyfjokdswie", - "lastModifiedAt": "2023-08-02T22:38:40.738Z" + "createdBy": "yiaelkrpuzsfumovsxeb", + "createdByType": "qwzrkjsfloruegijrfnfpn", + "createdAt": "2023-08-25T00:28:54.713Z", + "lastModifiedBy": "xy", + "lastModifiedByType": "rnc", + "lastModifiedAt": "2023-08-25T00:28:54.713Z" }, "tags": { - "key8545": "jduymqurvbrrgbmmo" + "key8304": "cnhiedlpsalbptkklizi" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json index 9a2a85a3ee09..9f7ee7acafc6 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Delete.json @@ -2,10 +2,10 @@ "title": "Deletes the policy.", "operationId": "Policy_Delete", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "P7B", - "policyName": "9", + "vaultName": "4", + "policyName": "wqfscsdv", "api-version": "2021-02-16-preview" }, "responses": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json index eb94704ada4b..8b6252ffd178 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json @@ -2,10 +2,10 @@ "title": "Gets the policy.", "operationId": "Policy_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "YG1Q", - "policyName": "dasqwd", + "vaultName": "4", + "policyName": "wdqsacasc", "api-version": "2021-02-16-preview" }, "responses": { @@ -17,19 +17,19 @@ "instanceType": "PolicyModelCustomProperties" } }, - "id": "nrwxjuvtcmibjsvxsmoxd", - "name": "fgbkshfmax", - "type": "horrbmzdmkkbikrcsqizngoknct", + "id": "ffivjzdtqgguqlenedikvdilazliwm", + "name": "ocmty", + "type": "pvltqld", "systemData": { - "createdBy": "kukxrnxub", - "createdByType": "fsufmqzhyfylnmbzvqttmanmdhnwo", - "createdAt": "2023-08-02T22:38:40.738Z", - "lastModifiedBy": "jhyfpncwajty", - "lastModifiedByType": "mzhvyfjokdswie", - "lastModifiedAt": "2023-08-02T22:38:40.738Z" + "createdBy": "yiaelkrpuzsfumovsxeb", + "createdByType": "qwzrkjsfloruegijrfnfpn", + "createdAt": "2023-08-25T00:28:54.713Z", + "lastModifiedBy": "xy", + "lastModifiedByType": "rnc", + "lastModifiedAt": "2023-08-25T00:28:54.713Z" }, "tags": { - "key8545": "jduymqurvbrrgbmmo" + "key8304": "cnhiedlpsalbptkklizi" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json index 6f608bdd41b9..b731467d821a 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json @@ -2,9 +2,9 @@ "title": "Lists the policies.", "operationId": "Policy_List", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "X5PS", + "vaultName": "4", "api-version": "2021-02-16-preview" }, "responses": { @@ -18,23 +18,23 @@ "instanceType": "PolicyModelCustomProperties" } }, - "id": "nrwxjuvtcmibjsvxsmoxd", - "name": "fgbkshfmax", - "type": "horrbmzdmkkbikrcsqizngoknct", + "id": "ffivjzdtqgguqlenedikvdilazliwm", + "name": "ocmty", + "type": "pvltqld", "systemData": { - "createdBy": "kukxrnxub", - "createdByType": "fsufmqzhyfylnmbzvqttmanmdhnwo", - "createdAt": "2023-08-02T22:38:40.738Z", - "lastModifiedBy": "jhyfpncwajty", - "lastModifiedByType": "mzhvyfjokdswie", - "lastModifiedAt": "2023-08-02T22:38:40.738Z" + "createdBy": "yiaelkrpuzsfumovsxeb", + "createdByType": "qwzrkjsfloruegijrfnfpn", + "createdAt": "2023-08-25T00:28:54.713Z", + "lastModifiedBy": "xy", + "lastModifiedByType": "rnc", + "lastModifiedAt": "2023-08-25T00:28:54.713Z" }, "tags": { - "key8545": "jduymqurvbrrgbmmo" + "key8304": "cnhiedlpsalbptkklizi" } } ], - "nextLink": "fxq" + "nextLink": "ovzdscxkyaeiohxqpwfngrtistowu" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json index 4aaa46980fe9..af58cb1eac65 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItemOperationStatus_Get.json @@ -2,21 +2,21 @@ "title": "Gets the protected item operation status.", "operationId": "ProtectedItemOperationStatus_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "E9", - "protectedItemName": "6HN", - "operationId": "laq", + "vaultName": "4", + "protectedItemName": "d", + "operationId": "wdqacsc", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "qyvq", - "name": "etlwwkikigezxhr", - "status": "qilxkagrud", - "startTime": "blauxaexlidnzohzumt", - "endTime": "fiqojtkadhzrjonytznioepo" + "id": "sf", + "name": "wzdasptnwlxgobklayoqapjcgcf", + "status": "plbnngzfppdram", + "startTime": "xuzwmfrhluafmwwsmzqxsytyehsh", + "endTime": "nauyrfh" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json index 3e3f67c59256..74296b4d874a 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json @@ -2,21 +2,21 @@ "title": "Puts the protected item.", "operationId": "ProtectedItem_Create", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "jO", - "protectedItemName": "6S", + "vaultName": "4", + "protectedItemName": "d", "api-version": "2021-02-16-preview", "body": { "properties": { - "policyName": "kgahoneh", - "replicationExtensionName": "ra", + "policyName": "tjoeiynplt", + "replicationExtensionName": "jwxdo", "customProperties": { "instanceType": "ProtectedItemModelCustomProperties" } }, "tags": { - "key506": "ksuv" + "key204": "iqmduvjucumtaal" } } }, @@ -24,118 +24,118 @@ "200": { "body": { "properties": { - "policyName": "kgahoneh", - "replicationExtensionName": "ra", - "correlationId": "ynykvizrjkliiab", + "policyName": "tjoeiynplt", + "replicationExtensionName": "jwxdo", + "correlationId": "mvxvtcqwgp", "provisioningState": "Canceled", "protectionState": "UnprotectedStatesBegin", - "protectionStateDescription": "cwccvvryeshblczlnevwwxwxvqjtov", + "protectionStateDescription": "lp", "testFailoverState": "None", - "testFailoverStateDescription": "suysizrdlcbouxqycxmllvehdzv", + "testFailoverStateDescription": "msjz", "resynchronizationState": "None", - "fabricObjectId": "hdwqqzyvlylyhno", - "fabricObjectName": "neffchwmyoixetcfdwivsvpgz", - "sourceFabricProviderId": "pegbqsbisnzjmkhexe", - "targetFabricProviderId": "fummhhiwjcbbyvyyvhjjmogwkvljkg", - "fabricId": "pngqu", - "targetFabricId": "n", - "draId": "rrpzzgiewegjdrkoxdjq", - "targetDraId": "zcfiusfbvulsijiokgwzjgarh", + "fabricObjectId": "kjcizdpahzqsrwyiywbhyzdxsufj", + "fabricObjectName": "glrjwtvmejxuagjepcwaxhih", + "sourceFabricProviderId": "srggkxaruzlegtpdalscio", + "targetFabricProviderId": "sutiqezfbeiewwjezflvcitqj", + "fabricId": "ebsxoblmhlhqjzzjzdwo", + "targetFabricId": "fb", + "draId": "vxrmsufvxothxauhvqdowascmy", + "targetDraId": "oscnhreunbyibimlpvsesu", "resyncRequired": true, - "lastSuccessfulPlannedFailoverTime": "2023-08-02T22:38:41.470Z", - "lastSuccessfulUnplannedFailoverTime": "2023-08-02T22:38:41.470Z", - "lastSuccessfulTestFailoverTime": "2023-08-02T22:38:41.470Z", + "lastSuccessfulPlannedFailoverTime": "2023-08-25T00:28:55.456Z", + "lastSuccessfulUnplannedFailoverTime": "2023-08-25T00:28:55.456Z", + "lastSuccessfulTestFailoverTime": "2023-08-25T00:28:55.456Z", "currentJob": { - "scenarioName": "xbwdhyqofcqcsaovsvwinngqwuaguz", - "id": "suiypqsjg", - "name": "dgpusgkt", - "displayName": "mmku", - "state": "mk", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "ljbnhbdmreowdqnlcqycvaramwuii", + "id": "bnmbzxzyfgwh", + "name": "kqtvbrfmqaxdgpttkbmzpwafjp", + "displayName": "awutlqrisstqb", + "state": "ztlpngveoqcdejpwaiudhrioskauqv", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "allowedJobs": [ - "nwqzxmyfhjmnmgynyulk" + "guryeoocjbvqvalfkrxecpxwynpxs" ], "lastFailedEnableProtectionJob": { - "scenarioName": "menampbsksxi", - "id": "qimdhgdmaglwojsmwyjieeiai", - "name": "skbvklopgfv", - "displayName": "cpydidwcdcyiwmesyytwdkdiq", - "state": "oswgwvtnjbilslwmujol", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "fhz", + "id": "hjzgyxgdy", + "name": "hvvolptulpcxwbnjdzky", + "displayName": "zrqjbcozwiuypjjnvy", + "state": "ljsixxmmcaq", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "lastFailedPlannedFailoverJob": { - "scenarioName": "xaw", - "id": "rvtgbifqihz", - "name": "i", - "displayName": "havjvyyrfc", - "state": "zfbmplsvmr", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "ceksuyfiplxj", + "id": "ndjurplurnkguwfxx", + "name": "ofblltxwhwzhyr", + "displayName": "whxsvbrzdhqsepbocfzsfx", + "state": "wpur", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "lastTestFailoverJob": { - "scenarioName": "mcbqzgeattozofartntparcu", - "id": "judbfmidcrfru", - "name": "cu", - "displayName": "ftmrfttpjiagnzrenxpymigukh", - "state": "ybrrrubekgekyfgmxtglqacpag", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "dfuovvz", + "id": "cta", + "name": "cedjijdtnznsnigghrxnsaz", + "displayName": "lhkjfbonwdtxckwzfebfwdyu", + "state": "nhbzw", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "replicationHealth": "Normal", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "ProtectedItemModelCustomProperties" } }, - "id": "hqjupkwib", - "name": "fesmksblzbokuxojgbpffltdvdfpz", - "type": "xjt", + "id": "egmhsfbgkarlobrgybkz", + "name": "t", + "type": "xlyjashandpfwivuipoplgkgsnwoh", "systemData": { - "createdBy": "r", - "createdByType": "zyghlshuwovjhfpitwcfhkddscjkl", - "createdAt": "2023-08-02T22:38:41.470Z", - "lastModifiedBy": "nhfjnudsb", - "lastModifiedByType": "nmwthqlvbmwdcgui", - "lastModifiedAt": "2023-08-02T22:38:41.470Z" + "createdBy": "ghut", + "createdByType": "tzczp", + "createdAt": "2023-08-25T00:28:55.456Z", + "lastModifiedBy": "epo", + "lastModifiedByType": "ekzmwexhjttb", + "lastModifiedAt": "2023-08-25T00:28:55.456Z" }, "tags": { - "key506": "ksuv" + "key204": "iqmduvjucumtaal" } } }, @@ -145,118 +145,118 @@ }, "body": { "properties": { - "policyName": "kgahoneh", - "replicationExtensionName": "ra", - "correlationId": "ynykvizrjkliiab", + "policyName": "tjoeiynplt", + "replicationExtensionName": "jwxdo", + "correlationId": "mvxvtcqwgp", "provisioningState": "Canceled", "protectionState": "UnprotectedStatesBegin", - "protectionStateDescription": "cwccvvryeshblczlnevwwxwxvqjtov", + "protectionStateDescription": "lp", "testFailoverState": "None", - "testFailoverStateDescription": "suysizrdlcbouxqycxmllvehdzv", + "testFailoverStateDescription": "msjz", "resynchronizationState": "None", - "fabricObjectId": "hdwqqzyvlylyhno", - "fabricObjectName": "neffchwmyoixetcfdwivsvpgz", - "sourceFabricProviderId": "pegbqsbisnzjmkhexe", - "targetFabricProviderId": "fummhhiwjcbbyvyyvhjjmogwkvljkg", - "fabricId": "pngqu", - "targetFabricId": "n", - "draId": "rrpzzgiewegjdrkoxdjq", - "targetDraId": "zcfiusfbvulsijiokgwzjgarh", + "fabricObjectId": "kjcizdpahzqsrwyiywbhyzdxsufj", + "fabricObjectName": "glrjwtvmejxuagjepcwaxhih", + "sourceFabricProviderId": "srggkxaruzlegtpdalscio", + "targetFabricProviderId": "sutiqezfbeiewwjezflvcitqj", + "fabricId": "ebsxoblmhlhqjzzjzdwo", + "targetFabricId": "fb", + "draId": "vxrmsufvxothxauhvqdowascmy", + "targetDraId": "oscnhreunbyibimlpvsesu", "resyncRequired": true, - "lastSuccessfulPlannedFailoverTime": "2023-08-02T22:38:41.470Z", - "lastSuccessfulUnplannedFailoverTime": "2023-08-02T22:38:41.470Z", - "lastSuccessfulTestFailoverTime": "2023-08-02T22:38:41.470Z", + "lastSuccessfulPlannedFailoverTime": "2023-08-25T00:28:55.456Z", + "lastSuccessfulUnplannedFailoverTime": "2023-08-25T00:28:55.456Z", + "lastSuccessfulTestFailoverTime": "2023-08-25T00:28:55.456Z", "currentJob": { - "scenarioName": "xbwdhyqofcqcsaovsvwinngqwuaguz", - "id": "suiypqsjg", - "name": "dgpusgkt", - "displayName": "mmku", - "state": "mk", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "ljbnhbdmreowdqnlcqycvaramwuii", + "id": "bnmbzxzyfgwh", + "name": "kqtvbrfmqaxdgpttkbmzpwafjp", + "displayName": "awutlqrisstqb", + "state": "ztlpngveoqcdejpwaiudhrioskauqv", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "allowedJobs": [ - "nwqzxmyfhjmnmgynyulk" + "guryeoocjbvqvalfkrxecpxwynpxs" ], "lastFailedEnableProtectionJob": { - "scenarioName": "menampbsksxi", - "id": "qimdhgdmaglwojsmwyjieeiai", - "name": "skbvklopgfv", - "displayName": "cpydidwcdcyiwmesyytwdkdiq", - "state": "oswgwvtnjbilslwmujol", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "fhz", + "id": "hjzgyxgdy", + "name": "hvvolptulpcxwbnjdzky", + "displayName": "zrqjbcozwiuypjjnvy", + "state": "ljsixxmmcaq", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "lastFailedPlannedFailoverJob": { - "scenarioName": "xaw", - "id": "rvtgbifqihz", - "name": "i", - "displayName": "havjvyyrfc", - "state": "zfbmplsvmr", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "ceksuyfiplxj", + "id": "ndjurplurnkguwfxx", + "name": "ofblltxwhwzhyr", + "displayName": "whxsvbrzdhqsepbocfzsfx", + "state": "wpur", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "lastTestFailoverJob": { - "scenarioName": "mcbqzgeattozofartntparcu", - "id": "judbfmidcrfru", - "name": "cu", - "displayName": "ftmrfttpjiagnzrenxpymigukh", - "state": "ybrrrubekgekyfgmxtglqacpag", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "dfuovvz", + "id": "cta", + "name": "cedjijdtnznsnigghrxnsaz", + "displayName": "lhkjfbonwdtxckwzfebfwdyu", + "state": "nhbzw", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "replicationHealth": "Normal", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "ProtectedItemModelCustomProperties" } }, - "id": "hqjupkwib", - "name": "fesmksblzbokuxojgbpffltdvdfpz", - "type": "xjt", + "id": "egmhsfbgkarlobrgybkz", + "name": "t", + "type": "xlyjashandpfwivuipoplgkgsnwoh", "systemData": { - "createdBy": "r", - "createdByType": "zyghlshuwovjhfpitwcfhkddscjkl", - "createdAt": "2023-08-02T22:38:41.470Z", - "lastModifiedBy": "nhfjnudsb", - "lastModifiedByType": "nmwthqlvbmwdcgui", - "lastModifiedAt": "2023-08-02T22:38:41.470Z" + "createdBy": "ghut", + "createdByType": "tzczp", + "createdAt": "2023-08-25T00:28:55.456Z", + "lastModifiedBy": "epo", + "lastModifiedByType": "ekzmwexhjttb", + "lastModifiedAt": "2023-08-25T00:28:55.456Z" }, "tags": { - "key506": "ksuv" + "key204": "iqmduvjucumtaal" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json index 4fb152deb560..f60f9e5ff3bb 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Delete.json @@ -2,10 +2,10 @@ "title": "Deletes the protected item.", "operationId": "ProtectedItem_Delete", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "GHxwtWx", - "protectedItemName": "G7J", + "vaultName": "4", + "protectedItemName": "d", "forceDelete": true, "api-version": "2021-02-16-preview" }, diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json index ad99e905b955..50df6b8ab245 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json @@ -2,128 +2,128 @@ "title": "Gets the protected item.", "operationId": "ProtectedItem_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "lW", - "protectedItemName": "3", + "vaultName": "4", + "protectedItemName": "d", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { "properties": { - "policyName": "kgahoneh", - "replicationExtensionName": "ra", - "correlationId": "ynykvizrjkliiab", + "policyName": "tjoeiynplt", + "replicationExtensionName": "jwxdo", + "correlationId": "mvxvtcqwgp", "provisioningState": "Canceled", "protectionState": "UnprotectedStatesBegin", - "protectionStateDescription": "cwccvvryeshblczlnevwwxwxvqjtov", + "protectionStateDescription": "lp", "testFailoverState": "None", - "testFailoverStateDescription": "suysizrdlcbouxqycxmllvehdzv", + "testFailoverStateDescription": "msjz", "resynchronizationState": "None", - "fabricObjectId": "hdwqqzyvlylyhno", - "fabricObjectName": "neffchwmyoixetcfdwivsvpgz", - "sourceFabricProviderId": "pegbqsbisnzjmkhexe", - "targetFabricProviderId": "fummhhiwjcbbyvyyvhjjmogwkvljkg", - "fabricId": "pngqu", - "targetFabricId": "n", - "draId": "rrpzzgiewegjdrkoxdjq", - "targetDraId": "zcfiusfbvulsijiokgwzjgarh", + "fabricObjectId": "kjcizdpahzqsrwyiywbhyzdxsufj", + "fabricObjectName": "glrjwtvmejxuagjepcwaxhih", + "sourceFabricProviderId": "srggkxaruzlegtpdalscio", + "targetFabricProviderId": "sutiqezfbeiewwjezflvcitqj", + "fabricId": "ebsxoblmhlhqjzzjzdwo", + "targetFabricId": "fb", + "draId": "vxrmsufvxothxauhvqdowascmy", + "targetDraId": "oscnhreunbyibimlpvsesu", "resyncRequired": true, - "lastSuccessfulPlannedFailoverTime": "2023-08-02T22:38:41.470Z", - "lastSuccessfulUnplannedFailoverTime": "2023-08-02T22:38:41.470Z", - "lastSuccessfulTestFailoverTime": "2023-08-02T22:38:41.470Z", + "lastSuccessfulPlannedFailoverTime": "2023-08-25T00:28:55.456Z", + "lastSuccessfulUnplannedFailoverTime": "2023-08-25T00:28:55.456Z", + "lastSuccessfulTestFailoverTime": "2023-08-25T00:28:55.456Z", "currentJob": { - "scenarioName": "xbwdhyqofcqcsaovsvwinngqwuaguz", - "id": "suiypqsjg", - "name": "dgpusgkt", - "displayName": "mmku", - "state": "mk", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "ljbnhbdmreowdqnlcqycvaramwuii", + "id": "bnmbzxzyfgwh", + "name": "kqtvbrfmqaxdgpttkbmzpwafjp", + "displayName": "awutlqrisstqb", + "state": "ztlpngveoqcdejpwaiudhrioskauqv", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "allowedJobs": [ - "nwqzxmyfhjmnmgynyulk" + "guryeoocjbvqvalfkrxecpxwynpxs" ], "lastFailedEnableProtectionJob": { - "scenarioName": "menampbsksxi", - "id": "qimdhgdmaglwojsmwyjieeiai", - "name": "skbvklopgfv", - "displayName": "cpydidwcdcyiwmesyytwdkdiq", - "state": "oswgwvtnjbilslwmujol", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "fhz", + "id": "hjzgyxgdy", + "name": "hvvolptulpcxwbnjdzky", + "displayName": "zrqjbcozwiuypjjnvy", + "state": "ljsixxmmcaq", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "lastFailedPlannedFailoverJob": { - "scenarioName": "xaw", - "id": "rvtgbifqihz", - "name": "i", - "displayName": "havjvyyrfc", - "state": "zfbmplsvmr", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "ceksuyfiplxj", + "id": "ndjurplurnkguwfxx", + "name": "ofblltxwhwzhyr", + "displayName": "whxsvbrzdhqsepbocfzsfx", + "state": "wpur", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "lastTestFailoverJob": { - "scenarioName": "mcbqzgeattozofartntparcu", - "id": "judbfmidcrfru", - "name": "cu", - "displayName": "ftmrfttpjiagnzrenxpymigukh", - "state": "ybrrrubekgekyfgmxtglqacpag", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "dfuovvz", + "id": "cta", + "name": "cedjijdtnznsnigghrxnsaz", + "displayName": "lhkjfbonwdtxckwzfebfwdyu", + "state": "nhbzw", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "replicationHealth": "Normal", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "ProtectedItemModelCustomProperties" } }, - "id": "hqjupkwib", - "name": "fesmksblzbokuxojgbpffltdvdfpz", - "type": "xjt", + "id": "egmhsfbgkarlobrgybkz", + "name": "t", + "type": "xlyjashandpfwivuipoplgkgsnwoh", "systemData": { - "createdBy": "r", - "createdByType": "zyghlshuwovjhfpitwcfhkddscjkl", - "createdAt": "2023-08-02T22:38:41.470Z", - "lastModifiedBy": "nhfjnudsb", - "lastModifiedByType": "nmwthqlvbmwdcgui", - "lastModifiedAt": "2023-08-02T22:38:41.470Z" + "createdBy": "ghut", + "createdByType": "tzczp", + "createdAt": "2023-08-25T00:28:55.456Z", + "lastModifiedBy": "epo", + "lastModifiedByType": "ekzmwexhjttb", + "lastModifiedAt": "2023-08-25T00:28:55.456Z" }, "tags": { - "key506": "ksuv" + "key204": "iqmduvjucumtaal" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json index 0e3e7a3a33bf..5c8d41d504bd 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json @@ -2,9 +2,9 @@ "title": "Lists the protected items.", "operationId": "ProtectedItem_List", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "C66y", + "vaultName": "4", "api-version": "2021-02-16-preview" }, "responses": { @@ -13,122 +13,122 @@ "value": [ { "properties": { - "policyName": "kgahoneh", - "replicationExtensionName": "ra", - "correlationId": "ynykvizrjkliiab", + "policyName": "tjoeiynplt", + "replicationExtensionName": "jwxdo", + "correlationId": "mvxvtcqwgp", "provisioningState": "Canceled", "protectionState": "UnprotectedStatesBegin", - "protectionStateDescription": "cwccvvryeshblczlnevwwxwxvqjtov", + "protectionStateDescription": "lp", "testFailoverState": "None", - "testFailoverStateDescription": "suysizrdlcbouxqycxmllvehdzv", + "testFailoverStateDescription": "msjz", "resynchronizationState": "None", - "fabricObjectId": "hdwqqzyvlylyhno", - "fabricObjectName": "neffchwmyoixetcfdwivsvpgz", - "sourceFabricProviderId": "pegbqsbisnzjmkhexe", - "targetFabricProviderId": "fummhhiwjcbbyvyyvhjjmogwkvljkg", - "fabricId": "pngqu", - "targetFabricId": "n", - "draId": "rrpzzgiewegjdrkoxdjq", - "targetDraId": "zcfiusfbvulsijiokgwzjgarh", + "fabricObjectId": "kjcizdpahzqsrwyiywbhyzdxsufj", + "fabricObjectName": "glrjwtvmejxuagjepcwaxhih", + "sourceFabricProviderId": "srggkxaruzlegtpdalscio", + "targetFabricProviderId": "sutiqezfbeiewwjezflvcitqj", + "fabricId": "ebsxoblmhlhqjzzjzdwo", + "targetFabricId": "fb", + "draId": "vxrmsufvxothxauhvqdowascmy", + "targetDraId": "oscnhreunbyibimlpvsesu", "resyncRequired": true, - "lastSuccessfulPlannedFailoverTime": "2023-08-02T22:38:41.470Z", - "lastSuccessfulUnplannedFailoverTime": "2023-08-02T22:38:41.470Z", - "lastSuccessfulTestFailoverTime": "2023-08-02T22:38:41.470Z", + "lastSuccessfulPlannedFailoverTime": "2023-08-25T00:28:55.456Z", + "lastSuccessfulUnplannedFailoverTime": "2023-08-25T00:28:55.456Z", + "lastSuccessfulTestFailoverTime": "2023-08-25T00:28:55.456Z", "currentJob": { - "scenarioName": "xbwdhyqofcqcsaovsvwinngqwuaguz", - "id": "suiypqsjg", - "name": "dgpusgkt", - "displayName": "mmku", - "state": "mk", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "ljbnhbdmreowdqnlcqycvaramwuii", + "id": "bnmbzxzyfgwh", + "name": "kqtvbrfmqaxdgpttkbmzpwafjp", + "displayName": "awutlqrisstqb", + "state": "ztlpngveoqcdejpwaiudhrioskauqv", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "allowedJobs": [ - "nwqzxmyfhjmnmgynyulk" + "guryeoocjbvqvalfkrxecpxwynpxs" ], "lastFailedEnableProtectionJob": { - "scenarioName": "menampbsksxi", - "id": "qimdhgdmaglwojsmwyjieeiai", - "name": "skbvklopgfv", - "displayName": "cpydidwcdcyiwmesyytwdkdiq", - "state": "oswgwvtnjbilslwmujol", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "fhz", + "id": "hjzgyxgdy", + "name": "hvvolptulpcxwbnjdzky", + "displayName": "zrqjbcozwiuypjjnvy", + "state": "ljsixxmmcaq", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "lastFailedPlannedFailoverJob": { - "scenarioName": "xaw", - "id": "rvtgbifqihz", - "name": "i", - "displayName": "havjvyyrfc", - "state": "zfbmplsvmr", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "ceksuyfiplxj", + "id": "ndjurplurnkguwfxx", + "name": "ofblltxwhwzhyr", + "displayName": "whxsvbrzdhqsepbocfzsfx", + "state": "wpur", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "lastTestFailoverJob": { - "scenarioName": "mcbqzgeattozofartntparcu", - "id": "judbfmidcrfru", - "name": "cu", - "displayName": "ftmrfttpjiagnzrenxpymigukh", - "state": "ybrrrubekgekyfgmxtglqacpag", - "startTime": "2023-08-02T22:38:41.470Z", - "endTime": "2023-08-02T22:38:41.470Z" + "scenarioName": "dfuovvz", + "id": "cta", + "name": "cedjijdtnznsnigghrxnsaz", + "displayName": "lhkjfbonwdtxckwzfebfwdyu", + "state": "nhbzw", + "startTime": "2023-08-25T00:28:55.456Z", + "endTime": "2023-08-25T00:28:55.456Z" }, "replicationHealth": "Normal", "healthErrors": [ { - "affectedResourceType": "vrnurlgsrdvsdllfjabewr", + "affectedResourceType": "scfniv", "affectedResourceCorrelationIds": [ - "elaxsdyoauts" + "fope" ], "childErrors": [ { - "code": "jso", - "healthCategory": "eoqmuxhpveoh", - "category": "wwxaepbgymevx", - "severity": "emehrmfqjuenocdndpx", - "source": "jgafmixbefrftrebblrsf", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "yuxxpblihirpedwkigywgwjjrlzq", + "healthCategory": "mhdgfjqwbikhxmhtomkl", + "category": "lcsdxrqxquke", + "severity": "wqxxiuaqjyagq", + "source": "wevvftugwydzzw", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "vqljp", - "message": "diqwh", - "causes": "vsfbghitg", - "recommendation": "g" + "summary": "djsmgrltruljo", + "message": "sskcei", + "causes": "kefaugkpxjkpulimjthjnl", + "recommendation": "kqybwaesqumywtjepi" } ], - "code": "xvkhvxpmxvycl", - "healthCategory": "gxqisiwkkgyqisxlnq", - "category": "ddqarlwkajosfgiffuijtgwxf", - "severity": "lttaeoxsmxh", - "source": "mrxerzl", - "creationTime": "2023-08-02T22:38:38.126Z", + "code": "dgxkefzmeukd", + "healthCategory": "itc", + "category": "leigw", + "severity": "vvdajssdcypewdyechilxjmuijvdd", + "source": "iy", + "creationTime": "2023-08-25T00:28:52.128Z", "isCustomerResolvable": true, - "summary": "suashwmirng", - "message": "esibtugwmflwpm", - "causes": "w", - "recommendation": "kptcqaavmhmti" + "summary": "jtooblbvaxxrvcwgscbobq", + "message": "lbywtdprdqdekl", + "causes": "xznphqrrmsdzm", + "recommendation": "gmssteizlhjtclyeoo" } ], "customProperties": { "instanceType": "ProtectedItemModelCustomProperties" } }, - "id": "hqjupkwib", - "name": "fesmksblzbokuxojgbpffltdvdfpz", - "type": "xjt", + "id": "egmhsfbgkarlobrgybkz", + "name": "t", + "type": "xlyjashandpfwivuipoplgkgsnwoh", "systemData": { - "createdBy": "r", - "createdByType": "zyghlshuwovjhfpitwcfhkddscjkl", - "createdAt": "2023-08-02T22:38:41.470Z", - "lastModifiedBy": "nhfjnudsb", - "lastModifiedByType": "nmwthqlvbmwdcgui", - "lastModifiedAt": "2023-08-02T22:38:41.470Z" + "createdBy": "ghut", + "createdByType": "tzczp", + "createdAt": "2023-08-25T00:28:55.456Z", + "lastModifiedBy": "epo", + "lastModifiedByType": "ekzmwexhjttb", + "lastModifiedAt": "2023-08-25T00:28:55.456Z" }, "tags": { - "key506": "ksuv" + "key204": "iqmduvjucumtaal" } } ], - "nextLink": "qhdjurlgwpxpxzirxuyxqtwlqlfkiq" + "nextLink": "ij" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json index d3215f473d84..0c24e49b7bdf 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_PlannedFailover.json @@ -2,10 +2,10 @@ "title": "Performs planned failover.", "operationId": "ProtectedItem_PlannedFailover", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "WSTc", - "protectedItemName": "2Y7U", + "vaultName": "4", + "protectedItemName": "d", "api-version": "2021-02-16-preview", "body": { "properties": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json index 31091aa76999..8a0e12a2c3a1 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json @@ -2,36 +2,36 @@ "title": "Gets the recovery point.", "operationId": "RecoveryPoints_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "ksiNF", - "protectedItemName": "H", - "recoveryPointName": "WS9P", + "vaultName": "4", + "protectedItemName": "d", + "recoveryPointName": "1X", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { "properties": { - "recoveryPointTime": "2023-08-02T22:38:42.395Z", + "recoveryPointTime": "2023-08-25T00:28:56.403Z", "recoveryPointType": "ApplicationConsistent", "customProperties": { "instanceType": "RecoveryPointModelCustomProperties" } }, - "id": "uwndxbvkcbdcmklpamlsvflqeytfxm", - "name": "ymc", - "type": "rxtsj", + "id": "yrnzjckvljjffam", + "name": "mfnjlwvvfnrsllcyyeslxxcchhvld", + "type": "zoeadplqxtonvqgwfqmeblh", "systemData": { - "createdBy": "dkuqaqlwjdfukpyd", - "createdByType": "bsknvjcdsmwgrovsuqvsbtbgkb", - "createdAt": "2023-08-02T22:38:42.395Z", - "lastModifiedBy": "hddqeefddwawcxewidiy", - "lastModifiedByType": "ys", - "lastModifiedAt": "2023-08-02T22:38:42.395Z" + "createdBy": "nykpygxolffv", + "createdByType": "agdgovroryjiwioytnnps", + "createdAt": "2023-08-25T00:28:56.403Z", + "lastModifiedBy": "tipxxgz", + "lastModifiedByType": "v", + "lastModifiedAt": "2023-08-25T00:28:56.404Z" }, "tags": { - "key5895": "ary" + "key6320": "g" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json index c1a8e04ee361..7990b36c408d 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json @@ -2,10 +2,10 @@ "title": "Lists the recovery points.", "operationId": "RecoveryPoints_List", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "j7P", - "protectedItemName": "gR", + "vaultName": "4", + "protectedItemName": "d", "api-version": "2021-02-16-preview" }, "responses": { @@ -14,29 +14,29 @@ "value": [ { "properties": { - "recoveryPointTime": "2023-08-02T22:38:42.395Z", + "recoveryPointTime": "2023-08-25T00:28:56.403Z", "recoveryPointType": "ApplicationConsistent", "customProperties": { "instanceType": "RecoveryPointModelCustomProperties" } }, - "id": "uwndxbvkcbdcmklpamlsvflqeytfxm", - "name": "ymc", - "type": "rxtsj", + "id": "yrnzjckvljjffam", + "name": "mfnjlwvvfnrsllcyyeslxxcchhvld", + "type": "zoeadplqxtonvqgwfqmeblh", "systemData": { - "createdBy": "dkuqaqlwjdfukpyd", - "createdByType": "bsknvjcdsmwgrovsuqvsbtbgkb", - "createdAt": "2023-08-02T22:38:42.395Z", - "lastModifiedBy": "hddqeefddwawcxewidiy", - "lastModifiedByType": "ys", - "lastModifiedAt": "2023-08-02T22:38:42.395Z" + "createdBy": "nykpygxolffv", + "createdByType": "agdgovroryjiwioytnnps", + "createdAt": "2023-08-25T00:28:56.403Z", + "lastModifiedBy": "tipxxgz", + "lastModifiedByType": "v", + "lastModifiedAt": "2023-08-25T00:28:56.404Z" }, "tags": { - "key5895": "ary" + "key6320": "g" } } ], - "nextLink": "soecwvmsezmzilocjthrztz" + "nextLink": "aukmvgug" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json index aa4a3144f48e..da821d8d8689 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtensionOperationStatus_Get.json @@ -2,21 +2,21 @@ "title": "Gets the replication extension operation status.", "operationId": "ReplicationExtensionOperationStatus_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "1iqo7", - "replicationExtensionName": "w4", - "operationId": "laq", + "vaultName": "4", + "replicationExtensionName": "g16yjJ", + "operationId": "wqdqc", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "qyvq", - "name": "etlwwkikigezxhr", - "status": "qilxkagrud", - "startTime": "blauxaexlidnzohzumt", - "endTime": "fiqojtkadhzrjonytznioepo" + "id": "sf", + "name": "wzdasptnwlxgobklayoqapjcgcf", + "status": "plbnngzfppdram", + "startTime": "xuzwmfrhluafmwwsmzqxsytyehsh", + "endTime": "nauyrfh" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json index 6d0fac8faa75..3bb6f257a4a3 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json @@ -2,10 +2,10 @@ "title": "Puts the replication extension.", "operationId": "ReplicationExtension_Create", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "J7V4PL", - "replicationExtensionName": "x", + "vaultName": "4", + "replicationExtensionName": "g16yjJ", "api-version": "2021-02-16-preview", "body": { "properties": { @@ -14,7 +14,7 @@ } }, "tags": { - "key9390": "stxdfawjgowxwuhxffjci" + "key7965": "cjelytukhvjnfyjzin" } } }, @@ -27,19 +27,19 @@ "instanceType": "ReplicationExtensionModelCustomProperties" } }, - "id": "szcbqcnl", - "name": "uuwtylzwr", - "type": "gsnuwrzdhywgzvmkhdmwmqtw", + "id": "awu", + "name": "xvjffbiecsd", + "type": "miadbgilpheilzfoonveznybthgdwh", "systemData": { - "createdBy": "esaomplibtkkbtjhpw", - "createdByType": "iiykhxkmijit", - "createdAt": "2023-08-02T22:38:42.704Z", - "lastModifiedBy": "vuvnrdks", - "lastModifiedByType": "uuektjzeunwbatsksnaoplhzru", - "lastModifiedAt": "2023-08-02T22:38:42.705Z" + "createdBy": "lagtinqhksctfdxmfbpf", + "createdByType": "dsqllpglanwztdmisrknjtqz", + "createdAt": "2023-08-25T00:28:56.732Z", + "lastModifiedBy": "suwjpejlaya", + "lastModifiedByType": "nrfjuyghtbivwihr", + "lastModifiedAt": "2023-08-25T00:28:56.732Z" }, "tags": { - "key9390": "stxdfawjgowxwuhxffjci" + "key7965": "cjelytukhvjnfyjzin" } } }, @@ -54,19 +54,19 @@ "instanceType": "ReplicationExtensionModelCustomProperties" } }, - "id": "szcbqcnl", - "name": "uuwtylzwr", - "type": "gsnuwrzdhywgzvmkhdmwmqtw", + "id": "awu", + "name": "xvjffbiecsd", + "type": "miadbgilpheilzfoonveznybthgdwh", "systemData": { - "createdBy": "esaomplibtkkbtjhpw", - "createdByType": "iiykhxkmijit", - "createdAt": "2023-08-02T22:38:42.704Z", - "lastModifiedBy": "vuvnrdks", - "lastModifiedByType": "uuektjzeunwbatsksnaoplhzru", - "lastModifiedAt": "2023-08-02T22:38:42.705Z" + "createdBy": "lagtinqhksctfdxmfbpf", + "createdByType": "dsqllpglanwztdmisrknjtqz", + "createdAt": "2023-08-25T00:28:56.732Z", + "lastModifiedBy": "suwjpejlaya", + "lastModifiedByType": "nrfjuyghtbivwihr", + "lastModifiedAt": "2023-08-25T00:28:56.732Z" }, "tags": { - "key9390": "stxdfawjgowxwuhxffjci" + "key7965": "cjelytukhvjnfyjzin" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json index 8b7069a7e029..210512dc29a9 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Delete.json @@ -2,10 +2,10 @@ "title": "Deletes the replication extension.", "operationId": "ReplicationExtension_Delete", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "R4lR05", - "replicationExtensionName": "WMOG2", + "vaultName": "4", + "replicationExtensionName": "g16yjJ", "api-version": "2021-02-16-preview" }, "responses": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json index 7e114c14a954..230eeae746dd 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json @@ -2,10 +2,10 @@ "title": "Gets the replication extension.", "operationId": "ReplicationExtension_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "KR", - "replicationExtensionName": "D", + "vaultName": "4", + "replicationExtensionName": "g16yjJ", "api-version": "2021-02-16-preview" }, "responses": { @@ -17,19 +17,19 @@ "instanceType": "ReplicationExtensionModelCustomProperties" } }, - "id": "szcbqcnl", - "name": "uuwtylzwr", - "type": "gsnuwrzdhywgzvmkhdmwmqtw", + "id": "awu", + "name": "xvjffbiecsd", + "type": "miadbgilpheilzfoonveznybthgdwh", "systemData": { - "createdBy": "esaomplibtkkbtjhpw", - "createdByType": "iiykhxkmijit", - "createdAt": "2023-08-02T22:38:42.704Z", - "lastModifiedBy": "vuvnrdks", - "lastModifiedByType": "uuektjzeunwbatsksnaoplhzru", - "lastModifiedAt": "2023-08-02T22:38:42.705Z" + "createdBy": "lagtinqhksctfdxmfbpf", + "createdByType": "dsqllpglanwztdmisrknjtqz", + "createdAt": "2023-08-25T00:28:56.732Z", + "lastModifiedBy": "suwjpejlaya", + "lastModifiedByType": "nrfjuyghtbivwihr", + "lastModifiedAt": "2023-08-25T00:28:56.732Z" }, "tags": { - "key9390": "stxdfawjgowxwuhxffjci" + "key7965": "cjelytukhvjnfyjzin" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json index b1758d36b64d..f4ab07917b22 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json @@ -2,9 +2,9 @@ "title": "Lists the replication extensions.", "operationId": "ReplicationExtension_List", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "0wO55W", + "vaultName": "4", "api-version": "2021-02-16-preview" }, "responses": { @@ -18,23 +18,23 @@ "instanceType": "ReplicationExtensionModelCustomProperties" } }, - "id": "szcbqcnl", - "name": "uuwtylzwr", - "type": "gsnuwrzdhywgzvmkhdmwmqtw", + "id": "awu", + "name": "xvjffbiecsd", + "type": "miadbgilpheilzfoonveznybthgdwh", "systemData": { - "createdBy": "esaomplibtkkbtjhpw", - "createdByType": "iiykhxkmijit", - "createdAt": "2023-08-02T22:38:42.704Z", - "lastModifiedBy": "vuvnrdks", - "lastModifiedByType": "uuektjzeunwbatsksnaoplhzru", - "lastModifiedAt": "2023-08-02T22:38:42.705Z" + "createdBy": "lagtinqhksctfdxmfbpf", + "createdByType": "dsqllpglanwztdmisrknjtqz", + "createdAt": "2023-08-25T00:28:56.732Z", + "lastModifiedBy": "suwjpejlaya", + "lastModifiedByType": "nrfjuyghtbivwihr", + "lastModifiedAt": "2023-08-25T00:28:56.732Z" }, "tags": { - "key9390": "stxdfawjgowxwuhxffjci" + "key7965": "cjelytukhvjnfyjzin" } } ], - "nextLink": "ihczqreb" + "nextLink": "gcrxhxitgnzdzgoufgxouab" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json index c2849601e921..7b61955d9059 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/VaultOperationStatus_Get.json @@ -2,20 +2,20 @@ "title": "Gets the vault operation status.", "operationId": "VaultOperationStatus_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "5Lx", - "operationId": "laq", + "vaultName": "4", + "operationId": "vsdvwe", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "qyvq", - "name": "etlwwkikigezxhr", - "status": "qilxkagrud", - "startTime": "blauxaexlidnzohzumt", - "endTime": "fiqojtkadhzrjonytznioepo" + "id": "sf", + "name": "wzdasptnwlxgobklayoqapjcgcf", + "status": "plbnngzfppdram", + "startTime": "xuzwmfrhluafmwwsmzqxsytyehsh", + "endTime": "nauyrfh" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json index ea808430f2c3..fe087cb3353a 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Create.json @@ -2,42 +2,42 @@ "title": "Puts the vault.", "operationId": "Vault_Create", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "X", + "vaultName": "4", "api-version": "2021-02-16-preview", "body": { - "location": "djlbaafksfkekjmkzmozwcrfszg", + "location": "eck", "properties": { "vaultType": "DisasterRecovery" }, "tags": { - "key9501": "lebrdtqhchahzhcvv" + "key5359": "ljfilxolxzuxrauopwtyxghrp" } } }, "responses": { "200": { "body": { - "location": "djlbaafksfkekjmkzmozwcrfszg", + "location": "eck", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "j", + "serviceResourceId": "mksumcmksgdsghojszxq", "vaultType": "DisasterRecovery" }, - "id": "kfvgrqssuleofijfafmagzjvq", - "name": "pkudpdjwr", - "type": "ppkskgaqzebey", + "id": "hbccseewgiagaxsjozxgwydjgy", + "name": "bqgyqxmnlgwqxbmajddqwtao", + "type": "xtcicpcmjvocohaznrk", "systemData": { - "createdBy": "dkxnvugbdthzslyqxgqu", - "createdByType": "wsmjfduhnsdajdpfikbjm", - "createdAt": "2023-08-02T22:38:44.004Z", - "lastModifiedBy": "umixkaudrur", - "lastModifiedByType": "cmaetzxzfbxsskqpblaafj", - "lastModifiedAt": "2023-08-02T22:38:44.004Z" + "createdBy": "rm", + "createdByType": "uojlfokjrhzgqoodsvgz", + "createdAt": "2023-08-25T00:28:58.092Z", + "lastModifiedBy": "gkojzu", + "lastModifiedByType": "jua", + "lastModifiedAt": "2023-08-25T00:28:58.092Z" }, "tags": { - "key9501": "lebrdtqhchahzhcvv" + "key5359": "ljfilxolxzuxrauopwtyxghrp" } } }, @@ -46,25 +46,25 @@ "location": "https://contoso.com/operationstatus" }, "body": { - "location": "djlbaafksfkekjmkzmozwcrfszg", + "location": "eck", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "j", + "serviceResourceId": "mksumcmksgdsghojszxq", "vaultType": "DisasterRecovery" }, - "id": "kfvgrqssuleofijfafmagzjvq", - "name": "pkudpdjwr", - "type": "ppkskgaqzebey", + "id": "hbccseewgiagaxsjozxgwydjgy", + "name": "bqgyqxmnlgwqxbmajddqwtao", + "type": "xtcicpcmjvocohaznrk", "systemData": { - "createdBy": "dkxnvugbdthzslyqxgqu", - "createdByType": "wsmjfduhnsdajdpfikbjm", - "createdAt": "2023-08-02T22:38:44.004Z", - "lastModifiedBy": "umixkaudrur", - "lastModifiedByType": "cmaetzxzfbxsskqpblaafj", - "lastModifiedAt": "2023-08-02T22:38:44.004Z" + "createdBy": "rm", + "createdByType": "uojlfokjrhzgqoodsvgz", + "createdAt": "2023-08-25T00:28:58.092Z", + "lastModifiedBy": "gkojzu", + "lastModifiedByType": "jua", + "lastModifiedAt": "2023-08-25T00:28:58.092Z" }, "tags": { - "key9501": "lebrdtqhchahzhcvv" + "key5359": "ljfilxolxzuxrauopwtyxghrp" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json index b31450731616..2b5645a6d695 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Delete.json @@ -2,9 +2,9 @@ "title": "Deletes the vault.", "operationId": "Vault_Delete", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "iHY", + "vaultName": "4", "api-version": "2021-02-16-preview" }, "responses": { diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json index 6bc03d7889d6..1e51875cd118 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Get.json @@ -2,33 +2,33 @@ "title": "Gets the vault.", "operationId": "Vault_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "fawfqwe", + "vaultName": "4", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "location": "djlbaafksfkekjmkzmozwcrfszg", + "location": "eck", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "j", + "serviceResourceId": "mksumcmksgdsghojszxq", "vaultType": "DisasterRecovery" }, - "id": "kfvgrqssuleofijfafmagzjvq", - "name": "pkudpdjwr", - "type": "ppkskgaqzebey", + "id": "hbccseewgiagaxsjozxgwydjgy", + "name": "bqgyqxmnlgwqxbmajddqwtao", + "type": "xtcicpcmjvocohaznrk", "systemData": { - "createdBy": "dkxnvugbdthzslyqxgqu", - "createdByType": "wsmjfduhnsdajdpfikbjm", - "createdAt": "2023-08-02T22:38:44.004Z", - "lastModifiedBy": "umixkaudrur", - "lastModifiedByType": "cmaetzxzfbxsskqpblaafj", - "lastModifiedAt": "2023-08-02T22:38:44.004Z" + "createdBy": "rm", + "createdByType": "uojlfokjrhzgqoodsvgz", + "createdAt": "2023-08-25T00:28:58.092Z", + "lastModifiedBy": "gkojzu", + "lastModifiedByType": "jua", + "lastModifiedAt": "2023-08-25T00:28:58.092Z" }, "tags": { - "key9501": "lebrdtqhchahzhcvv" + "key5359": "ljfilxolxzuxrauopwtyxghrp" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json index 3fc19eb5646b..05fd5e88adc4 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_List.json @@ -2,9 +2,9 @@ "title": "Lists the vaults.", "operationId": "Vault_List", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "continuationToken": "sfoxdqyvsjfou", + "continuationToken": "mwculdaqndp", "api-version": "2021-02-16-preview" }, "responses": { @@ -12,29 +12,29 @@ "body": { "value": [ { - "location": "djlbaafksfkekjmkzmozwcrfszg", + "location": "eck", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "j", + "serviceResourceId": "mksumcmksgdsghojszxq", "vaultType": "DisasterRecovery" }, - "id": "kfvgrqssuleofijfafmagzjvq", - "name": "pkudpdjwr", - "type": "ppkskgaqzebey", + "id": "hbccseewgiagaxsjozxgwydjgy", + "name": "bqgyqxmnlgwqxbmajddqwtao", + "type": "xtcicpcmjvocohaznrk", "systemData": { - "createdBy": "dkxnvugbdthzslyqxgqu", - "createdByType": "wsmjfduhnsdajdpfikbjm", - "createdAt": "2023-08-02T22:38:44.004Z", - "lastModifiedBy": "umixkaudrur", - "lastModifiedByType": "cmaetzxzfbxsskqpblaafj", - "lastModifiedAt": "2023-08-02T22:38:44.004Z" + "createdBy": "rm", + "createdByType": "uojlfokjrhzgqoodsvgz", + "createdAt": "2023-08-25T00:28:58.092Z", + "lastModifiedBy": "gkojzu", + "lastModifiedByType": "jua", + "lastModifiedAt": "2023-08-25T00:28:58.092Z" }, "tags": { - "key9501": "lebrdtqhchahzhcvv" + "key5359": "ljfilxolxzuxrauopwtyxghrp" } } ], - "nextLink": "spfwgmbdadmvimthvdjsfyezwuj" + "nextLink": "bfjqkwhu" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json index 864cf78ddc77..d21c62696952 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_ListBySubscription.json @@ -2,8 +2,8 @@ "title": "Lists the vaults.", "operationId": "Vault_ListBySubscription", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", - "continuationToken": "u", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", + "continuationToken": "dqsjhseyugyexxrlrln", "api-version": "2021-02-16-preview" }, "responses": { @@ -11,29 +11,29 @@ "body": { "value": [ { - "location": "djlbaafksfkekjmkzmozwcrfszg", + "location": "eck", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "j", + "serviceResourceId": "mksumcmksgdsghojszxq", "vaultType": "DisasterRecovery" }, - "id": "kfvgrqssuleofijfafmagzjvq", - "name": "pkudpdjwr", - "type": "ppkskgaqzebey", + "id": "hbccseewgiagaxsjozxgwydjgy", + "name": "bqgyqxmnlgwqxbmajddqwtao", + "type": "xtcicpcmjvocohaznrk", "systemData": { - "createdBy": "dkxnvugbdthzslyqxgqu", - "createdByType": "wsmjfduhnsdajdpfikbjm", - "createdAt": "2023-08-02T22:38:44.004Z", - "lastModifiedBy": "umixkaudrur", - "lastModifiedByType": "cmaetzxzfbxsskqpblaafj", - "lastModifiedAt": "2023-08-02T22:38:44.004Z" + "createdBy": "rm", + "createdByType": "uojlfokjrhzgqoodsvgz", + "createdAt": "2023-08-25T00:28:58.092Z", + "lastModifiedBy": "gkojzu", + "lastModifiedByType": "jua", + "lastModifiedAt": "2023-08-25T00:28:58.092Z" }, "tags": { - "key9501": "lebrdtqhchahzhcvv" + "key5359": "ljfilxolxzuxrauopwtyxghrp" } } ], - "nextLink": "spfwgmbdadmvimthvdjsfyezwuj" + "nextLink": "bfjqkwhu" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json index ede3756d7be2..847fbcd37d05 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Vault_Update.json @@ -2,41 +2,41 @@ "title": "Updates the vault.", "operationId": "Vault_Update", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "AI", + "vaultName": "4", "api-version": "2021-02-16-preview", "body": { "properties": { "vaultType": "DisasterRecovery" }, "tags": { - "key5654": "zeevnibcrp" + "key8872": "pvtc" } } }, "responses": { "200": { "body": { - "location": "djlbaafksfkekjmkzmozwcrfszg", + "location": "eck", "properties": { "provisioningState": "Canceled", - "serviceResourceId": "j", + "serviceResourceId": "mksumcmksgdsghojszxq", "vaultType": "DisasterRecovery" }, - "id": "kfvgrqssuleofijfafmagzjvq", - "name": "pkudpdjwr", - "type": "ppkskgaqzebey", + "id": "hbccseewgiagaxsjozxgwydjgy", + "name": "bqgyqxmnlgwqxbmajddqwtao", + "type": "xtcicpcmjvocohaznrk", "systemData": { - "createdBy": "dkxnvugbdthzslyqxgqu", - "createdByType": "wsmjfduhnsdajdpfikbjm", - "createdAt": "2023-08-02T22:38:44.004Z", - "lastModifiedBy": "umixkaudrur", - "lastModifiedByType": "cmaetzxzfbxsskqpblaafj", - "lastModifiedAt": "2023-08-02T22:38:44.004Z" + "createdBy": "rm", + "createdByType": "uojlfokjrhzgqoodsvgz", + "createdAt": "2023-08-25T00:28:58.092Z", + "lastModifiedBy": "gkojzu", + "lastModifiedByType": "jua", + "lastModifiedAt": "2023-08-25T00:28:58.092Z" }, "tags": { - "key9501": "lebrdtqhchahzhcvv" + "key5359": "ljfilxolxzuxrauopwtyxghrp" } } }, diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json index f1a4b9024585..1cae93931d19 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/WorkflowOperationStatus_Get.json @@ -1,22 +1,22 @@ { - "title": "Gets the workflow operation status.", + "title": "Gets the job (workflow) operation status.", "operationId": "WorkflowOperationStatus_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "I9pM", - "workflowName": "E", - "operationId": "laq", + "vaultName": "4", + "jobName": "ZGH4y", + "operationId": "wdqcxc", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { - "id": "qyvq", - "name": "etlwwkikigezxhr", - "status": "qilxkagrud", - "startTime": "blauxaexlidnzohzumt", - "endTime": "fiqojtkadhzrjonytznioepo" + "id": "sf", + "name": "wzdasptnwlxgobklayoqapjcgcf", + "status": "plbnngzfppdram", + "startTime": "xuzwmfrhluafmwwsmzqxsytyehsh", + "endTime": "nauyrfh" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json index ee82fe31e1ec..a0945ccf2064 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json @@ -1,76 +1,76 @@ { - "title": "Gets the workflow.", + "title": "Gets the job (workflow).", "operationId": "Workflow_Get", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "Dn", - "workflowName": "NX", + "vaultName": "4", + "jobName": "ZGH4y", "api-version": "2021-02-16-preview" }, "responses": { "200": { "body": { "properties": { - "displayName": "kambseidlajvwcdaldfzr", + "displayName": "dhopzytkd", "state": "Pending", - "startTime": "2023-08-02T22:38:45.135Z", - "endTime": "2023-08-02T22:38:45.135Z", - "objectId": "flkbzthppkuesnjnnvowl", - "objectName": "ydnlvsnyicpvockadteqmsg", - "objectInternalId": "tgjzjeotrf", - "objectInternalName": "hyreabdbzaeenygkknxzmfs", + "startTime": "2023-08-25T00:28:59.269Z", + "endTime": "2023-08-25T00:28:59.269Z", + "objectId": "wvtmwiyxqrpqvljzn", + "objectName": "ieieqaw", + "objectInternalId": "ahbtlwmbeivmlbj", + "objectInternalName": "mxikyrinkeyj", "objectType": "AvsDiskPool", - "replicationProviderId": "novwcoizgpgmaa", - "sourceFabricProviderId": "nei", - "targetFabricProviderId": "jraqvcadxfmivvhnvbomzrxldco", + "replicationProviderId": "ghxsbnvdkx", + "sourceFabricProviderId": "yqlertkmzdsgsplzgkmwcttsiagsa", + "targetFabricProviderId": "stjlmqzpgnrug", "allowedActions": [ - "zewakbufnlylifaaobhjjxtfwpoeqn" + "mfsyvxzgmcpgdzfbbhoxrzhya" ], - "activityId": "wucdoxnzffdwsozprzktkjizyqrkns", + "activityId": "esjvxsa", "tasks": [ { - "taskName": "sygpksfmdhyncwowssknqwhjjxub", + "taskName": "flkzfbbpngqbbjsdqysqfon", "state": "Pending", - "startTime": "2023-08-02T22:38:45.135Z", - "endTime": "2023-08-02T22:38:45.135Z", + "startTime": "2023-08-25T00:28:59.269Z", + "endTime": "2023-08-25T00:28:59.269Z", "customProperties": { - "instanceType": "bhyoyfq" + "instanceType": "aaqgqvnhskxpsbnrdekxaghweon" }, "childrenWorkflows": [] } ], "errors": [ { - "code": "muqkfbsyeuqszcuhmqmys", - "type": "qoicsqpdtdohfgru", - "severity": "qrptjrcjscqrwamhq", - "creationTime": "2023-08-02T22:38:45.135Z", - "message": "cnyuqbml", - "causes": "gif", - "recommendation": "hjmkfejqstqyavccprhnktbzwn" + "code": "ndcxzieiuwoxoklilcvjmglml", + "type": "iyktxohrtrkshbjdhboscsu", + "severity": "ldgmfmbzmjtqjg", + "creationTime": "2023-08-25T00:28:59.269Z", + "message": "ltuufmxomfecqeyvzrfjqlelytkdwr", + "causes": "iffxig", + "recommendation": "brridkskflo" } ], "customProperties": { "instanceType": "WorkflowModelCustomProperties", "affectedObjectDetails": { - "key1346": "naqlkgoniettwajucne" + "key7245": "yllr" } } }, - "id": "etefsobdlziegmrbxbaepazxiv", - "name": "lwjmflmykbwimd", - "type": "rwfvikrdrhkeeybh", + "id": "zsyhbwznbkaia", + "name": "ukii", + "type": "cswros", "systemData": { - "createdBy": "ugucktvcpnguz", - "createdByType": "kiosithzkl", - "createdAt": "2023-08-02T22:38:45.135Z", - "lastModifiedBy": "erqkwgkhjkz", - "lastModifiedByType": "iwrrr", - "lastModifiedAt": "2023-08-02T22:38:45.135Z" + "createdBy": "jurgsdagntjg", + "createdByType": "zowfl", + "createdAt": "2023-08-25T00:28:59.270Z", + "lastModifiedBy": "vuw", + "lastModifiedByType": "h", + "lastModifiedAt": "2023-08-25T00:28:59.270Z" }, "tags": { - "key7706": "dhsmuirnxnijxikddttrdhyik" + "key5397": "bmhqdffcfdmepnsebsyonecmoe" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json index 5a72c1774090..c1f1c24f5c8f 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json @@ -1,12 +1,12 @@ { - "title": "Lists the workflows.", + "title": "Lists the jobs (workflows).", "operationId": "Workflow_List", "parameters": { - "subscriptionId": "B745CADE-7A6B-4551-92A9-DF291AFB6FAE", + "subscriptionId": "930CEC23-4430-4513-B855-DBA237E2F3BF", "resourceGroupName": "rgrecoveryservicesdatareplication", - "vaultName": "7R5M1", - "$filter": "pkfnqjgr", - "continuationToken": "kdchwymzlhpqfudyvm", + "vaultName": "4", + "$filter": "mnebpgmjcitjleipnttx", + "continuationToken": "rdavrzbethhslmkqgajontnxsue", "api-version": "2021-02-16-preview" }, "responses": { @@ -15,69 +15,69 @@ "value": [ { "properties": { - "displayName": "kambseidlajvwcdaldfzr", + "displayName": "dhopzytkd", "state": "Pending", - "startTime": "2023-08-02T22:38:45.135Z", - "endTime": "2023-08-02T22:38:45.135Z", - "objectId": "flkbzthppkuesnjnnvowl", - "objectName": "ydnlvsnyicpvockadteqmsg", - "objectInternalId": "tgjzjeotrf", - "objectInternalName": "hyreabdbzaeenygkknxzmfs", + "startTime": "2023-08-25T00:28:59.269Z", + "endTime": "2023-08-25T00:28:59.269Z", + "objectId": "wvtmwiyxqrpqvljzn", + "objectName": "ieieqaw", + "objectInternalId": "ahbtlwmbeivmlbj", + "objectInternalName": "mxikyrinkeyj", "objectType": "AvsDiskPool", - "replicationProviderId": "novwcoizgpgmaa", - "sourceFabricProviderId": "nei", - "targetFabricProviderId": "jraqvcadxfmivvhnvbomzrxldco", + "replicationProviderId": "ghxsbnvdkx", + "sourceFabricProviderId": "yqlertkmzdsgsplzgkmwcttsiagsa", + "targetFabricProviderId": "stjlmqzpgnrug", "allowedActions": [ - "zewakbufnlylifaaobhjjxtfwpoeqn" + "mfsyvxzgmcpgdzfbbhoxrzhya" ], - "activityId": "wucdoxnzffdwsozprzktkjizyqrkns", + "activityId": "esjvxsa", "tasks": [ { - "taskName": "sygpksfmdhyncwowssknqwhjjxub", + "taskName": "flkzfbbpngqbbjsdqysqfon", "state": "Pending", - "startTime": "2023-08-02T22:38:45.135Z", - "endTime": "2023-08-02T22:38:45.135Z", + "startTime": "2023-08-25T00:28:59.269Z", + "endTime": "2023-08-25T00:28:59.269Z", "customProperties": { - "instanceType": "bhyoyfq" + "instanceType": "aaqgqvnhskxpsbnrdekxaghweon" }, "childrenWorkflows": [] } ], "errors": [ { - "code": "muqkfbsyeuqszcuhmqmys", - "type": "qoicsqpdtdohfgru", - "severity": "qrptjrcjscqrwamhq", - "creationTime": "2023-08-02T22:38:45.135Z", - "message": "cnyuqbml", - "causes": "gif", - "recommendation": "hjmkfejqstqyavccprhnktbzwn" + "code": "ndcxzieiuwoxoklilcvjmglml", + "type": "iyktxohrtrkshbjdhboscsu", + "severity": "ldgmfmbzmjtqjg", + "creationTime": "2023-08-25T00:28:59.269Z", + "message": "ltuufmxomfecqeyvzrfjqlelytkdwr", + "causes": "iffxig", + "recommendation": "brridkskflo" } ], "customProperties": { "instanceType": "WorkflowModelCustomProperties", "affectedObjectDetails": { - "key1346": "naqlkgoniettwajucne" + "key7245": "yllr" } } }, - "id": "etefsobdlziegmrbxbaepazxiv", - "name": "lwjmflmykbwimd", - "type": "rwfvikrdrhkeeybh", + "id": "zsyhbwznbkaia", + "name": "ukii", + "type": "cswros", "systemData": { - "createdBy": "ugucktvcpnguz", - "createdByType": "kiosithzkl", - "createdAt": "2023-08-02T22:38:45.135Z", - "lastModifiedBy": "erqkwgkhjkz", - "lastModifiedByType": "iwrrr", - "lastModifiedAt": "2023-08-02T22:38:45.135Z" + "createdBy": "jurgsdagntjg", + "createdByType": "zowfl", + "createdAt": "2023-08-25T00:28:59.270Z", + "lastModifiedBy": "vuw", + "lastModifiedByType": "h", + "lastModifiedAt": "2023-08-25T00:28:59.270Z" }, "tags": { - "key7706": "dhsmuirnxnijxikddttrdhyik" + "key5397": "bmhqdffcfdmepnsebsyonecmoe" } } ], - "nextLink": "lzzavjshbbatwxblbbgqewre" + "nextLink": "yyefqrturowfkjbbhzkcdyw" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json index f4dbcc60bab0..74829ad8d931 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json @@ -10,12 +10,12 @@ "https" ], "paths": { - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationFabrics/{fabricName}/fabricAgents/{draName}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationFabrics/{fabricName}/fabricAgents/{fabricAgentName}": { "get": { "tags": [ "Dra" ], - "summary": "Gets the Dra.", + "summary": "Gets the fabric agent (Dra).", "description": "Gets the details of the fabric agent.", "operationId": "Dra_Get", "produces": [ @@ -29,20 +29,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "fabricName", - "description": "Fabric name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/FabricNameParameter" }, { - "in": "path", - "name": "draName", - "description": "Dra name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/FabricAgentNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -72,7 +62,7 @@ "tags": [ "Dra" ], - "summary": "Puts the Dra.", + "summary": "Puts the fabric agent (Dra).", "description": "Creates the fabric agent.", "operationId": "Dra_Create", "consumes": [ @@ -89,20 +79,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "fabricName", - "description": "Fabric name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/FabricNameParameter" }, { - "in": "path", - "name": "draName", - "description": "Dra name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/FabricAgentNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -150,7 +130,7 @@ "tags": [ "Dra" ], - "summary": "Deletes the Dra.", + "summary": "Deletes the fabric agent (Dra).", "description": "Deletes the fabric agent.", "operationId": "Dra_Delete", "produces": [ @@ -164,20 +144,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "fabricName", - "description": "Fabric Name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/FabricNameParameter" }, { - "in": "path", - "name": "draName", - "description": "Dra Name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/FabricAgentNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -222,7 +192,7 @@ "tags": [ "Dra" ], - "summary": "Lists the Dras.", + "summary": "Lists the fabric agents (Dras).", "description": "Gets the list of fabric agents in the given fabric.", "operationId": "Dra_List", "produces": [ @@ -236,12 +206,7 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "fabricName", - "description": "Fabric name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/FabricNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -271,12 +236,12 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationFabrics/{fabricName}/fabricAgents/{draName}/operations/{operationId}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationFabrics/{fabricName}/fabricAgents/{fabricAgentName}/operations/{operationId}": { "get": { "tags": [ "Dra" ], - "summary": "Gets the Dra operation status.", + "summary": "Gets the fabric agent (Dra) operation status.", "description": "Tracks the results of an asynchronous operation on the fabric agent.", "operationId": "DraOperationStatus_Get", "produces": [ @@ -290,23 +255,13 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "fabricName", - "description": "Fabric name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/FabricNameParameter" }, { - "in": "path", - "name": "draName", - "description": "Dra name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/FabricAgentNameParameter" }, { - "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" + "$ref": "#/parameters/OperationIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -352,20 +307,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "emailConfigurationName", - "description": "Email configuration name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/EmailConfigurationNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -412,20 +357,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "emailConfigurationName", - "description": "Email configuration name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/EmailConfigurationNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -485,12 +420,7 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -539,20 +469,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "eventName", - "description": "Event name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/EventNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -598,12 +518,7 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { "in": "query", @@ -664,12 +579,7 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "fabricName", - "description": "Fabric name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/FabricNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -716,12 +626,7 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "fabricName", - "description": "Fabric Name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/FabricNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -786,12 +691,7 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "fabricName", - "description": "Fabric Name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/FabricNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -859,12 +759,7 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "fabricName", - "description": "Fabric Name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/FabricNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1024,15 +919,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "fabricName", - "description": "Fabric name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/FabricNameParameter" }, { - "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" + "$ref": "#/parameters/OperationIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1078,20 +968,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "policyName", - "description": "Policy name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/PolicyNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1138,20 +1018,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "policyName", - "description": "Policy name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/PolicyNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1213,20 +1083,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault Name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "policyName", - "description": "Policy Name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/PolicyNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1285,12 +1145,7 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1339,23 +1194,13 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "policyName", - "description": "Policy name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/PolicyNameParameter" }, { - "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" + "$ref": "#/parameters/OperationIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1401,20 +1246,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "protectedItemName", - "description": "Protected item name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/ProtectedItemNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1461,20 +1296,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "protectedItemName", - "description": "Protected item name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/ProtectedItemNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1536,20 +1361,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "protectedItemName", - "description": "Protected item name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/ProtectedItemNameParameter" }, { "in": "query", @@ -1614,12 +1429,7 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1671,20 +1481,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "protectedItemName", - "description": "Protected item name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/ProtectedItemNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1754,23 +1554,13 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "protectedItemName", - "description": "Protected Item name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/ProtectedItemNameParameter" }, { - "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" + "$ref": "#/parameters/OperationIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1816,28 +1606,13 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "protectedItemName", - "description": "Protected item name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/ProtectedItemNameParameter" }, { - "in": "path", - "name": "recoveryPointName", - "description": "Recovery point name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/RecoveryPointNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1883,20 +1658,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "protectedItemName", - "description": "Protected item name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/ProtectedItemNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1945,20 +1710,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "replicationExtensionName", - "description": "Replication extension name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/ReplicationExtensionNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -2005,20 +1760,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "replicationExtensionName", - "description": "Replication extension name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/ReplicationExtensionNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -2080,20 +1825,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault Name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "replicationExtensionName", - "description": "Replication extension name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/ReplicationExtensionNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -2152,12 +1887,7 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -2206,23 +1936,13 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "replicationExtensionName", - "description": "Replication extension name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/ReplicationExtensionNameParameter" }, { - "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" + "$ref": "#/parameters/OperationIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -2422,12 +2142,7 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -2474,12 +2189,7 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault Name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -2544,12 +2254,7 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault Name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -2617,12 +2322,7 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault Name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -2782,15 +2482,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" + "$ref": "#/parameters/OperationIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -2817,12 +2512,12 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/jobs/{workflowName}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/jobs/{jobName}": { "get": { "tags": [ "Workflow" ], - "summary": "Gets the workflow.", + "summary": "Gets the job (workflow).", "description": "Gets the details of the job.", "operationId": "Workflow_Get", "produces": [ @@ -2836,20 +2531,10 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "workflowName", - "description": "Workflow name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/JobNameParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -2881,7 +2566,7 @@ "tags": [ "Workflow" ], - "summary": "Lists the workflows.", + "summary": "Lists the jobs (workflows).", "description": "Gets the list of jobs in the given vault.", "operationId": "Workflow_List", "produces": [ @@ -2895,12 +2580,7 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { "in": "query", @@ -2942,12 +2622,12 @@ } } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/jobs/{workflowName}/operations/{operationId}": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/jobs/{jobName}/operations/{operationId}": { "get": { "tags": [ "Workflow" ], - "summary": "Gets the workflow operation status.", + "summary": "Gets the job (workflow) operation status.", "description": "Tracks the results of an asynchronous operation on the job.", "operationId": "WorkflowOperationStatus_Get", "produces": [ @@ -2961,23 +2641,13 @@ "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { - "in": "path", - "name": "vaultName", - "description": "Vault name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/VaultNameParameter" }, { - "in": "path", - "name": "workflowName", - "description": "Workflow name.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "$ref": "#/parameters/JobNameParameter" }, { - "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" + "$ref": "#/parameters/OperationIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -3066,16 +2736,6 @@ } } }, - "AzStackHCIDraModelCustomProperties": { - "description": "AzStackHCI DRA model custom properties.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/DraModelCustomProperties" - } - ], - "x-ms-discriminator-value": "AzStackHCI" - }, "AzStackHCIFabricModelCustomProperties": { "description": "AzStackHCI fabric model custom properties.", "required": [ @@ -3272,20 +2932,8 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "enum": [ - "None", - "VMware", - "AVS", - "Azure", - "AzStackHCI", - "HyperVMigrate", - "VMwareMigrate" - ], - "type": "string", - "x-ms-enum": { - "name": "FabricType", - "modelAsString": true - } + "minLength": 1, + "type": "string" } }, "discriminator": "instanceType" @@ -3568,19 +3216,8 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "enum": [ - "None", - "VMwareToAvs", - "VMwareToAvsFailback", - "VMwareToAzureMigrate", - "HyperVToAzStackHCI", - "VMwareToAzStackHCI" - ], - "type": "string", - "x-ms-enum": { - "name": "ReplicationType", - "modelAsString": true - } + "minLength": 1, + "type": "string" } }, "discriminator": "instanceType" @@ -3728,20 +3365,8 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "enum": [ - "None", - "VMware", - "AVS", - "Azure", - "AzStackHCI", - "HyperVMigrate", - "VMwareMigrate" - ], - "type": "string", - "x-ms-enum": { - "name": "FabricType", - "modelAsString": true - } + "minLength": 1, + "type": "string" } }, "discriminator": "instanceType" @@ -3994,16 +3619,6 @@ } } }, - "HyperVMigrateDraModelCustomProperties": { - "description": "HyperVMigrate DRA model custom properties.", - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/DraModelCustomProperties" - } - ], - "x-ms-discriminator-value": "HyperVMigrate" - }, "HyperVMigrateFabricModelCustomProperties": { "description": "HyperV migrate fabric model custom properties.", "required": [ @@ -4982,19 +4597,8 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "enum": [ - "None", - "VMwareToAvs", - "VMwareToAvsFailback", - "VMwareToAzureMigrate", - "HyperVToAzStackHCI", - "VMwareToAzStackHCI" - ], - "type": "string", - "x-ms-enum": { - "name": "ReplicationType", - "modelAsString": true - } + "minLength": 1, + "type": "string" } }, "discriminator": "instanceType" @@ -5169,19 +4773,8 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "enum": [ - "None", - "VMwareToAvs", - "VMwareToAvsFailback", - "VMwareToAzureMigrate", - "HyperVToAzStackHCI", - "VMwareToAzStackHCI" - ], - "type": "string", - "x-ms-enum": { - "name": "ReplicationType", - "modelAsString": true - } + "minLength": 1, + "type": "string" } }, "discriminator": "instanceType" @@ -5537,19 +5130,8 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "enum": [ - "None", - "VMwareToAvs", - "VMwareToAvsFailback", - "VMwareToAzureMigrate", - "HyperVToAzStackHCI", - "VMwareToAzStackHCI" - ], - "type": "string", - "x-ms-enum": { - "name": "ReplicationType", - "modelAsString": true - } + "minLength": 1, + "type": "string" } }, "discriminator": "instanceType" @@ -5656,19 +5238,8 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "enum": [ - "None", - "VMwareToAvs", - "VMwareToAvsFailback", - "VMwareToAzureMigrate", - "HyperVToAzStackHCI", - "VMwareToAzStackHCI" - ], - "type": "string", - "x-ms-enum": { - "name": "ReplicationType", - "modelAsString": true - } + "minLength": 1, + "type": "string" } }, "discriminator": "instanceType" @@ -6777,17 +6348,8 @@ "properties": { "instanceType": { "description": "Gets or sets the instance type.", - "enum": [ - "WorkflowDetails", - "FailoverWorkflowDetails", - "TestFailoverWorkflowDetails", - "TestFailoverCleanupWorkflowDetails" - ], - "type": "string", - "x-ms-enum": { - "name": "WorkflowDetailsType", - "modelAsString": true - } + "minLength": 1, + "type": "string" }, "affectedObjectDetails": { "description": "Gets or sets any custom properties of the affected object.", @@ -6935,6 +6497,123 @@ } } }, + "parameters": { + "SubscriptionIdParameter": { + "in": "path", + "name": "subscriptionId", + "description": "The subscription Id.", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "ResourceGroupNameParameter": { + "in": "path", + "name": "resourceGroupName", + "description": "The resource group name.", + "required": true, + "type": "string", + "maxLength": 90, + "minLength": 1, + "x-ms-parameter-location": "method" + }, + "ApiVersionParameter": { + "in": "query", + "name": "api-version", + "description": "The client API version.", + "required": true, + "type": "string", + "minLength": 1, + "x-ms-parameter-location": "method" + }, + "FabricNameParameter": { + "in": "path", + "name": "fabricName", + "description": "The fabric name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + "FabricAgentNameParameter": { + "in": "path", + "name": "fabricAgentName", + "description": "The fabric agent (Dra) name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + "VaultNameParameter": { + "in": "path", + "name": "vaultName", + "description": "The vault name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + "PolicyNameParameter": { + "in": "path", + "name": "policyName", + "description": "The policy name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + "ProtectedItemNameParameter": { + "in": "path", + "name": "protectedItemName", + "description": "The protected item name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + "OperationIdParameter": { + "in": "path", + "name": "operationId", + "description": "The operation Id.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + "ReplicationExtensionNameParameter": { + "in": "path", + "name": "replicationExtensionName", + "description": "The replication extension name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + "JobNameParameter": { + "in": "path", + "name": "jobName", + "description": "The job (workflow) name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + "EmailConfigurationNameParameter": { + "in": "path", + "name": "emailConfigurationName", + "description": "The email configuration name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + "EventNameParameter": { + "in": "path", + "name": "eventName", + "description": "The event name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + }, + "RecoveryPointNameParameter": { + "in": "path", + "name": "recoveryPointName", + "description": "The recovery point name.", + "required": true, + "type": "string", + "pattern": "^[a-zA-Z0-9]*$" + } + }, "securityDefinitions": { "azure_auth": { "type": "oauth2", From a90b2eed76f82f21bad8b1043cc713a95a691e41 Mon Sep 17 00:00:00 2001 From: Sam Lee Date: Mon, 28 Aug 2023 20:13:17 -0700 Subject: [PATCH 7/9] Updated swagger --- .../recoveryservicesdatareplication.json | 93 +++++++------------ 1 file changed, 34 insertions(+), 59 deletions(-) diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json index 74829ad8d931..4ca587976d54 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json @@ -48,7 +48,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -222,7 +222,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -277,7 +277,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -326,7 +326,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -390,7 +390,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -436,7 +436,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -488,7 +488,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -546,7 +546,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -595,7 +595,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -834,7 +834,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -886,7 +886,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -938,7 +938,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -987,7 +987,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1161,7 +1161,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1216,7 +1216,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1265,7 +1265,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1445,7 +1445,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1576,7 +1576,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1628,7 +1628,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1677,7 +1677,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1729,7 +1729,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1903,7 +1903,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1958,7 +1958,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2012,7 +2012,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2049,7 +2049,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2112,7 +2112,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2158,7 +2158,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2397,7 +2397,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2449,7 +2449,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2501,7 +2501,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2550,7 +2550,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2608,7 +2608,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2663,7 +2663,7 @@ "default": { "description": "Error", "schema": { - "$ref": "#/definitions/ArmError" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2676,31 +2676,6 @@ } }, "definitions": { - "ArmError": { - "description": "ARM error resembling ErrorResponse.", - "type": "object", - "properties": { - "error": { - "$ref": "#/definitions/ArmErrorInfo" - } - } - }, - "ArmErrorInfo": { - "description": "Arm error info resembling ErrorDetail.", - "type": "object", - "properties": { - "code": { - "description": "Gets the error code.", - "type": "string", - "readOnly": true - }, - "message": { - "description": "Gets the error message.", - "type": "string", - "readOnly": true - } - } - }, "AzStackHCIClusterProperties": { "description": "AzStackHCI cluster properties.", "required": [ @@ -6635,7 +6610,7 @@ "tags": [ { "name": "Dra", - "description": "Dra Controller." + "description": "Data replication agent (Dra) Controller." }, { "name": "EmailConfiguration", From 943bae5110c08a10b8f94936659827889f5035bd Mon Sep 17 00:00:00 2001 From: Sam Lee Date: Tue, 29 Aug 2023 00:56:38 -0700 Subject: [PATCH 8/9] Updated and corrected swagger --- .../recoveryservicesdatareplication.json | 79 +++++++------------ 1 file changed, 27 insertions(+), 52 deletions(-) diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json index 4ca587976d54..896aebf132e7 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json @@ -261,7 +261,7 @@ "$ref": "#/parameters/FabricAgentNameParameter" }, { - "$ref": "#/parameters/OperationIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -922,7 +922,7 @@ "$ref": "#/parameters/FabricNameParameter" }, { - "$ref": "#/parameters/OperationIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1200,7 +1200,7 @@ "$ref": "#/parameters/PolicyNameParameter" }, { - "$ref": "#/parameters/OperationIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1560,7 +1560,7 @@ "$ref": "#/parameters/ProtectedItemNameParameter" }, { - "$ref": "#/parameters/OperationIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -1942,7 +1942,7 @@ "$ref": "#/parameters/ReplicationExtensionNameParameter" }, { - "$ref": "#/parameters/OperationIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -2485,7 +2485,7 @@ "$ref": "#/parameters/VaultNameParameter" }, { - "$ref": "#/parameters/OperationIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -2647,7 +2647,7 @@ "$ref": "#/parameters/JobNameParameter" }, { - "$ref": "#/parameters/OperationIdParameter" + "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/OperationIdParameter" }, { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -6473,40 +6473,14 @@ } }, "parameters": { - "SubscriptionIdParameter": { - "in": "path", - "name": "subscriptionId", - "description": "The subscription Id.", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - }, - "ResourceGroupNameParameter": { - "in": "path", - "name": "resourceGroupName", - "description": "The resource group name.", - "required": true, - "type": "string", - "maxLength": 90, - "minLength": 1, - "x-ms-parameter-location": "method" - }, - "ApiVersionParameter": { - "in": "query", - "name": "api-version", - "description": "The client API version.", - "required": true, - "type": "string", - "minLength": 1, - "x-ms-parameter-location": "method" - }, "FabricNameParameter": { "in": "path", "name": "fabricName", "description": "The fabric name.", "required": true, "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "pattern": "^[a-zA-Z0-9]*$", + "x-ms-parameter-location": "method" }, "FabricAgentNameParameter": { "in": "path", @@ -6514,7 +6488,8 @@ "description": "The fabric agent (Dra) name.", "required": true, "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "pattern": "^[a-zA-Z0-9]*$", + "x-ms-parameter-location": "method" }, "VaultNameParameter": { "in": "path", @@ -6522,7 +6497,8 @@ "description": "The vault name.", "required": true, "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "pattern": "^[a-zA-Z0-9]*$", + "x-ms-parameter-location": "method" }, "PolicyNameParameter": { "in": "path", @@ -6530,7 +6506,8 @@ "description": "The policy name.", "required": true, "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "pattern": "^[a-zA-Z0-9]*$", + "x-ms-parameter-location": "method" }, "ProtectedItemNameParameter": { "in": "path", @@ -6538,15 +6515,8 @@ "description": "The protected item name.", "required": true, "type": "string", - "pattern": "^[a-zA-Z0-9]*$" - }, - "OperationIdParameter": { - "in": "path", - "name": "operationId", - "description": "The operation Id.", - "required": true, - "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "pattern": "^[a-zA-Z0-9]*$", + "x-ms-parameter-location": "method" }, "ReplicationExtensionNameParameter": { "in": "path", @@ -6554,7 +6524,8 @@ "description": "The replication extension name.", "required": true, "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "pattern": "^[a-zA-Z0-9]*$", + "x-ms-parameter-location": "method" }, "JobNameParameter": { "in": "path", @@ -6562,7 +6533,8 @@ "description": "The job (workflow) name.", "required": true, "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "pattern": "^[a-zA-Z0-9]*$", + "x-ms-parameter-location": "method" }, "EmailConfigurationNameParameter": { "in": "path", @@ -6570,7 +6542,8 @@ "description": "The email configuration name.", "required": true, "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "pattern": "^[a-zA-Z0-9]*$", + "x-ms-parameter-location": "method" }, "EventNameParameter": { "in": "path", @@ -6578,7 +6551,8 @@ "description": "The event name.", "required": true, "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "pattern": "^[a-zA-Z0-9]*$", + "x-ms-parameter-location": "method" }, "RecoveryPointNameParameter": { "in": "path", @@ -6586,7 +6560,8 @@ "description": "The recovery point name.", "required": true, "type": "string", - "pattern": "^[a-zA-Z0-9]*$" + "pattern": "^[a-zA-Z0-9]*$", + "x-ms-parameter-location": "method" } }, "securityDefinitions": { From c6548659fc78961bf6d77bd34a1e5630fb78dca7 Mon Sep 17 00:00:00 2001 From: Sam Lee Date: Fri, 1 Sep 2023 11:48:37 -0700 Subject: [PATCH 9/9] Addressed PR comments about tags --- .../examples/Dra_Create.json | 9 -- .../2021-02-16-preview/examples/Dra_Get.json | 3 - .../2021-02-16-preview/examples/Dra_List.json | 3 - .../examples/EmailConfiguration_Create.json | 9 -- .../examples/EmailConfiguration_Get.json | 3 - .../examples/EmailConfiguration_List.json | 3 - .../examples/Event_Get.json | 3 - .../examples/Event_List.json | 3 - .../examples/Policy_Create.json | 9 -- .../examples/Policy_Get.json | 3 - .../examples/Policy_List.json | 3 - .../examples/ProtectedItem_Create.json | 9 -- .../examples/ProtectedItem_Get.json | 3 - .../examples/ProtectedItem_List.json | 3 - .../examples/RecoveryPoints_Get.json | 3 - .../examples/RecoveryPoints_List.json | 3 - .../examples/ReplicationExtension_Create.json | 9 -- .../examples/ReplicationExtension_Get.json | 3 - .../examples/ReplicationExtension_List.json | 3 - .../examples/Workflow_Get.json | 3 - .../examples/Workflow_List.json | 3 - .../recoveryservicesdatareplication.json | 128 +++++------------- 22 files changed, 32 insertions(+), 189 deletions(-) diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json index 2ce35da0a0e5..fef9b637f9a8 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Create.json @@ -28,9 +28,6 @@ "customProperties": { "instanceType": "DraModelCustomProperties" } - }, - "tags": { - "key3120": "u" } } }, @@ -107,9 +104,6 @@ "lastModifiedBy": "cfoopkrisaroztncgss", "lastModifiedByType": "dysxbvohxhrpl", "lastModifiedAt": "2023-08-25T00:28:52.128Z" - }, - "tags": { - "key3120": "u" } } }, @@ -188,9 +182,6 @@ "lastModifiedBy": "cfoopkrisaroztncgss", "lastModifiedByType": "dysxbvohxhrpl", "lastModifiedAt": "2023-08-25T00:28:52.128Z" - }, - "tags": { - "key3120": "u" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json index 68d2802ecebd..f2072c95f3f0 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_Get.json @@ -81,9 +81,6 @@ "lastModifiedBy": "cfoopkrisaroztncgss", "lastModifiedByType": "dysxbvohxhrpl", "lastModifiedAt": "2023-08-25T00:28:52.128Z" - }, - "tags": { - "key3120": "u" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json index 20a85203e7fe..0696fdc20f5f 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Dra_List.json @@ -82,9 +82,6 @@ "lastModifiedBy": "cfoopkrisaroztncgss", "lastModifiedByType": "dysxbvohxhrpl", "lastModifiedAt": "2023-08-25T00:28:52.128Z" - }, - "tags": { - "key3120": "u" } } ], diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json index 969deed6ff8b..6ae9245fd3a0 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Create.json @@ -14,9 +14,6 @@ "ketvbducyailcny" ], "locale": "vpnjxjvdqtebnucyxiyrjiko" - }, - "tags": { - "key6763": "urnmiqiksxjgowb" } } }, @@ -40,9 +37,6 @@ "lastModifiedBy": "rx", "lastModifiedByType": "tqbvuqoakaaqij", "lastModifiedAt": "2023-08-25T00:28:53.022Z" - }, - "tags": { - "key6763": "urnmiqiksxjgowb" } } }, @@ -65,9 +59,6 @@ "lastModifiedBy": "rx", "lastModifiedByType": "tqbvuqoakaaqij", "lastModifiedAt": "2023-08-25T00:28:53.022Z" - }, - "tags": { - "key6763": "urnmiqiksxjgowb" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json index 83720147e991..946bbe114ba0 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_Get.json @@ -28,9 +28,6 @@ "lastModifiedBy": "rx", "lastModifiedByType": "tqbvuqoakaaqij", "lastModifiedAt": "2023-08-25T00:28:53.022Z" - }, - "tags": { - "key6763": "urnmiqiksxjgowb" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json index 8c16d786feb5..103fdebcff10 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/EmailConfiguration_List.json @@ -29,9 +29,6 @@ "lastModifiedBy": "rx", "lastModifiedByType": "tqbvuqoakaaqij", "lastModifiedAt": "2023-08-25T00:28:53.022Z" - }, - "tags": { - "key6763": "urnmiqiksxjgowb" } } ], diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json index 3f0ae3ea8181..55934f25f466 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_Get.json @@ -68,9 +68,6 @@ "lastModifiedBy": "ufrixpmhben", "lastModifiedByType": "aubgraubkuaeipwzvbcgnlpseobx", "lastModifiedAt": "2023-08-25T00:28:53.432Z" - }, - "tags": { - "key5043": "bfaqnmbzy" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json index c1438a971ddd..cdb59e966d1b 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Event_List.json @@ -71,9 +71,6 @@ "lastModifiedBy": "ufrixpmhben", "lastModifiedByType": "aubgraubkuaeipwzvbcgnlpseobx", "lastModifiedAt": "2023-08-25T00:28:53.432Z" - }, - "tags": { - "key5043": "bfaqnmbzy" } } ], diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json index 9021637ec017..9c6153a7c198 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Create.json @@ -12,9 +12,6 @@ "customProperties": { "instanceType": "PolicyModelCustomProperties" } - }, - "tags": { - "key8304": "cnhiedlpsalbptkklizi" } } }, @@ -37,9 +34,6 @@ "lastModifiedBy": "xy", "lastModifiedByType": "rnc", "lastModifiedAt": "2023-08-25T00:28:54.713Z" - }, - "tags": { - "key8304": "cnhiedlpsalbptkklizi" } } }, @@ -64,9 +58,6 @@ "lastModifiedBy": "xy", "lastModifiedByType": "rnc", "lastModifiedAt": "2023-08-25T00:28:54.713Z" - }, - "tags": { - "key8304": "cnhiedlpsalbptkklizi" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json index 8b6252ffd178..76c1b6f990ab 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_Get.json @@ -27,9 +27,6 @@ "lastModifiedBy": "xy", "lastModifiedByType": "rnc", "lastModifiedAt": "2023-08-25T00:28:54.713Z" - }, - "tags": { - "key8304": "cnhiedlpsalbptkklizi" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json index b731467d821a..378934619590 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Policy_List.json @@ -28,9 +28,6 @@ "lastModifiedBy": "xy", "lastModifiedByType": "rnc", "lastModifiedAt": "2023-08-25T00:28:54.713Z" - }, - "tags": { - "key8304": "cnhiedlpsalbptkklizi" } } ], diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json index 74296b4d874a..f4071fb7357e 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Create.json @@ -14,9 +14,6 @@ "customProperties": { "instanceType": "ProtectedItemModelCustomProperties" } - }, - "tags": { - "key204": "iqmduvjucumtaal" } } }, @@ -133,9 +130,6 @@ "lastModifiedBy": "epo", "lastModifiedByType": "ekzmwexhjttb", "lastModifiedAt": "2023-08-25T00:28:55.456Z" - }, - "tags": { - "key204": "iqmduvjucumtaal" } } }, @@ -254,9 +248,6 @@ "lastModifiedBy": "epo", "lastModifiedByType": "ekzmwexhjttb", "lastModifiedAt": "2023-08-25T00:28:55.456Z" - }, - "tags": { - "key204": "iqmduvjucumtaal" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json index 50df6b8ab245..d66b1e297d8e 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_Get.json @@ -121,9 +121,6 @@ "lastModifiedBy": "epo", "lastModifiedByType": "ekzmwexhjttb", "lastModifiedAt": "2023-08-25T00:28:55.456Z" - }, - "tags": { - "key204": "iqmduvjucumtaal" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json index 5c8d41d504bd..06336ba0c3cd 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ProtectedItem_List.json @@ -122,9 +122,6 @@ "lastModifiedBy": "epo", "lastModifiedByType": "ekzmwexhjttb", "lastModifiedAt": "2023-08-25T00:28:55.456Z" - }, - "tags": { - "key204": "iqmduvjucumtaal" } } ], diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json index 8a0e12a2c3a1..e18dbdc04f9b 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_Get.json @@ -29,9 +29,6 @@ "lastModifiedBy": "tipxxgz", "lastModifiedByType": "v", "lastModifiedAt": "2023-08-25T00:28:56.404Z" - }, - "tags": { - "key6320": "g" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json index 7990b36c408d..9e5776b86bf1 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/RecoveryPoints_List.json @@ -30,9 +30,6 @@ "lastModifiedBy": "tipxxgz", "lastModifiedByType": "v", "lastModifiedAt": "2023-08-25T00:28:56.404Z" - }, - "tags": { - "key6320": "g" } } ], diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json index 3bb6f257a4a3..6c2a94c4b01d 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Create.json @@ -12,9 +12,6 @@ "customProperties": { "instanceType": "ReplicationExtensionModelCustomProperties" } - }, - "tags": { - "key7965": "cjelytukhvjnfyjzin" } } }, @@ -37,9 +34,6 @@ "lastModifiedBy": "suwjpejlaya", "lastModifiedByType": "nrfjuyghtbivwihr", "lastModifiedAt": "2023-08-25T00:28:56.732Z" - }, - "tags": { - "key7965": "cjelytukhvjnfyjzin" } } }, @@ -64,9 +58,6 @@ "lastModifiedBy": "suwjpejlaya", "lastModifiedByType": "nrfjuyghtbivwihr", "lastModifiedAt": "2023-08-25T00:28:56.732Z" - }, - "tags": { - "key7965": "cjelytukhvjnfyjzin" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json index 230eeae746dd..0ea505a0b4ab 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_Get.json @@ -27,9 +27,6 @@ "lastModifiedBy": "suwjpejlaya", "lastModifiedByType": "nrfjuyghtbivwihr", "lastModifiedAt": "2023-08-25T00:28:56.732Z" - }, - "tags": { - "key7965": "cjelytukhvjnfyjzin" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json index f4ab07917b22..2b7554e4e49d 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/ReplicationExtension_List.json @@ -28,9 +28,6 @@ "lastModifiedBy": "suwjpejlaya", "lastModifiedByType": "nrfjuyghtbivwihr", "lastModifiedAt": "2023-08-25T00:28:56.732Z" - }, - "tags": { - "key7965": "cjelytukhvjnfyjzin" } } ], diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json index a0945ccf2064..394092b5a7d9 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_Get.json @@ -68,9 +68,6 @@ "lastModifiedBy": "vuw", "lastModifiedByType": "h", "lastModifiedAt": "2023-08-25T00:28:59.270Z" - }, - "tags": { - "key5397": "bmhqdffcfdmepnsebsyonecmoe" } } } diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json index c1f1c24f5c8f..4874b168f80c 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/examples/Workflow_List.json @@ -71,9 +71,6 @@ "lastModifiedBy": "vuw", "lastModifiedByType": "h", "lastModifiedAt": "2023-08-25T00:28:59.270Z" - }, - "tags": { - "key5397": "bmhqdffcfdmepnsebsyonecmoe" } } ], diff --git a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json index 896aebf132e7..afb284fbcc5f 100644 --- a/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json +++ b/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json @@ -2868,14 +2868,6 @@ } ], "readOnly": true - }, - "tags": { - "description": "Gets or sets the resource tags.", - "maxLength": 15, - "type": "object", - "additionalProperties": { - "type": "string" - } } }, "x-ms-azure-resource": true @@ -3025,14 +3017,6 @@ } ], "readOnly": true - }, - "tags": { - "description": "Gets or sets the resource tags.", - "maxLength": 15, - "type": "object", - "additionalProperties": { - "type": "string" - } } }, "x-ms-azure-resource": true @@ -3153,14 +3137,6 @@ } ], "readOnly": true - }, - "tags": { - "description": "Gets or sets the resource tags.", - "maxLength": 15, - "type": "object", - "additionalProperties": { - "type": "string" - } } } }, @@ -3276,6 +3252,14 @@ "read" ] }, + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "properties": { "$ref": "#/definitions/FabricModelProperties" }, @@ -3301,14 +3285,6 @@ } ], "readOnly": true - }, - "tags": { - "description": "Gets or sets the resource tags.", - "maxLength": 15, - "type": "object", - "additionalProperties": { - "type": "string" - } } }, "x-ms-azure-resource": true @@ -3413,6 +3389,14 @@ "description": "Fabric model for update.", "type": "object", "properties": { + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "properties": { "$ref": "#/definitions/FabricModelProperties" }, @@ -3438,14 +3422,6 @@ } ], "readOnly": true - }, - "tags": { - "description": "Gets or sets the resource tags.", - "maxLength": 15, - "type": "object", - "additionalProperties": { - "type": "string" - } } }, "x-ms-azure-resource": true @@ -4533,14 +4509,6 @@ } ], "readOnly": true - }, - "tags": { - "description": "Gets or sets the resource tags.", - "maxLength": 15, - "type": "object", - "additionalProperties": { - "type": "string" - } } }, "x-ms-azure-resource": true @@ -4709,14 +4677,6 @@ } ], "readOnly": true - }, - "tags": { - "description": "Gets or sets the resource tags.", - "maxLength": 15, - "type": "object", - "additionalProperties": { - "type": "string" - } } }, "x-ms-azure-resource": true @@ -5067,14 +5027,6 @@ } ], "readOnly": true - }, - "tags": { - "description": "Gets or sets the resource tags.", - "maxLength": 15, - "type": "object", - "additionalProperties": { - "type": "string" - } } } }, @@ -5174,14 +5126,6 @@ } ], "readOnly": true - }, - "tags": { - "description": "Gets or sets the resource tags.", - "maxLength": 15, - "type": "object", - "additionalProperties": { - "type": "string" - } } }, "x-ms-azure-resource": true @@ -6115,6 +6059,14 @@ "read" ] }, + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "properties": { "$ref": "#/definitions/VaultModelProperties" }, @@ -6140,14 +6092,6 @@ } ], "readOnly": true - }, - "tags": { - "description": "Gets or sets the resource tags.", - "maxLength": 15, - "type": "object", - "additionalProperties": { - "type": "string" - } } }, "x-ms-azure-resource": true @@ -6215,6 +6159,14 @@ "description": "Vault model for update.", "type": "object", "properties": { + "tags": { + "description": "Gets or sets the resource tags.", + "maxLength": 15, + "type": "object", + "additionalProperties": { + "type": "string" + } + }, "properties": { "$ref": "#/definitions/VaultModelProperties" }, @@ -6240,14 +6192,6 @@ } ], "readOnly": true - }, - "tags": { - "description": "Gets or sets the resource tags.", - "maxLength": 15, - "type": "object", - "additionalProperties": { - "type": "string" - } } }, "x-ms-azure-resource": true @@ -6284,14 +6228,6 @@ } ], "readOnly": true - }, - "tags": { - "description": "Gets or sets the resource tags.", - "maxLength": 15, - "type": "object", - "additionalProperties": { - "type": "string" - } } }, "x-ms-azure-resource": true