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