com.pulumi.meraki.organizations.outputs.BaseManagement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meraki Show documentation
Show all versions of meraki Show documentation
A Pulumi package for creating and managing Cisco Meraki resources
// *** 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;
}
}
}