Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Email ¶
type Email struct {
// contains filtered or unexported fields
}
Creates an Okta Email Template.
This resource allows you to create and configure an Okta Email Template.
> This content is derived from https://github.com/articulate/terraform-provider-okta/blob/master/website/docs/r/template_email.html.markdown.
func GetEmail ¶
func GetEmail(ctx *pulumi.Context, name string, id pulumi.ID, state *EmailState, opts ...pulumi.ResourceOpt) (*Email, error)
GetEmail gets an existing Email resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
func NewEmail ¶
func NewEmail(ctx *pulumi.Context, name string, args *EmailArgs, opts ...pulumi.ResourceOpt) (*Email, error)
NewEmail registers a new resource with the given unique name, arguments, and options.
func (*Email) DefaultLanguage ¶
func (r *Email) DefaultLanguage() *pulumi.StringOutput
The default language, by default is set to `"en"`.
func (*Email) Translations ¶
func (r *Email) Translations() *pulumi.ArrayOutput
Set of translations for particular template.
type EmailArgs ¶
type EmailArgs struct { // The default language, by default is set to `"en"`. DefaultLanguage interface{} // Set of translations for particular template. Translations interface{} // Email template type Type interface{} }
The set of arguments for constructing a Email resource.
type EmailState ¶
type EmailState struct { // The default language, by default is set to `"en"`. DefaultLanguage interface{} // Set of translations for particular template. Translations interface{} // Email template type Type interface{} }
Input properties used for looking up and filtering Email resources.