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

DATASOURCE::DRDS::Account

DATASOURCE::DRDS::Account類型用于查詢單個實例賬號列表信息。

語法

{
  "Type": "DATASOURCE::DRDS::Account",
  "Properties": {
    "DrdsAccountName": String,
    "RefreshOptions": String
  }
}

屬性

屬性名稱

類型

必須

允許更新

描述

約束

DrdsAccountName

String

Drds賬號名稱。

RefreshOptions

String

當資源棧更新時,數據源資源的刷新策略。

有效值:

  • Never(默認值):更新堆棧時,從不刷新數據源資源。

  • Always:更新堆棧時,始終刷新數據源資源。

返回值

Fn::GetAtt

  • DbPrivileges:數據庫權限信息。

  • Description:賬號備注。

  • DrdsAccountName:Drds賬號名稱。

  • Host:可以訪問數據庫的IP地址。

  • AccountType:賬號類型。

示例

  • YAML格式

    ROSTemplateFormatVersion: '2015-09-01'
    Parameters:
      DrdsAccountName:
        Type: String
        Description:
          en: The name of the account.
        Required: true
    Resources:
      ExtensionDataSource:
        Type: DATASOURCE::DRDS::Account
        Properties:
          DrdsAccountName:
            Ref: DrdsAccountName
    Outputs:
      DbPrivileges:
        Description: Indicates the information about the permissions of an account on a database.
        Value:
          Fn::GetAtt:
            - ExtensionDataSource
            - DbPrivileges
      Description:
        Description: Account remarks. The default value of the advanced account is **Created by DRDS**, and the normal account does not have any comments. Remarks can be customized in account management.
        Value:
          Fn::GetAtt:
            - ExtensionDataSource
            - Description
      DrdsAccountName:
        Description: Indicates the username of an instance account.
        Value:
          Fn::GetAtt:
            - ExtensionDataSource
            - DrdsAccountName
      Host:
        Description: Indicates an IP address that is allowed to access the database. The value % indicates that each IP address is allowed to access the database.
        Value:
          Fn::GetAtt:
            - ExtensionDataSource
            - Host
      AccountType:
        Description: |-
          Indicates the type of an instance account. Valid values: 
          0: The instance account is a privileged account.
          1: The instance account is a standard account.
        Value:
          Fn::GetAtt:
            - ExtensionDataSource
            - AccountType
  • JSON格式

    {
      "ROSTemplateFormatVersion": "2015-09-01",
      "Parameters": {
        "DrdsAccountName": {
          "Type": "String",
          "Description": {
            "en": "The name of the account."
          },
          "Required": true
        }
      },
      "Resources": {
        "ExtensionDataSource": {
          "Type": "DATASOURCE::DRDS::Account",
          "Properties": {
            "DrdsAccountName": {
              "Ref": "DrdsAccountName"
            }
          }
        }
      },
      "Outputs": {
        "DbPrivileges": {
          "Description": "Indicates the information about the permissions of an account on a database.",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionDataSource",
              "DbPrivileges"
            ]
          }
        },
        "Description": {
          "Description": "Account remarks. The default value of the advanced account is **Created by DRDS**, and the normal account does not have any comments. Remarks can be customized in account management.",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionDataSource",
              "Description"
            ]
          }
        },
        "DrdsAccountName": {
          "Description": "Indicates the username of an instance account.",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionDataSource",
              "DrdsAccountName"
            ]
          }
        },
        "Host": {
          "Description": "Indicates an IP address that is allowed to access the database. The value % indicates that each IP address is allowed to access the database.",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionDataSource",
              "Host"
            ]
          }
        },
        "AccountType": {
          "Description": "Indicates the type of an instance account. Valid values: \n0: The instance account is a privileged account.\n1: The instance account is a standard account.",
          "Value": {
            "Fn::GetAtt": [
              "ExtensionDataSource",
              "AccountType"
            ]
          }
        }
      }
    }