getFlowLogConfigurationList

Prev Next

Available in VPC

Overview

Queries the information on setting FlowLog.

Requests

Request parameters

Parameter name Requirement status Type Restrictions Description
regionCode No String - Region code
Determines the Region in which the network interface list is queried
regionCode can be acquired through the getRegionList action
Default: select the first Region in the getRegionList query result.
networkInterfaceNoList.N Yes List<String> - List of network interface numbers
Searchable by filtering by network interface number
networkInterfaceNo can be acquired through the getNetworkInterfaceList action
ex) networkInterfaceNoList.1=1234&networkInterfaceNoList.2=2345
responseFormatType No String - Format type of response result
Options : xml | json
Default : xml

Responses

Response bodies

Success

Failure

Errors Error message Description
14016 Required parameters are missing Enter the required parameters.

Examples

Request examples

GET {API_URL}/getFlowLogConfigurationList
?regionCode=KR
&networkInterfaceNoList.1=34***

Response examples

  <getFlowLogConfigurationListResponse>
    <requestId>002bff47-48c8-4e2b-a376-eaab45c0e52f</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <flowLogConfigurationList>
      <FlowLogConfiguration>
        <networkInterfaceNo>34***</networkInterfaceNo>
        <collectActionType>
          <code>ALLOW</code>
          <codeName>Allow</codeName>
        </collectActionType>
        <collectIntervalMinute>5</collectIntervalMinute>
        <storageType>
          <code>OBJT</code>
          <codeName>Object Storage</codeName>
        </storageType>
        <storageBucketName>mybk**</storageBucketName>
        <storageBucketDirectoryName>VPC_FLOW_LOG</storageBucketDirectoryName>
      </FlowLogConfiguration>
    </flowLogConfigurationList>
  </getFlowLogConfigurationListResponse>