com.ovhcloud.pulumi.ovh.Iam.outputs.GetReferenceActionsResult 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.outputs;
import com.ovhcloud.pulumi.ovh.Iam.outputs.GetReferenceActionsAction;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class GetReferenceActionsResult {
/**
* @return List of actions
*
*/
private List actions;
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
private String id;
private String type;
private GetReferenceActionsResult() {}
/**
* @return List of actions
*
*/
public List actions() {
return this.actions;
}
/**
* @return The provider-assigned unique ID for this managed resource.
*
*/
public String id() {
return this.id;
}
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetReferenceActionsResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List actions;
private String id;
private String type;
public Builder() {}
public Builder(GetReferenceActionsResult defaults) {
Objects.requireNonNull(defaults);
this.actions = defaults.actions;
this.id = defaults.id;
this.type = defaults.type;
}
@CustomType.Setter
public Builder actions(List actions) {
if (actions == null) {
throw new MissingRequiredPropertyException("GetReferenceActionsResult", "actions");
}
this.actions = actions;
return this;
}
public Builder actions(GetReferenceActionsAction... actions) {
return actions(List.of(actions));
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetReferenceActionsResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetReferenceActionsResult", "type");
}
this.type = type;
return this;
}
public GetReferenceActionsResult build() {
final var _resultValue = new GetReferenceActionsResult();
_resultValue.actions = actions;
_resultValue.id = id;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy