com.pulumi.sumologic.inputs.GetAdminRecommendedFolderPlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sumologic Show documentation
Show all versions of sumologic Show documentation
A Pulumi package for creating and managing sumologic 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.sumologic.inputs;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetAdminRecommendedFolderPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetAdminRecommendedFolderPlainArgs Empty = new GetAdminRecommendedFolderPlainArgs();
@Import(name="description")
private @Nullable String description;
public Optional description() {
return Optional.ofNullable(this.description);
}
@Import(name="id")
private @Nullable String id;
public Optional id() {
return Optional.ofNullable(this.id);
}
@Import(name="name")
private @Nullable String name;
public Optional name() {
return Optional.ofNullable(this.name);
}
private GetAdminRecommendedFolderPlainArgs() {}
private GetAdminRecommendedFolderPlainArgs(GetAdminRecommendedFolderPlainArgs $) {
this.description = $.description;
this.id = $.id;
this.name = $.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetAdminRecommendedFolderPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetAdminRecommendedFolderPlainArgs $;
public Builder() {
$ = new GetAdminRecommendedFolderPlainArgs();
}
public Builder(GetAdminRecommendedFolderPlainArgs defaults) {
$ = new GetAdminRecommendedFolderPlainArgs(Objects.requireNonNull(defaults));
}
public Builder description(@Nullable String description) {
$.description = description;
return this;
}
public Builder id(@Nullable String id) {
$.id = id;
return this;
}
public Builder name(@Nullable String name) {
$.name = name;
return this;
}
public GetAdminRecommendedFolderPlainArgs build() {
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy