com.pulumi.rabbitmq.TopicPermissionsArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rabbitmq Show documentation
Show all versions of rabbitmq Show documentation
A Pulumi package for creating and managing RabbitMQ 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.pulumi.rabbitmq;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import com.pulumi.rabbitmq.inputs.TopicPermissionsPermissionArgs;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class TopicPermissionsArgs extends com.pulumi.resources.ResourceArgs {
public static final TopicPermissionsArgs Empty = new TopicPermissionsArgs();
/**
* The settings of the permissions. The structure is
* described below.
*
*/
@Import(name="permissions", required=true)
private Output> permissions;
/**
* @return The settings of the permissions. The structure is
* described below.
*
*/
public Output> permissions() {
return this.permissions;
}
/**
* The user to apply the permissions to.
*
*/
@Import(name="user", required=true)
private Output user;
/**
* @return The user to apply the permissions to.
*
*/
public Output user() {
return this.user;
}
/**
* The vhost to create the resource in.
*
*/
@Import(name="vhost")
private @Nullable Output vhost;
/**
* @return The vhost to create the resource in.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy