gitextract_wvnpcbki/ ├── .gitignore ├── Changelog ├── LICENSE ├── Open Source Notice.txt ├── README.EN.MD ├── README.md ├── SECURITY.md ├── requirements.txt ├── setup.py └── volcengine/ ├── ApiInfo.py ├── Credentials.py ├── Policy.py ├── ServiceInfo.py ├── ServiceInfoHttps.py ├── __init__.py ├── adblocker/ │ ├── AdBlockerService.py │ └── __init__.py ├── auth/ │ ├── MetaData.py │ ├── SignParam.py │ ├── SignResult.py │ ├── SignerV4.py │ └── __init__.py ├── base/ │ ├── Request.py │ ├── Service.py │ ├── __init__.py │ └── models/ │ ├── __init__.py │ ├── base/ │ │ ├── __init__.py │ │ └── base_pb2.py │ └── business/ │ ├── VQScore_pb2.py │ ├── __init__.py │ ├── addr_pb2.py │ ├── deny_config_pb2.py │ ├── domain_pb2.py │ ├── pull_to_push_pb2.py │ ├── record_manage_pb2.py │ ├── relay_source_pb2.py │ ├── snapshot_manage_pb2.py │ └── stream_manage_pb2.py ├── billing/ │ ├── BillingService.py │ └── __init__.py ├── bioos/ │ ├── BioOsService.py │ ├── README.md │ ├── __init__.py │ └── doc/ │ ├── Makefile │ ├── __init__.py │ ├── make.bat │ └── source/ │ ├── __init__.py │ ├── bioos.rst │ ├── conf.py │ └── index.rst ├── business_security/ │ ├── RiskDetectionService.py │ └── __init__.py ├── cdn/ │ ├── __init__.py │ └── service.py ├── code_pipeline/ │ ├── CodePipelineService.py │ └── __init__.py ├── const/ │ ├── Const.py │ └── __init__.py ├── content_security/ │ ├── ContentSecurityService.py │ ├── RcLlmAgentService.py │ └── __init__.py ├── dcdn/ │ ├── DCDNService.py │ └── __init__.py ├── dts/ │ ├── __init__.py │ └── dts_service.py ├── emr/ │ ├── EMRService.py │ └── __init__.py ├── example/ │ ├── DemoSignOnly.py │ ├── __init__.py │ ├── adblocker/ │ │ └── example_adblocker.py │ ├── billing/ │ │ ├── example_list_amortized_cost_bill_detail.py │ │ ├── example_list_amortized_cost_bill_monthly.py │ │ ├── example_list_bill.py │ │ ├── example_list_bill_detail.py │ │ ├── example_list_bill_overview_by_prod.py │ │ └── example_list_split_bill_detail.py │ ├── bioos/ │ │ ├── __init__.py │ │ ├── example_bind_cluster_to_workspace.py │ │ ├── example_cancel_run.py │ │ ├── example_cancel_submission.py │ │ ├── example_create_data_model.py │ │ ├── example_create_data_set.py │ │ ├── example_create_notebook_server_image.py │ │ ├── example_create_submission.py │ │ ├── example_create_workflow.py │ │ ├── example_create_workspace.py │ │ ├── example_dataset.yaml │ │ ├── example_delete_cluster.py │ │ ├── example_delete_data_model_rows_and_headers.py │ │ ├── example_delete_data_set.py │ │ ├── example_delete_notebook_server.py │ │ ├── example_delete_notebook_server_settings.py │ │ ├── example_delete_submission.py │ │ ├── example_delete_workflow.py │ │ ├── example_delete_workspace.py │ │ ├── example_get_api_accesskey.py │ │ ├── example_get_notebook_edit_info.py │ │ ├── example_get_notebook_server_extra_packages.py │ │ ├── example_get_notebook_server_settings.py │ │ ├── example_get_notebook_server_stat.py │ │ ├── example_get_trs_workflow_info.py │ │ ├── example_list_clusters.py │ │ ├── example_list_clusters_of_workspace.py │ │ ├── example_list_data_files.py │ │ ├── example_list_data_model_rows.py │ │ ├── example_list_data_models.py │ │ ├── example_list_data_sets.py │ │ ├── example_list_notebook_server_images.py │ │ ├── example_list_notebook_server_resource_opts.py │ │ ├── example_list_notebook_servers.py │ │ ├── example_list_overview_submissions.py │ │ ├── example_list_runs.py │ │ ├── example_list_submissions.py │ │ ├── example_list_tasks.py │ │ ├── example_list_workflows.py │ │ ├── example_list_workspace_labels.py │ │ ├── example_list_workspaces.py │ │ ├── example_stop_notebook_server.py │ │ ├── example_unbind_cluster_and_workspace.py │ │ ├── example_update_api_accesskey.py │ │ ├── example_update_notebook_server_settings.py │ │ ├── example_update_workflow.py │ │ └── example_update_workspace.py │ ├── business_security/ │ │ └── example_risk_detect.py │ ├── cdn/ │ │ ├── __init__.py │ │ ├── add_cdn_certificate.py │ │ ├── add_cdn_domain.py │ │ ├── add_resource_tags.py │ │ ├── batch_deploy_cert.py │ │ ├── delete_cdn_domain.py │ │ ├── delete_resource_tags.py │ │ ├── describe_accounting_data.py │ │ ├── describe_accounting_summary.py │ │ ├── describe_cdn_access_log.py │ │ ├── describe_cdn_config.py │ │ ├── describe_cdn_data.py │ │ ├── describe_cdn_data_detail.py │ │ ├── describe_cdn_origin_data.py │ │ ├── describe_cdn_region_and_isp.py │ │ ├── describe_cdn_service.py │ │ ├── describe_cdn_upper_ip.py │ │ ├── describe_cert_config.py │ │ ├── describe_content_block_tasks.py │ │ ├── describe_content_quota.py │ │ ├── describe_content_tasks.py │ │ ├── describe_district_isp_data.py │ │ ├── describe_edge_nrt_data_summary.py │ │ ├── describe_edge_statistical_data.py │ │ ├── describe_edge_top_nrt_data.py │ │ ├── describe_edge_top_statistical_data.py │ │ ├── describe_edge_top_status_code.py │ │ ├── describe_ip_info.py │ │ ├── describe_ip_list_info.py │ │ ├── describe_origin_nrt_data_summary.py │ │ ├── describe_origin_top_nrt_data.py │ │ ├── describe_origin_top_status_code.py │ │ ├── list_cdn_cert_info.py │ │ ├── list_cdn_domains.py │ │ ├── list_cert_info.py │ │ ├── list_resource_tags.py │ │ ├── start_cdn_domain.py │ │ ├── stop_cdn_domain.py │ │ ├── submit_block_task.py │ │ ├── submit_preload_task.py │ │ ├── submit_refresh_task.py │ │ ├── submit_unblock_task.py │ │ ├── update_cdn_config.py │ │ └── update_resource_tags.py │ ├── code_pipeline/ │ │ └── example_list_workspaces.py │ ├── content_security/ │ │ └── example_video_risk.py │ ├── dcdn/ │ │ ├── __init__.py │ │ ├── batch_block_ip.py │ │ ├── check_purge_prefetch_task.py │ │ ├── create_domain.py │ │ ├── create_domain_v2.py │ │ ├── create_purge_prefetch_task.py │ │ ├── delete_domain.py │ │ ├── describe_block_ip.py │ │ ├── describe_dcdn_edge_ip.py │ │ ├── describe_dcdn_origin_ip.py │ │ ├── describe_dcdn_region_and_isp.py │ │ ├── describe_domain_config.py │ │ ├── describe_domain_isp_data.py │ │ ├── describe_domain_logs.py │ │ ├── describe_domain_probe_setting.py │ │ ├── describe_domain_pv_data.py │ │ ├── describe_domain_region_data.py │ │ ├── describe_domain_uv_data.py │ │ ├── describe_ga_origin_policy.py │ │ ├── describe_l2_ips.py │ │ ├── describe_origin_realtime_data.py │ │ ├── describe_origin_statistics.py │ │ ├── describe_origin_statistics_detail.py │ │ ├── describe_realtime_data.py │ │ ├── describe_statistics.py │ │ ├── describe_statistics_detail.py │ │ ├── describe_top_domains.py │ │ ├── describe_top_ips.py │ │ ├── describe_top_referers.py │ │ ├── describe_top_urls.py │ │ ├── describe_user_domains.py │ │ ├── describe_verify_content.py │ │ ├── describe_ws_statistics.py │ │ ├── get_purge_prefetch_task_quota.py │ │ ├── retry_purge_prefetch_task.py │ │ ├── start_domain.py │ │ ├── stop_domain.py │ │ ├── update_domain_config.py │ │ ├── update_domain_config_v2.py │ │ ├── update_domain_probe_setting.py │ │ ├── update_ga_origin_policy.py │ │ └── verify_domain_ownership.py │ ├── dts/ │ │ ├── __init__.py │ │ ├── create_dts_task.py │ │ ├── delete_dts_task.py │ │ ├── describe_dts_task_progress.py │ │ ├── describe_dts_tasks.py │ │ ├── describe_task_info.py │ │ ├── get_async_precheck_result.py │ │ ├── modify_dts_task.py │ │ ├── precheck_async.py │ │ ├── resume_dts_task.py │ │ ├── retry_dts_task.py │ │ ├── start_dts_task.py │ │ ├── stop_dts_task.py │ │ ├── subscription/ │ │ │ ├── avro/ │ │ │ │ ├── deserializer.py │ │ │ │ ├── dts_kafka_consumer_demo.py │ │ │ │ ├── record.avsc │ │ │ │ └── record_printer.py │ │ │ ├── canal/ │ │ │ │ ├── canal.proto │ │ │ │ ├── canal_pb2.py │ │ │ │ └── dts_kafka_consumer_demo.py │ │ │ └── volc/ │ │ │ ├── dts_kafka_consumer_demo.py │ │ │ ├── volc.proto │ │ │ └── volc_pb2.py │ │ └── suspend_dts_task.py │ ├── emr/ │ │ ├── __init__.py │ │ ├── example_list_clusters.py │ │ └── example_list_instances.py │ ├── game_protect/ │ │ └── example_anti_plugin.py │ ├── iam/ │ │ └── example_list_users.py │ ├── image_registry/ │ │ └── example_image_registry.py │ ├── imagex/ │ │ ├── v1/ │ │ │ ├── __init__.py │ │ │ ├── data/ │ │ │ │ ├── __init__.py │ │ │ │ ├── bucket_base_op_usage.py │ │ │ │ ├── bucket_usage.py │ │ │ │ ├── cdn_top_request_data.py │ │ │ │ ├── compress_usage.py │ │ │ │ ├── domain_bandwidth_data.py │ │ │ │ ├── domain_traffic_data.py │ │ │ │ ├── edge_request.py │ │ │ │ ├── edge_request_bandwidth.py │ │ │ │ ├── edge_request_region.py │ │ │ │ ├── edge_request_traffic.py │ │ │ │ ├── hit_rate_request_data.py │ │ │ │ ├── hit_rate_traffic_data.py │ │ │ │ ├── imagex_summary.py │ │ │ │ ├── mirror_request_bandwidth.py │ │ │ │ ├── mirror_request_http_code_by_time.py │ │ │ │ ├── mirror_request_http_code_overview.py │ │ │ │ ├── mirror_request_traffic.py │ │ │ │ └── request_cnt_usage.py │ │ │ ├── examle_get_image_erase_models.py │ │ │ ├── example_common.py │ │ │ ├── example_create_image_content_task.py │ │ │ ├── example_delete_image.py │ │ │ ├── example_describe_imagex_volc_cdn_access_log.py │ │ │ ├── example_fetch_url.py │ │ │ ├── example_get_image_bg_fill_result.py │ │ │ ├── example_get_image_comic_result.py │ │ │ ├── example_get_image_content_block_list.py │ │ │ ├── example_get_image_content_task_detail.py │ │ │ ├── example_get_image_enhance_result.py │ │ │ ├── example_get_image_enhance_result_with_data.py │ │ │ ├── example_get_image_erase_result.py │ │ │ ├── example_get_image_info.py │ │ │ ├── example_get_image_ocr.py │ │ │ ├── example_get_image_segment.py │ │ │ ├── example_get_image_style_result.py │ │ │ ├── example_get_image_super_resolution_result.py │ │ │ ├── example_get_license_plate_detection.py │ │ │ ├── example_update_storage_ttl.py │ │ │ ├── example_upload_image.py │ │ │ ├── example_upload_image_token.py │ │ │ └── example_upload_sts2.py │ │ └── v2/ │ │ ├── __init__.py │ │ ├── api/ │ │ │ ├── AIProcessExample.py │ │ │ ├── AddCertExample.py │ │ │ ├── AddDomainV1Example.py │ │ │ ├── AddImageBackgroundColorsExample.py │ │ │ ├── AddImageElementsExample.py │ │ │ ├── ApplyImageUploadExample.py │ │ │ ├── ApplyVpcUploadInfoExample.py │ │ │ ├── BatchImageAuditExample.py │ │ │ ├── CommitImageUploadExample.py │ │ │ ├── CreateAudioAuditTaskExample.py │ │ │ ├── CreateBatchProcessTaskExample.py │ │ │ ├── CreateCVImageGenerateTaskExample.py │ │ │ ├── CreateFileRestoreExample.py │ │ │ ├── CreateHiddenWatermarkImageExample.py │ │ │ ├── CreateHmExtractTaskExample.py │ │ │ ├── CreateImageAIProcessCallbackExample.py │ │ │ ├── CreateImageAIProcessQueueExample.py │ │ │ ├── CreateImageAITaskExample.py │ │ │ ├── CreateImageAnalyzeTaskExample.py │ │ │ ├── CreateImageAuditTaskExample.py │ │ │ ├── CreateImageCompressTaskExample.py │ │ │ ├── CreateImageContentTaskExample.py │ │ │ ├── CreateImageFromUriExample.py │ │ │ ├── CreateImageHmEmbedExample.py │ │ │ ├── CreateImageHmExtractExample.py │ │ │ ├── CreateImageMigrateTaskExample.py │ │ │ ├── CreateImageMonitorRuleExample.py │ │ │ ├── CreateImageRetryAuditTaskExample.py │ │ │ ├── CreateImageServiceExample.py │ │ │ ├── CreateImageSettingRuleExample.py │ │ │ ├── CreateImageStyleExample.py │ │ │ ├── CreateImageTemplateExample.py │ │ │ ├── CreateImageTemplatesByImportExample.py │ │ │ ├── CreateImageTranscodeCallbackExample.py │ │ │ ├── CreateImageTranscodeQueueExample.py │ │ │ ├── CreateImageTranscodeTaskExample.py │ │ │ ├── CreateTemplatesFromBinExample.py │ │ │ ├── CreateVideoAuditTaskExample.py │ │ │ ├── DelCertExample.py │ │ │ ├── DelDomainExample.py │ │ │ ├── DeleteImageAIProcessDetailExample.py │ │ │ ├── DeleteImageAIProcessQueueExample.py │ │ │ ├── DeleteImageAnalyzeTaskExample.py │ │ │ ├── DeleteImageAnalyzeTaskRunExample.py │ │ │ ├── DeleteImageAuditResultExample.py │ │ │ ├── DeleteImageBackgroundColorsExample.py │ │ │ ├── DeleteImageElementsExample.py │ │ │ ├── DeleteImageMigrateTaskExample.py │ │ │ ├── DeleteImageMonitorRecordsExample.py │ │ │ ├── DeleteImageMonitorRulesExample.py │ │ │ ├── DeleteImageServiceExample.py │ │ │ ├── DeleteImageSettingRuleExample.py │ │ │ ├── DeleteImageStyleExample.py │ │ │ ├── DeleteImageTemplateExample.py │ │ │ ├── DeleteImageTranscodeDetailExample.py │ │ │ ├── DeleteImageTranscodeQueueExample.py │ │ │ ├── DeleteImageUploadFilesExample.py │ │ │ ├── DeleteTemplatesFromBinExample.py │ │ │ ├── DescribeImageVolcCdnAccessLogExample.py │ │ │ ├── DescribeImageXAIRequestCntUsageExample.py │ │ │ ├── DescribeImageXAddOnQPSUsageExample.py │ │ │ ├── DescribeImageXBaseOpUsageExample.py │ │ │ ├── DescribeImageXBillingRequestCntUsageExample.py │ │ │ ├── DescribeImageXBucketRetrievalUsageExample.py │ │ │ ├── DescribeImageXBucketUsageExample.py │ │ │ ├── DescribeImageXCDNTopRequestDataExample.py │ │ │ ├── DescribeImageXCdnDurationAllExample.py │ │ │ ├── DescribeImageXCdnDurationDetailByTimeExample.py │ │ │ ├── DescribeImageXCdnErrorCodeAllExample.py │ │ │ ├── DescribeImageXCdnErrorCodeByTimeExample.py │ │ │ ├── DescribeImageXCdnProtocolRateByTimeExample.py │ │ │ ├── DescribeImageXCdnReuseRateAllExample.py │ │ │ ├── DescribeImageXCdnReuseRateByTimeExample.py │ │ │ ├── DescribeImageXCdnSuccessRateAllExample.py │ │ │ ├── DescribeImageXCdnSuccessRateByTimeExample.py │ │ │ ├── DescribeImageXClientCountByTimeExample.py │ │ │ ├── DescribeImageXClientDecodeDurationByTimeExample.py │ │ │ ├── DescribeImageXClientDecodeSuccessRateByTimeExample.py │ │ │ ├── DescribeImageXClientDemotionRateByTimeExample.py │ │ │ ├── DescribeImageXClientErrorCodeAllExample.py │ │ │ ├── DescribeImageXClientErrorCodeByTimeExample.py │ │ │ ├── DescribeImageXClientFailureRateExample.py │ │ │ ├── DescribeImageXClientFileSizeExample.py │ │ │ ├── DescribeImageXClientLoadDurationAllExample.py │ │ │ ├── DescribeImageXClientLoadDurationExample.py │ │ │ ├── DescribeImageXClientQualityRateByTimeExample.py │ │ │ ├── DescribeImageXClientQueueDurationByTimeExample.py │ │ │ ├── DescribeImageXClientScoreByTimeExample.py │ │ │ ├── DescribeImageXClientSdkVerByTimeExample.py │ │ │ ├── DescribeImageXClientTopDemotionURLExample.py │ │ │ ├── DescribeImageXClientTopFileSizeExample.py │ │ │ ├── DescribeImageXClientTopQualityURLExample.py │ │ │ ├── DescribeImageXCompressUsageExample.py │ │ │ ├── DescribeImageXCubeUsageExample.py │ │ │ ├── DescribeImageXDomainBandwidthDataExample.py │ │ │ ├── DescribeImageXDomainBandwidthNinetyFiveDataExample.py │ │ │ ├── DescribeImageXDomainTrafficDataExample.py │ │ │ ├── DescribeImageXEdgeRequestBandwidthExample.py │ │ │ ├── DescribeImageXEdgeRequestExample.py │ │ │ ├── DescribeImageXEdgeRequestRegionsExample.py │ │ │ ├── DescribeImageXEdgeRequestTrafficExample.py │ │ │ ├── DescribeImageXExceedCountByTimeExample.py │ │ │ ├── DescribeImageXExceedFileSizeExample.py │ │ │ ├── DescribeImageXExceedResolutionRatioAllExample.py │ │ │ ├── DescribeImageXHeifEncodeDurationByTimeExample.py │ │ │ ├── DescribeImageXHeifEncodeErrorCodeByTimeExample.py │ │ │ ├── DescribeImageXHeifEncodeFileInSizeByTimeExample.py │ │ │ ├── DescribeImageXHeifEncodeFileOutSizeByTimeExample.py │ │ │ ├── DescribeImageXHeifEncodeSuccessCountByTimeExample.py │ │ │ ├── DescribeImageXHeifEncodeSuccessRateByTimeExample.py │ │ │ ├── DescribeImageXHitRateRequestDataExample.py │ │ │ ├── DescribeImageXHitRateTrafficDataExample.py │ │ │ ├── DescribeImageXMirrorRequestBandwidthExample.py │ │ │ ├── DescribeImageXMirrorRequestHttpCodeByTimeExample.py │ │ │ ├── DescribeImageXMirrorRequestHttpCodeOverviewExample.py │ │ │ ├── DescribeImageXMirrorRequestTrafficExample.py │ │ │ ├── DescribeImageXMultiCompressUsageExample.py │ │ │ ├── DescribeImageXRequestCntUsageExample.py │ │ │ ├── DescribeImageXScreenshotUsageExample.py │ │ │ ├── DescribeImageXSensibleCacheHitRateByTimeExample.py │ │ │ ├── DescribeImageXSensibleCountByTimeExample.py │ │ │ ├── DescribeImageXSensibleTopRamURLExample.py │ │ │ ├── DescribeImageXSensibleTopResolutionURLExample.py │ │ │ ├── DescribeImageXSensibleTopSizeURLExample.py │ │ │ ├── DescribeImageXSensibleTopUnknownURLExample.py │ │ │ ├── DescribeImageXServerQPSUsageExample.py │ │ │ ├── DescribeImageXServiceQualityExample.py │ │ │ ├── DescribeImageXSourceRequestBandwidthExample.py │ │ │ ├── DescribeImageXSourceRequestExample.py │ │ │ ├── DescribeImageXSourceRequestTrafficExample.py │ │ │ ├── DescribeImageXStorageUsageExample.py │ │ │ ├── DescribeImageXSummaryExample.py │ │ │ ├── DescribeImageXUploadCountByTimeExample.py │ │ │ ├── DescribeImageXUploadDurationExample.py │ │ │ ├── DescribeImageXUploadErrorCodeAllExample.py │ │ │ ├── DescribeImageXUploadErrorCodeByTimeExample.py │ │ │ ├── DescribeImageXUploadFileSizeExample.py │ │ │ ├── DescribeImageXUploadSegmentSpeedByTimeExample.py │ │ │ ├── DescribeImageXUploadSpeedExample.py │ │ │ ├── DescribeImageXUploadSuccessRateByTimeExample.py │ │ │ ├── DescribeImageXVideoClipDurationUsageExample.py │ │ │ ├── DownloadCertExample.py │ │ │ ├── ExportFailedMigrateTaskExample.py │ │ │ ├── FetchImageUrlExample.py │ │ │ ├── GetAiGenerateImageExample.py │ │ │ ├── GetAllCertsExample.py │ │ │ ├── GetAllImageServicesExample.py │ │ │ ├── GetAllImageTemplatesExample.py │ │ │ ├── GetAudioAuditResultExample.py │ │ │ ├── GetAuditEntrysCountExample.py │ │ │ ├── GetBatchProcessResultExample.py │ │ │ ├── GetBatchTaskInfoExample.py │ │ │ ├── GetCVAnimeGenerateImageExample.py │ │ │ ├── GetCVImageGenerateResultExample.py │ │ │ ├── GetCVImageGenerateTaskExample.py │ │ │ ├── GetCVTextGenerateImageExample.py │ │ │ ├── GetCertInfoExample.py │ │ │ ├── GetComprehensiveEnhanceImageExample.py │ │ │ ├── GetCompressTaskInfoExample.py │ │ │ ├── GetDedupTaskStatusExample.py │ │ │ ├── GetDenoisingImageExample.py │ │ │ ├── GetDomainConfigExample.py │ │ │ ├── GetDomainOwnerVerifyContentExample.py │ │ │ ├── GetImageAIDetailsExample.py │ │ │ ├── GetImageAIProcessQueuesExample.py │ │ │ ├── GetImageAITasksExample.py │ │ │ ├── GetImageAddOnTagExample.py │ │ │ ├── GetImageAiGenerateTaskExample.py │ │ │ ├── GetImageAlertRecordsExample.py │ │ │ ├── GetImageAllDomainCertExample.py │ │ │ ├── GetImageAnalyzeResultExample.py │ │ │ ├── GetImageAnalyzeTasksExample.py │ │ │ ├── GetImageAuditResultExample.py │ │ │ ├── GetImageAuditTaskResultExample.py │ │ │ ├── GetImageAuditTasksExample.py │ │ │ ├── GetImageAuthKeyExample.py │ │ │ ├── GetImageBackgroundColorsExample.py │ │ │ ├── GetImageBgFillResultExample.py │ │ │ ├── GetImageComicResultExample.py │ │ │ ├── GetImageContentBlockListExample.py │ │ │ ├── GetImageContentTaskDetailExample.py │ │ │ ├── GetImageDetectResultExample.py │ │ │ ├── GetImageDuplicateDetectionExample.py │ │ │ ├── GetImageElementsExample.py │ │ │ ├── GetImageEnhanceResultExample.py │ │ │ ├── GetImageEraseModelsExample.py │ │ │ ├── GetImageEraseResultExample.py │ │ │ ├── GetImageFontsExample.py │ │ │ ├── GetImageHmExtractTaskInfoExample.py │ │ │ ├── GetImageMigrateTasksExample.py │ │ │ ├── GetImageMonitorRulesExample.py │ │ │ ├── GetImageOCRV2Example.py │ │ │ ├── GetImagePSDetectionExample.py │ │ │ ├── GetImageQualityExample.py │ │ │ ├── GetImageServiceExample.py │ │ │ ├── GetImageServiceSubscriptionExample.py │ │ │ ├── GetImageSettingRuleHistoryExample.py │ │ │ ├── GetImageSettingRulesExample.py │ │ │ ├── GetImageSettingsExample.py │ │ │ ├── GetImageSmartCropResultExample.py │ │ │ ├── GetImageStorageFilesExample.py │ │ │ ├── GetImageStyleDetailExample.py │ │ │ ├── GetImageStyleResultExample.py │ │ │ ├── GetImageStylesExample.py │ │ │ ├── GetImageSuperResolutionResultExample.py │ │ │ ├── GetImageTemplateExample.py │ │ │ ├── GetImageTranscodeDetailsExample.py │ │ │ ├── GetImageTranscodeQueuesExample.py │ │ │ ├── GetImageUpdateFilesExample.py │ │ │ ├── GetImageUploadFileExample.py │ │ │ ├── GetImageUploadFilesExample.py │ │ │ ├── GetImageXQueryAppsExample.py │ │ │ ├── GetImageXQueryDimsExample.py │ │ │ ├── GetImageXQueryRegionsExample.py │ │ │ ├── GetImageXQueryValsExample.py │ │ │ ├── GetLicensePlateDetectionExample.py │ │ │ ├── GetPrivateImageTypeExample.py │ │ │ ├── GetProductAIGCResultExample.py │ │ │ ├── GetResourceURLExample.py │ │ │ ├── GetResponseHeaderValidateKeysExample.py │ │ │ ├── GetSegmentImageExample.py │ │ │ ├── GetServiceDomainsExample.py │ │ │ ├── GetSyncAuditResultExample.py │ │ │ ├── GetTemplatesFromBinExample.py │ │ │ ├── GetUrlFetchTaskExample.py │ │ │ ├── GetVendorBucketsExample.py │ │ │ ├── GetVideoAuditResultExample.py │ │ │ ├── PreviewImageUploadFileExample.py │ │ │ ├── RerunImageMigrateTaskExample.py │ │ │ ├── SetDefaultDomainExample.py │ │ │ ├── SingleImageAuditExample.py │ │ │ ├── TerminateImageMigrateTaskExample.py │ │ │ ├── UpdateAdvanceExample.py │ │ │ ├── UpdateAudioAuditTaskExample.py │ │ │ ├── UpdateAuditImageStatusExample.py │ │ │ ├── UpdateDomainAdaptiveFmtExample.py │ │ │ ├── UpdateFileStorageClassExample.py │ │ │ ├── UpdateHttpsExample.py │ │ │ ├── UpdateImageAIProcessQueueExample.py │ │ │ ├── UpdateImageAIProcessQueueStatusExample.py │ │ │ ├── UpdateImageAnalyzeTaskExample.py │ │ │ ├── UpdateImageAnalyzeTaskStatusExample.py │ │ │ ├── UpdateImageAuditTaskExample.py │ │ │ ├── UpdateImageAuditTaskStatusExample.py │ │ │ ├── UpdateImageAuthKeyExample.py │ │ │ ├── UpdateImageBatchDomainCertExample.py │ │ │ ├── UpdateImageDomainAreaAccessExample.py │ │ │ ├── UpdateImageDomainBandwidthLimitExample.py │ │ │ ├── UpdateImageDomainConfigExample.py │ │ │ ├── UpdateImageDomainDownloadSpeedLimitExample.py │ │ │ ├── UpdateImageDomainIPAuthExample.py │ │ │ ├── UpdateImageDomainUaAccessExample.py │ │ │ ├── UpdateImageDomainVolcOriginExample.py │ │ │ ├── UpdateImageExifDataExample.py │ │ │ ├── UpdateImageFileCTExample.py │ │ │ ├── UpdateImageFileKeyExample.py │ │ │ ├── UpdateImageMirrorConfExample.py │ │ │ ├── UpdateImageMonitorRuleExample.py │ │ │ ├── UpdateImageMonitorRuleStatusExample.py │ │ │ ├── UpdateImageObjectAccessExample.py │ │ │ ├── UpdateImageResourceStatusExample.py │ │ │ ├── UpdateImageSettingRuleExample.py │ │ │ ├── UpdateImageSettingRulePriorityExample.py │ │ │ ├── UpdateImageStorageTTLExample.py │ │ │ ├── UpdateImageStyleExample.py │ │ │ ├── UpdateImageStyleMetaExample.py │ │ │ ├── UpdateImageTaskStrategyExample.py │ │ │ ├── UpdateImageTranscodeQueueExample.py │ │ │ ├── UpdateImageTranscodeQueueStatusExample.py │ │ │ ├── UpdateImageUploadFilesExample.py │ │ │ ├── UpdateImageUploadOverwriteExample.py │ │ │ ├── UpdateReferExample.py │ │ │ ├── UpdateResEventRuleExample.py │ │ │ ├── UpdateResponseHeaderExample.py │ │ │ ├── UpdateServiceNameExample.py │ │ │ ├── UpdateSlimConfigExample.py │ │ │ ├── UpdateStorageRulesExample.py │ │ │ ├── UpdateStorageRulesV2Example.py │ │ │ ├── UpdateVideoAuditTaskExample.py │ │ │ └── VerifyDomainOwnerExample.py │ │ ├── data/ │ │ │ ├── __init__.py │ │ │ ├── bucket_base_op_usage.py │ │ │ ├── bucket_usage.py │ │ │ ├── cdn_top_request_data.py │ │ │ ├── compress_usage.py │ │ │ ├── domain_bandwidth_data.py │ │ │ ├── domain_traffic_data.py │ │ │ ├── edge_request.py │ │ │ ├── edge_request_bandwidth.py │ │ │ ├── edge_request_region.py │ │ │ ├── edge_request_traffic.py │ │ │ ├── hit_rate_request_data.py │ │ │ ├── hit_rate_traffic_data.py │ │ │ ├── imagex_summary.py │ │ │ ├── mirror_request_bandwidth.py │ │ │ ├── mirror_request_http_code_by_time.py │ │ │ ├── mirror_request_http_code_overview.py │ │ │ ├── mirror_request_traffic.py │ │ │ └── request_cnt_usage.py │ │ ├── examle_get_image_erase_models.py │ │ ├── example_common.py │ │ ├── example_create_image_content_task.py │ │ ├── example_delete_image.py │ │ ├── example_describe_imagex_volc_cdn_access_log.py │ │ ├── example_fetch_url.py │ │ ├── example_get_image_bg_fill_result.py │ │ ├── example_get_image_comic_result.py │ │ ├── example_get_image_content_block_list.py │ │ ├── example_get_image_content_task_detail.py │ │ ├── example_get_image_enhance_result.py │ │ ├── example_get_image_erase_result.py │ │ ├── example_get_image_ocr.py │ │ ├── example_get_image_style_result.py │ │ ├── example_get_image_super_resolution_result.py │ │ ├── example_update_storage_ttl.py │ │ ├── example_upload_image.py │ │ ├── example_upload_image_token.py │ │ ├── example_upload_sts2.py │ │ └── example_vpc_upload_image.py │ ├── imp/ │ │ ├── KillJob.py │ │ ├── RetrieveJob.py │ │ ├── SubmitJob.py │ │ ├── SubmitJobByJob.py │ │ └── __init__.py │ ├── live/ │ │ ├── __init__.py │ │ ├── example_audit/ │ │ │ ├── __init__.py │ │ │ ├── example_create_snapshot_audit_preset.py │ │ │ ├── example_delete_snapshot_audit_preset.py │ │ │ ├── example_list_vhost_snapshot_audit_preset.py │ │ │ └── example_update_snapshot_audit_preset.py │ │ ├── example_auth/ │ │ │ ├── __init__.py │ │ │ ├── example_describe_auth.py │ │ │ └── example_update_auth_key.py │ │ ├── example_callback/ │ │ │ ├── __init__.py │ │ │ ├── example_delete_callback.py │ │ │ ├── example_describe_callback.py │ │ │ └── example_update_callback.py │ │ ├── example_cert/ │ │ │ ├── __init__.py │ │ │ ├── example_bind_cert.py │ │ │ ├── example_create_cert.py │ │ │ ├── example_delete_cert.py │ │ │ ├── example_list_cert.py │ │ │ ├── example_un_bind_cert.py │ │ │ └── example_update_cert.py │ │ ├── example_deny_config/ │ │ │ ├── example_describe_deny_config.py │ │ │ └── example_update_deny_config.py │ │ ├── example_describe_info/ │ │ │ ├── __init__.py │ │ │ └── example_describe_info.py │ │ ├── example_domain/ │ │ │ ├── __init__.py │ │ │ ├── example_create_domain.py │ │ │ ├── example_delete_domain.py │ │ │ ├── example_describe_domain.py │ │ │ ├── example_disable_domain.py │ │ │ ├── example_enable_domain.py │ │ │ ├── example_list_domain_detail.py │ │ │ └── example_manager_pull_push_domain_bind.py │ │ ├── example_generate_url/ │ │ │ ├── __init__.py │ │ │ ├── example_generate_play_u_r_l.py │ │ │ └── example_generate_push_u_r_l.py │ │ ├── example_index_m3u8/ │ │ │ ├── __init__.py │ │ │ └── example_create_live_stream_record_index_file.py │ │ ├── example_pull_to_push/ │ │ │ ├── __init__.py │ │ │ ├── example_create_pull_to_push_task.py │ │ │ ├── example_delete_pull_to_push_task.py │ │ │ ├── example_list_pull_to_push_task.py │ │ │ ├── example_restart_pull_to_push_task.py │ │ │ ├── example_stop_pull_to_push_task.py │ │ │ └── example_update_pull_to_push_task.py │ │ ├── example_record/ │ │ │ ├── __init__.py │ │ │ ├── example_create_record_preset.py │ │ │ ├── example_delete_record_preset.py │ │ │ ├── example_describe_record_task_file_history.py │ │ │ ├── example_list_vhost_record_preset.py │ │ │ └── example_update_record_preset.py │ │ ├── example_referer/ │ │ │ ├── __init__.py │ │ │ ├── example_delete_referer.py │ │ │ ├── example_describe_referer.py │ │ │ └── example_update_referer.py │ │ ├── example_relay_source/ │ │ │ ├── __init__.py │ │ │ ├── example_delete_relay_source_v2.py │ │ │ ├── example_describe_relay_source_v2.py │ │ │ └── example_update_relay_source_v2.py │ │ ├── example_snapshot/ │ │ │ ├── __init__.py │ │ │ ├── example_create_snapshot_preset.py │ │ │ ├── example_delete_snapshot_preset.py │ │ │ ├── example_describe_c_d_n_snapshot_history.py │ │ │ ├── example_list_vhost_snapshot_preset.py │ │ │ └── example_update_snapshot_preset.py │ │ ├── example_stream/ │ │ │ ├── __init__.py │ │ │ ├── example_describe_closed_stream_info_by_page.py │ │ │ ├── example_describe_forbidden_stream_info_by_page.py │ │ │ ├── example_describe_live_stream_info_by_page.py │ │ │ ├── example_describe_live_stream_state.py │ │ │ ├── example_forbid_stream.py │ │ │ ├── example_kill_stream.py │ │ │ └── example_resume_stream.py │ │ ├── example_transcode/ │ │ │ ├── __init__.py │ │ │ ├── example_create_transcode_preset.py │ │ │ ├── example_delete_transcode_preset.py │ │ │ ├── example_list_common_trans_preset_detail.py │ │ │ ├── example_list_vhost_transcode_preset.py │ │ │ └── example_update_transcode_preset.py │ │ ├── example_usage/ │ │ │ ├── __init__.py │ │ │ ├── describe_live_batch_push_stream_metrics.py │ │ │ └── describe_live_batch_source_stream_metrics.py │ │ ├── example_vqs_task/ │ │ │ ├── __init__.py │ │ │ ├── example_create_v_q_score_task.py │ │ │ ├── example_describe_v_q_score_task.py │ │ │ └── example_list_v_q_score_task.py │ │ └── v20230101/ │ │ ├── BindCertExample.py │ │ ├── BindEncryptDRMExample.py │ │ ├── ContinuePullToPushTaskExample.py │ │ ├── CreateCarouselTaskExample.py │ │ ├── CreateCertExample.py │ │ ├── CreateCloudMixTaskExample.py │ │ ├── CreateDomainExample.py │ │ ├── CreateDomainV2Example.py │ │ ├── CreateHighLightTaskExample.py │ │ ├── CreateLivePadPresetExample.py │ │ ├── CreateLiveStreamRecordIndexFilesExample.py │ │ ├── CreateLiveVideoQualityAnalysisTaskExample.py │ │ ├── CreatePullRecordTaskExample.py │ │ ├── CreatePullToPushGroupExample.py │ │ ├── CreatePullToPushTaskExample.py │ │ ├── CreateRecordPresetV2Example.py │ │ ├── CreateRelaySourceV4Example.py │ │ ├── CreateSnapshotAuditPresetExample.py │ │ ├── CreateSnapshotPresetV2Example.py │ │ ├── CreateSpeechTaskExample.py │ │ ├── CreateSubtitleTranscodePresetExample.py │ │ ├── CreateTimeShiftPresetV3Example.py │ │ ├── CreateTranscodePresetExample.py │ │ ├── CreateWatermarkPresetExample.py │ │ ├── CreateWatermarkPresetV2Example.py │ │ ├── DeleteCallbackExample.py │ │ ├── DeleteCarouselTaskExample.py │ │ ├── DeleteCertExample.py │ │ ├── DeleteCloudMixTaskExample.py │ │ ├── DeleteDomainExample.py │ │ ├── DeleteHTTPHeaderConfigExample.py │ │ ├── DeleteIPAccessRuleExample.py │ │ ├── DeleteLivePadPresetExample.py │ │ ├── DeleteLiveVideoQualityAnalysisTaskExample.py │ │ ├── DeletePullToPushGroupExample.py │ │ ├── DeletePullToPushTaskExample.py │ │ ├── DeleteRecordPresetExample.py │ │ ├── DeleteRefererExample.py │ │ ├── DeleteRelaySourceV3Example.py │ │ ├── DeleteRelaySourceV4Example.py │ │ ├── DeleteSnapshotAuditPresetExample.py │ │ ├── DeleteSnapshotPresetExample.py │ │ ├── DeleteSpeechTaskExample.py │ │ ├── DeleteStreamQuotaConfigExample.py │ │ ├── DeleteSubtitleTranscodePresetExample.py │ │ ├── DeleteTaskByAccountIDExample.py │ │ ├── DeleteTimeShiftPresetV3Example.py │ │ ├── DeleteTranscodePresetExample.py │ │ ├── DeleteWatermarkPresetExample.py │ │ ├── DeleteWatermarkPresetV2Example.py │ │ ├── DescribeAuthExample.py │ │ ├── DescribeCDNSnapshotHistoryExample.py │ │ ├── DescribeCallbackExample.py │ │ ├── DescribeCertDRMExample.py │ │ ├── DescribeCertDetailSecretV2Example.py │ │ ├── DescribeClosedStreamInfoByPageExample.py │ │ ├── DescribeDomainExample.py │ │ ├── DescribeEncryptDRMExample.py │ │ ├── DescribeEncryptHLSExample.py │ │ ├── DescribeForbiddenStreamGroupByPageExample.py │ │ ├── DescribeForbiddenStreamInfoByPageExample.py │ │ ├── DescribeHTTPHeaderConfigExample.py │ │ ├── DescribeHighLightTaskByAccountIDExample.py │ │ ├── DescribeIPAccessRuleExample.py │ │ ├── DescribeIpInfoExample.py │ │ ├── DescribeLicenseDRMExample.py │ │ ├── DescribeLiveAuditDataExample.py │ │ ├── DescribeLiveBandwidthDataExample.py │ │ ├── DescribeLiveBatchPushStreamAvgMetricsExample.py │ │ ├── DescribeLiveBatchPushStreamMetricsExample.py │ │ ├── DescribeLiveBatchSourceStreamAvgMetricsExample.py │ │ ├── DescribeLiveBatchSourceStreamMetricsExample.py │ │ ├── DescribeLiveBatchStreamSessionDataExample.py │ │ ├── DescribeLiveBatchStreamTrafficDataExample.py │ │ ├── DescribeLiveBatchStreamTranscodeDataExample.py │ │ ├── DescribeLiveCallbackDataExample.py │ │ ├── DescribeLiveEdgeStatDataExample.py │ │ ├── DescribeLiveISPDataExample.py │ │ ├── DescribeLiveLogDataExample.py │ │ ├── DescribeLiveMetricBandwidthDataExample.py │ │ ├── DescribeLiveMetricTrafficDataExample.py │ │ ├── DescribeLiveP95PeakBandwidthDataExample.py │ │ ├── DescribeLivePadPresetDetailExample.py │ │ ├── DescribeLivePadStreamListExample.py │ │ ├── DescribeLivePlayStatusCodeDataExample.py │ │ ├── DescribeLivePullToPushBandwidthDataExample.py │ │ ├── DescribeLivePullToPushDataExample.py │ │ ├── DescribeLivePushStreamCountDataExample.py │ │ ├── DescribeLivePushStreamInfoDataExample.py │ │ ├── DescribeLivePushStreamMetricsExample.py │ │ ├── DescribeLiveRecordDataExample.py │ │ ├── DescribeLiveRegionDataExample.py │ │ ├── DescribeLiveSnapshotDataExample.py │ │ ├── DescribeLiveSourceBandwidthDataExample.py │ │ ├── DescribeLiveSourceStreamMetricsExample.py │ │ ├── DescribeLiveSourceTrafficDataExample.py │ │ ├── DescribeLiveStreamCountDataExample.py │ │ ├── DescribeLiveStreamGroupByPageExample.py │ │ ├── DescribeLiveStreamInfoByPageExample.py │ │ ├── DescribeLiveStreamSessionDataExample.py │ │ ├── DescribeLiveStreamStateExample.py │ │ ├── DescribeLiveTimeShiftDataExample.py │ │ ├── DescribeLiveTopPlayDataExample.py │ │ ├── DescribeLiveTrafficDataExample.py │ │ ├── DescribeLiveTranscodeDataExample.py │ │ ├── DescribeLiveTranscodeInfoDataExample.py │ │ ├── DescribeRecordTaskFileHistoryExample.py │ │ ├── DescribeRefererExample.py │ │ ├── DescribeRelaySourceV3Example.py │ │ ├── DescribeStreamQuotaConfigExample.py │ │ ├── DisableDomainExample.py │ │ ├── EnableDomainExample.py │ │ ├── EnableHTTPHeaderConfigExample.py │ │ ├── ForbidStreamExample.py │ │ ├── GeneratePlayURLExample.py │ │ ├── GeneratePushURLExample.py │ │ ├── GetCarouselDetailExample.py │ │ ├── GetCloudMixTaskDetailExample.py │ │ ├── GetHLSEncryptDataKeyExample.py │ │ ├── GetLiveVideoQualityAnalysisTaskDetailExample.py │ │ ├── GetPullRecordTaskExample.py │ │ ├── GetSpeechConfigExample.py │ │ ├── GetSpeechTaskExample.py │ │ ├── KillStreamExample.py │ │ ├── ListBindEncryptDRMExample.py │ │ ├── ListCarouselTaskExample.py │ │ ├── ListCertV2Example.py │ │ ├── ListCloudMixTaskExample.py │ │ ├── ListCommonTransPresetDetailExample.py │ │ ├── ListDomainDetailExample.py │ │ ├── ListHighLightTaskExample.py │ │ ├── ListLiveVideoQualityAnalysisTasksExample.py │ │ ├── ListPullRecordTaskExample.py │ │ ├── ListPullToPushGroupExample.py │ │ ├── ListPullToPushTaskExample.py │ │ ├── ListPullToPushTaskV2Example.py │ │ ├── ListRelaySourceV4Example.py │ │ ├── ListTimeShiftPresetV2Example.py │ │ ├── ListVhostRecordPresetV2Example.py │ │ ├── ListVhostSnapshotAuditPresetExample.py │ │ ├── ListVhostSnapshotPresetV2Example.py │ │ ├── ListVhostSubtitleTranscodePresetExample.py │ │ ├── ListVhostTransCodePresetExample.py │ │ ├── ListVhostWatermarkPresetExample.py │ │ ├── ListWatermarkPresetDetailExample.py │ │ ├── ListWatermarkPresetExample.py │ │ ├── RelaunchPullToPushTaskExample.py │ │ ├── RestartSpeechTaskExample.py │ │ ├── RestartTranscodingJobExample.py │ │ ├── ResumeStreamExample.py │ │ ├── SearchSpeechTaskExample.py │ │ ├── StopLivePadStreamExample.py │ │ ├── StopPullRecordTaskExample.py │ │ ├── StopPullToPushTaskExample.py │ │ ├── TranscodingJobStatusExample.py │ │ ├── UnBindEncryptDRMExample.py │ │ ├── UnbindCertExample.py │ │ ├── UpdateAuthKeyExample.py │ │ ├── UpdateCallbackExample.py │ │ ├── UpdateCarouselTaskExample.py │ │ ├── UpdateCloudMixTaskExample.py │ │ ├── UpdateDomainVhostExample.py │ │ ├── UpdateEncryptDRMExample.py │ │ ├── UpdateEncryptHLSExample.py │ │ ├── UpdateHTTPHeaderConfigExample.py │ │ ├── UpdateIPAccessRuleExample.py │ │ ├── UpdateLivePadPresetExample.py │ │ ├── UpdatePullToPushGroupExample.py │ │ ├── UpdatePullToPushTaskExample.py │ │ ├── UpdateRecordPresetV2Example.py │ │ ├── UpdateRefererExample.py │ │ ├── UpdateRelaySourceV3Example.py │ │ ├── UpdateRelaySourceV4Example.py │ │ ├── UpdateSnapshotAuditPresetExample.py │ │ ├── UpdateSnapshotPresetV2Example.py │ │ ├── UpdateSpeechTaskExample.py │ │ ├── UpdateStreamQuotaConfigExample.py │ │ ├── UpdateSubtitleTranscodePresetExample.py │ │ ├── UpdateTimeShiftPresetV3Example.py │ │ ├── UpdateTranscodePresetExample.py │ │ ├── UpdateWatermarkPresetExample.py │ │ └── UpdateWatermarkPresetV2Example.py │ ├── livesaas/ │ │ ├── __init__.py │ │ ├── example_client_sdk/ │ │ │ ├── __init__.py │ │ │ └── example_get_sdk_token_api.py │ │ ├── example_comment/ │ │ │ ├── __init__.py │ │ │ ├── example_delete_chat_api.py │ │ │ └── example_presenter_chat_api.py │ │ ├── example_live_admin/ │ │ │ ├── __init__.py │ │ │ ├── example_create_activity_api.py │ │ │ ├── example_delete_activity_api.py │ │ │ └── example_list_activity_api.py │ │ ├── example_live_control/ │ │ │ ├── __init__.py │ │ │ ├── example_get_activity_api.py │ │ │ ├── example_get_activity_basic_config_api.py │ │ │ ├── example_get_streams_api.py │ │ │ ├── example_update_activity_basic_config_api.py │ │ │ ├── example_update_activity_status_api.py │ │ │ ├── example_update_loop_video_api.py │ │ │ ├── example_update_loop_video_status_api.py │ │ │ └── example_update_pull_to_push_api.py │ │ └── example_replay_admin/ │ │ ├── __init__.py │ │ ├── example_list_medias_api.py │ │ ├── example_update_media_online_status_api.py │ │ └── example_upload_replay_api.py │ ├── maas/ │ │ ├── __init__.py │ │ ├── example_chat.py │ │ ├── example_classification.py │ │ ├── example_embeddings.py │ │ ├── example_function_call.py │ │ ├── example_plugin.py │ │ ├── example_tokenize.py │ │ ├── text_privatization/ │ │ │ └── example_text_privatization.py │ │ └── v2/ │ │ ├── __init__.py │ │ ├── audio/ │ │ │ ├── __init__.py │ │ │ └── example_speech.py │ │ ├── example_chat_v2.py │ │ ├── example_chat_with_apikey_v2.py │ │ ├── example_classification_v2.py │ │ ├── example_embeddings_v2.py │ │ ├── example_tokenize_v2.py │ │ └── image/ │ │ ├── __init__.py │ │ ├── example_images_flex_gen.py │ │ └── example_images_quick_gen.py │ ├── nlp/ │ │ ├── __init__.py │ │ ├── example_essay_auto_grade.py │ │ ├── example_keyphrase_extraction_extract.py │ │ ├── example_novel_correction.py │ │ ├── example_sentiment_analysis.py │ │ ├── example_text_correction_en_correct.py │ │ ├── example_text_correction_zh_correct.py │ │ └── example_text_summarization.py │ ├── rdspostgresql/ │ │ ├── __init__.py │ │ └── example_create_instance.py │ ├── rtc/ │ │ ├── RtcService.py │ │ ├── __init__.py │ │ ├── example_get_record_task.py │ │ ├── example_start_record.py │ │ └── example_stop_reocrd.py │ ├── sms/ │ │ ├── __init__.py │ │ ├── example_apply_signature_ident.py │ │ ├── example_apply_sms_signature.py │ │ ├── example_apply_sms_signature_v2.py │ │ ├── example_apply_sms_template.py │ │ ├── example_apply_vms_template.py │ │ ├── example_batch_bind_signature_ident.py │ │ ├── example_conversion.py │ │ ├── example_delete_signature.py │ │ ├── example_delete_sms_template.py │ │ ├── example_get_signature_and_order_list.py │ │ ├── example_get_signature_ident_list.py │ │ ├── example_get_sms_send_details.py │ │ ├── example_get_sms_template_and_order_list.py │ │ ├── example_get_sub_account_detail.py │ │ ├── example_get_sub_account_list.py │ │ ├── example_insert_sms_sub_account.py │ │ ├── example_send_batch_sms.py │ │ ├── example_send_sms.py │ │ ├── example_send_vms.py │ │ ├── example_update_sms_signature.py │ │ └── example_vms_template_query.py │ ├── sts/ │ │ ├── __init__.py │ │ └── example_assume_role.py │ ├── tls/ │ │ ├── __init__.py │ │ ├── example_alarm.py │ │ ├── example_consumer.py │ │ ├── example_consumer_group.py │ │ ├── example_describe_trace_instance.py │ │ ├── example_embedded_console.py │ │ ├── example_etl.py │ │ ├── example_host_group.py │ │ ├── example_import_task.py │ │ ├── example_index.py │ │ ├── example_log.py │ │ ├── example_producer.py │ │ ├── example_project.py │ │ ├── example_rule.py │ │ ├── example_schedule_sql_task.py │ │ ├── example_shipper.py │ │ ├── example_tag.py │ │ └── example_topic.py │ ├── vedit/ │ │ ├── __init__.py │ │ └── example_edit.py │ ├── veen/ │ │ ├── __init__.py │ │ ├── attach_ebs.py │ │ ├── batch_reset_system.py │ │ ├── create_cloudserver.py │ │ ├── create_ebs_instances.py │ │ ├── create_instance.py │ │ ├── delete_cloudserver.py │ │ ├── delete_ebs_instance.py │ │ ├── detach_ebs.py │ │ ├── get_cloudserver.py │ │ ├── get_ebs_instance.py │ │ ├── get_instance.py │ │ ├── get_instance_cloud_disk_info.py │ │ ├── list_available_resource_info.py │ │ ├── list_cloudservers.py │ │ ├── list_ebs_instances.py │ │ ├── list_instance_types.py │ │ ├── list_instances.py │ │ ├── offline_instances.py │ │ ├── reboot_cloudserver.py │ │ ├── reboot_instances.py │ │ ├── reset_login_credential.py │ │ ├── scale_ebs_instance_capacity.py │ │ ├── scale_instance_cloud_disk_capacity.py │ │ ├── set_instance_name.py │ │ ├── start_cloudserver.py │ │ ├── start_instances.py │ │ ├── stop_cloudserver.py │ │ └── stop_instances.py │ ├── verender/ │ │ ├── add_render_setting_demo.py │ │ ├── auto_full_speed_render_jobs_demo.py │ │ ├── create_render_setting_demo.py │ │ ├── delete_render_jobs_demo.py │ │ ├── delete_render_setting_demo.py │ │ ├── download_file_demo.py │ │ ├── full_speed_render_jobs_demo.py │ │ ├── get_current_user_demo.py │ │ ├── get_job_output_demo.py │ │ ├── get_render_job_demo.py │ │ ├── get_render_setting_demo.py │ │ ├── list_account_dcc_plugins_demo.py │ │ ├── list_cell_spec_demo.py │ │ ├── list_dcc_demo.py │ │ ├── list_file_demo.py │ │ ├── list_job_output_demo.py │ │ ├── list_render_job_demo.py │ │ ├── list_render_setting_demo.py │ │ ├── list_workspace_demo.py │ │ ├── remove_file_demo.py │ │ ├── resume_render_jobs_demo.py │ │ ├── retry_render_job_demo.py │ │ ├── stat_file_demo.py │ │ ├── stop_render_jobs_demo.py │ │ ├── update_job_output_demo.py │ │ ├── update_render_jobs_priority_demo.py │ │ ├── update_render_setting_dem.py │ │ ├── upload_file_demo.py │ │ ├── upload_folder_demo.py │ │ └── verender_init.py │ ├── viking_db/ │ │ ├── __init__.py │ │ ├── collection_create.py │ │ ├── collection_create_with_vectorize.py │ │ ├── collection_drop.py │ │ ├── collection_get.py │ │ ├── collection_list.py │ │ ├── data_fetch_by_collection.py │ │ ├── data_fetch_by_index.py │ │ ├── data_upsert.py │ │ ├── example.py │ │ ├── index_create.py │ │ ├── index_drop.py │ │ ├── index_sort.py │ │ ├── search_agg.py │ │ ├── search_post_process_ops.py │ │ ├── search_primary_key_filter.py │ │ ├── search_with_multi_modal.py │ │ └── utils.py │ ├── viking_knowledgebase/ │ │ ├── __init__.py │ │ └── example.py │ ├── visual/ │ │ ├── __init__.py │ │ ├── cv_common.py │ │ ├── cv_get_result.py │ │ ├── cv_process.py │ │ ├── cv_submit_task.py │ │ ├── cv_sync2async_get_result.py │ │ ├── cv_sync2async_submit_task.py │ │ ├── example_ai_gufeng.py │ │ ├── example_all_age_generation.py │ │ ├── example_body_detection.py │ │ ├── example_car_detection.py │ │ ├── example_car_plate_detection.py │ │ ├── example_car_segment.py │ │ ├── example_cert_auth.py │ │ ├── example_cert_config_get.py │ │ ├── example_cert_config_init.py │ │ ├── example_cert_h5_config_init.py │ │ ├── example_cert_h5_token.py │ │ ├── example_cert_pro_liveness_verify_query.py │ │ ├── example_cert_src_face_comp.py │ │ ├── example_cert_token.py │ │ ├── example_cert_verify.py │ │ ├── example_cert_verify1.py │ │ ├── example_cert_verify_query.py │ │ ├── example_common.py │ │ ├── example_convert_photo_v2.py │ │ ├── example_cv_cancel_task.py │ │ ├── example_distortion_free.py │ │ ├── example_dolly_zoom.py │ │ ├── example_emoticon_edit.py │ │ ├── example_emotion_portrait.py │ │ ├── example_enhance_photo_v2.py │ │ ├── example_entity_detect.py │ │ ├── example_entity_segment.py │ │ ├── example_eye_close2open.py │ │ ├── example_face_compare.py │ │ ├── example_face_fusion_movie.py │ │ ├── example_face_fusion_movie_get_result.py │ │ ├── example_face_fusion_movie_submit_task.py │ │ ├── example_face_pretty.py │ │ ├── example_face_swap.py │ │ ├── example_face_swap_v2.py │ │ ├── example_faceswap_ai.py │ │ ├── example_general_segment.py │ │ ├── example_goods_detect.py │ │ ├── example_goods_segment.py │ │ ├── example_hair_segment.py │ │ ├── example_hair_style.py │ │ ├── example_hair_style_v2.py │ │ ├── example_high_aes_smart_drawing.py │ │ ├── example_high_aes_smart_drawing_v2.py │ │ ├── example_human_segment.py │ │ ├── example_image_animation.py │ │ ├── example_image_correction.py │ │ ├── example_image_cut.py │ │ ├── example_image_flow.py │ │ ├── example_image_inpaint.py │ │ ├── example_image_outpaint.py │ │ ├── example_image_score_v2.py │ │ ├── example_image_search_image_add.py │ │ ├── example_image_search_image_delete.py │ │ ├── example_image_search_image_search.py │ │ ├── example_image_style_conversion.py │ │ ├── example_img2img_anime.py │ │ ├── example_img2img_anime_accelerated_maintain_id.py │ │ ├── example_img2img_comics_style.py │ │ ├── example_img2img_create_aes_blueline.py │ │ ├── example_img2img_create_anylora_makoto.py │ │ ├── example_img2img_create_disney_style_no_face.py │ │ ├── example_img2img_create_ether_real_mix.py │ │ ├── example_img2img_create_ink_and_water.py │ │ ├── example_img2img_create_pastel_boys2d.py │ │ ├── example_img2img_create_rev_animated.py │ │ ├── example_img2img_create_toonyou.py │ │ ├── example_img2img_exquisite_style.py │ │ ├── example_img2img_inpainting.py │ │ ├── example_img2img_inpainting_edit.py │ │ ├── example_img2img_outpainting.py │ │ ├── example_img2img_style.py │ │ ├── example_img2img_water_color_style.py │ │ ├── example_img2img_xl_sft.py │ │ ├── example_img2video3d.py │ │ ├── example_jpcartoon.py │ │ ├── example_ocr_async_demo.py │ │ ├── example_ocr_demo.py │ │ ├── example_ocr_pdf_query_task.py │ │ ├── example_ocr_pdf_submit_task.py │ │ ├── example_over_resolution.py │ │ ├── example_over_resolution_v2.py │ │ ├── example_poem_material.py │ │ ├── example_potrait_effect.py │ │ ├── example_product_search_add_image.py │ │ ├── example_product_search_delete_image.py │ │ ├── example_product_search_search_image.py │ │ ├── example_sky_segment.py │ │ ├── example_still_liveness_img.py │ │ ├── example_stretch_recovery.py │ │ ├── example_t2i_ldm.py │ │ ├── example_text2img_xl_sft.py │ │ ├── example_three_d_game_cartoon.py │ │ ├── example_tupo_cartoon.py │ │ ├── example_video_cover_selection.py │ │ ├── example_video_highlight_extraction_query_task.py │ │ ├── example_video_highlight_extraction_submit_task.py │ │ ├── example_video_inpaint_query_task.py │ │ ├── example_video_inpaint_submit_task.py │ │ ├── example_video_over_resolution_get_result_v2.py │ │ ├── example_video_over_resolution_query_task.py │ │ ├── example_video_over_resolution_submit_task.py │ │ ├── example_video_over_resolution_submit_task_v2.py │ │ ├── example_video_retargeting_query_task.py │ │ ├── example_video_retargeting_submit_task.py │ │ ├── example_video_scene_detect.py │ │ ├── example_video_summarization_query_task.py │ │ └── example_video_summarization_submit_task.py │ ├── vms/ │ │ ├── __init__.py │ │ ├── examplae_sigle_batch_append.py │ │ ├── example_batch_append_task.py │ │ ├── example_bind_axb.py │ │ ├── example_bind_axb_for_axne.py │ │ ├── example_bind_axg.py │ │ ├── example_bind_axn.py │ │ ├── example_bind_axne.py │ │ ├── example_bind_axyb.py │ │ ├── example_bind_yb_for_axyb.py │ │ ├── example_click2_call.py │ │ ├── example_click2_call_lite.py │ │ ├── example_commit_resource_upload.py │ │ ├── example_create_number_pool.py │ │ ├── example_create_task.py │ │ ├── example_create_tts.py │ │ ├── example_delete_resource.py │ │ ├── example_enable_or_disable_number.py │ │ ├── example_fetch_resource.py │ │ ├── example_get_reource_upload_url.py │ │ ├── example_number_list.py │ │ ├── example_number_pool_list.py │ │ ├── example_open_update_resource.py │ │ ├── example_pause_task.py │ │ ├── example_query_can_call.py │ │ ├── example_query_open_get_resource.py │ │ ├── example_query_subscription.py │ │ ├── example_query_subscription_for_list.py │ │ ├── example_query_usable_resource.py │ │ ├── example_remuse_task.py │ │ ├── example_select_number.py │ │ ├── example_select_number_and_bind_axb_form.py │ │ ├── example_select_number_and_bind_axn.py │ │ ├── example_single_cancle.py │ │ ├── example_single_info.py │ │ ├── example_stop_task.py │ │ ├── example_unbind_axb.py │ │ ├── example_unbind_axn.py │ │ ├── example_unbind_axne.py │ │ ├── example_unbind_axyb.py │ │ ├── example_update_axb.py │ │ ├── example_update_axn.py │ │ ├── example_update_axne.py │ │ ├── example_update_axyb.py │ │ ├── example_update_number_pool.py │ │ ├── example_update_task.py │ │ └── example_upgrade_ax_to_axb.py │ └── vod/ │ ├── __init__.py │ ├── callback/ │ │ ├── AddCallbackSubscriptionExample.py │ │ ├── SetCallbackEvent.py │ │ └── __init__.py │ ├── cdn/ │ │ ├── AddOrUpdateCertificate.py │ │ ├── CreateCdnPreloadTaskExample.py │ │ ├── CreateCdnRefreshTaskExample.py │ │ ├── CreateDomainExample.py │ │ ├── DescribeCdnIpExample.py │ │ ├── DescribeDomainConfigExample.py │ │ ├── DescribeDomainVerifyContentExample.py │ │ ├── DescribeVodDomainBandwidthDataExample.py │ │ ├── DescribeVodDomainTrafficDataExample.py │ │ ├── ListCdnAccessLogExample.py │ │ ├── ListCdnPvDataExample.py │ │ ├── ListCdnStatusDataExample.py │ │ ├── ListCdnTasksExample.py │ │ ├── ListCdnTopAccessExample.py │ │ ├── ListCdnTopAccessUrlExample.py │ │ ├── ListCdnUsageDataExample.py │ │ ├── ListDomainExample.py │ │ ├── UpdateDomainAuthConfigExample.py │ │ ├── UpdateDomainConfigExample.py │ │ ├── UpdateDomainExpireExample.py │ │ ├── UpdateDomainUrlAuthConfigExample.py │ │ ├── VerifyDomainOwnerExample.py │ │ └── __init__.py │ ├── measure/ │ │ ├── DescribeVodEnhanceImageData.py │ │ ├── DescribeVodMostPlayedStatisData.py │ │ ├── DescribeVodPlayedStatisData.py │ │ ├── DescribeVodRealtimeMediaData.py │ │ ├── DescribeVodRealtimeMediaDetailData.py │ │ ├── DescribeVodSnapshotData.py │ │ ├── DescribeVodSpaceAIStatisData.py │ │ ├── DescribeVodSpaceDetectStatisData.py │ │ ├── DescribeVodSpaceEditDetailData.py │ │ ├── DescribeVodSpaceEditStatisData.py │ │ ├── DescribeVodSpaceSubtitleStatisData.py │ │ ├── DescribeVodSpaceTranscodeData.py │ │ ├── DescribeVodSpaceWorkflowDetailData.py │ │ ├── DescribeVodVidTrafficFileLogExample.py │ │ └── __init__.py │ ├── media/ │ │ ├── DeleteMaterial.py │ │ ├── DeleteMediaTosFile.py │ │ ├── GetAdAuditResultByVidExample.py │ │ ├── GetFileInfos.py │ │ ├── GetInnerAuditURLsExample.py │ │ ├── GetSubtitleAuthToken.py │ │ ├── GetSubtitleToken.py │ │ ├── ListBlockObjectTasks.py │ │ ├── ListFileMetaInfosByFileNames.py │ │ ├── MediaExample.py │ │ ├── SubmitBlockObjectTasks.py │ │ └── __init__.py │ ├── play/ │ │ ├── CreateHlsDecryptionKeyExample.py │ │ ├── GetAllPlayInfoExample.py │ │ ├── GetHlsDrmAuthTokenExample.py │ │ ├── GetPlayAuthTokenExample.py │ │ ├── GetPlayInfoExample.py │ │ ├── GetPlayInfoWithLiveTimeShiftSceneExample.py │ │ ├── GetPrivateDrmPlayAuthExample.py │ │ ├── GetPrivateDrmPlayAuthTokenExample.py │ │ └── __init__.py │ ├── space/ │ │ ├── CreateSpaceExample.py │ │ ├── DescribeUploadSpaceConfigExample.py │ │ ├── DescribeVodSpaceStorageDataExample.py │ │ ├── ListSpaceExample.py │ │ ├── UpdateSpaceExample.py │ │ ├── UpdateSpaceUploadConfigExample.py │ │ ├── UpdateUploadSpaceConfigExample.py │ │ └── __init__.py │ ├── subtitle/ │ │ ├── SubtitleExample.py │ │ └── __init__.py │ ├── upload/ │ │ ├── ApplyUploadInfoExample.py │ │ ├── CommitUploadInfoExample.py │ │ ├── QueryUploadTaskInfo.py │ │ ├── UploadMaterial.py │ │ ├── UploadMedia.py │ │ ├── UploadMediaHLS.py │ │ ├── UploadSts2.py │ │ ├── UploadUrl.py │ │ └── __init__.py │ ├── vedit/ │ │ ├── AsyncVCreativeTaskExample.py │ │ ├── CancelDirectEditTask.py │ │ ├── GetDirectEditProgress.py │ │ ├── GetDirectEditResult.py │ │ ├── GetVCreativeTaskResultExample.py │ │ ├── SubmitDirectEditTaskAsync.py │ │ ├── SubmitDirectEditTaskSync.py │ │ └── __init__.py │ └── workflow/ │ ├── GetWorkflowExecutionExample.py │ ├── GetWorkflowExecutionResultExample.py │ ├── RetrieveTranscodeResultExample.py │ ├── WorkflowExample.py │ └── __init__.py ├── game_protect/ │ ├── GameProtectService.py │ └── __init__.py ├── iam/ │ ├── IamService.py │ └── __init__.py ├── image_registry/ │ ├── ImageRegistryService.py │ └── __init__.py ├── imagex/ │ ├── ImageXConfig.py │ ├── ImageXService.py │ ├── __init__.py │ └── v2/ │ ├── __init__.py │ ├── const.py │ ├── helper/ │ │ ├── __init__.py │ │ └── file_section_reader.py │ ├── imagex_config.py │ ├── imagex_service.py │ ├── imagex_trait.py │ └── upload.py ├── imp/ │ ├── ImpService.py │ ├── ImpServiceConfig.py │ ├── __init__.py │ └── models/ │ ├── __init__.py │ ├── base/ │ │ ├── __init__.py │ │ └── base_pb2.py │ ├── business/ │ │ ├── __init__.py │ │ └── imp_common_pb2.py │ ├── request/ │ │ ├── __init__.py │ │ └── request_imp_pb2.py │ └── response/ │ ├── __init__.py │ └── response_imp_pb2.py ├── live/ │ ├── LiveService.py │ ├── __init__.py │ ├── models/ │ │ ├── __init__.py │ │ ├── business/ │ │ │ ├── VQScore_pb2.py │ │ │ ├── __init__.py │ │ │ ├── addr_pb2.py │ │ │ ├── deny_config_pb2.py │ │ │ ├── domain_pb2.py │ │ │ ├── index_m3u8_pb2.py │ │ │ ├── pull_to_push_pb2.py │ │ │ ├── record_manage_pb2.py │ │ │ ├── relay_source_pb2.py │ │ │ ├── snapshot_manage_pb2.py │ │ │ └── stream_manage_pb2.py │ │ ├── request/ │ │ │ ├── __init__.py │ │ │ ├── live_requests.py │ │ │ └── request_live_pb2.py │ │ └── response/ │ │ ├── __init__.py │ │ └── response_live_pb2.py │ └── v20230101/ │ ├── __init__.py │ ├── live_config.py │ ├── live_service.py │ └── live_trait.py ├── livesaas/ │ ├── LivesaasService.py │ └── __init__.py ├── maas/ │ ├── MaasService.py │ ├── __init__.py │ ├── _response.py │ ├── exception.py │ ├── ka_mgr.py │ ├── sse_decoder.py │ ├── text_privatization/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── budget_allocator/ │ │ │ ├── __init__.py │ │ │ ├── allocator.py │ │ │ └── cti_allocator.py │ │ ├── priv_conf/ │ │ │ ├── __init__.py │ │ │ ├── cls_priv.py │ │ │ ├── gen_priv.py │ │ │ └── priv.py │ │ ├── privatizer/ │ │ │ ├── __init__.py │ │ │ ├── cls_privatizer.py │ │ │ ├── make.py │ │ │ └── privatizer.py │ │ └── utils.py │ ├── utils.py │ └── v2/ │ ├── MaasService.py │ ├── __init__.py │ ├── _resource.py │ ├── audio/ │ │ ├── __init__.py │ │ ├── audio.py │ │ └── speech.py │ ├── images/ │ │ ├── __init__.py │ │ └── images.py │ └── utils.py ├── nlp/ │ ├── NLPService.py │ ├── README.md │ └── __init__.py ├── rdspostgresql/ │ ├── __init__.py │ └── rdspostgresql.py ├── sms/ │ ├── SmsService.py │ └── __init__.py ├── sts/ │ ├── StsService.py │ └── __init__.py ├── tls/ │ ├── README.md │ ├── TLSService.py │ ├── __init__.py │ ├── const.py │ ├── consumer/ │ │ ├── __init__.py │ │ ├── checkpoint_manager.py │ │ ├── consumer.py │ │ ├── consumer_model.py │ │ ├── heartbeat_runner.py │ │ └── log_consumer.py │ ├── data.py │ ├── log.proto │ ├── log_content_patch.py │ ├── log_pb2.py │ ├── producer/ │ │ ├── __init__.py │ │ ├── batch_manager.py │ │ ├── batch_semaphore.py │ │ ├── log_dispatcher.py │ │ ├── mover.py │ │ ├── producer.py │ │ ├── producer_model.py │ │ ├── retry_queue.py │ │ └── send_batch_task.py │ ├── retry_policy.py │ ├── test/ │ │ ├── api_key_anonymous_auth_unit_test.py │ │ ├── cancel_download_task_test.py │ │ ├── consumer_test.py │ │ ├── create_alarm_content_template_test.py │ │ ├── create_alarm_webhook_integration_test.py │ │ ├── delete_alarm_content_template_test.py │ │ ├── delete_schedule_sql_task_test.py │ │ ├── describe_alarm_content_templates_test.py │ │ ├── describe_alarm_notify_groups_test.py │ │ ├── describe_alarm_webhook_integrations_test.py │ │ ├── describe_etl_task_test.py │ │ ├── describe_import_task_test.py │ │ ├── describe_import_tasks_test.py │ │ ├── describe_rule_test.py │ │ ├── describe_schedule_sql_task_test.py │ │ ├── describe_shipper_test.py │ │ ├── describe_trace_instances_test.py │ │ ├── describe_trace_test.py │ │ ├── etl_task_test.py │ │ ├── etl_test.py │ │ ├── get_account_status_test.py │ │ ├── import_task_test.py │ │ ├── list_tags_for_resources_test.py │ │ ├── manual_shard_split_test.py │ │ ├── modify_alarm_webhook_integration_test.py │ │ ├── processor_contract_test.py │ │ ├── producer_split_unit_test.py │ │ ├── producer_test.py │ │ ├── put_logs_test.py │ │ ├── put_logs_validation_unit_test.py │ │ ├── schedule_sql_task_test.py │ │ ├── shipper_test.py │ │ ├── tag_resources_test.py │ │ ├── test_create_shipper.py │ │ ├── test_delete_alarm_webhook_integration.py │ │ ├── test_delete_import_task.py │ │ ├── test_delete_trace_instance.py │ │ ├── test_describe_shippers.py │ │ ├── test_import_task.py │ │ ├── test_modify_alarm_content_template.py │ │ ├── test_modify_schedule_sql_task.py │ │ ├── test_modify_trace_instance.py │ │ ├── test_producer_batch_manager.py │ │ ├── test_quality_fixes.py │ │ ├── test_search_traces.py │ │ ├── test_untag_resources.py │ │ ├── tls_service_test.py │ │ ├── topic_test.py │ │ ├── trace_test.py │ │ └── util_test.py │ ├── tls_exception.py │ ├── tls_requests.py │ ├── tls_responses.py │ └── util.py ├── util/ │ ├── Functions.py │ ├── Util.py │ └── __init__.py ├── vedit/ │ ├── VEditService.py │ └── __init__.py ├── veen/ │ ├── __init__.py │ └── service.py ├── verender/ │ ├── VerenderService.py │ ├── __init__.py │ └── ftrans.py ├── viking_db/ │ ├── Collection.py │ ├── CollectionClient.py │ ├── Index.py │ ├── IndexClient.py │ ├── ServiceBase.py │ ├── Task.py │ ├── VikingDBService.py │ ├── __init__.py │ ├── common.py │ └── exception.py ├── viking_knowledgebase/ │ ├── Collection.py │ ├── Doc.py │ ├── Point.py │ ├── RespIter.py │ ├── VikingKnowledgeBaseService.py │ ├── __init__.py │ ├── common.py │ └── exception.py ├── visual/ │ ├── README.md │ ├── VisualService.py │ └── __init__.py ├── vms/ │ ├── VmsService.py │ └── __init__.py └── vod/ ├── VodService.py ├── VodServiceConfig.py ├── __init__.py ├── helper/ │ ├── FileSectionReader.py │ └── __init__.py └── models/ ├── __init__.py ├── business/ │ ├── __init__.py │ ├── vod_apps_manage_pb2.py │ ├── vod_callback_pb2.py │ ├── vod_cdn_pb2.py │ ├── vod_common_pb2.py │ ├── vod_drama_pb2.py │ ├── vod_edit_pb2.py │ ├── vod_measure_pb2.py │ ├── vod_media_pb2.py │ ├── vod_migrate_pb2.py │ ├── vod_object_pb2.py │ ├── vod_play_pb2.py │ ├── vod_project_pb2.py │ ├── vod_reporter_pb2.py │ ├── vod_smart_strategy_pb2.py │ ├── vod_space_pb2.py │ ├── vod_trade_pb2.py │ ├── vod_upload_pb2.py │ └── vod_workflow_pb2.py ├── request/ │ ├── __init__.py │ └── request_vod_pb2.py └── response/ ├── __init__.py └── response_vod_pb2.py