swagger: '2.0' info: version: 2020-08-01-preview title: Microsoft Azure AccessControlClient AccessConnector ReplicationLogicalNetworks API schemes: - https tags: - name: ReplicationLogicalNetworks paths: ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{resourceName}/replicationFabrics/{fabricName}/replicationLogicalNetworks : get: tags: - ReplicationLogicalNetworks summary: Microsoft Azure Gets The List Of Logical Networks Under A Fabric description: Lists all the logical networks of the Azure Site Recovery fabric. operationId: microsoftAzureReplicationlogicalnetworksListbyreplicationfabrics produces: - application/json parameters: - $ref: '#/parameters/ApiVersion' - $ref: '#/parameters/ResourceName' - $ref: '#/parameters/ResourceGroupName' - $ref: '#/parameters/SubscriptionId' - name: fabricName in: path description: Server Id. required: true type: string responses: '200': description: OK schema: $ref: '#/definitions/LogicalNetworkCollection' x-ms-pageable: nextLinkName: nextLink x-ms-examples: Gets the list of logical networks under a fabric.: $ref: ./examples/ReplicationLogicalNetworks_ListByReplicationFabrics.json ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{resourceName}/replicationFabrics/{fabricName}/replicationLogicalNetworks/{logicalNetworkName} : get: tags: - ReplicationLogicalNetworks summary: Microsoft Azure Gets A Logical Network With Specified Server Id And Logical Network Name description: Gets the details of a logical network. operationId: microsoftAzureReplicationlogicalnetworksGet produces: - application/json parameters: - $ref: '#/parameters/ApiVersion' - $ref: '#/parameters/ResourceName' - $ref: '#/parameters/ResourceGroupName' - $ref: '#/parameters/SubscriptionId' - name: fabricName in: path description: Server Id. required: true type: string - name: logicalNetworkName in: path description: Logical network name. required: true type: string responses: '200': description: OK schema: $ref: '#/definitions/LogicalNetwork' x-ms-examples: Gets a logical network with specified server id and logical network name.: $ref: ./examples/ReplicationLogicalNetworks_Get.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 LogicalNetwork: description: Logical network data model. type: object allOf: - $ref: '#/definitions/Resource' properties: properties: $ref: '#/definitions/LogicalNetworkProperties' description: The Logical Network Properties. LogicalNetworkProperties: description: Logical Network Properties. type: object properties: friendlyName: description: The Friendly Name. type: string networkVirtualizationStatus: description: A value indicating whether Network Virtualization is enabled for the logical network. type: string logicalNetworkUsage: description: A value indicating whether logical network is used as private test network by test failover. type: string logicalNetworkDefinitionsStatus: description: A value indicating whether logical network definitions are isolated. type: string LogicalNetworkCollection: description: List of logical networks. type: object properties: value: description: The Logical Networks list details. type: array items: $ref: '#/definitions/LogicalNetwork' 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'