com.pulumi.scm.inputs.GetQosPolicyRulePlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scm Show documentation
Show all versions of scm Show documentation
A Pulumi package for managing resources on Strata Cloud Manager.
// *** 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.scm.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetQosPolicyRulePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetQosPolicyRulePlainArgs Empty = new GetQosPolicyRulePlainArgs();
/**
* The Folder param.
*
*/
@Import(name="folder")
private @Nullable String folder;
/**
* @return The Folder param.
*
*/
public Optional folder() {
return Optional.ofNullable(this.folder);
}
/**
* The Id param.
*
*/
@Import(name="id", required=true)
private String id;
/**
* @return The Id param.
*
*/
public String id() {
return this.id;
}
private GetQosPolicyRulePlainArgs() {}
private GetQosPolicyRulePlainArgs(GetQosPolicyRulePlainArgs $) {
this.folder = $.folder;
this.id = $.id;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetQosPolicyRulePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetQosPolicyRulePlainArgs $;
public Builder() {
$ = new GetQosPolicyRulePlainArgs();
}
public Builder(GetQosPolicyRulePlainArgs defaults) {
$ = new GetQosPolicyRulePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param folder The Folder param.
*
* @return builder
*
*/
public Builder folder(@Nullable String folder) {
$.folder = folder;
return this;
}
/**
* @param id The Id param.
*
* @return builder
*
*/
public Builder id(String id) {
$.id = id;
return this;
}
public GetQosPolicyRulePlainArgs build() {
if ($.id == null) {
throw new MissingRequiredPropertyException("GetQosPolicyRulePlainArgs", "id");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy