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

com.pulumi.googlenative.gkeonprem.v1.outputs.BareMetalAdminSecurityConfigResponse 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.gkeonprem.v1.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.googlenative.gkeonprem.v1.outputs.AuthorizationResponse;
import java.util.Objects;

@CustomType
public final class BareMetalAdminSecurityConfigResponse {
    /**
     * @return Configures user access to the admin cluster.
     * 
     */
    private AuthorizationResponse authorization;

    private BareMetalAdminSecurityConfigResponse() {}
    /**
     * @return Configures user access to the admin cluster.
     * 
     */
    public AuthorizationResponse authorization() {
        return this.authorization;
    }

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

    public static Builder builder(BareMetalAdminSecurityConfigResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private AuthorizationResponse authorization;
        public Builder() {}
        public Builder(BareMetalAdminSecurityConfigResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.authorization = defaults.authorization;
        }

        @CustomType.Setter
        public Builder authorization(AuthorizationResponse authorization) {
            this.authorization = Objects.requireNonNull(authorization);
            return this;
        }
        public BareMetalAdminSecurityConfigResponse build() {
            final var o = new BareMetalAdminSecurityConfigResponse();
            o.authorization = authorization;
            return o;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy