
com.pulumi.azurenative.chaos.outputs.CapabilityPropertiesResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.chaos.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class CapabilityPropertiesResponse {
/**
* @return Localized string of the description.
*
*/
private String description;
/**
* @return URL to retrieve JSON schema of the Capability parameters.
*
*/
private String parametersSchema;
/**
* @return String of the Publisher that this Capability extends.
*
*/
private String publisher;
/**
* @return String of the Target Type that this Capability extends.
*
*/
private String targetType;
/**
* @return String of the URN for this Capability Type.
*
*/
private String urn;
private CapabilityPropertiesResponse() {}
/**
* @return Localized string of the description.
*
*/
public String description() {
return this.description;
}
/**
* @return URL to retrieve JSON schema of the Capability parameters.
*
*/
public String parametersSchema() {
return this.parametersSchema;
}
/**
* @return String of the Publisher that this Capability extends.
*
*/
public String publisher() {
return this.publisher;
}
/**
* @return String of the Target Type that this Capability extends.
*
*/
public String targetType() {
return this.targetType;
}
/**
* @return String of the URN for this Capability Type.
*
*/
public String urn() {
return this.urn;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(CapabilityPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String description;
private String parametersSchema;
private String publisher;
private String targetType;
private String urn;
public Builder() {}
public Builder(CapabilityPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.description = defaults.description;
this.parametersSchema = defaults.parametersSchema;
this.publisher = defaults.publisher;
this.targetType = defaults.targetType;
this.urn = defaults.urn;
}
@CustomType.Setter
public Builder description(String description) {
if (description == null) {
throw new MissingRequiredPropertyException("CapabilityPropertiesResponse", "description");
}
this.description = description;
return this;
}
@CustomType.Setter
public Builder parametersSchema(String parametersSchema) {
if (parametersSchema == null) {
throw new MissingRequiredPropertyException("CapabilityPropertiesResponse", "parametersSchema");
}
this.parametersSchema = parametersSchema;
return this;
}
@CustomType.Setter
public Builder publisher(String publisher) {
if (publisher == null) {
throw new MissingRequiredPropertyException("CapabilityPropertiesResponse", "publisher");
}
this.publisher = publisher;
return this;
}
@CustomType.Setter
public Builder targetType(String targetType) {
if (targetType == null) {
throw new MissingRequiredPropertyException("CapabilityPropertiesResponse", "targetType");
}
this.targetType = targetType;
return this;
}
@CustomType.Setter
public Builder urn(String urn) {
if (urn == null) {
throw new MissingRequiredPropertyException("CapabilityPropertiesResponse", "urn");
}
this.urn = urn;
return this;
}
public CapabilityPropertiesResponse build() {
final var _resultValue = new CapabilityPropertiesResponse();
_resultValue.description = description;
_resultValue.parametersSchema = parametersSchema;
_resultValue.publisher = publisher;
_resultValue.targetType = targetType;
_resultValue.urn = urn;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy