swagger: '2.0' info: version: 2020-08-01-preview title: Microsoft Azure AccessControlClient AccessConnector ReplicationStorageClassifications API schemes: - https tags: - name: ReplicationStorageClassifications paths: ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{resourceName}/replicationFabrics/{fabricName}/replicationStorageClassifications : get: tags: - ReplicationStorageClassifications summary: Microsoft Azure Gets The List Of Storage Classification Objects Under A Fabric description: Lists the storage classifications available in the specified fabric. operationId: microsoftAzureReplicationstorageclassificationsListbyreplicationfabrics produces: - application/json parameters: - $ref: '#/parameters/ApiVersion' - $ref: '#/parameters/ResourceName' - $ref: '#/parameters/ResourceGroupName' - $ref: '#/parameters/SubscriptionId' - name: fabricName in: path description: Site name of interest. required: true type: string responses: '200': description: OK schema: $ref: '#/definitions/StorageClassificationCollection' x-ms-pageable: nextLinkName: nextLink x-ms-examples: Gets the list of storage classification objects under a fabric.: $ref: ./examples/ReplicationStorageClassifications_ListByReplicationFabrics.json ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{resourceName}/replicationFabrics/{fabricName}/replicationStorageClassifications/{storageClassificationName} : get: tags: - ReplicationStorageClassifications summary: Microsoft Azure Gets The Details Of A Storage Classification description: Gets the details of the specified storage classification. operationId: microsoftAzureReplicationstorageclassificationsGet produces: - application/json parameters: - $ref: '#/parameters/ApiVersion' - $ref: '#/parameters/ResourceName' - $ref: '#/parameters/ResourceGroupName' - $ref: '#/parameters/SubscriptionId' - name: fabricName in: path description: Fabric name. required: true type: string - name: storageClassificationName in: path description: Storage classification name. required: true type: string responses: '200': description: OK schema: $ref: '#/definitions/StorageClassification' x-ms-examples: Gets the details of a storage classification.: $ref: ./examples/ReplicationStorageClassifications_Get.json ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{resourceName}/replicationStorageClassifications : get: tags: - ReplicationStorageClassifications summary: Microsoft Azure Gets The List Of Storage Classification Objects Under A Vault description: Lists the storage classifications in the vault. operationId: microsoftAzureReplicationstorageclassificationsList produces: - application/json parameters: - $ref: '#/parameters/ApiVersion' - $ref: '#/parameters/ResourceName' - $ref: '#/parameters/ResourceGroupName' - $ref: '#/parameters/SubscriptionId' responses: '200': description: OK schema: $ref: '#/definitions/StorageClassificationCollection' x-ms-pageable: nextLinkName: nextLink x-ms-examples: Gets the list of storage classification objects under a vault.: $ref: ./examples/ReplicationStorageClassifications_List.json 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 StorageClassification: description: Storage object definition. type: object allOf: - $ref: '#/definitions/Resource' properties: properties: $ref: '#/definitions/StorageClassificationProperties' description: Properties of the storage object. StorageClassificationProperties: description: Storage object properties. type: object properties: friendlyName: description: Friendly name of the Storage classification. type: string StorageClassificationCollection: description: Collection of storage details. type: object properties: value: description: The storage details. type: array items: $ref: '#/definitions/StorageClassification' nextLink: description: The value of next link. type: string 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'