次の方法で共有


Batch Account - List Outbound Network Dependencies Endpoints

この Batch アカウントの Batch コンピューティング ノードが Batch サービス管理の一部として呼び出すエンドポイントをListsします。 指定した仮想ネットワーク内にプールをデプロイする場合は、ネットワークでこれらのエンドポイントへの送信アクセスが許可されていることを確認する必要があります。 これらのエンドポイントへのアクセスを許可しないと、Batch によって影響を受けるノードが使用不可としてマークされる可能性があります。 仮想ネットワーク内でのプールの作成の詳細については、「」を参照してください https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network

GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/outboundNetworkDependenciesEndpoints?api-version=2024-02-01

URI パラメーター

名前 / 必須 説明
accountName
path True

string

Batch アカウントの名前。

正規表現パターン: ^[a-zA-Z0-9]+$

resourceGroupName
path True

string

Batch アカウントを含むリソース グループの名前。

subscriptionId
path True

string

Azure サブスクリプション ID。 これは GUID 形式の文字列 (例: 000000000-0000-0000-0000-0000-000000000000000000000000000000) です。

api-version
query True

string

HTTP 要求で使用される API バージョン。

応答

名前 説明
200 OK

OutboundEnvironmentEndpointCollection

操作に成功しました。 応答には、送信ネットワークの依存関係の一覧が含まれています。

Other Status Codes

CloudError

操作に失敗した理由を説明するエラー応答。

セキュリティ

azure_auth

Microsoft Entra OAuth 2.0 認証コード フロー

型: oauth2
フロー: implicit
Authorization URL (承認 URL): https://login.microsoftonline.com/common/oauth2/authorize

スコープ

名前 説明
user_impersonation ユーザー アカウントの借用

ListOutboundNetworkDependencies

要求のサンプル

GET https://management.azure.com/subscriptions/subid/resourceGroups/default-azurebatch-japaneast/providers/Microsoft.Batch/batchAccounts/sampleacct/outboundNetworkDependenciesEndpoints?api-version=2024-02-01

応答のサンプル

{
  "value": [
    {
      "category": "Azure Batch",
      "endpoints": [
        {
          "domainName": "sampleacct.japaneast.batch.azure.com",
          "description": "Applicable to job manager tasks, tasks that use job scoped authentication, or any task that makes calls to Batch.",
          "endpointDetails": [
            {
              "port": 443
            }
          ]
        },
        {
          "domainName": "japaneast.service.batch.azure.com",
          "description": "Applicable to all Azure Batch pools.",
          "endpointDetails": [
            {
              "port": 443
            }
          ]
        }
      ]
    },
    {
      "category": "Azure Storage",
      "endpoints": [
        {
          "domainName": "autostorageaccountname.blob.core.windows.net",
          "description": "AutoStorage endpoint for this Batch account. Applicable to all Azure Batch pools under this account.",
          "endpointDetails": [
            {
              "port": 443
            }
          ]
        },
        {
          "domainName": "*.blob.core.windows.net",
          "description": "Applicable to all Azure Batch pools.",
          "endpointDetails": [
            {
              "port": 443
            }
          ]
        },
        {
          "domainName": "*.table.core.windows.net",
          "description": "Applicable to all Azure Batch pools.",
          "endpointDetails": [
            {
              "port": 443
            }
          ]
        },
        {
          "domainName": "*.queue.core.windows.net",
          "description": "Applicable to all Azure Batch pools.",
          "endpointDetails": [
            {
              "port": 443
            }
          ]
        }
      ]
    },
    {
      "category": "Microsoft Package Repository",
      "endpoints": [
        {
          "domainName": "packages.microsoft.com",
          "description": "Only applicable to pools containing a Mount Configuration. Learn about Mount Configurations in Batch at https://docs.microsoft.com/azure/batch/virtual-file-mount.",
          "endpointDetails": [
            {
              "port": 443
            }
          ]
        }
      ]
    },
    {
      "category": "Azure Key Vault",
      "endpoints": [
        {
          "domainName": "*.vault.azure.net",
          "description": "Only applicable to pools containing a Disk Encryption Configuration and whose VM size does not support encryption at host. Learn more about disk encryption in Azure Batch at https://docs.microsoft.com/azure/batch/disk-encryption. Learn more about encryption at host and supported VM sizes at https://docs.microsoft.com/azure/virtual-machines/disks-enable-host-based-encryption-portal.",
          "endpointDetails": [
            {
              "port": 443
            }
          ]
        }
      ]
    }
  ]
}

定義

名前 説明
CloudError

Batch サービスからのエラー応答。

CloudErrorBody

Batch サービスからのエラー応答。

EndpointDependency

依存関係へのアクセスに使用されるドメイン名と接続の詳細。

EndpointDetail

Batch サービスとエンドポイント間の接続の詳細。

OutboundEnvironmentEndpoint

Batch サービスが送信アクセスを必要とするのと同じサービスからの関連エンドポイントのコレクション。

OutboundEnvironmentEndpointCollection

List 操作によって返される値。

CloudError

Batch サービスからのエラー応答。

名前 説明
error

CloudErrorBody

エラー応答の本文。

CloudErrorBody

Batch サービスからのエラー応答。

名前 説明
code

string

エラーの識別子。 コードは不変であり、プログラムによって使用されることを意図しています。

details

CloudErrorBody[]

エラーに関するその他の詳細の一覧。

message

string

ユーザー インターフェイスでの表示に適したエラーを説明するメッセージ。

target

string

特定のエラーのターゲット。 たとえば、エラーが発生したプロパティの名前です。

EndpointDependency

依存関係へのアクセスに使用されるドメイン名と接続の詳細。

名前 説明
description

string

依存関係に関する人間が読み取り可能な補足情報と、該当する場合。

domainName

string

依存関係のドメイン名。 ドメイン名は完全修飾であるか、* ワイルドカードを含む場合があります。

endpointDetails

EndpointDetail[]

このエンドポイントの接続の詳細の一覧。

EndpointDetail

Batch サービスとエンドポイント間の接続の詳細。

名前 説明
port

integer

エンドポイントが接続されているポート。

OutboundEnvironmentEndpoint

Batch サービスが送信アクセスを必要とするのと同じサービスからの関連エンドポイントのコレクション。

名前 説明
category

string

Batch サービスが接続するサービスの種類。

endpoints

EndpointDependency[]

Batch サービスが送信呼び出しを行うこのサービスのエンドポイント。

OutboundEnvironmentEndpointCollection

List 操作によって返される値。

名前 説明
nextLink

string

継続トークンです。

value

OutboundEnvironmentEndpoint[]

一覧表示操作によって返される送信ネットワーク依存関係エンドポイントのコレクション。