Microsoft.Security の価格 2018-06-01
Bicep リソース定義
価格リソースの種類は、次を対象とする操作でデプロイできます。
- サブスクリプションの - サブスクリプションのデプロイ コマンド 参照
各 API バージョンで変更されたプロパティの一覧については、変更ログの
リソースの形式
Microsoft.Security/pricings リソースを作成するには、次の Bicep をテンプレートに追加します。
resource symbolicname 'Microsoft.Security/pricings@2018-06-01' = {
name: 'string'
properties: {
pricingTier: 'string'
}
}
プロパティ値
Microsoft.Security/pricings
名前 | 形容 | 価値 |
---|---|---|
名前 | リソース名 | string (必須) |
プロパティ | 価格データ | PricingProperties |
PricingProperties
名前 | 形容 | 価値 |
---|---|---|
pricingTier | 価格レベルの値。 Microsoft Defender for Cloud は、無料と標準の 2 つの価格レベルで提供され、Standard レベルは試用期間で利用できます。 Standard レベルでは高度なセキュリティ機能が提供され、Free レベルでは基本的なセキュリティ機能が提供されます。 | 'Free' 'Standard' (必須) |
ARM テンプレート リソース定義
価格リソースの種類は、次を対象とする操作でデプロイできます。
- サブスクリプションの - サブスクリプションのデプロイ コマンド 参照
各 API バージョンで変更されたプロパティの一覧については、変更ログの
リソースの形式
Microsoft.Security/pricings リソースを作成するには、次の JSON をテンプレートに追加します。
{
"type": "Microsoft.Security/pricings",
"apiVersion": "2018-06-01",
"name": "string",
"properties": {
"pricingTier": "string"
}
}
プロパティ値
Microsoft.Security/pricings
名前 | 形容 | 価値 |
---|---|---|
apiVersion | API のバージョン | '2018-06-01' |
名前 | リソース名 | string (必須) |
プロパティ | 価格データ | PricingProperties |
種類 | リソースの種類 | 'Microsoft.Security/pricings' |
PricingProperties
名前 | 形容 | 価値 |
---|---|---|
pricingTier | 価格レベルの値。 Microsoft Defender for Cloud は、無料と標準の 2 つの価格レベルで提供され、Standard レベルは試用期間で利用できます。 Standard レベルでは高度なセキュリティ機能が提供され、Free レベルでは基本的なセキュリティ機能が提供されます。 | 'Free' 'Standard' (必須) |
Terraform (AzAPI プロバイダー) リソース定義
価格リソースの種類は、次を対象とする操作でデプロイできます。
- サブスクリプション
各 API バージョンで変更されたプロパティの一覧については、変更ログの
リソースの形式
Microsoft.Security/pricings リソースを作成するには、次の Terraform をテンプレートに追加します。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Security/pricings@2018-06-01"
name = "string"
body = jsonencode({
properties = {
pricingTier = "string"
}
})
}
プロパティ値
Microsoft.Security/pricings
名前 | 形容 | 価値 |
---|---|---|
名前 | リソース名 | string (必須) |
プロパティ | 価格データ | PricingProperties |
種類 | リソースの種類 | "Microsoft.Security/pricings@2018-06-01" |
PricingProperties
名前 | 形容 | 価値 |
---|---|---|
pricingTier | 価格レベルの値。 Microsoft Defender for Cloud は、無料と標準の 2 つの価格レベルで提供され、Standard レベルは試用期間で利用できます。 Standard レベルでは高度なセキュリティ機能が提供され、Free レベルでは基本的なセキュリティ機能が提供されます。 | 'Free' 'Standard' (必須) |