全部產品
Search
文件中心

:DATASOURCE::SAE::Applications

更新時間:Nov 28, 2024

DATASOURCE::SAE::Applications類型用於擷取應用列表。

文法

{
  "Type": "DATASOURCE::SAE::Applications",
  "Properties": {
    "NamespaceId": String,
    "FieldValue": String,
    "AppName": String,
    "FieldType": String,
    "RefreshOptions": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

NamespaceId

String

命名空間ID。

FieldValue

String

輸入目標應用的應用程式名稱、應用ID、SLB IP地址或執行個體IP地址。

AppName

String

應用程式名稱。

FieldType

String

設定篩選應用的維度。

取值:

  • appName:應用程式名稱。

  • appIds:應用ID。

  • slbIps:SLB IP地址。

  • instanceIps:執行個體IP地址。

RefreshOptions

String

當資源棧更新時,資料來源資源的重新整理策略。

有效值:

  • Never(預設值):更新堆棧時,從不重新整理資料來源資源。

  • Always:更新堆棧時,始終重新整理資料來源資源。

返回資料(Fn::GetAtt)

  • Applications:應用詳情列表。

  • ApplicationIds:應用ID列表。

屬性名稱

類型

描述

約束

ApplicationIds

List

應用ID列表。

Applications

List

應用詳情列表。

AppId

String

應用ID。

AppName

String

應用程式名稱。

AppDescription

String

應用描述資訊。

ScaleRuleEnabled

Boolean

Auto Scaling策略是否啟用。

取值:

  • true:啟用狀態。

  • false:禁用狀態。

Instances

Number

應用執行個體個數。

RunningInstances

Number

運行中的執行個體個數。

AppDeletingStatus

Boolean

是否正在刪除應用。

取值:

  • true:應用正在被刪除。

  • false:應用沒有被刪除。

RegionId

String

地區ID。

樣本

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "AppName": {
      "Type": "String",
      "Description": "The name of application."
    }
  },
  "Resources": {
    "Applications": {
      "Type": "DATASOURCE::SAE::Applications",
      "Properties": {
        "AppName": {
          "Ref": "AppName"
        }
      }
    }
  },
  "Outputs": {
    "Applications": {
      "Description": "The list of applications.",
      "Value": {
        "Fn::GetAtt": [
          "Applications",
          "Applications"
        ]
      }
    },
    "ApplicationIds": {
      "Description": "The list of application IDs.",
      "Value": {
        "Fn::GetAtt": [
          "Applications",
          "ApplicationIds"
        ]
      }
    }
  }
}
ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  AppName:
    Type: String
    Description: The name of application.
Resources:
  Applications:
    Type: DATASOURCE::SAE::Applications
    Properties:
      AppName:
        Ref: AppName
Outputs:
  Applications:
    Description: The list of applications.
    Value:
      Fn::GetAtt:
        - Applications
        - Applications
  ApplicationIds:
    Description: The list of application IDs.
    Value:
      Fn::GetAtt:
        - Applications
        - ApplicationIds