com.pulumi.akamai.inputs.GetGroupPlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of akamai Show documentation
Show all versions of akamai Show documentation
A Pulumi package for creating and managing akamai cloud resources.
The 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.akamai.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetGroupPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetGroupPlainArgs Empty = new GetGroupPlainArgs();
@Import(name="contractId", required=true)
private String contractId;
public String contractId() {
return this.contractId;
}
@Import(name="groupName", required=true)
private String groupName;
public String groupName() {
return this.groupName;
}
private GetGroupPlainArgs() {}
private GetGroupPlainArgs(GetGroupPlainArgs $) {
this.contractId = $.contractId;
this.groupName = $.groupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetGroupPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetGroupPlainArgs $;
public Builder() {
$ = new GetGroupPlainArgs();
}
public Builder(GetGroupPlainArgs defaults) {
$ = new GetGroupPlainArgs(Objects.requireNonNull(defaults));
}
public Builder contractId(String contractId) {
$.contractId = contractId;
return this;
}
public Builder groupName(String groupName) {
$.groupName = groupName;
return this;
}
public GetGroupPlainArgs build() {
if ($.contractId == null) {
throw new MissingRequiredPropertyException("GetGroupPlainArgs", "contractId");
}
if ($.groupName == null) {
throw new MissingRequiredPropertyException("GetGroupPlainArgs", "groupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy