discord.ManagedServer
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.ManagedServer("myServer", {serverId: "my-server-id"});
import pulumi
import pulumi_discord as discord
my_server = discord.ManagedServer("myServer", server_id="my-server-id")
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.NewManagedServer(ctx, "myServer", &discord.ManagedServerArgs{
ServerId: pulumi.String("my-server-id"),
})
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.ManagedServer("myServer", new()
{
ServerId = "my-server-id",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.discord.ManagedServer;
import com.pulumi.discord.ManagedServerArgs;
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 ManagedServer("myServer", ManagedServerArgs.builder()
.serverId("my-server-id")
.build());
}
}
resources:
myServer:
type: discord:ManagedServer
properties:
serverId: my-server-id
Create ManagedServer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagedServer(name: string, args: ManagedServerArgs, opts?: CustomResourceOptions);
@overload
def ManagedServer(resource_name: str,
args: ManagedServerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagedServer(resource_name: str,
opts: Optional[ResourceOptions] = None,
server_id: Optional[str] = None,
explicit_content_filter: Optional[float] = None,
default_message_notifications: Optional[float] = None,
afk_channel_id: Optional[str] = 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,
afk_timeout: Optional[float] = None,
splash_data_uri: Optional[str] = None,
splash_url: Optional[str] = None,
verification_level: Optional[float] = None)
func NewManagedServer(ctx *Context, name string, args ManagedServerArgs, opts ...ResourceOption) (*ManagedServer, error)
public ManagedServer(string name, ManagedServerArgs args, CustomResourceOptions? opts = null)
public ManagedServer(String name, ManagedServerArgs args)
public ManagedServer(String name, ManagedServerArgs args, CustomResourceOptions options)
type: discord:ManagedServer
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 ManagedServerArgs
- 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 ManagedServerArgs
- 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 ManagedServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagedServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagedServerArgs
- 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 managedServerResource = new Discord.ManagedServer("managedServerResource", new()
{
ServerId = "string",
ExplicitContentFilter = 0,
DefaultMessageNotifications = 0,
AfkChannelId = "string",
IconDataUri = "string",
IconUrl = "string",
Name = "string",
OwnerId = "string",
Region = "string",
AfkTimeout = 0,
SplashDataUri = "string",
SplashUrl = "string",
VerificationLevel = 0,
});
example, err := discord.NewManagedServer(ctx, "managedServerResource", &discord.ManagedServerArgs{
ServerId: pulumi.String("string"),
ExplicitContentFilter: pulumi.Float64(0),
DefaultMessageNotifications: pulumi.Float64(0),
AfkChannelId: pulumi.String("string"),
IconDataUri: pulumi.String("string"),
IconUrl: pulumi.String("string"),
Name: pulumi.String("string"),
OwnerId: pulumi.String("string"),
Region: pulumi.String("string"),
AfkTimeout: pulumi.Float64(0),
SplashDataUri: pulumi.String("string"),
SplashUrl: pulumi.String("string"),
VerificationLevel: pulumi.Float64(0),
})
var managedServerResource = new ManagedServer("managedServerResource", ManagedServerArgs.builder()
.serverId("string")
.explicitContentFilter(0)
.defaultMessageNotifications(0)
.afkChannelId("string")
.iconDataUri("string")
.iconUrl("string")
.name("string")
.ownerId("string")
.region("string")
.afkTimeout(0)
.splashDataUri("string")
.splashUrl("string")
.verificationLevel(0)
.build());
managed_server_resource = discord.ManagedServer("managedServerResource",
server_id="string",
explicit_content_filter=0,
default_message_notifications=0,
afk_channel_id="string",
icon_data_uri="string",
icon_url="string",
name="string",
owner_id="string",
region="string",
afk_timeout=0,
splash_data_uri="string",
splash_url="string",
verification_level=0)
const managedServerResource = new discord.ManagedServer("managedServerResource", {
serverId: "string",
explicitContentFilter: 0,
defaultMessageNotifications: 0,
afkChannelId: "string",
iconDataUri: "string",
iconUrl: "string",
name: "string",
ownerId: "string",
region: "string",
afkTimeout: 0,
splashDataUri: "string",
splashUrl: "string",
verificationLevel: 0,
});
type: discord:ManagedServer
properties:
afkChannelId: string
afkTimeout: 0
defaultMessageNotifications: 0
explicitContentFilter: 0
iconDataUri: string
iconUrl: string
name: string
ownerId: string
region: string
serverId: string
splashDataUri: string
splashUrl: string
verificationLevel: 0
ManagedServer 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 ManagedServer resource accepts the following input properties:
- Server
Id string - The ID of the server to manage.
- 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.
- Server
Id string - The ID of the server to manage.
- 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.
- server
Id String - The ID of the server to manage.
- 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.
- server
Id string - The ID of the server to manage.
- 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.
- server_
id str - The ID of the server to manage.
- 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.
- server
Id String - The ID of the server to manage.
- 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 ManagedServer 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<Managed
Server Role> - List of roles in the server.
- 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
[]Managed
Server Role - List of roles in the server.
- 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<Managed
Server Role> - List of roles in the server.
- 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
Managed
Server Role[] - List of roles in the server.
- 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[Managed
Server Role] - List of roles in the server.
- 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.
- splash
Hash String - Hash of the splash.
Look up Existing ManagedServer Resource
Get an existing ManagedServer 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?: ManagedServerState, opts?: CustomResourceOptions): ManagedServer
@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[ManagedServerRoleArgs]] = 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) -> ManagedServer
func GetManagedServer(ctx *Context, name string, id IDInput, state *ManagedServerState, opts ...ResourceOption) (*ManagedServer, error)
public static ManagedServer Get(string name, Input<string> id, ManagedServerState? state, CustomResourceOptions? opts = null)
public static ManagedServer get(String name, Output<String> id, ManagedServerState state, CustomResourceOptions options)
resources: _: type: discord:ManagedServer 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<Managed
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
[]Managed
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<Managed
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
Managed
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[Managed
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
ManagedServerRole, ManagedServerRoleArgs
- 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/managedServer:ManagedServer 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.