
com.pulumi.azurenative.synapse.outputs.SsisFolderResponse 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.synapse.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Double;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SsisFolderResponse {
/**
* @return Metadata description.
*
*/
private @Nullable String description;
/**
* @return Metadata id.
*
*/
private @Nullable Double id;
/**
* @return Metadata name.
*
*/
private @Nullable String name;
/**
* @return The type of SSIS object metadata.
* Expected value is 'Folder'.
*
*/
private String type;
private SsisFolderResponse() {}
/**
* @return Metadata description.
*
*/
public Optional description() {
return Optional.ofNullable(this.description);
}
/**
* @return Metadata id.
*
*/
public Optional id() {
return Optional.ofNullable(this.id);
}
/**
* @return Metadata name.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
/**
* @return The type of SSIS object metadata.
* Expected value is 'Folder'.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SsisFolderResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String description;
private @Nullable Double id;
private @Nullable String name;
private String type;
public Builder() {}
public Builder(SsisFolderResponse defaults) {
Objects.requireNonNull(defaults);
this.description = defaults.description;
this.id = defaults.id;
this.name = defaults.name;
this.type = defaults.type;
}
@CustomType.Setter
public Builder description(@Nullable String description) {
this.description = description;
return this;
}
@CustomType.Setter
public Builder id(@Nullable Double id) {
this.id = id;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("SsisFolderResponse", "type");
}
this.type = type;
return this;
}
public SsisFolderResponse build() {
final var _resultValue = new SsisFolderResponse();
_resultValue.description = description;
_resultValue.id = id;
_resultValue.name = name;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy