Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Origin ¶
type Origin struct {
// contains filtered or unexported fields
}
Creates a Trusted Origin.
This resource allows you to create and configure an Trusted Origin.
> This content is derived from https://github.com/articulate/terraform-provider-okta/blob/master/website/docs/r/trusted_origin.html.markdown.
func GetOrigin ¶
func GetOrigin(ctx *pulumi.Context, name string, id pulumi.ID, state *OriginState, opts ...pulumi.ResourceOpt) (*Origin, error)
GetOrigin gets an existing Origin 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 NewOrigin ¶
func NewOrigin(ctx *pulumi.Context, name string, args *OriginArgs, opts ...pulumi.ResourceOpt) (*Origin, error)
NewOrigin registers a new resource with the given unique name, arguments, and options.
func (*Origin) Active ¶
func (r *Origin) Active() *pulumi.BoolOutput
Whether the Trusted Origin is active or not - can only be issued post-creation.
func (*Origin) Name ¶
func (r *Origin) Name() *pulumi.StringOutput
Name of the Trusted Origin Resource.
func (*Origin) Scopes ¶
func (r *Origin) Scopes() *pulumi.ArrayOutput
Scopes of the Trusted Origin - can be `"CORS"` and/or `"REDIRECT"`.
type OriginArgs ¶
type OriginArgs struct { // Whether the Trusted Origin is active or not - can only be issued post-creation. Active interface{} // Name of the Trusted Origin Resource. Name interface{} // The origin to trust. Origin interface{} // Scopes of the Trusted Origin - can be `"CORS"` and/or `"REDIRECT"`. Scopes interface{} }
The set of arguments for constructing a Origin resource.
type OriginState ¶
type OriginState struct { // Whether the Trusted Origin is active or not - can only be issued post-creation. Active interface{} // Name of the Trusted Origin Resource. Name interface{} // The origin to trust. Origin interface{} // Scopes of the Trusted Origin - can be `"CORS"` and/or `"REDIRECT"`. Scopes interface{} }
Input properties used for looking up and filtering Origin resources.