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

ALIYUN::ApiGateway::Group

ALIYUN::ApiGateway::Group類型用于創建API分組。

語法

{
  "Type": "ALIYUN::ApiGateway::Group",
  "Properties": {
    "GroupName": String,
    "Description": String,
    "InstanceId": String,
    "PassthroughHeaders": String,
    "InternetEnable": Boolean,
    "VpcIntranetEnable": Boolean,
    "Tags": List,
    "BasePath": String
  }
}   

屬性

屬性名稱

類型

必須

允許更新

描述

約束

GroupName

String

API分組名稱。

名稱必須唯一。

長度為4~50個字符。必須以英文字母或漢字開頭。可包含英文字母、漢字、數字和下劃線(_)。

BasePath

String

API根路徑。

示例:/qqq

Description

String

API分組描述。

長度不超過180個字符。

InstanceId

String

API網關實例類型。

取值:

  • api-shared-vpc-001:專有網絡。

  • api-shared-classic-001:經典網絡。

InternetEnable

Boolean

是否啟用公網子域名。

取值:

  • true:啟用公網子域名。

  • false:不啟用公網子域名。

PassthroughHeaders

String

配置透傳。

取值:host。

Tags

List

標簽。

最多可以設置20個標簽。

更多信息,請參見Tags屬性

VpcIntranetEnable

Boolean

是否啟用私網子域名。

取值:

  • true:啟用私網子域名。

  • false:不啟用私網子域名。

Tags語法

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

Tags屬性

屬性名稱

類型

必須

允許更新

描述

約束

Key

String

標簽鍵。

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

Value

String

標簽值。

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

返回值

Fn::GetAtt

  • SubDomain:系統給API分組綁定的二級域名,用于測試API調用情況。

  • GroupId:API分組ID。通過系統生成,全局唯一。

  • Tags:標簽。

示例

說明

請您根據實際情況更改脫敏的參數取值,例如InstanceId。

YAML格式

ROSTemplateFormatVersion: '2015-09-01'
Parameters: {}
Resources:
  Group:
    Type: ALIYUN::ApiGateway::Group
    Properties:
      InternetEnable: false
      GroupName: TestGroup
      InstanceId: api-shared-vpc-***
      VpcIntranetEnable: false
      PassthroughHeaders: host
Outputs: {}

JSON格式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
  },
  "Resources": {
    "Group": {
      "Type": "ALIYUN::ApiGateway::Group",
      "Properties": {
        "InternetEnable": false,
        "GroupName": "TestGroup",
        "InstanceId": "api-shared-vpc-***",
        "VpcIntranetEnable": false,
        "PassthroughHeaders": "host"
      }
    }
  },
  "Outputs": {
  }
}