次の方法で共有


Microsoft.HDInsight クラスター/privateEndpointConnections 2023-04-15-preview

Bicep リソース定義

クラスター/privateEndpointConnections リソースの種類は、次を対象とする操作と共にデプロイできます。

  • リソース グループの - リソース グループのデプロイ コマンド 参照

各 API バージョンで変更されたプロパティの一覧については、変更ログの参照してください。

リソースの形式

Microsoft.HDInsight/clusters/privateEndpointConnections リソースを作成するには、次の Bicep をテンプレートに追加します。

resource symbolicname 'Microsoft.HDInsight/clusters/privateEndpointConnections@2023-04-15-preview' = {
  parent: resourceSymbolicName
  name: 'string'
  properties: {
    privateLinkServiceConnectionState: {
      actionsRequired: 'string'
      description: 'string'
      status: 'string'
    }
  }
}

プロパティ値

Microsoft.HDInsight/clusters/privateEndpointConnections

名前 形容 価値
名前 リソース名 string (必須)
Bicep では、子リソースの親リソースを指定できます。 このプロパティを追加する必要があるのは、子リソースが親リソースの外部で宣言されている場合のみです。

詳細については、「親リソースの外部 子リソース」を参照してください。
種類のリソースのシンボリック名: クラスター
プロパティ プライベート エンドポイント接続プロパティ。 PrivateEndpointConnectionProperties (必須)

PrivateEndpointConnectionProperties

名前 形容 価値
privateLinkServiceConnectionState プライベート リンク サービスの接続状態。 PrivateLinkServiceConnectionState (必須)

PrivateLinkServiceConnectionState

名前 形容 価値
actionsRequired それ以上のアクションがあるかどうか。
形容 状態の説明 (省略可能)。
地位 具体的なプライベート リンク サービス接続。 'Approved'
'Pending'
'Rejected'
'Removed' (必須)

ARM テンプレート リソース定義

クラスター/privateEndpointConnections リソースの種類は、次を対象とする操作と共にデプロイできます。

  • リソース グループの - リソース グループのデプロイ コマンド 参照

各 API バージョンで変更されたプロパティの一覧については、変更ログの参照してください。

リソースの形式

Microsoft.HDInsight/clusters/privateEndpointConnections リソースを作成するには、次の JSON をテンプレートに追加します。

{
  "type": "Microsoft.HDInsight/clusters/privateEndpointConnections",
  "apiVersion": "2023-04-15-preview",
  "name": "string",
  "properties": {
    "privateLinkServiceConnectionState": {
      "actionsRequired": "string",
      "description": "string",
      "status": "string"
    }
  }
}

プロパティ値

Microsoft.HDInsight/clusters/privateEndpointConnections

名前 形容 価値
apiVersion API のバージョン '2023-04-15-preview'
名前 リソース名 string (必須)
プロパティ プライベート エンドポイント接続プロパティ。 PrivateEndpointConnectionProperties (必須)
種類 リソースの種類 'Microsoft.HDInsight/clusters/privateEndpointConnections'

PrivateEndpointConnectionProperties

名前 形容 価値
privateLinkServiceConnectionState プライベート リンク サービスの接続状態。 PrivateLinkServiceConnectionState (必須)

PrivateLinkServiceConnectionState

名前 形容 価値
actionsRequired それ以上のアクションがあるかどうか。
形容 状態の説明 (省略可能)。
地位 具体的なプライベート リンク サービス接続。 'Approved'
'Pending'
'Rejected'
'Removed' (必須)

Terraform (AzAPI プロバイダー) リソース定義

クラスター/privateEndpointConnections リソースの種類は、次を対象とする操作と共にデプロイできます。

  • リソース グループの

各 API バージョンで変更されたプロパティの一覧については、変更ログの参照してください。

リソースの形式

Microsoft.HDInsight/clusters/privateEndpointConnections リソースを作成するには、次の Terraform をテンプレートに追加します。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.HDInsight/clusters/privateEndpointConnections@2023-04-15-preview"
  name = "string"
  body = jsonencode({
    properties = {
      privateLinkServiceConnectionState = {
        actionsRequired = "string"
        description = "string"
        status = "string"
      }
    }
  })
}

プロパティ値

Microsoft.HDInsight/clusters/privateEndpointConnections

名前 形容 価値
名前 リソース名 string (必須)
parent_id このリソースの親であるリソースの ID。 種類のリソースの ID: クラスター
プロパティ プライベート エンドポイント接続プロパティ。 PrivateEndpointConnectionProperties (必須)
種類 リソースの種類 "Microsoft.HDInsight/clusters/privateEndpointConnections@2023-04-15-preview"

PrivateEndpointConnectionProperties

名前 形容 価値
privateLinkServiceConnectionState プライベート リンク サービスの接続状態。 PrivateLinkServiceConnectionState (必須)

PrivateLinkServiceConnectionState

名前 形容 価値
actionsRequired それ以上のアクションがあるかどうか。
形容 状態の説明 (省略可能)。
地位 具体的なプライベート リンク サービス接続。 'Approved'
'Pending'
'Rejected'
'Removed' (必須)