Microsoft。DataBoxEdge dataBoxEdgeDevices/orders 2020-09-01-preview

Bicep リソース定義

dataBoxEdgeDevices/orders リソースの種類は、次の目的でデプロイできます。

各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。

リソース形式

Microsoftを作成するにはDataBoxEdge/dataBoxEdgeDevices/orders リソースに、次の Bicep をテンプレートに追加します。

resource symbolicname 'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2020-09-01-preview' = {
  name: 'default'
  parent: resourceSymbolicName
  properties: {
    contactInformation: {
      companyName: 'string'
      contactPerson: 'string'
      emailList: [
        'string'
      ]
      phone: 'string'
    }
    shipmentType: 'string'
    shippingAddress: {
      addressLine1: 'string'
      addressLine2: 'string'
      addressLine3: 'string'
      city: 'string'
      country: 'string'
      postalCode: 'string'
      state: 'string'
    }
  }
}

プロパティの値

dataBoxEdgeDevices/orders

名前 説明
name リソース名

Bicep で子リソースの名前と型を設定する方法を参照してください。
'default'
parent Bicep では、子リソースの親リソースを指定できます。 このプロパティを追加する必要があるのは、子リソースが親リソースの外部で宣言されている場合のみです。

詳細については、「 親リソースの外部の子リソース」を参照してください。
種類のリソースのシンボル名: dataBoxEdgeDevices
properties order プロパティ。 OrderProperties

OrderProperties

名前 説明
contactInformation 連絡先の詳細。 ContactDetails (必須)
shipmentType 注文のシップメントタイプ 'NotApplicable'
'SelfPickup'
'ShippedToCustomer'
shippingAddress 配送先住所。 アドレス

ContactDetails

名前 説明
companyName 会社の名前。 string (必須)
contactPerson 連絡先のユーザー名。 string (必須)
emailList 電子メールの一覧。 string[] (必須)
phone 電話番号。 string (必須)

Address

名前 説明
addressLine1 アドレス行 1。 string
addressLine2 アドレス行 2。 string
addressLine3 アドレス行 3。 string
city 市区町村名。 string
country 国名。 string (必須)
postalCode 郵便番号。 string
state 状態の名前。 string

ARM テンプレート リソース定義

dataBoxEdgeDevices/orders リソースの種類は、次の目的でデプロイできます。

各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。

リソース形式

Microsoftを作成するにはDataBoxEdge/dataBoxEdgeDevices/orders リソースに、次の JSON をテンプレートに追加します。

{
  "type": "Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders",
  "apiVersion": "2020-09-01-preview",
  "name": "default",
  "properties": {
    "contactInformation": {
      "companyName": "string",
      "contactPerson": "string",
      "emailList": [ "string" ],
      "phone": "string"
    },
    "shipmentType": "string",
    "shippingAddress": {
      "addressLine1": "string",
      "addressLine2": "string",
      "addressLine3": "string",
      "city": "string",
      "country": "string",
      "postalCode": "string",
      "state": "string"
    }
  }
}

プロパティの値

dataBoxEdgeDevices/orders

名前 説明
type リソースの種類 'Microsoft。DataBoxEdge/dataBoxEdgeDevices/orders'
apiVersion リソース API のバージョン '2020-09-01-preview'
name リソース名

JSON ARM テンプレートで子リソースの名前と型を設定する方法を参照してください。
'default'
properties order プロパティ。 OrderProperties

OrderProperties

名前 説明
contactInformation 連絡先の詳細。 ContactDetails (必須)
shipmentType 注文の ShipmentType 'NotApplicable'
'SelfPickup'
'ShippedToCustomer'
shippingAddress 配送先住所。 アドレス

ContactDetails

名前 説明
companyName 会社の名前。 string (必須)
contactPerson 連絡先のユーザー名。 string (必須)
emailList 電子メールの一覧。 string[] (必須)
phone 電話番号。 string (必須)

Address

名前 説明
addressLine1 アドレス行 1。 string
addressLine2 住所行 2。 string
addressLine3 アドレス行 3。 string
city 市区町村名。 string
country 国名。 string (必須)
postalCode 郵便番号。 string
state 状態の名前。 string

Terraform (AzAPI プロバイダー) リソース定義

dataBoxEdgeDevices/orders リソースの種類は、次のようにデプロイできます。

  • リソース グループ

各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。

リソース形式

Microsoftを作成するにはDataBoxEdge/dataBoxEdgeDevices/orders リソースに、次の Terraform をテンプレートに追加します。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2020-09-01-preview"
  name = "default"
  parent_id = "string"
  body = jsonencode({
    properties = {
      contactInformation = {
        companyName = "string"
        contactPerson = "string"
        emailList = [
          "string"
        ]
        phone = "string"
      }
      shipmentType = "string"
      shippingAddress = {
        addressLine1 = "string"
        addressLine2 = "string"
        addressLine3 = "string"
        city = "string"
        country = "string"
        postalCode = "string"
        state = "string"
      }
    }
  })
}

プロパティの値

dataBoxEdgeDevices/orders

名前 説明
type リソースの種類 "Microsoft。DataBoxEdge/dataBoxEdgeDevices/orders@2020-09-01-preview"
name リソース名 "default"
parent_id このリソースの親であるリソースの ID。 種類のリソースの ID: dataBoxEdgeDevices
properties order プロパティ。 OrderProperties

OrderProperties

名前 説明
contactInformation 連絡先の詳細。 ContactDetails (必須)
shipmentType 注文の ShipmentType "NotApplicable"
"SelfPickup"
"ShippedToCustomer"
shippingAddress 配送先住所。 アドレス

ContactDetails

名前 説明
companyName 会社の名前。 string (必須)
contactPerson 連絡先のユーザー名。 string (必須)
emailList 電子メールの一覧。 string[] (必須)
phone 電話番号。 string (必須)

Address

名前 説明
addressLine1 アドレス行 1。 string
addressLine2 住所行 2。 string
addressLine3 アドレス行 3。 string
city 市区町村名。 string
country 国名。 string (必須)
postalCode 郵便番号。 string
state 状態の名前。 string