com.ovhcloud.pulumi.ovh.Iam.inputs.GetReferenceActionsPlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-ovh Show documentation
Show all versions of pulumi-ovh Show documentation
A Pulumi package for creating and managing OVH resources.
// *** 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.ovhcloud.pulumi.ovh.Iam.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetReferenceActionsPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetReferenceActionsPlainArgs Empty = new GetReferenceActionsPlainArgs();
/**
* Kind of resource we want the actions for
*
*/
@Import(name="type", required=true)
private String type;
/**
* @return Kind of resource we want the actions for
*
*/
public String type() {
return this.type;
}
private GetReferenceActionsPlainArgs() {}
private GetReferenceActionsPlainArgs(GetReferenceActionsPlainArgs $) {
this.type = $.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetReferenceActionsPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetReferenceActionsPlainArgs $;
public Builder() {
$ = new GetReferenceActionsPlainArgs();
}
public Builder(GetReferenceActionsPlainArgs defaults) {
$ = new GetReferenceActionsPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param type Kind of resource we want the actions for
*
* @return builder
*
*/
public Builder type(String type) {
$.type = type;
return this;
}
public GetReferenceActionsPlainArgs build() {
if ($.type == null) {
throw new MissingRequiredPropertyException("GetReferenceActionsPlainArgs", "type");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy