1. Packages
  2. Glesys Provider
  3. API Docs
  4. Emailalias
glesys 0.14.2 published on Tuesday, Apr 15, 2025 by glesys

glesys.Emailalias

Explore with Pulumi AI

Create a GleSYS Email alias.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as glesys from "@pulumi/glesys";

const alice = new glesys.Emailalias("alice", {
    emailalias: "info@example.com",
    goto: "alice@example.com,bob@example.com",
});
Copy
import pulumi
import pulumi_glesys as glesys

alice = glesys.Emailalias("alice",
    emailalias="info@example.com",
    goto="alice@example.com,bob@example.com")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/glesys/glesys"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := glesys.NewEmailalias(ctx, "alice", &glesys.EmailaliasArgs{
			Emailalias: pulumi.String("info@example.com"),
			Goto:       pulumi.String("alice@example.com,bob@example.com"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Glesys = Pulumi.Glesys;

return await Deployment.RunAsync(() => 
{
    var alice = new Glesys.Emailalias("alice", new()
    {
        Emailalias = "info@example.com",
        Goto = "alice@example.com,bob@example.com",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.glesys.Emailalias;
import com.pulumi.glesys.EmailaliasArgs;
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 alice = new Emailalias("alice", EmailaliasArgs.builder()
            .emailalias("info@example.com")
            .goto_("alice@example.com,bob@example.com")
            .build());

    }
}
Copy
resources:
  alice:
    type: glesys:Emailalias
    properties:
      emailalias: info@example.com
      goto: alice@example.com,bob@example.com
Copy

Create Emailalias Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Emailalias(name: string, args: EmailaliasArgs, opts?: CustomResourceOptions);
@overload
def Emailalias(resource_name: str,
               args: EmailaliasArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def Emailalias(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               emailalias: Optional[str] = None,
               goto: Optional[str] = None,
               emailalias_id: Optional[str] = None)
func NewEmailalias(ctx *Context, name string, args EmailaliasArgs, opts ...ResourceOption) (*Emailalias, error)
public Emailalias(string name, EmailaliasArgs args, CustomResourceOptions? opts = null)
public Emailalias(String name, EmailaliasArgs args)
public Emailalias(String name, EmailaliasArgs args, CustomResourceOptions options)
type: glesys:Emailalias
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. EmailaliasArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. EmailaliasArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. EmailaliasArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. EmailaliasArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. EmailaliasArgs
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 emailaliasResource = new Glesys.Emailalias("emailaliasResource", new()
{
    Emailalias = "string",
    Goto = "string",
    EmailaliasId = "string",
});
Copy
example, err := glesys.NewEmailalias(ctx, "emailaliasResource", &glesys.EmailaliasArgs{
Emailalias: pulumi.String("string"),
Goto: pulumi.String("string"),
EmailaliasId: pulumi.String("string"),
})
Copy
var emailaliasResource = new Emailalias("emailaliasResource", EmailaliasArgs.builder()
    .emailalias("string")
    .goto_("string")
    .emailaliasId("string")
    .build());
Copy
emailalias_resource = glesys.Emailalias("emailaliasResource",
    emailalias="string",
    goto="string",
    emailalias_id="string")
Copy
const emailaliasResource = new glesys.Emailalias("emailaliasResource", {
    emailalias: "string",
    goto: "string",
    emailaliasId: "string",
});
Copy
type: glesys:Emailalias
properties:
    emailalias: string
    emailaliasId: string
    goto: string
Copy

Emailalias 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 Emailalias resource accepts the following input properties:

Emailalias This property is required. string
Email alias name.
Goto This property is required. string
Email alias goto. Comma separated list of email destinations.
EmailaliasId string
The ID of this resource.
Emailalias This property is required. string
Email alias name.
Goto This property is required. string
Email alias goto. Comma separated list of email destinations.
EmailaliasId string
The ID of this resource.
emailalias This property is required. String
Email alias name.
goto_ This property is required. String
Email alias goto. Comma separated list of email destinations.
emailaliasId String
The ID of this resource.
emailalias This property is required. string
Email alias name.
goto This property is required. string
Email alias goto. Comma separated list of email destinations.
emailaliasId string
The ID of this resource.
emailalias This property is required. str
Email alias name.
goto This property is required. str
Email alias goto. Comma separated list of email destinations.
emailalias_id str
The ID of this resource.
emailalias This property is required. String
Email alias name.
goto This property is required. String
Email alias goto. Comma separated list of email destinations.
emailaliasId String
The ID of this resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the Emailalias 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 Emailalias Resource

Get an existing Emailalias 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?: EmailaliasState, opts?: CustomResourceOptions): Emailalias
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        emailalias: Optional[str] = None,
        emailalias_id: Optional[str] = None,
        goto: Optional[str] = None) -> Emailalias
func GetEmailalias(ctx *Context, name string, id IDInput, state *EmailaliasState, opts ...ResourceOption) (*Emailalias, error)
public static Emailalias Get(string name, Input<string> id, EmailaliasState? state, CustomResourceOptions? opts = null)
public static Emailalias get(String name, Output<String> id, EmailaliasState state, CustomResourceOptions options)
resources:  _:    type: glesys:Emailalias    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Emailalias string
Email alias name.
EmailaliasId string
The ID of this resource.
Goto string
Email alias goto. Comma separated list of email destinations.
Emailalias string
Email alias name.
EmailaliasId string
The ID of this resource.
Goto string
Email alias goto. Comma separated list of email destinations.
emailalias String
Email alias name.
emailaliasId String
The ID of this resource.
goto_ String
Email alias goto. Comma separated list of email destinations.
emailalias string
Email alias name.
emailaliasId string
The ID of this resource.
goto string
Email alias goto. Comma separated list of email destinations.
emailalias str
Email alias name.
emailalias_id str
The ID of this resource.
goto str
Email alias goto. Comma separated list of email destinations.
emailalias String
Email alias name.
emailaliasId String
The ID of this resource.
goto String
Email alias goto. Comma separated list of email destinations.

Import

Email alias import.

$ pulumi import glesys:index/emailalias:Emailalias info info@example.com
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
glesys glesys/terraform-provider-glesys
License
Notes
This Pulumi package is based on the glesys Terraform Provider.