com.pulumi.azurenative.sql.outputs.SyncGroupSchemaTableColumnResponse 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.sql.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SyncGroupSchemaTableColumnResponse {
/**
* @return Data size of the column.
*
*/
private @Nullable String dataSize;
/**
* @return Data type of the column.
*
*/
private @Nullable String dataType;
/**
* @return Quoted name of sync group table column.
*
*/
private @Nullable String quotedName;
private SyncGroupSchemaTableColumnResponse() {}
/**
* @return Data size of the column.
*
*/
public Optional dataSize() {
return Optional.ofNullable(this.dataSize);
}
/**
* @return Data type of the column.
*
*/
public Optional dataType() {
return Optional.ofNullable(this.dataType);
}
/**
* @return Quoted name of sync group table column.
*
*/
public Optional quotedName() {
return Optional.ofNullable(this.quotedName);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SyncGroupSchemaTableColumnResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String dataSize;
private @Nullable String dataType;
private @Nullable String quotedName;
public Builder() {}
public Builder(SyncGroupSchemaTableColumnResponse defaults) {
Objects.requireNonNull(defaults);
this.dataSize = defaults.dataSize;
this.dataType = defaults.dataType;
this.quotedName = defaults.quotedName;
}
@CustomType.Setter
public Builder dataSize(@Nullable String dataSize) {
this.dataSize = dataSize;
return this;
}
@CustomType.Setter
public Builder dataType(@Nullable String dataType) {
this.dataType = dataType;
return this;
}
@CustomType.Setter
public Builder quotedName(@Nullable String quotedName) {
this.quotedName = quotedName;
return this;
}
public SyncGroupSchemaTableColumnResponse build() {
final var _resultValue = new SyncGroupSchemaTableColumnResponse();
_resultValue.dataSize = dataSize;
_resultValue.dataType = dataType;
_resultValue.quotedName = quotedName;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy