ContainerRegistryContentClient.SetManifestAsync メソッド

定義

オーバーロード

SetManifestAsync(OciImageManifest, String, Nullable<ManifestMediaType>, CancellationToken)

マニフェストを設定します。

SetManifestAsync(BinaryData, String, Nullable<ManifestMediaType>, CancellationToken)

マニフェストを設定します。

SetManifestAsync(OciImageManifest, String, Nullable<ManifestMediaType>, CancellationToken)

Source:
ContainerRegistryContentClient.cs
Source:
ContainerRegistryContentClient.cs

マニフェストを設定します。

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Containers.ContainerRegistry.SetManifestResult>> SetManifestAsync (Azure.Containers.ContainerRegistry.OciImageManifest manifest, string tag = default, Azure.Containers.ContainerRegistry.ManifestMediaType? mediaType = default, System.Threading.CancellationToken cancellationToken = default);
abstract member SetManifestAsync : Azure.Containers.ContainerRegistry.OciImageManifest * string * Nullable<Azure.Containers.ContainerRegistry.ManifestMediaType> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Containers.ContainerRegistry.SetManifestResult>>
override this.SetManifestAsync : Azure.Containers.ContainerRegistry.OciImageManifest * string * Nullable<Azure.Containers.ContainerRegistry.ManifestMediaType> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Containers.ContainerRegistry.SetManifestResult>>
Public Overridable Function SetManifestAsync (manifest As OciImageManifest, Optional tag As String = Nothing, Optional mediaType As Nullable(Of ManifestMediaType) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of SetManifestResult))

パラメーター

manifest
OciImageManifest

設定するマニフェスト。

tag
String

このマニフェストが表す成果物に割り当てる省略可能なタグ。

mediaType
Nullable<ManifestMediaType>

マニフェストのメディアの種類。 指定しない場合、この値は既定値 "application/vnd.oci.image.manifest.v1+json" に設定されます。

cancellationToken
CancellationToken

使用する取り消しトークン。

戻り値

マニフェストの設定操作の結果。

例外

が null の場合 manifest

Container Registry サービスによってエラーが返されたときにスローされます。

適用対象

SetManifestAsync(BinaryData, String, Nullable<ManifestMediaType>, CancellationToken)

Source:
ContainerRegistryContentClient.cs
Source:
ContainerRegistryContentClient.cs

マニフェストを設定します。

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Containers.ContainerRegistry.SetManifestResult>> SetManifestAsync (BinaryData manifest, string tag = default, Azure.Containers.ContainerRegistry.ManifestMediaType? mediaType = default, System.Threading.CancellationToken cancellationToken = default);
abstract member SetManifestAsync : BinaryData * string * Nullable<Azure.Containers.ContainerRegistry.ManifestMediaType> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Containers.ContainerRegistry.SetManifestResult>>
override this.SetManifestAsync : BinaryData * string * Nullable<Azure.Containers.ContainerRegistry.ManifestMediaType> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Containers.ContainerRegistry.SetManifestResult>>
Public Overridable Function SetManifestAsync (manifest As BinaryData, Optional tag As String = Nothing, Optional mediaType As Nullable(Of ManifestMediaType) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of SetManifestResult))

パラメーター

manifest
BinaryData

BinaryData設定するシリアル化されたマニフェストを格納している 。

tag
String

このマニフェストが表す成果物に割り当てる省略可能なタグ。

mediaType
Nullable<ManifestMediaType>

マニフェストのメディアの種類。 指定しない場合、この値は既定値 "application/vnd.oci.image.manifest.v1+json" に設定されます。

cancellationToken
CancellationToken

使用する取り消しトークン。

戻り値

マニフェストの設定操作の結果。

例外

が null の場合 manifest

Container Registry サービスによってエラーが返されたときにスローされます。

適用対象