swagger: '2.0' info: version: 2020-08-01-preview title: Microsoft Azure AccessControlClient AccessConnector MigrationRecoveryPoints API schemes: - https tags: - name: MigrationRecoveryPoints paths: ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{resourceName}/replicationFabrics/{fabricName}/replicationProtectionContainers/{protectionContainerName}/replicationMigrationItems/{migrationItemName}/migrationRecoveryPoints : get: tags: - MigrationRecoveryPoints summary: Microsoft Azure Gets The Recovery Points For A Migration Item operationId: microsoftAzureMigrationrecoverypointsListbyreplicationmigrationitems produces: - application/json parameters: - $ref: '#/parameters/ApiVersion' - $ref: '#/parameters/ResourceName' - $ref: '#/parameters/ResourceGroupName' - $ref: '#/parameters/SubscriptionId' - name: fabricName in: path description: Fabric unique name. required: true type: string - name: protectionContainerName in: path description: Protection container name. required: true type: string - name: migrationItemName in: path description: Migration item name. required: true type: string responses: '200': description: OK schema: $ref: '#/definitions/MigrationRecoveryPointCollection' x-ms-pageable: nextLinkName: nextLink x-ms-examples: Gets the recovery points for a migration item.: $ref: ./examples/MigrationRecoveryPoints_ListByReplicationMigrationItems.json description: Needs a more full description created. ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{resourceName}/replicationFabrics/{fabricName}/replicationProtectionContainers/{protectionContainerName}/replicationMigrationItems/{migrationItemName}/migrationRecoveryPoints/{migrationRecoveryPointName} : get: tags: - MigrationRecoveryPoints summary: Microsoft Azure Gets A Recovery Point For A Migration Item operationId: microsoftAzureMigrationrecoverypointsGet produces: - application/json parameters: - $ref: '#/parameters/ApiVersion' - $ref: '#/parameters/ResourceName' - $ref: '#/parameters/ResourceGroupName' - $ref: '#/parameters/SubscriptionId' - name: fabricName in: path description: Fabric unique name. required: true type: string - name: protectionContainerName in: path description: Protection container name. required: true type: string - name: migrationItemName in: path description: Migration item name. required: true type: string - name: migrationRecoveryPointName in: path description: The migration recovery point name. required: true type: string responses: '200': description: OK schema: $ref: '#/definitions/MigrationRecoveryPoint' x-ms-examples: Gets a recovery point for a migration item.: $ref: ./examples/MigrationRecoveryPoints_Get.json description: Needs a more full description created. definitions: Resource: description: Azure resource. type: object properties: id: description: Resource Id type: string readOnly: true name: description: Resource Name type: string readOnly: true type: description: Resource Type type: string readOnly: true location: description: Resource Location type: string x-ms-azure-resource: true MigrationRecoveryPoint: description: Recovery point for a migration item. type: object allOf: - $ref: '#/definitions/Resource' properties: properties: $ref: '#/definitions/MigrationRecoveryPointProperties' description: Recovery point properties. MigrationRecoveryPointCollection: description: Collection of migration recovery points. type: object properties: value: description: The migration recovery point details. type: array items: $ref: '#/definitions/MigrationRecoveryPoint' nextLink: description: The value of next link. type: string MigrationRecoveryPointProperties: description: Migration item recovery point properties. type: object properties: recoveryPointTime: format: date-time description: The recovery point time. type: string readOnly: true recoveryPointType: description: The recovery point type. enum: - NotSpecified - ApplicationConsistent - CrashConsistent type: string readOnly: true x-ms-enum: name: MigrationRecoveryPointType modelAsString: true parameters: ResourceGroupName: name: resourceGroupName in: path description: The name of the resource group where the recovery services vault is present. required: true type: string x-ms-parameter-location: client ResourceName: name: resourceName in: path description: The name of the recovery services vault. required: true type: string x-ms-parameter-location: client ApiVersion: name: api-version in: query description: Client Api Version. required: true type: string SubscriptionId: name: subscriptionId in: path description: The subscription Id. required: true type: string x-ms-parameterized-host: hostTemplate: '{endpoint}' useSchemePrefix: false parameters: - $ref: '#/parameters/Endpoint'