temporaryAccessPassAuthenticationMethodConfiguration リソースの種類

名前空間: microsoft.graph

重要

Microsoft Graph のバージョンの /beta API は変更される可能性があります。 実稼働アプリケーションでこれらの API を使用することは、サポートされていません。 API が v1.0 で使用できるかどうかを判断するには、 バージョン セレクターを使用します。

一時アクセス パス認証方法の使用を有効にする構成設定とユーザーまたはグループを定義する 一時アクセス パス認証方法ポリシーを表します。

authenticationMethodConfiguration から継承します。

メソッド

メソッド 戻り値の種類 説明
Get temporaryaccesspassauthenticationmethodconfiguration temporaryAccessPassAuthenticationMethodConfiguration オブジェクトのプロパティとリレーションシップを読み取ります。
Update なし temporaryAccessPassAuthenticationMethodConfiguration オブジェクトのプロパティを更新します。
Delete None temporaryAccessPassAuthenticationMethodConfiguration オブジェクトを既定の構成に戻します。

プロパティ

プロパティ 説明
defaultLength Int 一時アクセス パス オブジェクトの既定の長さ (文字数)。 8 ~ 48 文字にする必要があります。
defaultLifetimeInMinutes Int 一時アクセス パスの既定の有効期間 (分単位)。 値には、 minimumLifetimeInMinutesmaximumLifetimeInMinutes の間の任意の整数を指定できます。
excludeTargets excludeTarget コレクション ポリシーから除外されるユーザーのグループ。
id 文字列 認証方法ポリシーの識別子。 エンティティから継承 されます。
isUsableOnce ブール型 の場合 true、テナント内のすべてのパスは 1 回限りの使用に制限されます。 の場合 falseは、テナント内のパスを 1 回限りの使用または再利用可能に作成できます。
minimumLifetimeInMinutes Int テナントで作成された一時アクセス パスの最小有効期間 (分単位)。 値は、10 ~ 43200 分 (30 日に相当) の間で指定できます。
maximumLifetimeInMinutes Int テナントで作成された一時アクセス パスの最大有効期間 (分単位)。 値は、10 ~ 43200 分 (30 日に相当) の間で指定できます。
state authenticationMethodState テナントで一時アクセス パス メソッドが有効になっているかどうか。 可能な値は、enableddisabled です。 authenticationMethodConfiguration から継承されます。

リレーションシップ

リレーションシップ 説明
includeTargets authenticationMethodTarget コレクション 認証方法の使用が有効になっているグループのコレクション。

JSON 表記

リソースの JSON 表記を次に示します。

{
  "@odata.type": "#microsoft.graph.temporaryAccessPassAuthenticationMethodConfiguration",
  "id": "String (identifier)",
  "state": "String",
  "excludeTargets": [
    {
      "@odata.type": "microsoft.graph.excludeTarget"
    }
  ],
  "defaultLifetimeInMinutes": "Integer",
  "defaultLength": "Integer",
  "minimumLifetimeInMinutes": "Integer",
  "maximumLifetimeInMinutes": "Integer",
  "isUsableOnce": "Boolean",
  "includeTargets": [ { "@odata.type": "microsoft.graph.authenticationMethodTarget" } ]
}