次の方法で共有


Server Trust Certificates - List By Instance

ボックスから特定の Sql Managed Instanceにアップロードされたサーバー信頼証明書の一覧を取得します。

GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/serverTrustCertificates?api-version=2021-11-01

URI パラメーター

名前 / 必須 説明
managedInstanceName
path True

string

マネージド インスタンスの名前。

resourceGroupName
path True

string

リソースが含まれているリソース グループの名前。 この値は、Azure リソース マネージャー API またはポータルから取得できます。

subscriptionId
path True

string

Azure サブスクリプションを識別するサブスクリプション ID。

api-version
query True

string

要求で使用する API のバージョン。

応答

名前 説明
200 OK

ServerTrustCertificatesListResult

サーバー信頼証明書の一覧が正常に取得されました。

Other Status Codes

エラー応答: ***

  • 404 SubscriptionDoesNotHaveServer - 要求されたサーバーが見つかりませんでした

  • 404 ServerNotInSubscriptionResourceGroup - 指定されたサーバーが、指定されたリソース グループとサブスクリプションに存在しません。

Gets a list of server trust certificates on a given server.

要求のサンプル

GET https://management.azure.com/subscriptions/38e0dc56-907f-45ba-a97c-74233baad471/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testcl/serverTrustCertificates?api-version=2021-11-01

応答のサンプル

{
  "value": [
    {
      "properties": {
        "thumbprint": "33702D20EC861199852837AE6BD1A71544B681E2",
        "certificateName": "customerCertificate1"
      },
      "id": "/subscriptions/38e0dc56-907f-45ba-a97c-74233baad471/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testcl/serverTrustCertificates/customerCertificate1",
      "name": "customerCertificate1",
      "type": "Microsoft.Sql/managedInstances/serverTrustCertificates"
    },
    {
      "properties": {
        "thumbprint": "57CFA9CF16F2FB2775AF059A95C6D5B897DA2C05",
        "certificateName": "customerCertificate2"
      },
      "id": "/subscriptions/38e0dc56-907f-45ba-a97c-74233baad471/resourceGroups/testrg/providers/Microsoft.Sql/managedInstances/testcl/serverTrustCertificates/customerCertificate2",
      "name": "customerCertificate2",
      "type": "Microsoft.Sql/managedInstances/serverTrustCertificates"
    }
  ]
}

定義

名前 説明
ServerTrustCertificate

box と Sql Managed Instance間の接続を有効にするために、box からインポートされたサーバー信頼証明書。

ServerTrustCertificatesListResult

インスタンス内のサーバー信頼証明書の一覧。

ServerTrustCertificate

box と Sql Managed Instance間の接続を有効にするために、box からインポートされたサーバー信頼証明書。

名前 説明
id

string

リソースの ID

name

string

リソース名。

properties.certificateName

string

証明書名

properties.publicBlob

string

証明書パブリック BLOB

properties.thumbprint

string

証明書の拇印

type

string

リソースの種類。

ServerTrustCertificatesListResult

インスタンス内のサーバー信頼証明書の一覧。

名前 説明
nextLink

string

結果の次のページを取得するためのリンク。

value

ServerTrustCertificate[]

結果の配列。