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

com.pulumi.meraki.organizations.outputs.BaseManagement Maven / Gradle / Ivy

There is a newer version: 0.4.0-alpha.1731736975
Show newest version
// *** 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.meraki.organizations.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.meraki.organizations.outputs.BaseManagementDetail;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;

@CustomType
public final class BaseManagement {
    /**
     * @return Details related to organization management, possibly empty. Details may be named 'MSP ID', 'IP restriction mode for API', or 'IP restriction mode for dashboard', if the organization admin has configured any.
     * 
     */
    private @Nullable List details;

    private BaseManagement() {}
    /**
     * @return Details related to organization management, possibly empty. Details may be named 'MSP ID', 'IP restriction mode for API', or 'IP restriction mode for dashboard', if the organization admin has configured any.
     * 
     */
    public List details() {
        return this.details == null ? List.of() : this.details;
    }

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

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

        @CustomType.Setter
        public Builder details(@Nullable List details) {

            this.details = details;
            return this;
        }
        public Builder details(BaseManagementDetail... details) {
            return details(List.of(details));
        }
        public BaseManagement build() {
            final var _resultValue = new BaseManagement();
            _resultValue.details = details;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy