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

ALIYUN::VPC::EIP

ALIYUN::VPC::EIP類型用于申請彈性公網IP(Elastic IP Address,簡稱EIP)。

語法

{
  "Type": "ALIYUN::VPC::EIP",
  "Properties": {
    "DeletionProtection": Boolean,
    "Name": String,
    "Tags": List,
    "Isp": String,
    "Netmode": String,
    "Period": Number,
    "ResourceGroupId": String,
    "AutoPay": Boolean,
    "InstanceChargeType": String,
    "PricingCycle": String,
    "Bandwidth": Number,
    "InternetChargeType": String,
    "Description": String,
    "SecurityProtectionTypes": List,
    "PublicIpAddressPoolId": String,
    "Zone": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

DeletionProtection

Boolean

是否開啟刪除保護功能。

取值:

  • true:開啟刪除保護功能。

  • false(默認值):不開啟刪除保護功能。

Name

String

EIP的名稱。

長度為2~128個字符。以英文字母開頭,不能以http://https://開頭。可包含英文字母、數字、半角句號(.)、下劃線(_)和短劃線(-)。

ResourceGroupId

String

資源組ID。

Netmode

String

網絡類型。

取值:public,表示公網。

Bandwidth

Number

EIP的帶寬值。

如果不指定,則取默認值5 Mbps。

InternetChargeType

String

EIP的計費方式。

取值:

  • PayByBandwidth(默認值):按帶寬計費。

  • PayByTraffic:按流量計費。

InstanceChargeType

String

EIP的付費方式。

取值:

  • Prepaid:預付費。

  • Postpaid(默認值):后付費。

PricingCycle

String

預付費的計費周期。

取值:

  • Month(默認值):按月付費。

  • Year:按年付費。

說明

InstanceChargeType取值為Prepaid時,PricingCycle必選。

Period

Number

購買時長。

取值:

  • 選擇按月付費時,取值范圍:1~9。

  • 選擇按年付費時,取值范圍:1~3。

默認值:1。

說明

InstanceChargeType取值為Prepaid時,Period必選。

AutoPay

Boolean

是否開啟自動付費。

取值:

  • false:不開啟自動付費,生成訂單后需要到訂單中心完成支付。

    關于訂單中心的更多信息,請參見訂單中心

  • true(默認值):開啟自動付費,自動支付訂單。

說明

InstanceChargeType取值為Prepaid時,AutoPay必選。

Isp

String

線路類型。

取值:

  • BGP(默認值):BGP(多線)線路。

  • BGP_PRO:BGP(多線)精品線路。

目前,全部地域都支持BGP(多線)線路EIP,僅中國香港地域支持BGP(多線)精品線路EIP。

說明

如果是開通了單線帶寬白名單的用戶,Isp可以設置為ChinaTelecom(中國電信)、ChinaUnicom(中國聯通)和ChinaMobile(中國移動);如果是杭州金融云用戶,Isp必填,取值:BGP_FinanceCloud。

Description

String

EIP的描述信息。

長度為2~256個字符。以英文字母開頭,不能以http://https://開頭。

Tags

List

標簽。

最多設置20個標簽,每個標簽由鍵值對組成。標簽值可以為空。

更多信息,請參見Tags語法Tags屬性

SecurityProtectionTypes

List

安全防護級別。

取值:

  • 當該參數配置為空時,默認為DDoS防護(基礎版)。

  • 當該參數配置為AntiDDoS_Enhanced時,表示為DDoS防護(增強版)。

說明

您最多可以設置10個安全防護級別。

PublicIpAddressPoolId

String

IP地址池ID。

EIP將從該IP地址池中分配,IP地址池僅對通過試用申請的用戶可見。如需使用,請提交工單

Zone

String

彈性公網IP可用分區。

Tags語法

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

Tags屬性

屬性名稱

類型

必須

允許更新

描述

約束

Key

String

標簽鍵。

長度為1~128個字符,不能以aliyunacs:開頭,不能包含http://https://

Value

String

標簽值。

長度為0~128個字符,不能以aliyunacs:開頭,不能包含http://https://

返回值

Fn::GetAtt

  • EipAddress:分配的EIP。

  • AllocationId:EIP的實例ID。

  • OrderId:訂單號,僅InstanceChargeType取值為Prepaid時返回。

  • Isp:線路類型。

示例

YAML格式

ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
  ElasticIp:
    Type: ALIYUN::VPC::EIP
    Properties:
      InstanceChargeType: Postpaid
      Name: TestEIP
      InternetChargeType: PayByBandwidth
      Netmode: public
      Bandwidth: 5
Outputs:
  Isp:
    Description: The line type.
    Value:
      Fn::GetAtt:
        - ElasticIp
        - Isp
  AllocationId:
    Description: ID that Aliyun assigns to represent the allocation of the address for use with VPC. Returned only for VPC elastic IP addresses.
    Value:
      Fn::GetAtt:
        - ElasticIp
        - AllocationId
  EipAddress:
    Description: IP address of created EIP.
    Value:
      Fn::GetAtt:
        - ElasticIp
        - EipAddress
  OrderId:
    Description: Order ID of prepaid EIP instance.
    Value:
      Fn::GetAtt:
        - ElasticIp
        - OrderId

JSON格式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
  },
  "Resources": {
    "ElasticIp": {
      "Type": "ALIYUN::VPC::EIP",
      "Properties": {
        "InstanceChargeType": "Postpaid",
        "Name": "TestEIP",
        "InternetChargeType": "PayByBandwidth",
        "Netmode": "public",
        "Bandwidth": 5
      }
    }
  },
  "Outputs": {
    "Isp": {
      "Description": "The line type.",
      "Value": {
        "Fn::GetAtt": [
          "ElasticIp",
          "Isp"
        ]
      }
    },
    "AllocationId": {
      "Description": "ID that Aliyun assigns to represent the allocation of the address for use with VPC. Returned only for VPC elastic IP addresses.",
      "Value": {
        "Fn::GetAtt": [
          "ElasticIp",
          "AllocationId"
        ]
      }
    },
    "EipAddress": {
      "Description": "IP address of created EIP.",
      "Value": {
        "Fn::GetAtt": [
          "ElasticIp",
          "EipAddress"
        ]
      }
    },
    "OrderId": {
      "Description": "Order ID of prepaid EIP instance.",
      "Value": {
        "Fn::GetAtt": [
          "ElasticIp",
          "OrderId"
        ]
      }
    }
  }
}