List network resources

Description

Lists the job LAN networks of all availability zones.

Only the network resources owned by the project are displayed.

Request

Header

Accept: application/xml

X-Auth-Token: Keystone token (*1)

X-VA-Project-Id: ID of the project that owns the resource (*2)

X-VA-Domain-Id: ID of the domain that owns the resource (*2)

*1: The scope specified for the token is ignored when this API is executed by the system administrator.

*2: Mandatory when this API is executed by the system administrator. ignored when executed by other users.

Method

GET

Path

/networks

Query

Argument name Description
verbose To retrieve only some of the information, specify "false", or to retrieve all of the information, specify "true". If omitted, "false" is used.

Body

n/a

Response

Status code

200 OK

Body

If verbose=false:


       <Networks>
        <Network name="networkResourceName1" id="networkResourceId1">
         <AddressSet name="addrSetName1" subnet="subnetAddr" mask="netMask" start="startIpAddr" end="endIpAddr">
          <DefaultGateway address="ipAddr" />
         </AddressSet>
         <Subnet id="subnetUuid">
          <AvailabilityZone>availZoneName</AvailabilityZone>
        </Network>
        <Network name="networkResourceName2" id="networkResourceId2">
           Omitted
        </Network>
       </Networks>
     

If verbose=true:


       <Networks>
        <Network name="networkResourceName1" id="networkResourceId1">
         <AddressSet name="addrSetName1" subnet="subnetAddr" mask="netMask" start=" start="startIpAddr" end="endIpAddr"/>
          <Exclude>
           <AddressRange start="startIpAddr" end="endIpAddr" />
          </Exclude>
          <Reserve>
             ipAddrAlreadyAssigned  (IP addresses are separated with commas)
          </Reserve>
          <DefaultGateway address="ipAddr" />
         </AddressSet>
         <Subnet id="subnetUuid">
         <AvailabilityZone >availZoneName</AvailabilityZone>
        </Network>
        <Network name="networkResourceName2" id="networkResourceId2">
           Omitted
        </Network>
       </Networks>
     

Tag name: Network

Item Description Details
name Name of network resource Name of the network resource.

The network resource names have the following prefixes:

- VAServiceLAN_****: Job LAN resources of the virtual server for SAP

id Network resource ID Network resource ID.

Tag name: AddressSet

Item Description Details
name Name of address set resource Name of the address set resource.

The address set resource names have the following prefixes:

- VAServiceAS_**** : Job LAN address set resources of the virtual server for SAP

subnet Subnet address Subnet address. (example: 192.168.10.0)
mask Subnet mask Subnet mask. (example: 255.255.255.0)
start Start IP address Start IP address for automatic setup. (example: 192.168.10.1)
end End IP address End IP address for automatic setup. (example: 192.168.10.254)

Tag name: Exclude

Item Description Details
  Address range for manual setup If the address range for manual setup has not been set, the AddressRange tag will not be displayed. If multiple address ranges for manual setup have been set, multiple AddressRange tags will be displayed.

Tag name: AddressRange

Item Description Details
start Start IP address Start IP address for manual setup. (example: 192.168.10.1)
end End IP address End IP address for manual setup. (example: 192.168.10.1)

Tag name: Reserve

Item Description Details
  IP address that has already been assigned IP addresses that have already been assigned.

(Example of multiple IP addresses that have already been assigned: 192.168.10.30, 192.168.10.31)

Tag name: DefaultGateway

Item Description Details
address IP address of the default gateway IP address of the default gateway. (example: 192.168.10.1)