com.pulumi.googlenative.accesscontextmanager.v1.inputs.GetAuthorizedOrgsDescPlainArgs 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.accesscontextmanager.v1.inputs;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
public final class GetAuthorizedOrgsDescPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetAuthorizedOrgsDescPlainArgs Empty = new GetAuthorizedOrgsDescPlainArgs();
@Import(name="accessPolicyId", required=true)
private String accessPolicyId;
public String accessPolicyId() {
return this.accessPolicyId;
}
@Import(name="authorizedOrgsDescId", required=true)
private String authorizedOrgsDescId;
public String authorizedOrgsDescId() {
return this.authorizedOrgsDescId;
}
private GetAuthorizedOrgsDescPlainArgs() {}
private GetAuthorizedOrgsDescPlainArgs(GetAuthorizedOrgsDescPlainArgs $) {
this.accessPolicyId = $.accessPolicyId;
this.authorizedOrgsDescId = $.authorizedOrgsDescId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetAuthorizedOrgsDescPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetAuthorizedOrgsDescPlainArgs $;
public Builder() {
$ = new GetAuthorizedOrgsDescPlainArgs();
}
public Builder(GetAuthorizedOrgsDescPlainArgs defaults) {
$ = new GetAuthorizedOrgsDescPlainArgs(Objects.requireNonNull(defaults));
}
public Builder accessPolicyId(String accessPolicyId) {
$.accessPolicyId = accessPolicyId;
return this;
}
public Builder authorizedOrgsDescId(String authorizedOrgsDescId) {
$.authorizedOrgsDescId = authorizedOrgsDescId;
return this;
}
public GetAuthorizedOrgsDescPlainArgs build() {
$.accessPolicyId = Objects.requireNonNull($.accessPolicyId, "expected parameter 'accessPolicyId' to be non-null");
$.authorizedOrgsDescId = Objects.requireNonNull($.authorizedOrgsDescId, "expected parameter 'authorizedOrgsDescId' to be non-null");
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy