Webhook コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
Webhook() |
Webhook クラスの新しいインスタンスを初期化します。 |
Webhook(String, IList<String>, String, String, String, IDictionary<String,String>, SystemData, String, String, String) |
Webhook クラスの新しいインスタンスを初期化します。 |
Webhook()
Webhook クラスの新しいインスタンスを初期化します。
public Webhook();
Public Sub New ()
適用対象
Webhook(String, IList<String>, String, String, String, IDictionary<String,String>, SystemData, String, String, String)
Webhook クラスの新しいインスタンスを初期化します。
public Webhook(string location, System.Collections.Generic.IList<string> actions, string id = default, string name = default, string type = default, System.Collections.Generic.IDictionary<string,string> tags = default, Microsoft.Azure.Management.ContainerRegistry.Models.SystemData systemData = default, string status = default, string scope = default, string provisioningState = default);
new Microsoft.Azure.Management.ContainerRegistry.Models.Webhook : string * System.Collections.Generic.IList<string> * string * string * string * System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Management.ContainerRegistry.Models.SystemData * string * string * string -> Microsoft.Azure.Management.ContainerRegistry.Models.Webhook
Public Sub New (location As String, actions As IList(Of String), Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional systemData As SystemData = Nothing, Optional status As String = Nothing, Optional scope As String = Nothing, Optional provisioningState As String = Nothing)
パラメーター
- location
- String
リソースの場所。 これは、リソースの作成後に変更することはできません。
- id
- String
リソース ID。
- name
- String
リソースの名前。
- type
- String
リソースの型。
- tags
- IDictionary<String,String>
リソースのタグ。
- systemData
- SystemData
リソースの作成と最後の変更に関連するメタデータ。
- status
- String
操作が呼び出されたときの Webhook の状態。 使用可能な値は次のとおりです: 'enabled'、'disabled'
- scope
- String
イベントをトリガーできるリポジトリのスコープ。 たとえば、'foo:*' はリポジトリ 'foo' のすべてのタグのイベントを意味します。 'foo:bar' は'foo:bar' のみのイベントを意味します。 'foo' は 'foo:latest' と同じです。 空は、すべてのイベントを意味します。
- provisioningState
- String
操作が呼び出されたときの Webhook のプロビジョニング状態。 使用できる値は、'Creating'、'Updating'、'Deleting'、'Succeeded'、'Failed'、'Canceled' です。
適用対象
Azure SDK for .NET