Microsoft。SQL managedInstances/privateEndpointConnections 2025-01-01

Bicepリソースの定義

managedInstances/privateEndpointConnections リソースの種類は、次をターゲットとする操作と共にデプロイできます。

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

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

リソースの形式

Microsoftを作るために。Sql/managedInstances/privateEndpointConnectionsリソースで、テンプレートに以下のBicepを追加してください。

resource symbolicname 'Microsoft.Sql/managedInstances/privateEndpointConnections@2025-01-01' = {
  parent: resourceSymbolicName
  name: 'string'
  properties: {
    privateEndpoint: {
      id: 'string'
    }
    privateLinkServiceConnectionState: {
      description: 'string'
      status: 'string'
    }
  }
}

プロパティ値

Microsoft。Sql/managedInstances/privateEndpointConnections

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

詳細については、Child resource outside parent resourceをご覧ください。
種類のリソースのシンボリック名: managedInstances
プロパティ リソースのプロパティ。 ManagedInstancePrivateEndpointConnectionProperties

ManagedInstancePrivateEndpointConnectionProperties

名前 説明 価値
プライベートエンドポイント 接続が属するプライベート エンドポイント。 ManagedInstancePrivateEndpointProperty
privateLinkServiceConnectionState プライベート エンドポイント接続の接続状態。 ManagedInstancePrivateLinkServiceConnectionStateProperty

ManagedInstancePrivateEndpointProperty

名前 説明 価値
識別子 プライベート エンドポイントのリソース ID。 文字列

ManagedInstancePrivateLinkServiceConnectionStateProperty

名前 説明 価値
説明 プライベート リンク サービスの接続の説明。 string (必須)
状態 プライベート リンク サービスの接続状態。 string (必須)

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

managedInstances/privateEndpointConnections リソースの種類は、次をターゲットとする操作と共にデプロイできます。

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

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

リソースの形式

Microsoftを作るために。Sql/managedInstances/privateEndpointConnections リソースで、テンプレートに以下の JSON を追加してください。

{
  "type": "Microsoft.Sql/managedInstances/privateEndpointConnections",
  "apiVersion": "2025-01-01",
  "name": "string",
  "properties": {
    "privateEndpoint": {
      "id": "string"
    },
    "privateLinkServiceConnectionState": {
      "description": "string",
      "status": "string"
    }
  }
}

プロパティ値

Microsoft。Sql/managedInstances/privateEndpointConnections

名前 説明 価値
apiVersion API のバージョン '2025-01-01'
名前 リソース名 string (必須)
プロパティ リソースのプロパティ。 ManagedInstancePrivateEndpointConnectionProperties
リソースの種類 「Microsoft。Sql/managedInstances/privateEndpointConnections'

ManagedInstancePrivateEndpointConnectionProperties

名前 説明 価値
プライベートエンドポイント 接続が属するプライベート エンドポイント。 ManagedInstancePrivateEndpointProperty
privateLinkServiceConnectionState プライベート エンドポイント接続の接続状態。 ManagedInstancePrivateLinkServiceConnectionStateProperty

ManagedInstancePrivateEndpointProperty

名前 説明 価値
識別子 プライベート エンドポイントのリソース ID。 文字列

ManagedInstancePrivateLinkServiceConnectionStateProperty

名前 説明 価値
説明 プライベート リンク サービスの接続の説明。 string (必須)
状態 プライベート リンク サービスの接続状態。 string (必須)

使用例

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

managedInstances/privateEndpointConnections リソースの種類は、次をターゲットとする操作と共にデプロイできます。

  • リソース グループ

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

リソースの形式

Microsoftを作るために。Sql/managedInstances/privateEndpointConnections リソースで、テンプレートに以下のTerraformを追加してください。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Sql/managedInstances/privateEndpointConnections@2025-01-01"
  name = "string"
  parent_id = "string"
  body = {
    properties = {
      privateEndpoint = {
        id = "string"
      }
      privateLinkServiceConnectionState = {
        description = "string"
        status = "string"
      }
    }
  }
}

プロパティ値

Microsoft。Sql/managedInstances/privateEndpointConnections

名前 説明 価値
名前 リソース名 string (必須)
parent_id このリソースの親であるリソースの ID。 種類のリソースの ID: managedInstances
プロパティ リソースのプロパティ。 ManagedInstancePrivateEndpointConnectionProperties
リソースの種類 「Microsoft。Sql/managedInstances/privateEndpointConnections@2025-01-01"

ManagedInstancePrivateEndpointConnectionProperties

名前 説明 価値
プライベートエンドポイント 接続が属するプライベート エンドポイント。 ManagedInstancePrivateEndpointProperty
privateLinkServiceConnectionState プライベート エンドポイント接続の接続状態。 ManagedInstancePrivateLinkServiceConnectionStateProperty

ManagedInstancePrivateEndpointProperty

名前 説明 価値
識別子 プライベート エンドポイントのリソース ID。 文字列

ManagedInstancePrivateLinkServiceConnectionStateProperty

名前 説明 価値
説明 プライベート リンク サービスの接続の説明。 string (必須)
状態 プライベート リンク サービスの接続状態。 string (必須)