Bicep リソース定義
publishingUsers リソースの種類は、次をターゲットとする操作でデプロイできます。
各 API バージョンで変更されたプロパティの一覧については、変更ログの
リソースの形式
Microsoft.Web/publishingUsers リソースを作成するには、次の Bicep をテンプレートに追加します。
resource symbolicname 'Microsoft.Web/publishingUsers@2015-08-01' = {
scope: resourceSymbolicName or scope
kind: 'string'
location: 'string'
name: 'web'
properties: {
name: 'string'
publishingPassword: 'string'
publishingUserName: 'string'
scmUri: 'string'
}
tags: {
{customized property}: 'string'
}
}
プロパティ値
Microsoft.Web/publishingUsers (英語)
| 名前 | 形容 | 価値 |
|---|---|---|
| 種類 | リソースの種類 | 文字列 |
| 位置 | リソースの場所 | string (必須) |
| 名前 | リソース名 | 'web' (必須) |
| プロパティ | UserProperties の |
|
| スコープ | デプロイ スコープとは異なるスコープでリソースを作成するときに使用します。 | このプロパティをリソースのシンボリック名に設定して、拡張リソースを適用します。 |
| タグ | リソース タグ | タグ名と値のディクショナリ。 テンプレート の |
リソースタグ
| 名前 | 形容 | 価値 |
|---|
ユーザー設定
| 名前 | 形容 | 価値 |
|---|---|---|
| 名前 | ユーザー名 (内部) | 文字列 |
| 公開するパスワード | 発行に使用されるパスワード | 文字列 |
| 発行するユーザ名 | 発行に使用されるユーザー名 | 文字列 |
| scmUri | ユーザー名とパスワードを含む Service Control Manager URI | 文字列 |
ARM テンプレート リソース定義
publishingUsers リソースの種類は、次をターゲットとする操作でデプロイできます。
各 API バージョンで変更されたプロパティの一覧については、変更ログの
リソースの形式
Microsoft.Web/publishingUsers リソースを作成するには、次の JSON をテンプレートに追加します。
{
"type": "Microsoft.Web/publishingUsers",
"apiVersion": "2015-08-01",
"name": "string",
"kind": "string",
"location": "string",
"properties": {
"name": "string",
"publishingPassword": "string",
"publishingUserName": "string",
"scmUri": "string"
},
"tags": {
"{customized property}": "string"
}
}
プロパティ値
Microsoft.Web/publishingUsers (英語)
| 名前 | 形容 | 価値 |
|---|---|---|
| apiVersion (英語) | API のバージョン | '2015-08-01' |
| 種類 | リソースの種類 | 文字列 |
| 位置 | リソースの場所 | string (必須) |
| 名前 | リソース名 | 'web' (必須) |
| プロパティ | UserProperties の |
|
| タグ | リソース タグ | タグ名と値のディクショナリ。 テンプレート の |
| 型 | リソースの種類 | 'Microsoft.Web/publishingUsers' |
リソースタグ
| 名前 | 形容 | 価値 |
|---|
ユーザー設定
| 名前 | 形容 | 価値 |
|---|---|---|
| 名前 | ユーザー名 (内部) | 文字列 |
| 公開するパスワード | 発行に使用されるパスワード | 文字列 |
| 発行するユーザ名 | 発行に使用されるユーザー名 | 文字列 |
| scmUri | ユーザー名とパスワードを含む Service Control Manager URI | 文字列 |
使用例
Terraform (AzAPI プロバイダー) リソース定義
publishingUsers リソースの種類は、次をターゲットとする操作でデプロイできます。
各 API バージョンで変更されたプロパティの一覧については、変更ログの
リソースの形式
Microsoft.Web/publishingUsers リソースを作成するには、次の Terraform をテンプレートに追加します。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Web/publishingUsers@2015-08-01"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
kind = "string"
properties = {
name = "string"
publishingPassword = "string"
publishingUserName = "string"
scmUri = "string"
}
}
}
プロパティ値
Microsoft.Web/publishingUsers (英語)
| 名前 | 形容 | 価値 |
|---|---|---|
| 種類 | リソースの種類 | 文字列 |
| 位置 | リソースの場所 | string (必須) |
| 名前 | リソース名 | 'web' (必須) |
| parent_id | この拡張リソースを適用するリソースの ID。 | string (必須) |
| プロパティ | UserProperties の |
|
| タグ | リソース タグ | タグ名と値のディクショナリ。 |
| 型 | リソースの種類 | "Microsoft.Web/publishingUsers@2015-08-01" (英語) |
リソースタグ
| 名前 | 形容 | 価値 |
|---|
ユーザー設定
| 名前 | 形容 | 価値 |
|---|---|---|
| 名前 | ユーザー名 (内部) | 文字列 |
| 公開するパスワード | 発行に使用されるパスワード | 文字列 |
| 発行するユーザ名 | 発行に使用されるユーザー名 | 文字列 |
| scmUri | ユーザー名とパスワードを含む Service Control Manager URI | 文字列 |