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

com.pulumi.googlenative.gkehub.v1alpha.outputs.AppDevExperienceFeatureStateResponse 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.gkehub.v1alpha.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.googlenative.gkehub.v1alpha.outputs.StatusResponse;
import java.util.Objects;

@CustomType
public final class AppDevExperienceFeatureStateResponse {
    /**
     * @return Status of subcomponent that detects configured Service Mesh resources.
     * 
     */
    private StatusResponse networkingInstallSucceeded;

    private AppDevExperienceFeatureStateResponse() {}
    /**
     * @return Status of subcomponent that detects configured Service Mesh resources.
     * 
     */
    public StatusResponse networkingInstallSucceeded() {
        return this.networkingInstallSucceeded;
    }

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

    public static Builder builder(AppDevExperienceFeatureStateResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private StatusResponse networkingInstallSucceeded;
        public Builder() {}
        public Builder(AppDevExperienceFeatureStateResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.networkingInstallSucceeded = defaults.networkingInstallSucceeded;
        }

        @CustomType.Setter
        public Builder networkingInstallSucceeded(StatusResponse networkingInstallSucceeded) {
            this.networkingInstallSucceeded = Objects.requireNonNull(networkingInstallSucceeded);
            return this;
        }
        public AppDevExperienceFeatureStateResponse build() {
            final var o = new AppDevExperienceFeatureStateResponse();
            o.networkingInstallSucceeded = networkingInstallSucceeded;
            return o;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy