カスタムの組織のポリシー制約を作成する

このページでは、組織のポリシー サービスのカスタム制約を使用して、次の Google Cloud リソースに対する特定のオペレーションを制限する方法について説明します。

  • datastream.googleapis.com/ConnectionProfile
  • datastream.googleapis.com/Stream
  • datastream.googleapis.com/PrivateConnection

組織のポリシーの詳細については、カスタムの組織のポリシーをご覧ください。

組織のポリシーと制約について

Google Cloud 組織のポリシー サービスを使用すると、組織のリソースをプログラマティックに一元管理できます。組織のポリシー管理者は組織のポリシーを定義できます。組織のポリシーは、Google Cloud リソース階層内のGoogle Cloud リソースやそれらのリソースの子孫に適用される、制約と呼ばれる一連の制限です。組織のポリシーは、組織レベル、フォルダレベル、またはプロジェクト レベルで適用できます。

組織のポリシーを利用することで、あらかじめ用意されたマネージド制約をさまざまな Google Cloud サービスに適用できます。ただし、組織のポリシーで制限されている特定の項目をより細かくカスタマイズして制御したい場合は、カスタム制約を作成して、それを組織のポリシーで使うこともできます。

ポリシーの継承

デフォルトでは、組織のポリシーは、そのポリシーを適用したリソースの子孫に継承されます。たとえば、フォルダにポリシーを適用した場合、 Google Cloud はそのフォルダ内のすべてのプロジェクトにそのポリシーを適用します。この動作の詳細と変更方法については、階層評価ルールをご覧ください。

利点

カスタムの組織のポリシーを使用すると、Datastream リソースに特定のセキュリティ ポリシーを適用できます。たとえば、ストリームの表示名、接続プロファイルのタイプ、プライベート接続を確立できるリージョンを制限できます。これにより、組織全体でコンプライアンスとガバナンスを確保できます。

制限事項

  • ポリシーの変更は、既存の Datastream リソースに遡及的に適用されません。
  • 既存のリソース構成は、非準拠の値が含まれていても、更新されない限り有効なままです。
  • カスタム制約の評価により、リソースの作成リクエストと更新リクエストにわずかな遅延が発生する可能性があります。

