次の方法で共有


LogicApiReference クラス

定義

Api リファレンス。

public class LogicApiReference : Azure.ResourceManager.Logic.Models.LogicResourceReference
type LogicApiReference = class
    inherit LogicResourceReference
Public Class LogicApiReference
Inherits LogicResourceReference
継承
LogicApiReference

コンストラクター

LogicApiReference()

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

プロパティ

BrandColor

API のブランドの色。

Category

層。

Description

API の説明。

DisplayName

API の表示名。

IconUri

API のアイコン URI。

Id

リソース ID。

(継承元 LogicResourceReference)
IntegrationServiceEnvironment

統合サービス環境のリファレンス。

Name

リソース名を取得します。

(継承元 LogicResourceReference)
ResourceType

リソースの種類を取得します。

(継承元 LogicResourceReference)
Swagger

API の swagger。

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

適用対象