swagger: '2.0' info: version: 2020-08-01-preview title: Microsoft Azure AccessControlClient AccessConnector ReplicationAppliances API schemes: - https tags: - name: ReplicationAppliances paths: ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{resourceName}/replicationAppliances : get: tags: - ReplicationAppliances summary: Microsoft Azure Gets The List Of Appliances description: Gets the list of Azure Site Recovery appliances for the vault. operationId: microsoftAzureReplicationappliancesList produces: - application/json parameters: - $ref: '#/parameters/ApiVersion' - $ref: '#/parameters/ResourceName' - $ref: '#/parameters/ResourceGroupName' - $ref: '#/parameters/SubscriptionId' - name: $filter in: query description: OData filter options. required: false type: string responses: '200': description: OK schema: $ref: '#/definitions/ApplianceCollection' x-ms-pageable: nextLinkName: nextLink x-ms-odata: '#/definitions/ApplianceQueryParameter' x-ms-examples: Gets the list of appliances.: $ref: ./examples/ReplicationAppliances_List.json definitions: ReplicationAppliance: description: Replication appliance definition. type: object properties: properties: $ref: '#/definitions/ReplicationApplianceProperties' description: Appliance related data. ReplicationApplianceProperties: description: Replication appliance properties. type: object properties: providerSpecificDetails: $ref: '#/definitions/ApplianceSpecificDetails' description: Provider specific settings. ApplianceCollection: description: Collection of appliance details. type: object properties: value: description: The appliance details. type: array items: $ref: '#/definitions/ReplicationAppliance' nextLink: description: The value of next link. type: string ApplianceSpecificDetails: description: Appliance specific details. type: object properties: instanceType: description: Gets the class type. Overridden in derived classes. type: string discriminator: instanceType required: - instanceType 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'