API | 操作名 | 操作描述 |
设置日志管理 | 为源存储桶开启日志记录 | |
查询日志管理 | 查询源存储桶的日志配置信息 |
public void setBucketLoggingConfiguration(SetBucketLoggingConfigurationRequest setBucketLoggingConfigurationRequest);
String bucketName = "examplebucket-1250000000";BucketLoggingConfiguration bucketLoggingConfiguration = new BucketLoggingConfiguration();bucketLoggingConfiguration.setDestinationBucketName(bucketName);bucketLoggingConfiguration.setLogFilePrefix("logs");SetBucketLoggingConfigurationRequest setBucketLoggingConfigurationRequest = new SetBucketLoggingConfigurationRequest(bucketName, bucketLoggingConfiguration);cosclient.setBucketLoggingConfiguration(setBucketLoggingConfigurationRequest);
参数名称 | 描述 | 类型 |
setBucketLoggingConfigurationRequest | 开启日志功能请求 | SetBucketLoggingConfigurationRequest |
Request 成员 | 设置方法 | 描述 | 类型 |
bucketName | 构造函数或 set 方法 | 开启日志功能的源存储桶名称,命名格式为 BucketName-APPID ,详情请参见 命名规范 | String |
loggingConfiguration | 构造函数或 set 方法 | 存储桶的日志功能配置 | BucketLoggingConfiguration |
参数名称 | 描述 | 类型 |
destinationBucketName | 存放日志的目标存储桶名称,命名格式为 BucketName-APPID ,详情请参见 命名规范 | String |
logFilePrefix | 日志存放在目标存储桶的指定路径 | String |
public BucketLoggingConfiguration getBucketLoggingConfiguration(String bucketName);
String bucketName = "examplebucket-1250000000";BucketLoggingConfiguration bucketLoggingConfiguration = cosclient.getBucketLoggingConfiguration(bucketName);
参数名称 | 描述 | 类型 |
bucketName | 存放日志的目标存储桶,格式为 BucketName-APPID ,详情请参见 命名规范 | String |
本页内容是否解决了您的问题?