tencent cloud

CloudAudit

Product Introduction
Overview
Strengths
Features
Scenarios
CloudAudit-Enabled Services and APIs
Purchase Guide
Getting Started
Operation Guide
Viewing Event Details in Operation Record
Shipping Log with Tracking Set
Set up cross-account log delivery for group accounts
Sensitive Operation API List
API Documentation
History
Introduction
API Category
Calling Method
CloudAudit APIs
Data Types
Error Codes
PHP SDK Documentation
Creating CloudAudit
Enabling Log Collection
Updating CloudAudit
Disabling Log Collection
Fetching Bucket List of COS
Fetching CloudAudit List
Obtaining CloudAudit Info
Deleting CloudAudit
Searching Operation Logs
FAQs
Contact Us
Glossary
문서CloudAuditPHP SDK DocumentationObtaining CloudAudit Info

Obtaining CloudAudit Info

PDF
포커스 모드
폰트 크기
마지막 업데이트 시간: 2024-01-24 17:36:30

SDK Description

DescribeAudits is used to obtain the CloudAudit information.

Request Parameters

Parameter Name
Required
Type
Description
auditNameList
Yes
Array
The auditName list

Response Parameters

Parameter Name
Type
Description
auditLists
Array
The list of tracking sets
The parameter auditList is composed as follows:
Parameter Name
Type
Description
IsMultiRegionAudit
Number
Indicates whether to enable multi-region query. 0: No; 1: Yes.
KmsKeyId
String
Kms key ID
Name
String
Audit name
CosBucketName
String
COS bucket name
CosKeyPrefix
String
COS bucket Prefix
CmqTopicName
String
CMQ topic name
Status
Number
Audit status. 0: Disabled; 1: Enabled.

Example

Request example

$config = array('SecretId' => 'Your secretId',
'SecretKey' => 'Your secretKey',
'RequestMethod' => 'GET',
'DefaultRegion' => 'gz');
$ca = QcloudApi::load(QcloudApi::MODULE_CLOUDAUDIT, $config);
$package = array('auditNameList'=>'["ayisunxxx"]');
$a = $ca->DescribeAudits($package);
if ($a === false) {
$error = $ca->getError();
echo "Error code:" . $error->getCode() . ".\\n";
echo "message:" . $error->getMessage() . ".\\n";
echo "ext:" . var_export($error->getExt(), true) . ".\\n";
} else {
var_dump($a);
}
echo "\\nRequest :" . $ca->getLastRequest();
echo "\\nResponse :" . $ca->getLastResponse();
echo "\\n";

Response example

{
"auditList": [
{
"Name": "ayisunxxx",
"CosBucketName": "sundehuixxx",
"CosKeyPrefix": "91000000009",
"Status": 1,
"IsMultiRegionAudit": 1,
"CmqTopicName": ""
}
]
}

도움말 및 지원

문제 해결에 도움이 되었나요?

피드백