enableFlowLog
- 印刷する
- PDF
enableFlowLog
- 印刷する
- PDF
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
VPC環境で利用できます。
概要
FlowLogを有効にします。
リクエスト
リクエストパラメータ
パラメータ名 | 要否 | タイプ | 制約事項 | 説明 |
---|---|---|---|---|
regionCode | No | String | - リージョンコード ネットワークインターフェースリストが照会されるリージョン(Region)を決定可能 regionCodeは、getRegionListアクションを通じて取得可能 Default: getRegionList照会結果の最初のリージョンを選択 | |
networkInterfaceNo | Yes | String | ネットワークインターフェース番号 networkInterfaceNoは、getNetworkInterfaceListアクションを通じて取得可能 | |
collectActionTypeCode | Yes | String | 収集アクションタイプ許可(ALLOW)、拒否(DENY)、すべて(ALL) Options : ALLOW, DENY, ALL | |
collectIntervalMinute | No | Integer | Min: 5, Max: 15 | 収集周期(分) Default : 15 |
storageTypeCode | No | String | リポジトリタイプ。オブジェクトストレージ(OBJT) Default : OBJT | |
storageBucketName | Yes | String | FlowLogトラフィックを保存するオブジェクトストレージのバケット名 bucketNameは、ListBucketsアクションを通じて取得可能 | |
storageBucketDirectoryName | No | String | アルファベット、数字、アンダースコア(_)で組み合わせ可能 最大文字数100 | FlowLogトラフィックを保存するオブジェクトストレージのバケット内にあるディレクトリ名 Default: VPC_FLOW_LOG |
responseFormatType | No | String | - レスポンス結果のフォーマットタイプ Options : xml | json Default : xml |
レスポンス
レスポンスボディ
成功
失敗
エラーコード | エラーメッセージ | 説明 |
---|---|---|
1000101 | there are no required parameter (networkInterfaceNo) | 必須パラメータの networkInterfaceNoを入力 |
1000102 | there are no required parameter (storageBucketName) | 必須パラメータの storageBucketNameを入力 |
1099000 | parameter value is not valid | 無効なパラメータ (networkInterfaceNo, storageBucketName, storageBucketDirectoryName) |
1000100 | failed to applied flowLog | FlowLogの有効化に失敗 |
例
リクエスト例
GET {API_URL}/enableFlowLog
?regionCode=KR
&networkInterfaceNo=***87
&collectActionTypeCode=ALLOW
&collectIntervalMinute=10
&storageTypeCode=OBJT
&storageBucketName=myBucket**Name
レスポンス例
<enableFlowLogResponse>
<requestId>4a457fad-fa00-4294-ad63-ac406ef9d159</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>1</totalRows>
<flowLogConfigurationList>
<FlowLogConfiguration>
<networkInterfaceNo>=***87</networkInterfaceNo>
<collectActionType>
<code>ALLOW</code>
<codeName>Allow</codeName>
</collectActionType>
<collectIntervalMinute>10</collectIntervalMinute>
<storageType>
<code>OBJT</code>
<codeName>Object Storage</codeName>
</storageType>
<storageBucketName>myBucket**Name</storageBucketName>
<storageBucketDirectoryName>VPC_FLOW_LOG</storageBucketDirectoryName>
</FlowLogConfiguration>
</flowLogConfigurationList>
</enableFlowLogResponse>
この記事は役に立ちましたか?