Deployment.DefinitionStages.WithCreate Interface

Implements

public static interface Deployment.DefinitionStages.WithCreate
extends Creatable<Deployment>

A deployment definition with sufficient inputs to create a new deployment in the cloud, but exposing additional optional inputs to specify.

Method Summary

Modifier and Type Method and Description
abstract Deployment beginCreate()

Begin executing the create request.

abstract Deployment beginCreate(Context context)

Begin executing the create request.

abstract rx.Observable<Deployment> beginCreateAsync()

Puts the request into the queue and allow the HTTP client to begin execute it when system resources are available.

abstract rx.Observable<Deployment> beginCreateAsync(Context context)

Puts the request into the queue and allow the HTTP client to begin execute it when system resources are available.

abstract Deployment create(Context context)

Execute the create request.

abstract rx.Observable<Indexable> createAsync(Context context)

Puts the request into the queue and allow the HTTP client to execute it when system resources are available.

Method Details

beginCreate

public abstract Deployment beginCreate()

Begin executing the create request.

Returns:

the resource in creating

beginCreate

public abstract Deployment beginCreate(Context context)

Begin executing the create request.

Parameters:

context - the context for the request

Returns:

the resource in creating

beginCreateAsync

public abstract Observable beginCreateAsync()

Puts the request into the queue and allow the HTTP client to begin execute it when system resources are available.

Returns:

an observable of the request

beginCreateAsync

public abstract Observable beginCreateAsync(Context context)

Puts the request into the queue and allow the HTTP client to begin execute it when system resources are available.

Parameters:

context - the context for the request

Returns:

an observable of the request

create

public abstract Deployment create(Context context)

Execute the create request.

Parameters:

context - the context for the request

Returns:

the create resource

createAsync

public abstract Observable createAsync(Context context)

Puts the request into the queue and allow the HTTP client to execute it when system resources are available.

Parameters:

context - the context for the request

Returns:

an observable of the request

Applies to