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

com.pulumi.googlenative.compute.alpha.outputs.InstanceGroupManagerStatusStatefulPerInstanceConfigsResponse 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.compute.alpha.outputs;

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

@CustomType
public final class InstanceGroupManagerStatusStatefulPerInstanceConfigsResponse {
    /**
     * @return A bit indicating if all of the group's per-instance configurations (listed in the output of a listPerInstanceConfigs API call) have status EFFECTIVE or there are no per-instance-configs.
     * 
     */
    private Boolean allEffective;

    private InstanceGroupManagerStatusStatefulPerInstanceConfigsResponse() {}
    /**
     * @return A bit indicating if all of the group's per-instance configurations (listed in the output of a listPerInstanceConfigs API call) have status EFFECTIVE or there are no per-instance-configs.
     * 
     */
    public Boolean allEffective() {
        return this.allEffective;
    }

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

    public static Builder builder(InstanceGroupManagerStatusStatefulPerInstanceConfigsResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private Boolean allEffective;
        public Builder() {}
        public Builder(InstanceGroupManagerStatusStatefulPerInstanceConfigsResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.allEffective = defaults.allEffective;
        }

        @CustomType.Setter
        public Builder allEffective(Boolean allEffective) {
            this.allEffective = Objects.requireNonNull(allEffective);
            return this;
        }
        public InstanceGroupManagerStatusStatefulPerInstanceConfigsResponse build() {
            final var o = new InstanceGroupManagerStatusStatefulPerInstanceConfigsResponse();
            o.allEffective = allEffective;
            return o;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy