Package com.exoscale.sdk.model
Class DeployTarget
- java.lang.Object
-
- com.exoscale.sdk.model.DeployTarget
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", comments="Generator version: 7.4.0") public class DeployTarget extends Object
Deploy target
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DeployTarget.TypeEnum
Deploy Target type
-
Field Summary
Fields Modifier and Type Field Description static String
JSON_PROPERTY_DESCRIPTION
static String
JSON_PROPERTY_ID
static String
JSON_PROPERTY_NAME
static String
JSON_PROPERTY_TYPE
-
Constructor Summary
Constructors Constructor Description DeployTarget()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeployTarget
description(String description)
boolean
equals(Object o)
Return true if this deploy-target object is equal to o.String
getDescription()
Deploy Target descriptionUUID
getId()
Deploy Target IDString
getName()
Deploy Target nameDeployTarget.TypeEnum
getType()
Deploy Target typeint
hashCode()
DeployTarget
id(UUID id)
DeployTarget
name(String name)
void
setDescription(String description)
void
setId(UUID id)
void
setName(String name)
void
setType(DeployTarget.TypeEnum type)
String
toString()
String
toUrlQueryString()
Convert the instance into URL query string.String
toUrlQueryString(String prefix)
Convert the instance into URL query string.DeployTarget
type(DeployTarget.TypeEnum type)
-
-
-
Field Detail
-
JSON_PROPERTY_ID
public static final String JSON_PROPERTY_ID
- See Also:
- Constant Field Values
-
JSON_PROPERTY_NAME
public static final String JSON_PROPERTY_NAME
- See Also:
- Constant Field Values
-
JSON_PROPERTY_TYPE
public static final String JSON_PROPERTY_TYPE
- See Also:
- Constant Field Values
-
JSON_PROPERTY_DESCRIPTION
public static final String JSON_PROPERTY_DESCRIPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
id
public DeployTarget id(UUID id)
-
getId
@Nonnull public UUID getId()
Deploy Target ID- Returns:
- id
-
setId
public void setId(UUID id)
-
name
public DeployTarget name(String name)
-
getName
@Nullable public String getName()
Deploy Target name- Returns:
- name
-
setName
public void setName(String name)
-
type
public DeployTarget type(DeployTarget.TypeEnum type)
-
getType
@Nullable public DeployTarget.TypeEnum getType()
Deploy Target type- Returns:
- type
-
setType
public void setType(DeployTarget.TypeEnum type)
-
description
public DeployTarget description(String description)
-
getDescription
@Nullable public String getDescription()
Deploy Target description- Returns:
- description
-
setDescription
public void setDescription(String description)
-
equals
public boolean equals(Object o)
Return true if this deploy-target object is equal to o.
-
toUrlQueryString
public String toUrlQueryString()
Convert the instance into URL query string.- Returns:
- URL query string
-
-