ProductUpdateParameters コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
ProductUpdateParameters() |
ProductUpdateParameters クラスの新しいインスタンスを初期化します。 |
ProductUpdateParameters(String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, Nullable<ProductState>, String) |
ProductUpdateParameters クラスの新しいインスタンスを初期化します。 |
ProductUpdateParameters()
ProductUpdateParameters クラスの新しいインスタンスを初期化します。
public ProductUpdateParameters ();
Public Sub New ()
適用対象
ProductUpdateParameters(String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, Nullable<ProductState>, String)
ProductUpdateParameters クラスの新しいインスタンスを初期化します。
public ProductUpdateParameters (string description = default, string terms = default, bool? subscriptionRequired = default, bool? approvalRequired = default, int? subscriptionsLimit = default, Microsoft.Azure.Management.ApiManagement.Models.ProductState? state = default, string displayName = default);
new Microsoft.Azure.Management.ApiManagement.Models.ProductUpdateParameters : string * string * Nullable<bool> * Nullable<bool> * Nullable<int> * Nullable<Microsoft.Azure.Management.ApiManagement.Models.ProductState> * string -> Microsoft.Azure.Management.ApiManagement.Models.ProductUpdateParameters
Public Sub New (Optional description As String = Nothing, Optional terms As String = Nothing, Optional subscriptionRequired As Nullable(Of Boolean) = Nothing, Optional approvalRequired As Nullable(Of Boolean) = Nothing, Optional subscriptionsLimit As Nullable(Of Integer) = Nothing, Optional state As Nullable(Of ProductState) = Nothing, Optional displayName As String = Nothing)
パラメーター
- description
- String
製品の説明。 HTML 書式設定タグを含めることができます。
- terms
- String
製品の使用条件。 製品をサブスクライブしようとする開発者に提示される条件です。開発者は、サブスクリプション プロセスを完了する前にこれらの条件に同意する必要があります。
この製品に含まれる API にアクセスするために製品サブスクリプションが必要かどうか。 true の場合、製品は "protected" と呼ばれ、製品に含まれる API への要求が成功するには有効なサブスクリプション キーが必要です。 false の場合、製品は "オープン" と呼ばれ、製品に含まれる API への要求はサブスクリプション キーなしで行うことができます。 新しい製品を作成するときにプロパティを省略すると、値は true と見なされます。
サブスクリプションの承認が必要かどうか。 false の場合、新しいサブスクリプションが自動的に承認され、開発者はサブスクライブ直後に製品の API を呼び出すことができます。 true の場合、管理者は、開発者が製品の API を使用する前に、サブスクリプションを手動で承認する必要があります。 subscriptionRequired プロパティが存在し、値が false の場合にのみ存在できます。
ユーザーがこの製品に対して同時に持ち込むことができるサブスクリプションの数かどうか。 ユーザーサブスクリプションごとに無制限を許可するには、null または省略に設定します。 subscriptionRequired プロパティが存在し、値が false の場合にのみ存在できます。
- state
- Nullable<ProductState>
製品が公開されているかどうか。 公開された製品は、開発者ポータルのユーザーが検出できます。 公開されていない製品は、管理者にのみ表示されます。 Product の既定の状態はPublished ではありません。 使用可能な値には、'notPublished'、'published' などがあります。
- displayName
- String
製品名。
適用対象
Azure SDK for .NET