调用 UpdateOfficeConfig
接口,更新内网加速配置中的工区配置,包括工区名称、负载均衡策略、内网 IP 等信息。
请求频率:单用户请求频率限制为 10 次/秒。
下表仅列出该接口特有的请求参数和部分公共参数。更多信息详见公共参数。
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | UpdateOfficeConfig | 接口名称。当前 API 的名称为 UpdateOfficeConfig 。 |
Version | String | 是 | 2023-08-01 | 接口版本。当前 API 的版本为 2023-08-01 。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
OfficeId | String | 是 | z123 | 工区 ID。您可通过调用 ListOfficeConfig 接口获取 ID。 |
OfficeName | String | 否 | 北京海淀 | 工区名称。长度为 1 到 100 个字符。 |
OfficeIp | Object of OfficeIp | 否 | - | 工区的内网地址。 |
LBStrategy | String | 否 |
| 负载均衡策略。取值如下:
|
EnableExtranetUrl | Boolean | 否 |
| 是否允许外网拉流。取值如下:
|
OfficeStatus | String | 否 |
| 工区状态。仅支持将已启用、已关闭或测试中状态的工区切换为以下任意一种状态。取值如下:
|
RecommendedSize | String | 否 |
| 智能线路的起始清晰度,即工区观看的默认清晰度。取值如下:
|
AllowedSize | Array of String | 否 |
| 工区观看的可选清晰度。观众仅可在该范围内切换清晰度。清晰度越高,对网络环境要求越高。取值如下:
|
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
NetworkSegment | Array of String | 是 | ["123.12.23.21/24","123.12.23.21/26"] | 内网网段。一个工区最多支持添加 100 个网段。 |
Ip | Array of String | 是 | ["123.12.23.21","123.12.23.20"] | 内网 IP。一个工区最多支持添加 100 个 IP 地址。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
AreaId | String | srg123 | 工区所属区域的 ID。 |
OfficeId | String | z123 | 工区 ID。 |
OfficeName | String | 北京海淀 | 工区名称。 |
CreateTime | Long | 1733738464 | 创建时间。Unix 时间戳,单位为秒。 |
OfficeIp | Object of OfficeIp | - | 工区的内网地址。 |
LBStrategy | String |
| 负载均衡策略。取值如下:
|
EnableExtranetUrl | Boolean |
| 是否允许外网拉流。取值如下:
|
OfficeStatus | String |
| 工区状态。取值如下:
|
RecommendedSize | String |
| 智能线路的起始清晰度,即工区观看的默认清晰度。取值如下:
|
AllowedSize | Array of String |
| 工区观看的可选清晰度。观众仅可在该范围内切换清晰度。清晰度越高,对网络环境要求越高。取值如下:
|
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
NetworkSegment | Array of String | ["123.12.23.21/24","123.12.23.21/26"] | 内网网段。 |
Ip | Array of String | ["123.12.23.21","123.12.23.20"] | 内网 IP。 |
POST https://livesaas.volcengineapi.com/?Action=UpdateOfficeConfig&Version=2023-08-01 { "EnableExtranetUrl": true, "OfficeId": "z123", "OfficeName": "北京海淀", "OfficeIp": { "NetworkSegment": [ "123.12.23.21/24", "123.12.23.21/26" ], "Ip": [ "123.12.23.21", "123.12.23.20" ] }, "OfficeStatus": "Enable", "RecommendedSize": "sd", "AllowedSize": [ "sd", "hd" ], "LBStrategy": "Default" }
{ "ResponseMetadata": { "RequestId": "20230604110420****100232280022D31", "Action": "UpdateOfficeConfig", "Version": "2023-08-01", "Service": "livesaas", "Region": "cn-north-1", "SystemTime": 1697446406 }, "Result": { "CreateTime": 1733738464, "EnableExtranetUrl": true, "OfficeId": "z123", "OfficeIp": { "NetworkSegment": [ "123.12.23.21/24", "123.12.23.21/26" ], "Ip": [ "123.12.23.21", "123.12.23.20" ] }, "OfficeName": "北京海淀", "OfficeStatus": "Enable", "RecommendedSize": "sd", "AllowedSize": [ "sd", "hd" ], "AreaId": "srg123", "LBStrategy": "Default" } }