日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

ALIYUN::CEN::CenBandwidthPackage

更新時(shí)間:

ALIYUN::CEN::CenBandwidthPackage類型用于在使用云企業(yè)網(wǎng)連接不同地域的網(wǎng)絡(luò)實(shí)例前,根據(jù)網(wǎng)絡(luò)實(shí)例所屬地域購買帶寬包。

語法

{
  "Type": "ALIYUN::CEN::CenBandwidthPackage",
  "Properties": {
    "Description": String,
    "BandwidthPackageChargeType": String,
    "GeographicRegionBId": String,
    "GeographicRegionAId": String,
    "PricingCycle": String,
    "AutoRenew": "Boolean",
    "Bandwidth": Integer,
    "Period": Integer,
    "AutoPay": "Boolean",
    "AutoRenewDuration": Integer,
    "Name": String,
    "ResourceGroupId": String,
    "Tags": List
  }
} 

屬性

屬性名稱

類型

必須

允許更新

描述

約束

Bandwidth

Integer

帶寬包的帶寬峰值

單位:Mbps。

最小值:2。

GeographicRegionAId

String

網(wǎng)絡(luò)實(shí)例所屬地域

取值:

  • China

  • North-America

  • Asia-Pacific

  • Europe

GeographicRegionBId

String

網(wǎng)絡(luò)實(shí)例所屬的地域

取值:

  • China

  • North-America

  • Asia-Pacific

  • Europe

AutoPay

Boolean

是否自動(dòng)支付賬單

取值:

  • true(默認(rèn)值)

  • false

AutoRenew

Boolean

是否開啟自動(dòng)續(xù)費(fèi)

取值:

  • true

  • false(默認(rèn)值)

AutoRenewDuration

Integer

自動(dòng)續(xù)費(fèi)時(shí)長

當(dāng)AutoRenew取值為true時(shí)生效。

取值:

  • 1

  • 2

  • 3

單位:月。

BandwidthPackageChargeType

String

帶寬包的付費(fèi)類型

取值:

  • POSTPAY

  • PREPAY

Description

String

帶寬包的描述

長度為2~256個(gè)字符,必須以中文字符或英文字符開頭,不能以http://https://開頭。

可包含中文字符、英文字符、數(shù)字、短劃線(-)、英文句點(diǎn)(.)和下劃線(_)。

Name

String

帶寬包的名稱

長度為2~128個(gè)字符,必須以英文字符或中文字符開頭,不能以http://https://開頭。

可包含英文字符、中文字符、數(shù)字、英文句點(diǎn)(.)、下劃線(_)和短劃線(-)。

Period

Integer

帶寬包的購買時(shí)長

默認(rèn)值:1。

PricingCycle

String

帶寬包的計(jì)費(fèi)周期

取值:

  • Month(默認(rèn)值)

  • Year

ResourceGroupId

String

資源組ID。

Tags

List

標(biāo)簽列表。

更多信息,請(qǐng)參見Tags屬性

Tags語法

"Tags": [
  {
    "Key": String,
    "Value": String
  }
]

Tags屬性

屬性名稱

類型

必須

允許更新

描述

約束

Key

String

標(biāo)簽鍵。

Value

String

標(biāo)簽值。

返回值

Fn::GetAtt

CenBandwidthPackageId:新建帶寬包的ID。

示例

YAML格式

ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
  CenBandwidthPackage:
    Type: ALIYUN::CEN::CenBandwidthPackage
    Properties:
      GeographicRegionBId: China
      GeographicRegionAId: China
      Bandwidth: 3
      BandwidthPackageChargeType: POSTPAY
Outputs:
  CenBandwidthPackageId:
    Description: The ID of the bandwidth package.
    Value:
      Fn::GetAtt:
        - CenBandwidthPackage
        - CenBandwidthPackageId

JSON格式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
  },
  "Resources": {
    "CenBandwidthPackage": {
      "Type": "ALIYUN::CEN::CenBandwidthPackage",
      "Properties": {
        "GeographicRegionBId": "China",
        "GeographicRegionAId": "China",
        "Bandwidth": 3,
        "BandwidthPackageChargeType": "POSTPAY"
      }
    }
  },
  "Outputs": {
    "CenBandwidthPackageId": {
      "Description": "The ID of the bandwidth package.",
      "Value": {
        "Fn::GetAtt": [
          "CenBandwidthPackage",
          "CenBandwidthPackageId"
        ]
      }
    }
  }
}