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