discord.Server
Explore with Pulumi AI
A resource to create a server.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as discord from "@pulumi/discord";
const myServer = new discord.Server("myServer", {region: "us-west"});
import pulumi
import pulumi_discord as discord
my_server = discord.Server("myServer", region="us-west")
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.NewServer(ctx, "myServer", &discord.ServerArgs{
Region: pulumi.String("us-west"),
})
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 myServer = new Discord.Server("myServer", new()
{
Region = "us-west",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.discord.Server;
import com.pulumi.discord.ServerArgs;
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 myServer = new Server("myServer", ServerArgs.builder()
.region("us-west")
.build());
}
}
resources:
myServer:
type: discord:Server
properties:
region: us-west
Create Server Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Server(name: string, args?: ServerArgs, opts?: CustomResourceOptions);
@overload
def Server(resource_name: str,
args: Optional[ServerArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Server(resource_name: str,
opts: Optional[ResourceOptions] = None,
afk_channel_id: Optional[str] = None,
afk_timeout: Optional[float] = None,
default_message_notifications: Optional[float] = None,
explicit_content_filter: Optional[float] = None,
icon_data_uri: Optional[str] = None,
icon_url: Optional[str] = None,
name: Optional[str] = None,
owner_id: Optional[str] = None,
region: Optional[str] = None,
splash_data_uri: Optional[str] = None,
splash_url: Optional[str] = None,
verification_level: Optional[float] = None)
func NewServer(ctx *Context, name string, args *ServerArgs, opts ...ResourceOption) (*Server, error)
public Server(string name, ServerArgs? args = null, CustomResourceOptions? opts = null)
public Server(String name, ServerArgs args)
public Server(String name, ServerArgs args, CustomResourceOptions options)
type: discord:Server
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 ServerArgs
- 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 ServerArgs
- 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 ServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServerArgs
- 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 serverResource = new Discord.Server("serverResource", new()
{
AfkChannelId = "string",
AfkTimeout = 0,
DefaultMessageNotifications = 0,
ExplicitContentFilter = 0,
IconDataUri = "string",
IconUrl = "string",
Name = "string",
OwnerId = "string",
Region = "string",
SplashDataUri = "string",
SplashUrl = "string",
VerificationLevel = 0,
});
example, err := discord.NewServer(ctx, "serverResource", &discord.ServerArgs{
AfkChannelId: pulumi.String("string"),
AfkTimeout: pulumi.Float64(0),
DefaultMessageNotifications: pulumi.Float64(0),
ExplicitContentFilter: pulumi.Float64(0),
IconDataUri: pulumi.String("string"),
IconUrl: pulumi.String("string"),
Name: pulumi.String("string"),
OwnerId: pulumi.String("string"),
Region: pulumi.String("string"),
SplashDataUri: pulumi.String("string"),
SplashUrl: pulumi.String("string"),
VerificationLevel: pulumi.Float64(0),
})
var serverResource = new Server("serverResource", ServerArgs.builder()
.afkChannelId("string")
.afkTimeout(0)
.defaultMessageNotifications(0)
.explicitContentFilter(0)
.iconDataUri("string")
.iconUrl("string")
.name("string")
.ownerId("string")
.region("string")
.splashDataUri("string")
.splashUrl("string")
.verificationLevel(0)
.build());
server_resource = discord.Server("serverResource",
afk_channel_id="string",
afk_timeout=0,
default_message_notifications=0,
explicit_content_filter=0,
icon_data_uri="string",
icon_url="string",
name="string",
owner_id="string",
region="string",
splash_data_uri="string",
splash_url="string",
verification_level=0)
const serverResource = new discord.Server("serverResource", {
afkChannelId: "string",
afkTimeout: 0,
defaultMessageNotifications: 0,
explicitContentFilter: 0,
iconDataUri: "string",
iconUrl: "string",
name: "string",
ownerId: "string",
region: "string",
splashDataUri: "string",
splashUrl: "string",
verificationLevel: 0,
});
type: discord:Server
properties:
afkChannelId: string
afkTimeout: 0
defaultMessageNotifications: 0
explicitContentFilter: 0
iconDataUri: string
iconUrl: string
name: string
ownerId: string
region: string
splashDataUri: string
splashUrl: string
verificationLevel: 0
Server 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 Server resource accepts the following input properties:
- Afk
Channel stringId - ID of the channel AFK users will be moved to.
- Afk
Timeout double - How many seconds before moving an AFK user.
- Default
Message doubleNotifications - Default message notification settings. (
0
= all messages,1
= mentions) - Explicit
Content doubleFilter - Explicit content filter level of the server.
- Icon
Data stringUri - Data URI of an image to set the server icon to. Overrides
icon_url
. - Icon
Url string - Remote URL to set the icon of the server to.
- Name string
- Name of the server.
- Owner
Id string - Owner ID of the server. Setting this will transfer ownership.
- Region string
- Region of the server.
- Splash
Data stringUri - Data URI of an image to set the splash image of the server to. Overrides
splash_url
- Splash
Url string - Remote URL to set the splash image of the server to.
- Verification
Level double - Verification level of the server.
- Afk
Channel stringId - ID of the channel AFK users will be moved to.
- Afk
Timeout float64 - How many seconds before moving an AFK user.
- Default
Message float64Notifications - Default message notification settings. (
0
= all messages,1
= mentions) - Explicit
Content float64Filter - Explicit content filter level of the server.
- Icon
Data stringUri - Data URI of an image to set the server icon to. Overrides
icon_url
. - Icon
Url string - Remote URL to set the icon of the server to.
- Name string
- Name of the server.
- Owner
Id string - Owner ID of the server. Setting this will transfer ownership.
- Region string
- Region of the server.
- Splash
Data stringUri - Data URI of an image to set the splash image of the server to. Overrides
splash_url
- Splash
Url string - Remote URL to set the splash image of the server to.
- Verification
Level float64 - Verification level of the server.
- afk
Channel StringId - ID of the channel AFK users will be moved to.
- afk
Timeout Double - How many seconds before moving an AFK user.
- default
Message DoubleNotifications - Default message notification settings. (
0
= all messages,1
= mentions) - explicit
Content DoubleFilter - Explicit content filter level of the server.
- icon
Data StringUri - Data URI of an image to set the server icon to. Overrides
icon_url
. - icon
Url String - Remote URL to set the icon of the server to.
- name String
- Name of the server.
- owner
Id String - Owner ID of the server. Setting this will transfer ownership.
- region String
- Region of the server.
- splash
Data StringUri - Data URI of an image to set the splash image of the server to. Overrides
splash_url
- splash
Url String - Remote URL to set the splash image of the server to.
- verification
Level Double - Verification level of the server.
- afk
Channel stringId - ID of the channel AFK users will be moved to.
- afk
Timeout number - How many seconds before moving an AFK user.
- default
Message numberNotifications - Default message notification settings. (
0
= all messages,1
= mentions) - explicit
Content numberFilter - Explicit content filter level of the server.
- icon
Data stringUri - Data URI of an image to set the server icon to. Overrides
icon_url
. - icon
Url string - Remote URL to set the icon of the server to.
- name string
- Name of the server.
- owner
Id string - Owner ID of the server. Setting this will transfer ownership.
- region string
- Region of the server.
- splash
Data stringUri - Data URI of an image to set the splash image of the server to. Overrides
splash_url
- splash
Url string - Remote URL to set the splash image of the server to.
- verification
Level number - Verification level of the server.
- afk_
channel_ strid - ID of the channel AFK users will be moved to.
- afk_
timeout float - How many seconds before moving an AFK user.
- default_
message_ floatnotifications - Default message notification settings. (
0
= all messages,1
= mentions) - explicit_
content_ floatfilter - Explicit content filter level of the server.
- icon_
data_ struri - Data URI of an image to set the server icon to. Overrides
icon_url
. - icon_
url str - Remote URL to set the icon of the server to.
- name str
- Name of the server.
- owner_
id str - Owner ID of the server. Setting this will transfer ownership.
- region str
- Region of the server.
- splash_
data_ struri - Data URI of an image to set the splash image of the server to. Overrides
splash_url
- splash_
url str - Remote URL to set the splash image of the server to.
- verification_
level float - Verification level of the server.
- afk
Channel StringId - ID of the channel AFK users will be moved to.
- afk
Timeout Number - How many seconds before moving an AFK user.
- default
Message NumberNotifications - Default message notification settings. (
0
= all messages,1
= mentions) - explicit
Content NumberFilter - Explicit content filter level of the server.
- icon
Data StringUri - Data URI of an image to set the server icon to. Overrides
icon_url
. - icon
Url String - Remote URL to set the icon of the server to.
- name String
- Name of the server.
- owner
Id String - Owner ID of the server. Setting this will transfer ownership.
- region String
- Region of the server.
- splash
Data StringUri - Data URI of an image to set the splash image of the server to. Overrides
splash_url
- splash
Url String - Remote URL to set the splash image of the server to.
- verification
Level Number - Verification level of the server.
Outputs
All input properties are implicitly available as output properties. Additionally, the Server resource produces the following output properties:
- Icon
Hash string - Hash of the icon.
- Id string
- The provider-assigned unique ID for this managed resource.
- Roles
List<Server
Role> - List of roles in the server.
- Server
Id string - The ID of the server to manage.
- Splash
Hash string - Hash of the splash.
- Icon
Hash string - Hash of the icon.
- Id string
- The provider-assigned unique ID for this managed resource.
- Roles
[]Server
Role - List of roles in the server.
- Server
Id string - The ID of the server to manage.
- Splash
Hash string - Hash of the splash.
- icon
Hash String - Hash of the icon.
- id String
- The provider-assigned unique ID for this managed resource.
- roles
List<Server
Role> - List of roles in the server.
- server
Id String - The ID of the server to manage.
- splash
Hash String - Hash of the splash.
- icon
Hash string - Hash of the icon.
- id string
- The provider-assigned unique ID for this managed resource.
- roles
Server
Role[] - List of roles in the server.
- server
Id string - The ID of the server to manage.
- splash
Hash string - Hash of the splash.
- icon_
hash str - Hash of the icon.
- id str
- The provider-assigned unique ID for this managed resource.
- roles
Sequence[Server
Role] - List of roles in the server.
- server_
id str - The ID of the server to manage.
- splash_
hash str - Hash of the splash.
- icon
Hash String - Hash of the icon.
- id String
- The provider-assigned unique ID for this managed resource.
- roles List<Property Map>
- List of roles in the server.
- server
Id String - The ID of the server to manage.
- splash
Hash String - Hash of the splash.
Look up Existing Server Resource
Get an existing Server 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?: ServerState, opts?: CustomResourceOptions): Server
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
afk_channel_id: Optional[str] = None,
afk_timeout: Optional[float] = None,
default_message_notifications: Optional[float] = None,
explicit_content_filter: Optional[float] = None,
icon_data_uri: Optional[str] = None,
icon_hash: Optional[str] = None,
icon_url: Optional[str] = None,
name: Optional[str] = None,
owner_id: Optional[str] = None,
region: Optional[str] = None,
roles: Optional[Sequence[ServerRoleArgs]] = None,
server_id: Optional[str] = None,
splash_data_uri: Optional[str] = None,
splash_hash: Optional[str] = None,
splash_url: Optional[str] = None,
verification_level: Optional[float] = None) -> Server
func GetServer(ctx *Context, name string, id IDInput, state *ServerState, opts ...ResourceOption) (*Server, error)
public static Server Get(string name, Input<string> id, ServerState? state, CustomResourceOptions? opts = null)
public static Server get(String name, Output<String> id, ServerState state, CustomResourceOptions options)
resources: _: type: discord:Server 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.
- Afk
Channel stringId - ID of the channel AFK users will be moved to.
- Afk
Timeout double - How many seconds before moving an AFK user.
- Default
Message doubleNotifications - Default message notification settings. (
0
= all messages,1
= mentions) - Explicit
Content doubleFilter - Explicit content filter level of the server.
- Icon
Data stringUri - Data URI of an image to set the server icon to. Overrides
icon_url
. - Icon
Hash string - Hash of the icon.
- Icon
Url string - Remote URL to set the icon of the server to.
- Name string
- Name of the server.
- Owner
Id string - Owner ID of the server. Setting this will transfer ownership.
- Region string
- Region of the server.
- Roles
List<Server
Role> - List of roles in the server.
- Server
Id string - The ID of the server to manage.
- Splash
Data stringUri - Data URI of an image to set the splash image of the server to. Overrides
splash_url
- Splash
Hash string - Hash of the splash.
- Splash
Url string - Remote URL to set the splash image of the server to.
- Verification
Level double - Verification level of the server.
- Afk
Channel stringId - ID of the channel AFK users will be moved to.
- Afk
Timeout float64 - How many seconds before moving an AFK user.
- Default
Message float64Notifications - Default message notification settings. (
0
= all messages,1
= mentions) - Explicit
Content float64Filter - Explicit content filter level of the server.
- Icon
Data stringUri - Data URI of an image to set the server icon to. Overrides
icon_url
. - Icon
Hash string - Hash of the icon.
- Icon
Url string - Remote URL to set the icon of the server to.
- Name string
- Name of the server.
- Owner
Id string - Owner ID of the server. Setting this will transfer ownership.
- Region string
- Region of the server.
- Roles
[]Server
Role Args - List of roles in the server.
- Server
Id string - The ID of the server to manage.
- Splash
Data stringUri - Data URI of an image to set the splash image of the server to. Overrides
splash_url
- Splash
Hash string - Hash of the splash.
- Splash
Url string - Remote URL to set the splash image of the server to.
- Verification
Level float64 - Verification level of the server.
- afk
Channel StringId - ID of the channel AFK users will be moved to.
- afk
Timeout Double - How many seconds before moving an AFK user.
- default
Message DoubleNotifications - Default message notification settings. (
0
= all messages,1
= mentions) - explicit
Content DoubleFilter - Explicit content filter level of the server.
- icon
Data StringUri - Data URI of an image to set the server icon to. Overrides
icon_url
. - icon
Hash String - Hash of the icon.
- icon
Url String - Remote URL to set the icon of the server to.
- name String
- Name of the server.
- owner
Id String - Owner ID of the server. Setting this will transfer ownership.
- region String
- Region of the server.
- roles
List<Server
Role> - List of roles in the server.
- server
Id String - The ID of the server to manage.
- splash
Data StringUri - Data URI of an image to set the splash image of the server to. Overrides
splash_url
- splash
Hash String - Hash of the splash.
- splash
Url String - Remote URL to set the splash image of the server to.
- verification
Level Double - Verification level of the server.
- afk
Channel stringId - ID of the channel AFK users will be moved to.
- afk
Timeout number - How many seconds before moving an AFK user.
- default
Message numberNotifications - Default message notification settings. (
0
= all messages,1
= mentions) - explicit
Content numberFilter - Explicit content filter level of the server.
- icon
Data stringUri - Data URI of an image to set the server icon to. Overrides
icon_url
. - icon
Hash string - Hash of the icon.
- icon
Url string - Remote URL to set the icon of the server to.
- name string
- Name of the server.
- owner
Id string - Owner ID of the server. Setting this will transfer ownership.
- region string
- Region of the server.
- roles
Server
Role[] - List of roles in the server.
- server
Id string - The ID of the server to manage.
- splash
Data stringUri - Data URI of an image to set the splash image of the server to. Overrides
splash_url
- splash
Hash string - Hash of the splash.
- splash
Url string - Remote URL to set the splash image of the server to.
- verification
Level number - Verification level of the server.
- afk_
channel_ strid - ID of the channel AFK users will be moved to.
- afk_
timeout float - How many seconds before moving an AFK user.
- default_
message_ floatnotifications - Default message notification settings. (
0
= all messages,1
= mentions) - explicit_
content_ floatfilter - Explicit content filter level of the server.
- icon_
data_ struri - Data URI of an image to set the server icon to. Overrides
icon_url
. - icon_
hash str - Hash of the icon.
- icon_
url str - Remote URL to set the icon of the server to.
- name str
- Name of the server.
- owner_
id str - Owner ID of the server. Setting this will transfer ownership.
- region str
- Region of the server.
- roles
Sequence[Server
Role Args] - List of roles in the server.
- server_
id str - The ID of the server to manage.
- splash_
data_ struri - Data URI of an image to set the splash image of the server to. Overrides
splash_url
- splash_
hash str - Hash of the splash.
- splash_
url str - Remote URL to set the splash image of the server to.
- verification_
level float - Verification level of the server.
- afk
Channel StringId - ID of the channel AFK users will be moved to.
- afk
Timeout Number - How many seconds before moving an AFK user.
- default
Message NumberNotifications - Default message notification settings. (
0
= all messages,1
= mentions) - explicit
Content NumberFilter - Explicit content filter level of the server.
- icon
Data StringUri - Data URI of an image to set the server icon to. Overrides
icon_url
. - icon
Hash String - Hash of the icon.
- icon
Url String - Remote URL to set the icon of the server to.
- name String
- Name of the server.
- owner
Id String - Owner ID of the server. Setting this will transfer ownership.
- region String
- Region of the server.
- roles List<Property Map>
- List of roles in the server.
- server
Id String - The ID of the server to manage.
- splash
Data StringUri - Data URI of an image to set the splash image of the server to. Overrides
splash_url
- splash
Hash String - Hash of the splash.
- splash
Url String - Remote URL to set the splash image of the server to.
- verification
Level Number - Verification level of the server.
Supporting Types
ServerRole, ServerRoleArgs
- Color double
- Hoist bool
- Id string
- Managed bool
- Mentionable bool
- Name string
- Permissions double
- Position double
- Color float64
- Hoist bool
- Id string
- Managed bool
- Mentionable bool
- Name string
- Permissions float64
- Position float64
- color Double
- hoist Boolean
- id String
- managed Boolean
- mentionable Boolean
- name String
- permissions Double
- position Double
- color number
- hoist boolean
- id string
- managed boolean
- mentionable boolean
- name string
- permissions number
- position number
- color float
- hoist bool
- id str
- managed bool
- mentionable bool
- name str
- permissions float
- position float
- color Number
- hoist Boolean
- id String
- managed Boolean
- mentionable Boolean
- name String
- permissions Number
- position Number
Import
$ pulumi import discord:index/server:Server example "<server id>"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- discord lucky3028/terraform-provider-discord
- License
- Notes
- This Pulumi package is based on the
discord
Terraform Provider.