@@ -2672,7 +2672,7 @@ type ObjectSetQuotaRule struct {
26722672}
26732673
26742674type PutObjectSetQuotaByTagInput struct {
2675- GenericInput `json:"-"` // v2.8.0
2675+ GenericInput `json:"-"` // v2.8.0
26762676 Bucket string `json:"-"` // required
26772677 Rules []ObjectSetQuotaRule `json:"Rules"`
26782678}
@@ -2682,8 +2682,8 @@ type PutObjectSetQuotaByTagOutput struct {
26822682}
26832683
26842684type GetObjectSetQuotaByTagInput struct {
2685- GenericInput `json:"-"` // v2.8.0
2686- Bucket string `json:"-"` // required
2685+ GenericInput `json:"-"` // v2.8.0
2686+ Bucket string `json:"-"` // required
26872687}
26882688
26892689type GetObjectSetQuotaByTagOutput struct {
@@ -2692,29 +2692,29 @@ type GetObjectSetQuotaByTagOutput struct {
26922692}
26932693
26942694type DeleteObjectSetQuotaByTagInput struct {
2695- GenericInput `json:"-"` // v2.8.0
2696- Bucket string `json:"-"` // required
2695+ GenericInput `json:"-"` // v2.8.0
2696+ Bucket string `json:"-"` // required
26972697}
26982698
26992699type DeleteObjectSetQuotaByTagOutput struct {
27002700 RequestInfo
27012701}
27022702
27032703type PutObjectSetQuotaInput struct {
2704- GenericInput `json:"-"` // v2.8.0
2705- Bucket string `json:"-"` // required
2706- ObjectSetName string `location:"query" locationName:"ObjectSetName" json:"-"`
2707- StorageQuota string `json:"StorageQuota"`
2704+ GenericInput `json:"-"` // v2.8.0
2705+ Bucket string `json:"-"` // required
2706+ ObjectSetName string `location:"query" locationName:"ObjectSetName" json:"-"`
2707+ StorageQuota string `json:"StorageQuota"`
27082708}
27092709
27102710type PutObjectSetQuotaOutput struct {
27112711 RequestInfo
27122712}
27132713
27142714type GetObjectSetQuotaInput struct {
2715- GenericInput `json:"-"` // v2.8.0
2716- Bucket string `json:"-"` // required
2717- ObjectSetName string `location:"query" locationName:"ObjectSetName" json:"-"`
2715+ GenericInput `json:"-"` // v2.8.0
2716+ Bucket string `json:"-"` // required
2717+ ObjectSetName string `location:"query" locationName:"ObjectSetName" json:"-"`
27182718}
27192719
27202720type GetObjectSetQuotaOutput struct {
@@ -2723,9 +2723,9 @@ type GetObjectSetQuotaOutput struct {
27232723}
27242724
27252725type GetObjectSetStorageInput struct {
2726- GenericInput `json:"-"` // v2.8.0
2727- Bucket string `json:"-"` // required
2728- ObjectSetName string `location:"query" locationName:"ObjectSetName" json:"-"`
2726+ GenericInput `json:"-"` // v2.8.0
2727+ Bucket string `json:"-"` // required
2728+ ObjectSetName string `location:"query" locationName:"ObjectSetName" json:"-"`
27292729}
27302730
27312731type StorageStat struct {
@@ -3441,6 +3441,12 @@ type VideoDataProcessInput struct {
34413441// VideoDataProcessOutput 视频数据处理响应参数
34423442type VideoDataProcessOutput struct {
34433443 RequestInfo
3444+ VideoSnapshotsOutput
3445+ PcmDataProcessOutput
3446+ }
3447+
3448+ // VideoSnapshotsOutput 视频快照(video/snapshots)处理返回字段
3449+ type VideoSnapshotsOutput struct {
34443450 OutputBucket string
34453451 TotalFrameCount int
34463452 SuccFrameCount int
@@ -3449,6 +3455,13 @@ type VideoDataProcessOutput struct {
34493455 FailFrameList []FailFrame
34503456}
34513457
3458+ // PcmDataProcessOutput 音频 PCM 转码(audio/pcm)处理返回字段
3459+ type PcmDataProcessOutput struct {
3460+ PcmBucket string `json:"bucket,omitempty"`
3461+ PcmObject string `json:"object,omitempty"`
3462+ PcmStatus string `json:"status,omitempty"`
3463+ }
3464+
34523465// SuccFrame 成功的帧信息
34533466type SuccFrame struct {
34543467 FrameIndex int
0 commit comments