すべてのプロダクト
Search
ドキュメントセンター

Resource Orchestration Service:ALIYUN::CloudSSO::SCIMServerCredential

最終更新日:Mar 17, 2025

ALIYUN::CloudSSO::SCIMServerCredential は、System for Cross-domain Identity Management (SCIM) クレデンシャルを作成するために使用されます。

構文

{
  "Type": "ALIYUN::CloudSSO::SCIMServerCredential",
  "Properties": {
    "Status": String,
    "DirectoryId": String
  }
}

プロパティ

プロパティ

タイプ

必須

編集可能

説明

制約

DirectoryId

String

はい

いいえ

ディレクトリ ID。

なし。

Status

String

いいえ

はい

SCIM クレデンシャルのステータス。

有効な値:

  • Enabled

  • Disabled

戻り値

Fn::GetAtt

  • CredentialId: SCIM クレデンシャルの ID。

  • CredentialSecret: SCIM クレデンシャル。

YAML 形式

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  DirectoryId:
    Description:
      en: The ID of the directory.
    Required: true
    Type: String
  Status:
    AllowedValues:
    - Enabled
    - Disabled
    Default: Enabled
    Description:
      en: 'The new status of the SCIM credential. Valid values:

        - Enabled: The SCIM credential is enabled.

        - Disabled: The SCIM credential is disabled.

        The default value is Enabled.'
    Required: false
    Type: String
Resources:
  ScimServerCredential:
    Properties:
      DirectoryId:
        Ref: DirectoryId
      Status:
        Ref: Status
    Type: ALIYUN::CloudSSO::SCIMServerCredential
Outputs:
  CredentialId:
    Description: SCIM クレデンシャルの ID
    Value:
      Fn::GetAtt:
      - ScimServerCredential
      - CredentialId
  CredentialSecret:
    Description: SCIM クレデンシャルのシークレット
    Value:
      Fn::GetAtt:
      - ScimServerCredential
      - CredentialSecret
                        

JSON 形式

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "Status": {
      "Type": "String",
      "Description": {
        "en": "The new status of the SCIM credential. Valid values:\n- Enabled: The SCIM credential is enabled.\n- Disabled: The SCIM credential is disabled.\nThe default value is Enabled."
      },
      "AllowedValues": [
        "Enabled",
        "Disabled"
      ],
      "Required": false,
      "Default": "Enabled"
    },
    "DirectoryId": {
      "Type": "String",
      "Description": {
        "en": "The ID of the directory."
      },
      "Required": true
    }
  },
  "Resources": {
    "ScimServerCredential": {
      "Type": "ALIYUN::CloudSSO::SCIMServerCredential",
      "Properties": {
        "Status": {
          "Ref": "Status"
        },
        "DirectoryId": {
          "Ref": "DirectoryId"
        }
      }
    }
  },
  "Outputs": {
    "CredentialId": {
      "Description": "SCIM クレデンシャルの ID",
      "Value": {
        "Fn::GetAtt": [
          "ScimServerCredential",
          "CredentialId"
        ]
      }
    },
    "CredentialSecret": {
      "Description": "SCIM クレデンシャルのシークレット",
      "Value": {
        "Fn::GetAtt": [
          "ScimServerCredential",
          "CredentialSecret"
        ]
      }
    }
  }
}