次の方法で共有


MachineLearningPartialManagedServiceIdentity クラス

定義

マネージド サービス ID (システム割り当て ID またはユーザー割り当て ID)

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

コンストラクター

MachineLearningPartialManagedServiceIdentity()

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

プロパティ

ManagedServiceIdentityType

マネージド サービス ID (システム割り当て ID またはユーザー割り当て ID) シリアル化された名前: PartialManagedServiceIdentity.type

UserAssignedIdentities

リソースに関連付けられているユーザー割り当て ID のセット。 userAssignedIdentities ディクショナリ キーは、'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName} という形式の ARM リソース ID になります。 ディクショナリ値は、要求で空のオブジェクト ({}) にすることができます。 シリアル化された名前: PartialManagedServiceIdentity.userAssignedIdentities

このプロパティの値にオブジェクトを割り当てるには、 を使用します 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" }のペイロードを作成します。

適用対象