Microsoft.Automation automationAccounts/variables 2015-10-31
Bicep リソース定義
automationAccounts/variables リソースの種類は、次を対象とする操作と共にデプロイできます。
- リソース グループの - リソース グループのデプロイ コマンド 参照
各 API バージョンで変更されたプロパティの一覧については、変更ログの
リソースの形式
Microsoft.Automation/automationAccounts/variables リソースを作成するには、次の Bicep をテンプレートに追加します。
resource symbolicname 'Microsoft.Automation/automationAccounts/variables@2015-10-31' = {
parent: resourceSymbolicName
name: 'string'
properties: {
description: 'string'
isEncrypted: bool
value: 'string'
}
}
プロパティ値
Microsoft.Automation/automationAccounts/variables
名前 | 形容 | 価値 |
---|---|---|
名前 | リソース名 | string (必須) |
親 | Bicep では、子リソースの親リソースを指定できます。 このプロパティを追加する必要があるのは、子リソースが親リソースの外部で宣言されている場合のみです。 詳細については、「親リソースの外部 |
種類のリソースのシンボリック名: automationAccounts |
プロパティ | 変数のプロパティを取得または設定します。 | VariableCreateOrUpdatePropertiesOrVariableProperties (必須) |
VariableCreateOrUpdatePropertiesOrVariableProperties
名前 | 形容 | 価値 |
---|---|---|
形容 | 変数の説明を取得または設定します。 | 糸 |
isEncrypted | 変数の暗号化されたフラグを取得または設定します。 | bool |
価値 | 変数の値を取得または設定します。 | 糸 |
使用例
Azure クイック スタートのサンプル
次 Azure クイック スタート テンプレート、このリソースの種類をデプロイするための Bicep サンプルが含まれています。
Bicep ファイル | 形容 |
---|---|
ASR Runbook の |
ASR 復旧計画用の Automation Runbook をデプロイする |
ARM テンプレート リソース定義
automationAccounts/variables リソースの種類は、次を対象とする操作と共にデプロイできます。
- リソース グループの - リソース グループのデプロイ コマンド 参照
各 API バージョンで変更されたプロパティの一覧については、変更ログの
リソースの形式
Microsoft.Automation/automationAccounts/variables リソースを作成するには、次の JSON をテンプレートに追加します。
{
"type": "Microsoft.Automation/automationAccounts/variables",
"apiVersion": "2015-10-31",
"name": "string",
"properties": {
"description": "string",
"isEncrypted": "bool",
"value": "string"
}
}
プロパティ値
Microsoft.Automation/automationAccounts/variables
名前 | 形容 | 価値 |
---|---|---|
apiVersion | API のバージョン | '2015-10-31' |
名前 | リソース名 | string (必須) |
プロパティ | 変数のプロパティを取得または設定します。 | VariableCreateOrUpdatePropertiesOrVariableProperties (必須) |
種類 | リソースの種類 | 'Microsoft.Automation/automationAccounts/variables' |
VariableCreateOrUpdatePropertiesOrVariableProperties
名前 | 形容 | 価値 |
---|---|---|
形容 | 変数の説明を取得または設定します。 | 糸 |
isEncrypted | 変数の暗号化されたフラグを取得または設定します。 | bool |
価値 | 変数の値を取得または設定します。 | 糸 |
使用例
Azure クイック スタート テンプレート
このリソースの種類 デプロイする Azure クイック スタート テンプレート 次に示します。
テンプレート | 形容 |
---|---|
ASR Runbook の Azure |
ASR 復旧計画用の Automation Runbook をデプロイする |
Azure Resource Optimization (ARO) Toolkit Azure にデプロイする |
Azure Resource Optimization Toolkit は、サーバーレス テクノロジを使用してサブスクリプション上の Azure リソースを最適化する分散型のネイティブ Azure ソリューションです。 新しいリソースを含め、独自のスケジュールを有効または作成すると、サブスクリプションで最適化が自動的に行われます。 これは、サブスクリプションで使用してコストの節約を開始できる、構成済みの Runbook とスケジュールを含む Azure Automation アカウントです。 |
Terraform (AzAPI プロバイダー) リソース定義
automationAccounts/variables リソースの種類は、次を対象とする操作と共にデプロイできます。
- リソース グループの
各 API バージョンで変更されたプロパティの一覧については、変更ログの
リソースの形式
Microsoft.Automation/automationAccounts/variables リソースを作成するには、次の Terraform をテンプレートに追加します。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Automation/automationAccounts/variables@2015-10-31"
name = "string"
body = jsonencode({
properties = {
description = "string"
isEncrypted = bool
value = "string"
}
})
}
プロパティ値
Microsoft.Automation/automationAccounts/variables
名前 | 形容 | 価値 |
---|---|---|
名前 | リソース名 | string (必須) |
parent_id | このリソースの親であるリソースの ID。 | 種類のリソースの ID: automationAccounts |
プロパティ | 変数のプロパティを取得または設定します。 | VariableCreateOrUpdatePropertiesOrVariableProperties (必須) |
種類 | リソースの種類 | "Microsoft.Automation/automationAccounts/variables@2015-10-31" |
VariableCreateOrUpdatePropertiesOrVariableProperties
名前 | 形容 | 価値 |
---|---|---|
形容 | 変数の説明を取得または設定します。 | 糸 |
isEncrypted | 変数の暗号化されたフラグを取得または設定します。 | bool |
価値 | 変数の値を取得または設定します。 | 糸 |