IWithAttach<ParentT> インターフェイス

定義

Webhook 定義の最終段階。 この段階では、残りのオプション設定を指定することも、webhook 定義を親コンテナー グループ定義にアタッチすることもできます。

public interface IWithAttach<ParentT> : Microsoft.Azure.Management.ContainerRegistry.Fluent.Webhook.Definition.IWithCustomHeaders<ParentT>, Microsoft.Azure.Management.ContainerRegistry.Fluent.Webhook.Definition.IWithDefaultStatus<ParentT>, Microsoft.Azure.Management.ContainerRegistry.Fluent.Webhook.Definition.IWithRepositoriesScope<ParentT>, Microsoft.Azure.Management.ResourceManager.Fluent.Core.ChildResource.Definition.IInDefinition<ParentT>, Microsoft.Azure.Management.ResourceManager.Fluent.Core.Resource.Definition.IDefinitionWithTags<Microsoft.Azure.Management.ContainerRegistry.Fluent.Webhook.Definition.IWithAttach<ParentT>>
type IWithAttach<'ParentT> = interface
    interface IWithCustomHeaders<'ParentT>
    interface IWithRepositoriesScope<'ParentT>
    interface IWithDefaultStatus<'ParentT>
    interface IDefinitionWithTags<IWithAttach<'ParentT>>
    interface IInDefinition<'ParentT>
Public Interface IWithAttach(Of ParentT)
Implements IDefinitionWithTags(Of IWithAttach(Of ParentT)), IInDefinition(Of ParentT), IWithCustomHeaders(Of ParentT), IWithDefaultStatus(Of ParentT), IWithRepositoriesScope(Of ParentT)

型パラメーター

ParentT

この定義をアタッチした後に戻る親定義のステージ。

派生
実装

メソッド

Attach()

Webhook 定義の最終段階。 この段階では、残りのオプション設定を指定することも、webhook 定義を親コンテナー グループ定義にアタッチすることもできます。

(継承元 IInDefinition<ParentT>)
Enabled(Boolean)

Webhook の既定の状態を指定します。default は "enabled" です。

(継承元 IWithDefaultStatus<ParentT>)
WithCustomHeader(String, String)

通知に追加するカスタム ヘッダーを指定します。 このメソッドを連続して呼び出すと、ヘッダーが追加されます。

(継承元 IWithCustomHeaders<ParentT>)
WithCustomHeaders(IDictionary<String,String>)

通知に追加するカスタム ヘッダーを指定します。

(継承元 IWithCustomHeaders<ParentT>)
WithRepositoriesScope(String)

イベントをトリガーできるリポジトリのスコープを指定します。 たとえば、'foo:' はリポジトリ 'foo' のすべてのタグのイベントを意味します。 'foo:bar' は、'foo:bar' のみのイベントを意味します。 'foo' は 'foo:latest' と同等です。空は、すべてのイベントを意味します。

(継承元 IWithRepositoriesScope<ParentT>)
WithTag(String, String)

リソースにタグを追加します。

(継承元 IDefinitionWithTags<T>)
WithTags(IDictionary<String,String>)

リソースのタグを {@link Map} として指定します。

(継承元 IDefinitionWithTags<T>)

適用対象