google_identity_platform_tenant_inbound_saml_config

package
v0.0.0-...-4deecce Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 16, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Args

type Args struct {
	// DisplayName: string, required
	DisplayName terra.StringValue `hcl:"display_name,attr" validate:"required"`
	// Enabled: bool, optional
	Enabled terra.BoolValue `hcl:"enabled,attr"`
	// Id: string, optional
	Id terra.StringValue `hcl:"id,attr"`
	// Name: string, required
	Name terra.StringValue `hcl:"name,attr" validate:"required"`
	// Project: string, optional
	Project terra.StringValue `hcl:"project,attr"`
	// Tenant: string, required
	Tenant terra.StringValue `hcl:"tenant,attr" validate:"required"`
	// IdpConfig: required
	IdpConfig *IdpConfig `hcl:"idp_config,block" validate:"required"`
	// SpConfig: required
	SpConfig *SpConfig `hcl:"sp_config,block" validate:"required"`
	// Timeouts: optional
	Timeouts *Timeouts `hcl:"timeouts,block"`
}

Args contains the configurations for google_identity_platform_tenant_inbound_saml_config.

type IdpConfig

type IdpConfig struct {
	// IdpEntityId: string, required
	IdpEntityId terra.StringValue `hcl:"idp_entity_id,attr" validate:"required"`
	// SignRequest: bool, optional
	SignRequest terra.BoolValue `hcl:"sign_request,attr"`
	// SsoUrl: string, required
	SsoUrl terra.StringValue `hcl:"sso_url,attr" validate:"required"`
	// IdpConfigIdpCertificates: min=1
	IdpCertificates []IdpConfigIdpCertificates `hcl:"idp_certificates,block" validate:"min=1"`
}

type IdpConfigAttributes

type IdpConfigAttributes struct {
	// contains filtered or unexported fields
}

func (IdpConfigAttributes) IdpCertificates

func (IdpConfigAttributes) IdpEntityId

func (ic IdpConfigAttributes) IdpEntityId() terra.StringValue

func (IdpConfigAttributes) InternalRef

func (ic IdpConfigAttributes) InternalRef() (terra.Reference, error)

func (IdpConfigAttributes) InternalTokens

func (ic IdpConfigAttributes) InternalTokens() (hclwrite.Tokens, error)

func (IdpConfigAttributes) InternalWithRef

func (ic IdpConfigAttributes) InternalWithRef(ref terra.Reference) IdpConfigAttributes

func (IdpConfigAttributes) SignRequest

func (ic IdpConfigAttributes) SignRequest() terra.BoolValue

func (IdpConfigAttributes) SsoUrl

type IdpConfigIdpCertificates

type IdpConfigIdpCertificates struct {
	// X509Certificate: string, optional
	X509Certificate terra.StringValue `hcl:"x509_certificate,attr"`
}

type IdpConfigIdpCertificatesAttributes

type IdpConfigIdpCertificatesAttributes struct {
	// contains filtered or unexported fields
}

func (IdpConfigIdpCertificatesAttributes) InternalRef

func (IdpConfigIdpCertificatesAttributes) InternalTokens

func (IdpConfigIdpCertificatesAttributes) InternalWithRef

func (IdpConfigIdpCertificatesAttributes) X509Certificate

type IdpConfigIdpCertificatesState

type IdpConfigIdpCertificatesState struct {
	X509Certificate string `json:"x509_certificate"`
}

type IdpConfigState

type IdpConfigState struct {
	IdpEntityId     string                          `json:"idp_entity_id"`
	SignRequest     bool                            `json:"sign_request"`
	SsoUrl          string                          `json:"sso_url"`
	IdpCertificates []IdpConfigIdpCertificatesState `json:"idp_certificates"`
}

type Resource

type Resource struct {
	Name string
	Args Args

	DependsOn terra.Dependencies
	Lifecycle *terra.Lifecycle
	// contains filtered or unexported fields
}

Resource represents the Terraform resource google_identity_platform_tenant_inbound_saml_config.

func New

func New(name string, args Args) *Resource

New creates a new instance of Resource.

func (*Resource) Attributes

func (giptisc *Resource) Attributes() googleIdentityPlatformTenantInboundSamlConfigAttributes

Attributes returns the attributes for Resource.

func (*Resource) Configuration

func (giptisc *Resource) Configuration() interface{}

Configuration returns the configuration (args) for Resource.