始める前に

  1. Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
  2. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Roles required to select or create a project

    • Select a project: Selecting a project doesn't require a specific IAM role—you can select any project that you've been granted a role on.
    • Create a project: To create a project, you need the Project Creator (roles/resourcemanager.projectCreator), which contains the resourcemanager.projects.create permission. Learn how to grant roles.

    Go to project selector

  3. Verify that billing is enabled for your Google Cloud project.

  4. Install the Google Cloud CLI.

  5. 外部 ID プロバイダ(IdP)を使用している場合は、まず連携 ID を使用して gcloud CLI にログインする必要があります。

  6. gcloud CLI を初期化するには、次のコマンドを実行します。

    gcloud init
  7. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Roles required to select or create a project

    • Select a project: Selecting a project doesn't require a specific IAM role—you can select any project that you've been granted a role on.
    • Create a project: To create a project, you need the Project Creator (roles/resourcemanager.projectCreator), which contains the resourcemanager.projects.create permission. Learn how to grant roles.

    Go to project selector

  8. Verify that billing is enabled for your Google Cloud project.

  9. Install the Google Cloud CLI.

  10. 外部 ID プロバイダ(IdP)を使用している場合は、まず連携 ID を使用して gcloud CLI にログインする必要があります。

  11. gcloud CLI を初期化するには、次のコマンドを実行します。

    gcloud init
  12. 組織 ID を確認します。
  13. 必要なロール

    カスタムの組織のポリシーを管理するために必要な権限を取得するには、組織のリソースに対する組織のポリシー管理者roles/orgpolicy.policyAdmin)の IAM ロールを付与するよう管理者に依頼してください。ロールの付与については、プロジェクト、フォルダ、組織へのアクセス権の管理をご覧ください。

    必要な権限は、カスタムロールや他の事前定義ロールから取得することもできます。

    カスタム制約を作成する

    カスタム制約は、組織のポリシーを適用しているサービスでサポートされるリソース、メソッド、条件、アクションを使用して YAML ファイルで定義されます。カスタム制約の条件は、Common Expression Language(CEL)を使用して定義されます。CEL を使用してカスタム制約で条件を作成する方法については、カスタム制約の作成と管理の CEL セクションをご覧ください。

    カスタム制約を作成するには、次の形式で YAML ファイルを作成します。

    name: organizations/ORGANIZATION_ID/customConstraints/CONSTRAINT_NAME
    resourceTypes:
    - RESOURCE_NAME
    methodTypes:
    - CREATE
    - UPDATE
    condition: "CONDITION"
    actionType: ACTION
    displayName: DISPLAY_NAME
    description: DESCRIPTION
    

    次のように置き換えます。

    • ORGANIZATION_ID: 組織 ID(123456789 など)。

    • CONSTRAINT_NAME: 新しいカスタム制約に付ける名前。カスタム制約は custom. で始まる必要があり、大文字、小文字、数字のみを含めることができます。例: custom.restrictDatastreamStreamDisplayNameこのフィールドの最大長は 70 文字です。

    • RESOURCE_NAME: 制限するオブジェクトとフィールドを含むGoogle Cloud リソースの完全修飾名。例: datastream.googleapis.com/Stream

    • CONDITION: サポート対象のサービス リソースの表現に対して書き込まれる CEL 条件。このフィールドの最大長は 1,000 文字です。条件の書き込み先として使用できるリソースの詳細については、サポート対象のリソースをご覧ください。例: "!resource.displayName.startsWith('test-')"

    • ACTION: condition が満たされている場合に実行するアクション。有効な値は ALLOWDENY です。

    • DISPLAY_NAME: 制約の名前。わかりやすい名前を入力してください。このフィールドの最大長は 200 文字です。

    • DESCRIPTION: ポリシー違反時にエラー メッセージとして表示される制約の説明。わかりやすい説明を入力してください。このフィールドの最大長は 2,000 文字です。

    カスタム制約の作成方法については、カスタム制約の定義をご覧ください。

    カスタム制約を設定する

    新しいカスタム制約の YAML ファイルを作成したら、組織内の組織のポリシーで使用できるように設定する必要があります。カスタム制約を設定するには、gcloud org-policies set-custom-constraint コマンドを使用します。
    gcloud org-policies set-custom-constraint CONSTRAINT_PATH
    CONSTRAINT_PATH は、カスタム制約ファイルのフルパスに置き換えます。例: /home/user/customconstraint.yaml 完了すると、カスタム制約が組織のポリシーとして Google Cloud 組織のポリシーのリストに表示されます。カスタム制約が存在することを確認するには、gcloud org-policies list-custom-constraints コマンドを使用します。
    gcloud org-policies list-custom-constraints --organization=ORGANIZATION_ID
    ORGANIZATION_ID は、組織リソースの ID に置き換えます。詳細については、組織のポリシーの表示をご覧ください。

    カスタムの組織のポリシーを適用する

    制約を適用するには、それを参照する組織のポリシーを作成し、その組織のポリシーを Google Cloud リソースに適用します。

    コンソール

    1. Google Cloud コンソールで [組織のポリシー] ページに移動します。

      [組織のポリシー] に移動

    2. プロジェクト選択ツールで、組織のポリシーを設定するプロジェクトを選択します。
    3. [組織のポリシー] ページのリストで制約を選択して、その制約の [ポリシーの詳細] ページを表示します。
    4. このリソースの組織のポリシーを構成するには、[ポリシーを管理] をクリックします。
    5. [ポリシーの編集] ページで、[Override parent's policy] を選択します。
    6. [ルールを追加] をクリックします。
    7. [適用] セクションで、この組織のポリシーの適用を有効にするかどうかを選択します。
    8. 省略可: タグで組織のポリシーに条件を設定するには、[条件を追加] をクリックします。組織のポリシーに条件付きルールを追加する場合は、少なくとも 1 つは無条件のルールを追加する必要があります。そうしないとポリシーを保存できないのでご注意ください。詳細については、タグ付きの組織のポリシーの設定をご覧ください。
    9. [変更内容をテスト] をクリックして、組織のポリシーの効果をシミュレートします。以前のマネージド制約ではポリシー シミュレーションを使用できません。詳細については、Policy Simulator で組織のポリシーの変更をテストするをご覧ください。
    10. 組織のポリシーを完成させて適用するには、[ポリシーを設定] をクリックします。ポリシーが有効になるまでに最大 15 分かかります。

    gcloud

    ブール型ルールを含む組織のポリシーを作成するには、制約を参照するポリシー YAML ファイルを作成します。

          name: projects/PROJECT_ID/policies/CONSTRAINT_NAME
          spec:
            rules:
            - enforce: true
        

    次のように置き換えます。

    • PROJECT_ID: 制約を適用するプロジェクト。
    • CONSTRAINT_NAME: カスタム制約に定義した名前。たとえば、custom.restrictDatastreamStreamDisplayName のようにします。

    制約を含む組織のポリシーを適用するには、次のコマンドを実行します。

        gcloud org-policies set-policy POLICY_PATH
        

    POLICY_PATH は、組織のポリシーの YAML ファイルのパスに置き換えます。ポリシーが有効になるまでに最大 15 分かかります。

    カスタム組織のポリシーをテストする

    次の例では、表示名が test- で始まらない Datastream ストリームの作成をブロックするカスタムの制約とポリシーを作成します。

    始める前に、次のものが必要になります。

    • 組織の ID
    • プロジェクト ID

    制約を作成する

    1. 次のファイルに constraint-datastream-stream-displayname.yaml という名前を付けて保存します。

      name: organizations/ORGANIZATION_ID/customConstraints/custom.restrictDatastreamStreamDisplayName
      resourceTypes:
      - datastream.googleapis.com/Stream
      methodTypes:
      - CREATE
      - UPDATE
      condition: "!resource.displayName.startsWith('test-')"
      actionType: DENY
      displayName: Restrict stream display names
      description: All new Datastream streams must have a display name starting with 'test-'
      

      これにより、すべての新規または更新されたストリームに test- で始まる displayName が必要であるという制約が定義されます。

    2. 制約を適用します。

      gcloud org-policies set-custom-constraint ~/constraint-datastream-stream-displayname.yaml
      
    3. 制約が存在することを確認します。

      gcloud org-policies list-custom-constraints --organization=ORGANIZATION_ID
      

    ポリシーを作成する

    1. 次のファイルに policy-deny-stream-displayname.yaml という名前を付けて保存します。

      name: projects/PROJECT_ID/policies/custom.restrictDatastreamStreamDisplayName
      spec:
        rules:
        - enforce: true
      

      PROJECT_ID は、実際のプロジェクト ID に置き換えます。

    2. ポリシーを適用します。

      gcloud org-policies set-policy ~/policy-deny-stream-displayname.yaml
      

    ポリシーのテスト

    準拠していない表示名で Datastream ストリームを作成してみます。

    # This command is a conceptual example. You need to provide valid source and destination config IDs.
    # Replace <VAR> placeholders with actual values.
    gcloud datastream streams create my-prod-stream --location=<VAR>LOCATION</VAR> --display-name="production-stream" --source=<VAR>SOURCE_CP</VAR> --destination=<VAR>DEST_CP</VAR> ...
    

    出力には、次のようなエラーが含まれます。

    Operation denied by custom org policies: ["customConstraints/custom.restrictDatastreamStreamDisplayName": "All new Datastream streams must have a display name starting with 'test-'"]
    

    一般的なユースケースのカスタム組織ポリシーの例

    次の表では一般的なカスタム制約の構文例をまとめています。

    説明 制約の構文
    ストリームの表示名を制限する

    すべての新しいストリームが特定の命名規則に従うようにします。

          name: organizations/ORGANIZATION_ID/customConstraints/custom.restrictDatastreamStreamDisplayName
          resourceTypes:
          - datastream.googleapis.com/Stream
          methodTypes:
          - CREATE
          - UPDATE
          condition: "!resource.displayName.startsWith('test-')"
          actionType: DENY
          displayName: Restrict stream display names
          description: All new Datastream streams must have a display name starting with 'test-'
        
    接続プロファイル タイプを MySQL のみに制限する

    MySQL 接続プロファイルのみを作成できるようにします。

    注: 正確な条件は、接続プロファイル用に生成された Common Expression Language(CEL)プロトコル バッファの構造によって異なります。この例では、プロファイル タイプを示すフィールドがあることを前提としています。

          name: organizations/ORGANIZATION_ID/customConstraints/custom.restrictDatastreamToMySQL
          resourceTypes:
          - datastream.googleapis.com/ConnectionProfile
          methodTypes:
          - CREATE
          # This condition is an example and needs to be validated against the actual CEL proto fields.
          # It checks for the presence of the mysqlProfile field.
          condition: "!has(resource.mysqlProfile)"
          actionType: DENY
          displayName: Restrict connection profiles to MySQL
          description: Only MySQL source connection profiles can be created.
        
    プライベート接続を特定の VPC に制限する

    プライベート接続で承認済みの VPC ネットワークのみが使用されるようにします。

    注: この例では、VPC 名が resource.vpcPeeringConfig.vpc で使用可能であることを前提としています。

          name: organizations/ORGANIZATION_ID/customConstraints/custom.restrictDatastreamPrivateConnectionVPC
          resourceTypes:
          - datastream.googleapis.com/PrivateConnection
          methodTypes:
          - CREATE
          # This condition assumes the vpc name is accessible via resource.vpcPeeringConfig.vpc.
          # This needs to be verified against the actual CEL proto.
          condition: "resource.vpcPeeringConfig.vpc != 'projects/ALLOWED_PROJECT/global/networks/ALLOWED_VPC'"
          actionType: DENY
          displayName: Restrict Private Connection VPC
          description: Private Connections can only be created with the allowed VPC.
        

    Datastream でサポートされているリソース

    次の表に、カスタム制約で参照できる Datastream リソースを示します。

    リソース フィールド
    datastream.googleapis.com/ConnectionProfile resource.displayName
    resource.forwardSshConnectivity.hostname
    resource.forwardSshConnectivity.port
    resource.forwardSshConnectivity.username
    resource.gcsProfile.bucket
    resource.gcsProfile.rootPath
    resource.mongodbProfile.hostAddresses.hostname
    resource.mongodbProfile.hostAddresses.port
    resource.mongodbProfile.replicaSet
    resource.mongodbProfile.standardConnectionFormat.directConnection
    resource.mongodbProfile.username
    resource.mysqlProfile.hostname
    resource.mysqlProfile.port
    resource.mysqlProfile.username
    resource.oracleProfile.connectionAttributes
    resource.oracleProfile.databaseService
    resource.oracleProfile.hostname
    resource.oracleProfile.oracleAsmConfig.asmService
    resource.oracleProfile.oracleAsmConfig.connectionAttributes
    resource.oracleProfile.oracleAsmConfig.hostname
    resource.oracleProfile.oracleAsmConfig.oracleSslConfig.serverCertificateDistinguishedName
    resource.oracleProfile.oracleAsmConfig.port
    resource.oracleProfile.oracleAsmConfig.username
    resource.oracleProfile.oracleSslConfig.serverCertificateDistinguishedName
    resource.oracleProfile.port
    resource.oracleProfile.username
    resource.postgresqlProfile.database
    resource.postgresqlProfile.hostname
    resource.postgresqlProfile.port
    resource.postgresqlProfile.username
    resource.privateConnectivity.privateConnection
    resource.salesforceProfile.domain
    resource.salesforceProfile.oauth2ClientCredentials.clientId
    resource.salesforceProfile.userCredentials.username
    resource.sqlServerProfile.database
    resource.sqlServerProfile.hostname
    resource.sqlServerProfile.port
    resource.sqlServerProfile.username
    datastream.googleapis.com/PrivateConnection resource.displayName
    resource.pscInterfaceConfig.networkAttachment
    resource.vpcPeeringConfig.subnet
    resource.vpcPeeringConfig.vpc
    datastream.googleapis.com/Stream resource.backfillAll.mongodbExcludedObjects.databases.collections.collection
    resource.backfillAll.mongodbExcludedObjects.databases.collections.fields.field
    resource.backfillAll.mongodbExcludedObjects.databases.database
    resource.backfillAll.mysqlExcludedObjects.mysqlDatabases.database
    resource.backfillAll.mysqlExcludedObjects.mysqlDatabases.mysqlTables.mysqlColumns.collation
    resource.backfillAll.mysqlExcludedObjects.mysqlDatabases.mysqlTables.mysqlColumns.column
    resource.backfillAll.mysqlExcludedObjects.mysqlDatabases.mysqlTables.mysqlColumns.dataType
    resource.backfillAll.mysqlExcludedObjects.mysqlDatabases.mysqlTables.mysqlColumns.length
    resource.backfillAll.mysqlExcludedObjects.mysqlDatabases.mysqlTables.mysqlColumns.nullable
    resource.backfillAll.mysqlExcludedObjects.mysqlDatabases.mysqlTables.mysqlColumns.ordinalPosition
    resource.backfillAll.mysqlExcludedObjects.mysqlDatabases.mysqlTables.mysqlColumns.precision
    resource.backfillAll.mysqlExcludedObjects.mysqlDatabases.mysqlTables.mysqlColumns.primaryKey
    resource.backfillAll.mysqlExcludedObjects.mysqlDatabases.mysqlTables.mysqlColumns.scale
    resource.backfillAll.mysqlExcludedObjects.mysqlDatabases.mysqlTables.table
    resource.backfillAll.oracleExcludedObjects.oracleSchemas.oracleTables.oracleColumns.column
    resource.backfillAll.oracleExcludedObjects.oracleSchemas.oracleTables.oracleColumns.dataType
    resource.backfillAll.oracleExcludedObjects.oracleSchemas.oracleTables.oracleColumns.encoding
    resource.backfillAll.oracleExcludedObjects.oracleSchemas.oracleTables.oracleColumns.length
    resource.backfillAll.oracleExcludedObjects.oracleSchemas.oracleTables.oracleColumns.nullable
    resource.backfillAll.oracleExcludedObjects.oracleSchemas.oracleTables.oracleColumns.ordinalPosition
    resource.backfillAll.oracleExcludedObjects.oracleSchemas.oracleTables.oracleColumns.precision
    resource.backfillAll.oracleExcludedObjects.oracleSchemas.oracleTables.oracleColumns.primaryKey
    resource.backfillAll.oracleExcludedObjects.oracleSchemas.oracleTables.oracleColumns.scale
    resource.backfillAll.oracleExcludedObjects.oracleSchemas.oracleTables.table
    resource.backfillAll.oracleExcludedObjects.oracleSchemas.schema
    resource.backfillAll.postgresqlExcludedObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.column
    resource.backfillAll.postgresqlExcludedObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.dataType
    resource.backfillAll.postgresqlExcludedObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.length
    resource.backfillAll.postgresqlExcludedObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.nullable
    resource.backfillAll.postgresqlExcludedObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.ordinalPosition
    resource.backfillAll.postgresqlExcludedObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.precision
    resource.backfillAll.postgresqlExcludedObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.primaryKey
    resource.backfillAll.postgresqlExcludedObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.scale
    resource.backfillAll.postgresqlExcludedObjects.postgresqlSchemas.postgresqlTables.table
    resource.backfillAll.postgresqlExcludedObjects.postgresqlSchemas.schema
    resource.backfillAll.salesforceExcludedObjects.objects.fields.dataType
    resource.backfillAll.salesforceExcludedObjects.objects.fields.name
    resource.backfillAll.salesforceExcludedObjects.objects.fields.nillable
    resource.backfillAll.salesforceExcludedObjects.objects.objectName
    resource.backfillAll.sqlServerExcludedObjects.schemas.schema
    resource.backfillAll.sqlServerExcludedObjects.schemas.tables.columns.column
    resource.backfillAll.sqlServerExcludedObjects.schemas.tables.columns.dataType
    resource.backfillAll.sqlServerExcludedObjects.schemas.tables.columns.length
    resource.backfillAll.sqlServerExcludedObjects.schemas.tables.columns.nullable
    resource.backfillAll.sqlServerExcludedObjects.schemas.tables.columns.ordinalPosition
    resource.backfillAll.sqlServerExcludedObjects.schemas.tables.columns.precision
    resource.backfillAll.sqlServerExcludedObjects.schemas.tables.columns.primaryKey
    resource.backfillAll.sqlServerExcludedObjects.schemas.tables.columns.scale
    resource.backfillAll.sqlServerExcludedObjects.schemas.tables.table
    resource.customerManagedEncryptionKey
    resource.destinationConfig.bigqueryDestinationConfig.blmtConfig.bucket
    resource.destinationConfig.bigqueryDestinationConfig.blmtConfig.connectionName
    resource.destinationConfig.bigqueryDestinationConfig.blmtConfig.fileFormat
    resource.destinationConfig.bigqueryDestinationConfig.blmtConfig.rootPath
    resource.destinationConfig.bigqueryDestinationConfig.blmtConfig.tableFormat
    resource.destinationConfig.bigqueryDestinationConfig.dataFreshness
    resource.destinationConfig.bigqueryDestinationConfig.singleTargetDataset.datasetId
    resource.destinationConfig.bigqueryDestinationConfig.sourceHierarchyDatasets.datasetTemplate.datasetIdPrefix
    resource.destinationConfig.bigqueryDestinationConfig.sourceHierarchyDatasets.datasetTemplate.kmsKeyName
    resource.destinationConfig.bigqueryDestinationConfig.sourceHierarchyDatasets.datasetTemplate.location
    resource.destinationConfig.bigqueryDestinationConfig.sourceHierarchyDatasets.projectId
    resource.destinationConfig.destinationConnectionProfile
    resource.destinationConfig.gcsDestinationConfig.fileRotationInterval
    resource.destinationConfig.gcsDestinationConfig.fileRotationMb
    resource.destinationConfig.gcsDestinationConfig.jsonFileFormat.compression
    resource.destinationConfig.gcsDestinationConfig.jsonFileFormat.schemaFileFormat
    resource.destinationConfig.gcsDestinationConfig.path
    resource.displayName
    resource.environmentConfig.peripheralsConfig.sparkHistoryServerConfig.dataprocCluster
    resource.jupyterSession.displayName
    resource.jupyterSession.kernel
    resource.name
    resource.runtimeConfig.autotuningConfig.scenarios
    resource.runtimeConfig.cohort
    resource.runtimeConfig.containerImage
    resource.runtimeConfig.properties
    resource.runtimeConfig.repositoryConfig.pypiRepositoryConfig.pypiRepository
    resource.runtimeConfig.version
    resource.sourceConfig.mongodbSourceConfig.excludeObjects.databases.collections.collection
    resource.sourceConfig.mongodbSourceConfig.excludeObjects.databases.collections.fields.field
    resource.sourceConfig.mongodbSourceConfig.excludeObjects.databases.database
    resource.sourceConfig.mongodbSourceConfig.includeObjects.databases.collections.collection
    resource.sourceConfig.mongodbSourceConfig.includeObjects.databases.collections.fields.field
    resource.sourceConfig.mongodbSourceConfig.includeObjects.databases.database
    resource.sourceConfig.mongodbSourceConfig.maxConcurrentBackfillTasks
    resource.sourceConfig.mysqlSourceConfig.excludeObjects.mysqlDatabases.database
    resource.sourceConfig.mysqlSourceConfig.excludeObjects.mysqlDatabases.mysqlTables.mysqlColumns.collation
    resource.sourceConfig.mysqlSourceConfig.excludeObjects.mysqlDatabases.mysqlTables.mysqlColumns.column
    resource.sourceConfig.mysqlSourceConfig.excludeObjects.mysqlDatabases.mysqlTables.mysqlColumns.dataType
    resource.sourceConfig.mysqlSourceConfig.excludeObjects.mysqlDatabases.mysqlTables.mysqlColumns.length
    resource.sourceConfig.mysqlSourceConfig.excludeObjects.mysqlDatabases.mysqlTables.mysqlColumns.nullable
    resource.sourceConfig.mysqlSourceConfig.excludeObjects.mysqlDatabases.mysqlTables.mysqlColumns.ordinalPosition
    resource.sourceConfig.mysqlSourceConfig.excludeObjects.mysqlDatabases.mysqlTables.mysqlColumns.precision
    resource.sourceConfig.mysqlSourceConfig.excludeObjects.mysqlDatabases.mysqlTables.mysqlColumns.primaryKey
    resource.sourceConfig.mysqlSourceConfig.excludeObjects.mysqlDatabases.mysqlTables.mysqlColumns.scale
    resource.sourceConfig.mysqlSourceConfig.excludeObjects.mysqlDatabases.mysqlTables.table
    resource.sourceConfig.mysqlSourceConfig.includeObjects.mysqlDatabases.database
    resource.sourceConfig.mysqlSourceConfig.includeObjects.mysqlDatabases.mysqlTables.mysqlColumns.collation
    resource.sourceConfig.mysqlSourceConfig.includeObjects.mysqlDatabases.mysqlTables.mysqlColumns.column
    resource.sourceConfig.mysqlSourceConfig.includeObjects.mysqlDatabases.mysqlTables.mysqlColumns.dataType
    resource.sourceConfig.mysqlSourceConfig.includeObjects.mysqlDatabases.mysqlTables.mysqlColumns.length
    resource.sourceConfig.mysqlSourceConfig.includeObjects.mysqlDatabases.mysqlTables.mysqlColumns.nullable
    resource.sourceConfig.mysqlSourceConfig.includeObjects.mysqlDatabases.mysqlTables.mysqlColumns.ordinalPosition
    resource.sourceConfig.mysqlSourceConfig.includeObjects.mysqlDatabases.mysqlTables.mysqlColumns.precision
    resource.sourceConfig.mysqlSourceConfig.includeObjects.mysqlDatabases.mysqlTables.mysqlColumns.primaryKey
    resource.sourceConfig.mysqlSourceConfig.includeObjects.mysqlDatabases.mysqlTables.mysqlColumns.scale
    resource.sourceConfig.mysqlSourceConfig.includeObjects.mysqlDatabases.mysqlTables.table
    resource.sourceConfig.mysqlSourceConfig.maxConcurrentBackfillTasks
    resource.sourceConfig.mysqlSourceConfig.maxConcurrentCdcTasks
    resource.sourceConfig.oracleSourceConfig.binaryLogParser.logFileDirectories.archivedLogDirectory
    resource.sourceConfig.oracleSourceConfig.binaryLogParser.logFileDirectories.onlineLogDirectory
    resource.sourceConfig.oracleSourceConfig.excludeObjects.oracleSchemas.oracleTables.oracleColumns.column
    resource.sourceConfig.oracleSourceConfig.excludeObjects.oracleSchemas.oracleTables.oracleColumns.dataType
    resource.sourceConfig.oracleSourceConfig.excludeObjects.oracleSchemas.oracleTables.oracleColumns.encoding
    resource.sourceConfig.oracleSourceConfig.excludeObjects.oracleSchemas.oracleTables.oracleColumns.length
    resource.sourceConfig.oracleSourceConfig.excludeObjects.oracleSchemas.oracleTables.oracleColumns.nullable
    resource.sourceConfig.oracleSourceConfig.excludeObjects.oracleSchemas.oracleTables.oracleColumns.ordinalPosition
    resource.sourceConfig.oracleSourceConfig.excludeObjects.oracleSchemas.oracleTables.oracleColumns.precision
    resource.sourceConfig.oracleSourceConfig.excludeObjects.oracleSchemas.oracleTables.oracleColumns.primaryKey
    resource.sourceConfig.oracleSourceConfig.excludeObjects.oracleSchemas.oracleTables.oracleColumns.scale
    resource.sourceConfig.oracleSourceConfig.excludeObjects.oracleSchemas.oracleTables.table
    resource.sourceConfig.oracleSourceConfig.excludeObjects.oracleSchemas.schema
    resource.sourceConfig.oracleSourceConfig.includeObjects.oracleSchemas.oracleTables.oracleColumns.column
    resource.sourceConfig.oracleSourceConfig.includeObjects.oracleSchemas.oracleTables.oracleColumns.dataType
    resource.sourceConfig.oracleSourceConfig.includeObjects.oracleSchemas.oracleTables.oracleColumns.encoding
    resource.sourceConfig.oracleSourceConfig.includeObjects.oracleSchemas.oracleTables.oracleColumns.length
    resource.sourceConfig.oracleSourceConfig.includeObjects.oracleSchemas.oracleTables.oracleColumns.nullable
    resource.sourceConfig.oracleSourceConfig.includeObjects.oracleSchemas.oracleTables.oracleColumns.ordinalPosition
    resource.sourceConfig.oracleSourceConfig.includeObjects.oracleSchemas.oracleTables.oracleColumns.precision
    resource.sourceConfig.oracleSourceConfig.includeObjects.oracleSchemas.oracleTables.oracleColumns.primaryKey
    resource.sourceConfig.oracleSourceConfig.includeObjects.oracleSchemas.oracleTables.oracleColumns.scale
    resource.sourceConfig.oracleSourceConfig.includeObjects.oracleSchemas.oracleTables.table
    resource.sourceConfig.oracleSourceConfig.includeObjects.oracleSchemas.schema
    resource.sourceConfig.oracleSourceConfig.maxConcurrentBackfillTasks
    resource.sourceConfig.oracleSourceConfig.maxConcurrentCdcTasks
    resource.sourceConfig.postgresqlSourceConfig.excludeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.column
    resource.sourceConfig.postgresqlSourceConfig.excludeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.dataType
    resource.sourceConfig.postgresqlSourceConfig.excludeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.length
    resource.sourceConfig.postgresqlSourceConfig.excludeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.nullable
    resource.sourceConfig.postgresqlSourceConfig.excludeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.ordinalPosition
    resource.sourceConfig.postgresqlSourceConfig.excludeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.precision
    resource.sourceConfig.postgresqlSourceConfig.excludeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.primaryKey
    resource.sourceConfig.postgresqlSourceConfig.excludeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.scale
    resource.sourceConfig.postgresqlSourceConfig.excludeObjects.postgresqlSchemas.postgresqlTables.table
    resource.sourceConfig.postgresqlSourceConfig.excludeObjects.postgresqlSchemas.schema
    resource.sourceConfig.postgresqlSourceConfig.includeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.column
    resource.sourceConfig.postgresqlSourceConfig.includeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.dataType
    resource.sourceConfig.postgresqlSourceConfig.includeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.length
    resource.sourceConfig.postgresqlSourceConfig.includeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.nullable
    resource.sourceConfig.postgresqlSourceConfig.includeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.ordinalPosition
    resource.sourceConfig.postgresqlSourceConfig.includeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.precision
    resource.sourceConfig.postgresqlSourceConfig.includeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.primaryKey
    resource.sourceConfig.postgresqlSourceConfig.includeObjects.postgresqlSchemas.postgresqlTables.postgresqlColumns.scale
    resource.sourceConfig.postgresqlSourceConfig.includeObjects.postgresqlSchemas.postgresqlTables.table
    resource.sourceConfig.postgresqlSourceConfig.includeObjects.postgresqlSchemas.schema
    resource.sourceConfig.postgresqlSourceConfig.maxConcurrentBackfillTasks
    resource.sourceConfig.postgresqlSourceConfig.publication
    resource.sourceConfig.postgresqlSourceConfig.replicationSlot
    resource.sourceConfig.salesforceSourceConfig.excludeObjects.objects.fields.dataType
    resource.sourceConfig.salesforceSourceConfig.excludeObjects.objects.fields.name
    resource.sourceConfig.salesforceSourceConfig.excludeObjects.objects.fields.nillable
    resource.sourceConfig.salesforceSourceConfig.excludeObjects.objects.objectName
    resource.sourceConfig.salesforceSourceConfig.includeObjects.objects.fields.dataType
    resource.sourceConfig.salesforceSourceConfig.includeObjects.objects.fields.name
    resource.sourceConfig.salesforceSourceConfig.includeObjects.objects.fields.nillable
    resource.sourceConfig.salesforceSourceConfig.includeObjects.objects.objectName
    resource.sourceConfig.salesforceSourceConfig.pollingInterval
    resource.sourceConfig.sourceConnectionProfile
    resource.sourceConfig.sqlServerSourceConfig.excludeObjects.schemas.schema
    resource.sourceConfig.sqlServerSourceConfig.excludeObjects.schemas.tables.columns.column
    resource.sourceConfig.sqlServerSourceConfig.excludeObjects.schemas.tables.columns.dataType
    resource.sourceConfig.sqlServerSourceConfig.excludeObjects.schemas.tables.columns.length
    resource.sourceConfig.sqlServerSourceConfig.excludeObjects.schemas.tables.columns.nullable
    resource.sourceConfig.sqlServerSourceConfig.excludeObjects.schemas.tables.columns.ordinalPosition
    resource.sourceConfig.sqlServerSourceConfig.excludeObjects.schemas.tables.columns.precision
    resource.sourceConfig.sqlServerSourceConfig.excludeObjects.schemas.tables.columns.primaryKey
    resource.sourceConfig.sqlServerSourceConfig.excludeObjects.schemas.tables.columns.scale
    resource.sourceConfig.sqlServerSourceConfig.excludeObjects.schemas.tables.table
    resource.sourceConfig.sqlServerSourceConfig.includeObjects.schemas.schema
    resource.sourceConfig.sqlServerSourceConfig.includeObjects.schemas.tables.columns.column
    resource.sourceConfig.sqlServerSourceConfig.includeObjects.schemas.tables.columns.dataType
    resource.sourceConfig.sqlServerSourceConfig.includeObjects.schemas.tables.columns.length
    resource.sourceConfig.sqlServerSourceConfig.includeObjects.schemas.tables.columns.nullable
    resource.sourceConfig.sqlServerSourceConfig.includeObjects.schemas.tables.columns.ordinalPosition
    resource.sourceConfig.sqlServerSourceConfig.includeObjects.schemas.tables.columns.precision
    resource.sourceConfig.sqlServerSourceConfig.includeObjects.schemas.tables.columns.primaryKey
    resource.sourceConfig.sqlServerSourceConfig.includeObjects.schemas.tables.columns.scale
    resource.sourceConfig.sqlServerSourceConfig.includeObjects.schemas.tables.table
    resource.sourceConfig.sqlServerSourceConfig.maxConcurrentBackfillTasks
    resource.sourceConfig.sqlServerSourceConfig.maxConcurrentCdcTasks
    resource.state

    次のステップ