次の方法で共有


hardwareOathTokenAuthenticationMethodDevice リソースの種類

名前空間: microsoft.graph

重要

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

ディレクトリ内のハードウェア OATH デバイスを公開します。 詳細については、「ハードウェア OATH トークン](/entra/identity/authentication/concept-authentication-oath-tokens#oath-hardware-tokens-preview)」を参照してください。

authenticationMethodDevice から継承します。

メソッド

メソッド 戻り値の種類 説明
List hardwareOathTokenAuthenticationMethodDevice コレクション インベントリ内のすべてのハードウェア OATH トークンを一覧表示します。
Create hardwareOathTokenAuthenticationMethodDevice 新しい hardwareOathTokenAuthenticationMethodDevice オブジェクトを作成します。
1 つ以上のオブジェクトを作成する authenticationMethodDevice 1 つ以上の authenticationMethodDevice オブジェクトを 作成します。
Get hardwareOathTokenAuthenticationMethodDevice hardwareOathTokenAuthenticationMethodDevice オブジェクトのプロパティとリレーションシップを読み取ります。
Update hardwareOathTokenAuthenticationMethodDevice hardwareOathTokenAuthenticationMethodDevice オブジェクトのプロパティを更新します。
Delete なし authenticationMethodDevice オブジェクトを削除します。 最初にトークンの割り当てを解除する必要があります。

プロパティ

プロパティ 説明
assignedTo identity トークンが割り当てられているユーザー。 Null 許容型。 $filter (eq)をサポートしています。
displayName String ハードウェア OATH トークンに指定できる名前。 authenticationMethodDevice から継承されます。
hashFunction hardwareOathTokenHashFunction ハードウェア トークンのハッシュ関数。 使用可能な値: hmacsha1hmacsha256。 既定値は hmacsha1 です。 $filter (eq)をサポートしています。
id String ハードウェア OATH トークンの一意識別子。 エンティティから継承 されます。
manufacturer String ハードウェア トークンの製造元名。 $filter (eq)をサポートしています。
model String ハードウェア トークンのモデル名。 $filter (eq)をサポートしています。
secretKey String ベンダーによって提供される、特定のハードウェア トークンの秘密キー。
シリアル番号 String 多くの場合、デバイスの背面にある特定のハードウェア トークンのシリアル番号。 $select$filter (eq) をサポートします。
status hardwareOathTokenStatus ハードウェア OATH トークンの状態。使用可能な値は、 availableassignedactivatedfailedActivationです。 $filter(eq) をサポートします。
timeIntervalInSeconds Int32 6 桁の検証コードの更新間隔 (秒単位)。 使用可能な値は 30 または 60 です。 $filter (eq)をサポートしています。

リレーションシップ

リレーションシップ 説明
assignTo user ハードウェア OATH トークンをユーザーに割り当てます。

JSON 表記

次の JSON 表現は、リソースの種類を示しています。

{
  "@odata.type": "#microsoft.graph.hardwareOathTokenAuthenticationMethodDevice",
  "id": "String (identifier)",
  "displayName": "String",
  "serialNumber": "String",
  "manufacturer": "String",
  "model": "String",
  "secretKey": "String",
  "timeIntervalInSeconds": "Integer",
  "status": "String",
  "assignedTo": {
    "@odata.type": "microsoft.graph.identity"
  },
  "hashFunction": "String"
}