All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.googlenative.integrations.v1alpha.outputs.GoogleCloudIntegrationsV1alphaStringParameterArrayResponse Maven / Gradle / Ivy

// *** 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.googlenative.integrations.v1alpha.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.List;
import java.util.Objects;

@CustomType
public final class GoogleCloudIntegrationsV1alphaStringParameterArrayResponse {
    /**
     * @return String array.
     * 
     */
    private List stringValues;

    private GoogleCloudIntegrationsV1alphaStringParameterArrayResponse() {}
    /**
     * @return String array.
     * 
     */
    public List stringValues() {
        return this.stringValues;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(GoogleCloudIntegrationsV1alphaStringParameterArrayResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private List stringValues;
        public Builder() {}
        public Builder(GoogleCloudIntegrationsV1alphaStringParameterArrayResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.stringValues = defaults.stringValues;
        }

        @CustomType.Setter
        public Builder stringValues(List stringValues) {
            this.stringValues = Objects.requireNonNull(stringValues);
            return this;
        }
        public Builder stringValues(String... stringValues) {
            return stringValues(List.of(stringValues));
        }
        public GoogleCloudIntegrationsV1alphaStringParameterArrayResponse build() {
            final var o = new GoogleCloudIntegrationsV1alphaStringParameterArrayResponse();
            o.stringValues = stringValues;
            return o;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy