次の方法で共有


KekIdentityProperties クラス

定義

キー暗号化キーのプロパティ。

public class KekIdentityProperties
type KekIdentityProperties = class
Public Class KekIdentityProperties
継承
KekIdentityProperties

コンストラクター

KekIdentityProperties()

KekIdentityProperties の新しいインスタンスを初期化します。

プロパティ

UserAssignedIdentityId

ユーザー割り当て ID リソース ID。

UseSystemAssignedIdentity

システム割り当て ID を使用するかどうかを指定するブール値

このプロパティにオブジェクトを割り当てるには、 を使用します FromObjectAsJson<T>(T, JsonSerializerOptions)

このプロパティに既に書式設定された json 文字列を割り当てるには、 を使用 FromString(String)します。

例 :

  • BinaryData.FromObjectAsJson("foo")"foo" のペイロードを作成します。
  • BinaryData.FromString("\"foo\"")"foo" のペイロードを作成します。
  • BinaryData.FromObjectAsJson(new { key = "value" }){ "key": "value" } のペイロードを作成します。
  • BinaryData.FromString("{\"key\": \"value\"}"){ "key": "value" }のペイロードを作成します。

適用対象