你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Put 属性
创建或更新 Service Fabric 属性。
创建或更新给定名称下的指定 Service Fabric 属性。
请求
方法 | 请求 URI |
---|---|
PUT | /Names/{nameId}/$/GetProperty?api-version=6.0&timeout={timeout} |
参数
名称 | 类型 | 必须 | 位置 |
---|---|---|---|
nameId |
string | 是 | 路径 |
api-version |
string | 是 | 查询 |
timeout |
整数 (int64) | 否 | 查询 |
PropertyDescription |
PropertyDescription | “是” | Body |
nameId
类型:字符串
必需:是
Service Fabric 名称,不带“fabric:”URI 方案。
api-version
类型:字符串
必需:是
默认:
API 的版本。 此参数是必需的,其值必须为“6.0”。
Service Fabric REST API 版本基于引入或更改 API 的运行时版本。 Service Fabric 运行时支持 API 的多个版本。 这是 API 支持的最新版本。 如果传递的 API 版本较低,则返回的响应可能与本规范中所述的响应不同。
此外,运行时接受高于当前运行时版本支持的最新版本的任何版本。 因此,如果最新的 API 版本为 6.0,但如果运行时为 6.1,为了便于编写客户端,运行时将接受该 API 的版本 6.1。 但是,API 的行为将按照记录的 6.0 版本。
timeout
类型:整数 (int64)
必需:否
默认:
InclusiveMaximum: 4294967295
InclusiveMinimum: 1
执行操作的服务器超时,以秒为单位。 此超时指定客户端可以等待请求的操作完成的持续时间。 此参数的默认值为 60 秒。
PropertyDescription
类型: PropertyDescription
必需:是
描述要创建的 Service Fabric 属性。
响应
HTTP 状态代码 | 说明 | 响应架构 |
---|---|---|
200 (正常) | 成功的响应意味着属性已创建或更新。 |
|
所有其他状态代码 | 详细的错误响应。 |
FabricError |
示例
Put 属性
此示例演示如何在给定名称下创建或更新 Service Fabric 属性。
请求
PUT http://localhost:19080/Names/samples/apps/CalculatorApp/$/GetProperty?api-version=6.0
正文
{
"PropertyName": "AppData",
"Value": {
"Kind": "Binary",
"Data": [
"0",
"1",
"2",
"3",
"4",
"5"
]
}
}
200 响应
正文
响应正文为空。
放置自定义属性
此示例演示如何使用自定义类型创建或更新给定名称下的 Service Fabric 属性。
请求
PUT http://localhost:19080/Names/samples/apps/CalculatorApp/$/GetProperty?api-version=6.0
正文
{
"PropertyName": "AppData",
"Value": {
"Kind": "String",
"Data": "1+2=3"
},
"CustomTypeId": "EquationType"
}
200 响应
正文
响应正文为空。