discord.ChannelPermission
Explore with Pulumi AI
A resource to create a permission override for a channel.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as discord from "@pulumi/discord";
const chatting = new discord.ChannelPermission("chatting", {
channelId: _var.channel_id,
type: "role",
overwriteId: _var.role_id,
allow: data.discord_permission.chatting.allow_bits,
});
import pulumi
import pulumi_discord as discord
chatting = discord.ChannelPermission("chatting",
channel_id=var["channel_id"],
type="role",
overwrite_id=var["role_id"],
allow=data["discord_permission"]["chatting"]["allow_bits"])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/discord/v2/discord"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := discord.NewChannelPermission(ctx, "chatting", &discord.ChannelPermissionArgs{
ChannelId: pulumi.Any(_var.Channel_id),
Type: pulumi.String("role"),
OverwriteId: pulumi.Any(_var.Role_id),
Allow: pulumi.Any(data.Discord_permission.Chatting.Allow_bits),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Discord = Pulumi.Discord;
return await Deployment.RunAsync(() =>
{
var chatting = new Discord.ChannelPermission("chatting", new()
{
ChannelId = @var.Channel_id,
Type = "role",
OverwriteId = @var.Role_id,
Allow = data.Discord_permission.Chatting.Allow_bits,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.discord.ChannelPermission;
import com.pulumi.discord.ChannelPermissionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var chatting = new ChannelPermission("chatting", ChannelPermissionArgs.builder()
.channelId(var_.channel_id())
.type("role")
.overwriteId(var_.role_id())
.allow(data.discord_permission().chatting().allow_bits())
.build());
}
}
resources:
chatting:
type: discord:ChannelPermission
properties:
channelId: ${var.channel_id}
type: role
overwriteId: ${var.role_id}
allow: ${data.discord_permission.chatting.allow_bits}
Create ChannelPermission Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ChannelPermission(name: string, args: ChannelPermissionArgs, opts?: CustomResourceOptions);
@overload
def ChannelPermission(resource_name: str,
args: ChannelPermissionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ChannelPermission(resource_name: str,
opts: Optional[ResourceOptions] = None,
channel_id: Optional[str] = None,
overwrite_id: Optional[str] = None,
type: Optional[str] = None,
allow: Optional[float] = None,
deny: Optional[float] = None)
func NewChannelPermission(ctx *Context, name string, args ChannelPermissionArgs, opts ...ResourceOption) (*ChannelPermission, error)
public ChannelPermission(string name, ChannelPermissionArgs args, CustomResourceOptions? opts = null)
public ChannelPermission(String name, ChannelPermissionArgs args)
public ChannelPermission(String name, ChannelPermissionArgs args, CustomResourceOptions options)
type: discord:ChannelPermission
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ChannelPermissionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ChannelPermissionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ChannelPermissionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ChannelPermissionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ChannelPermissionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var channelPermissionResource = new Discord.ChannelPermission("channelPermissionResource", new()
{
ChannelId = "string",
OverwriteId = "string",
Type = "string",
Allow = 0,
Deny = 0,
});
example, err := discord.NewChannelPermission(ctx, "channelPermissionResource", &discord.ChannelPermissionArgs{
ChannelId: pulumi.String("string"),
OverwriteId: pulumi.String("string"),
Type: pulumi.String("string"),
Allow: pulumi.Float64(0),
Deny: pulumi.Float64(0),
})
var channelPermissionResource = new ChannelPermission("channelPermissionResource", ChannelPermissionArgs.builder()
.channelId("string")
.overwriteId("string")
.type("string")
.allow(0)
.deny(0)
.build());
channel_permission_resource = discord.ChannelPermission("channelPermissionResource",
channel_id="string",
overwrite_id="string",
type="string",
allow=0,
deny=0)
const channelPermissionResource = new discord.ChannelPermission("channelPermissionResource", {
channelId: "string",
overwriteId: "string",
type: "string",
allow: 0,
deny: 0,
});
type: discord:ChannelPermission
properties:
allow: 0
channelId: string
deny: 0
overwriteId: string
type: string
ChannelPermission Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ChannelPermission resource accepts the following input properties:
- Channel
Id string - ID of the channel for this override.
- Overwrite
Id string - ID of the user or role for this override.
- Type string
- Type of the override. Must be
role
oruser
. - Allow double
- Permission bits for the allowed permissions on this override. At least one of
allow
ordeny
must be set. - Deny double
- Permission bits for the denied permissions on this override. At least one of
allow
ordeny
must be set.
- Channel
Id string - ID of the channel for this override.
- Overwrite
Id string - ID of the user or role for this override.
- Type string
- Type of the override. Must be
role
oruser
. - Allow float64
- Permission bits for the allowed permissions on this override. At least one of
allow
ordeny
must be set. - Deny float64
- Permission bits for the denied permissions on this override. At least one of
allow
ordeny
must be set.
- channel
Id String - ID of the channel for this override.
- overwrite
Id String - ID of the user or role for this override.
- type String
- Type of the override. Must be
role
oruser
. - allow Double
- Permission bits for the allowed permissions on this override. At least one of
allow
ordeny
must be set. - deny Double
- Permission bits for the denied permissions on this override. At least one of
allow
ordeny
must be set.
- channel
Id string - ID of the channel for this override.
- overwrite
Id string - ID of the user or role for this override.
- type string
- Type of the override. Must be
role
oruser
. - allow number
- Permission bits for the allowed permissions on this override. At least one of
allow
ordeny
must be set. - deny number
- Permission bits for the denied permissions on this override. At least one of
allow
ordeny
must be set.
- channel_
id str - ID of the channel for this override.
- overwrite_
id str - ID of the user or role for this override.
- type str
- Type of the override. Must be
role
oruser
. - allow float
- Permission bits for the allowed permissions on this override. At least one of
allow
ordeny
must be set. - deny float
- Permission bits for the denied permissions on this override. At least one of
allow
ordeny
must be set.
- channel
Id String - ID of the channel for this override.
- overwrite
Id String - ID of the user or role for this override.
- type String
- Type of the override. Must be
role
oruser
. - allow Number
- Permission bits for the allowed permissions on this override. At least one of
allow
ordeny
must be set. - deny Number
- Permission bits for the denied permissions on this override. At least one of
allow
ordeny
must be set.
Outputs
All input properties are implicitly available as output properties. Additionally, the ChannelPermission resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ChannelPermission Resource
Get an existing ChannelPermission resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ChannelPermissionState, opts?: CustomResourceOptions): ChannelPermission
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow: Optional[float] = None,
channel_id: Optional[str] = None,
deny: Optional[float] = None,
overwrite_id: Optional[str] = None,
type: Optional[str] = None) -> ChannelPermission
func GetChannelPermission(ctx *Context, name string, id IDInput, state *ChannelPermissionState, opts ...ResourceOption) (*ChannelPermission, error)
public static ChannelPermission Get(string name, Input<string> id, ChannelPermissionState? state, CustomResourceOptions? opts = null)
public static ChannelPermission get(String name, Output<String> id, ChannelPermissionState state, CustomResourceOptions options)
resources: _: type: discord:ChannelPermission get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Allow double
- Permission bits for the allowed permissions on this override. At least one of
allow
ordeny
must be set. - Channel
Id string - ID of the channel for this override.
- Deny double
- Permission bits for the denied permissions on this override. At least one of
allow
ordeny
must be set. - Overwrite
Id string - ID of the user or role for this override.
- Type string
- Type of the override. Must be
role
oruser
.
- Allow float64
- Permission bits for the allowed permissions on this override. At least one of
allow
ordeny
must be set. - Channel
Id string - ID of the channel for this override.
- Deny float64
- Permission bits for the denied permissions on this override. At least one of
allow
ordeny
must be set. - Overwrite
Id string - ID of the user or role for this override.
- Type string
- Type of the override. Must be
role
oruser
.
- allow Double
- Permission bits for the allowed permissions on this override. At least one of
allow
ordeny
must be set. - channel
Id String - ID of the channel for this override.
- deny Double
- Permission bits for the denied permissions on this override. At least one of
allow
ordeny
must be set. - overwrite
Id String - ID of the user or role for this override.
- type String
- Type of the override. Must be
role
oruser
.
- allow number
- Permission bits for the allowed permissions on this override. At least one of
allow
ordeny
must be set. - channel
Id string - ID of the channel for this override.
- deny number
- Permission bits for the denied permissions on this override. At least one of
allow
ordeny
must be set. - overwrite
Id string - ID of the user or role for this override.
- type string
- Type of the override. Must be
role
oruser
.
- allow float
- Permission bits for the allowed permissions on this override. At least one of
allow
ordeny
must be set. - channel_
id str - ID of the channel for this override.
- deny float
- Permission bits for the denied permissions on this override. At least one of
allow
ordeny
must be set. - overwrite_
id str - ID of the user or role for this override.
- type str
- Type of the override. Must be
role
oruser
.
- allow Number
- Permission bits for the allowed permissions on this override. At least one of
allow
ordeny
must be set. - channel
Id String - ID of the channel for this override.
- deny Number
- Permission bits for the denied permissions on this override. At least one of
allow
ordeny
must be set. - overwrite
Id String - ID of the user or role for this override.
- type String
- Type of the override. Must be
role
oruser
.
Package Details
- Repository
- discord lucky3028/terraform-provider-discord
- License
- Notes
- This Pulumi package is based on the
discord
Terraform Provider.