Deployment.DefinitionStages.WithTemplate インターフェイス

public static interface Deployment.DefinitionStages.WithTemplate

テンプレートを指定できるデプロイ定義。

メソッドの概要

修飾子と型 メソッドと説明
abstract WithParameters withTemplate(Object template)

テンプレートを Java オブジェクトとして指定します。

abstract WithParameters withTemplate(String templateJson)

テンプレートを JSON 文字列として指定します。

abstract WithParameters withTemplateLink(String uri, String contentVersion)

テンプレートを URL として指定します。

メソッドの詳細

withTemplate

public abstract Deployment.DefinitionStages.WithParameters withTemplate(Object template)

テンプレートを Java オブジェクトとして指定します。

Parameters:

template - Java オブジェクト

Returns:

定義の次のステージ

withTemplate

public abstract Deployment.DefinitionStages.WithParameters withTemplate(String templateJson)

テンプレートを JSON 文字列として指定します。

Parameters:

templateJson - JSON 文字列

Returns:

定義の次のステージ

Throws:

java.io.IOException - シリアル化/逆シリアル化からスローされた例外

withTemplateLink

public abstract Deployment.DefinitionStages.WithParameters withTemplateLink(String uri, String contentVersion)

テンプレートを URL として指定します。

Parameters:

uri - リモート テンプレート ファイルの場所
contentVersion - テンプレート ファイルのバージョン

Returns:

定義の次のステージ

適用対象