func (*Resource) DependOn

func (giptisc *Resource) DependOn() terra.Reference

DependOn is used for other resources to depend on Resource.

func (*Resource) Dependencies

func (giptisc *Resource) Dependencies() terra.Dependencies

Dependencies returns the list of resources Resource depends_on.

func (*Resource) ImportState

func (giptisc *Resource) ImportState(state io.Reader) error

ImportState imports the given attribute values into Resource's state.

func (*Resource) LifecycleManagement

func (giptisc *Resource) LifecycleManagement() *terra.Lifecycle

LifecycleManagement returns the lifecycle block for Resource.

func (*Resource) LocalName

func (giptisc *Resource) LocalName() string

LocalName returns the local name for Resource.

func (*Resource) State

func (giptisc *Resource) State() (*googleIdentityPlatformTenantInboundSamlConfigState, bool)

State returns the state and a bool indicating if Resource has state.

func (*Resource) StateMust

func (giptisc *Resource) StateMust() *googleIdentityPlatformTenantInboundSamlConfigState

StateMust returns the state for Resource. Panics if the state is nil.

func (*Resource) Type

func (giptisc *Resource) Type() string

Type returns the Terraform object type for Resource.

type SpConfig

type SpConfig struct {
	// CallbackUri: string, required
	CallbackUri terra.StringValue `hcl:"callback_uri,attr" validate:"required"`
	// SpEntityId: string, required
	SpEntityId terra.StringValue `hcl:"sp_entity_id,attr" validate:"required"`
}

type SpConfigAttributes

type SpConfigAttributes struct {
	// contains filtered or unexported fields
}

func (SpConfigAttributes) CallbackUri

func (sc SpConfigAttributes) CallbackUri() terra.StringValue

func (SpConfigAttributes) InternalRef

func (sc SpConfigAttributes) InternalRef() (terra.Reference, error)

func (SpConfigAttributes) InternalTokens

func (sc SpConfigAttributes) InternalTokens() (hclwrite.Tokens, error)

func (SpConfigAttributes) InternalWithRef

func (sc SpConfigAttributes) InternalWithRef(ref terra.Reference) SpConfigAttributes

func (SpConfigAttributes) SpCertificates

func (SpConfigAttributes) SpEntityId

func (sc SpConfigAttributes) SpEntityId() terra.StringValue

type SpConfigSpCertificatesAttributes

type SpConfigSpCertificatesAttributes struct {
	// contains filtered or unexported fields
}

func (SpConfigSpCertificatesAttributes) InternalRef

func (SpConfigSpCertificatesAttributes) InternalTokens

func (sc SpConfigSpCertificatesAttributes) InternalTokens() (hclwrite.Tokens, error)

func (SpConfigSpCertificatesAttributes) InternalWithRef

func (SpConfigSpCertificatesAttributes) X509Certificate

func (sc SpConfigSpCertificatesAttributes) X509Certificate() terra.StringValue

type SpConfigSpCertificatesState

type SpConfigSpCertificatesState struct {
	X509Certificate string `json:"x509_certificate"`
}

type SpConfigState

type SpConfigState struct {
	CallbackUri    string                        `json:"callback_uri"`
	SpEntityId     string                        `json:"sp_entity_id"`
	SpCertificates []SpConfigSpCertificatesState `json:"sp_certificates"`
}

type Timeouts

type Timeouts struct {
	// Create: string, optional
	Create terra.StringValue `hcl:"create,attr"`
	// Delete: string, optional
	Delete terra.StringValue `hcl:"delete,attr"`
	// Update: string, optional
	Update terra.StringValue `hcl:"update,attr"`
}

type TimeoutsAttributes

type TimeoutsAttributes struct {
	// contains filtered or unexported fields
}

func (TimeoutsAttributes) Create

func (TimeoutsAttributes) Delete

func (TimeoutsAttributes) InternalRef

func (t TimeoutsAttributes) InternalRef() (terra.Reference, error)

func (TimeoutsAttributes) InternalTokens

func (t TimeoutsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (TimeoutsAttributes) InternalWithRef

func (t TimeoutsAttributes) InternalWithRef(ref terra.Reference) TimeoutsAttributes

func (TimeoutsAttributes) Update

type TimeoutsState

type TimeoutsState struct {
	Create string `json:"create"`
	Delete string `json:"delete"`
	Update string `json:"update"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL