dataidentitystoreuser

package
v0.0.0-...-964ba77 Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Addresses

type Addresses struct{}

type AddressesAttributes

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

func (AddressesAttributes) Country

func (AddressesAttributes) Formatted

func (a AddressesAttributes) Formatted() terra.StringValue

func (AddressesAttributes) InternalRef

func (a AddressesAttributes) InternalRef() (terra.Reference, error)

func (AddressesAttributes) InternalTokens

func (a AddressesAttributes) InternalTokens() (hclwrite.Tokens, error)

func (AddressesAttributes) InternalWithRef

func (a AddressesAttributes) InternalWithRef(ref terra.Reference) AddressesAttributes

func (AddressesAttributes) Locality

func (a AddressesAttributes) Locality() terra.StringValue

func (AddressesAttributes) PostalCode

func (a AddressesAttributes) PostalCode() terra.StringValue

func (AddressesAttributes) Primary

func (a AddressesAttributes) Primary() terra.BoolValue

func (AddressesAttributes) Region

func (AddressesAttributes) StreetAddress

func (a AddressesAttributes) StreetAddress() terra.StringValue

func (AddressesAttributes) Type

type AddressesState

type AddressesState struct {
	Country       string `json:"country"`
	Formatted     string `json:"formatted"`
	Locality      string `json:"locality"`
	PostalCode    string `json:"postal_code"`
	Primary       bool   `json:"primary"`
	Region        string `json:"region"`
	StreetAddress string `json:"street_address"`
	Type          string `json:"type"`
}

type AlternateIdentifier

type AlternateIdentifier struct {
	// ExternalId: optional
	ExternalId *ExternalId `hcl:"external_id,block"`
	// UniqueAttribute: optional
	UniqueAttribute *UniqueAttribute `hcl:"unique_attribute,block"`
}

type AlternateIdentifierAttributes

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

func (AlternateIdentifierAttributes) ExternalId

func (AlternateIdentifierAttributes) InternalRef

func (ai AlternateIdentifierAttributes) InternalRef() (terra.Reference, error)

func (AlternateIdentifierAttributes) InternalTokens

func (ai AlternateIdentifierAttributes) InternalTokens() (hclwrite.Tokens, error)

func (AlternateIdentifierAttributes) InternalWithRef

func (AlternateIdentifierAttributes) UniqueAttribute

type AlternateIdentifierState

type AlternateIdentifierState struct {
	ExternalId      []ExternalIdState      `json:"external_id"`
	UniqueAttribute []UniqueAttributeState `json:"unique_attribute"`
}

type Emails

type Emails struct{}

type EmailsAttributes

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

func (EmailsAttributes) InternalRef

func (e EmailsAttributes) InternalRef() (terra.Reference, error)

func (EmailsAttributes) InternalTokens

func (e EmailsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (EmailsAttributes) InternalWithRef

func (e EmailsAttributes) InternalWithRef(ref terra.Reference) EmailsAttributes

func (EmailsAttributes) Primary

func (e EmailsAttributes) Primary() terra.BoolValue

func (EmailsAttributes) Type

func (EmailsAttributes) Value

type EmailsState

type EmailsState struct {
	Primary bool   `json:"primary"`
	Type    string `json:"type"`
	Value   string `json:"value"`
}

type ExternalId

type ExternalId struct {
	// Id: string, required
	Id terra.StringValue `hcl:"id,attr" validate:"required"`
	// Issuer: string, required
	Issuer terra.StringValue `hcl:"issuer,attr" validate:"required"`
}

type ExternalIdAttributes

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

func (ExternalIdAttributes) Id

func (ExternalIdAttributes) InternalRef

func (ei ExternalIdAttributes) InternalRef() (terra.Reference, error)

func (ExternalIdAttributes) InternalTokens

func (ei ExternalIdAttributes) InternalTokens() (hclwrite.Tokens, error)

func (ExternalIdAttributes) InternalWithRef

func (ei ExternalIdAttributes) InternalWithRef(ref terra.Reference) ExternalIdAttributes

func (ExternalIdAttributes) Issuer

type ExternalIdState

type ExternalIdState struct {
	Id     string `json:"id"`
	Issuer string `json:"issuer"`
}

type ExternalIds

type ExternalIds struct{}

type ExternalIdsAttributes

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

func (ExternalIdsAttributes) Id

func (ExternalIdsAttributes) InternalRef

func (ei ExternalIdsAttributes) InternalRef() (terra.Reference, error)

func (ExternalIdsAttributes) InternalTokens

func (ei ExternalIdsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (ExternalIdsAttributes) InternalWithRef

func (ExternalIdsAttributes) Issuer

type ExternalIdsState

type ExternalIdsState struct {
	Id     string `json:"id"`
	Issuer string `json:"issuer"`
}

type Filter

type Filter struct {
	// AttributePath: string, required
	AttributePath terra.StringValue `hcl:"attribute_path,attr" validate:"required"`
	// AttributeValue: string, required
	AttributeValue terra.StringValue `hcl:"attribute_value,attr" validate:"required"`
}

type FilterAttributes

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

func (FilterAttributes) AttributePath

func (f FilterAttributes) AttributePath() terra.StringValue

func (FilterAttributes) AttributeValue

func (f FilterAttributes) AttributeValue() terra.StringValue

func (FilterAttributes) InternalRef

func (f FilterAttributes) InternalRef() (terra.Reference, error)

func (FilterAttributes) InternalTokens

func (f FilterAttributes) InternalTokens() (hclwrite.Tokens, error)

func (FilterAttributes) InternalWithRef

func (f FilterAttributes) InternalWithRef(ref terra.Reference) FilterAttributes

type FilterState

type FilterState struct {
	AttributePath  string `json:"attribute_path"`
	AttributeValue string `json:"attribute_value"`
}

type Name

type Name struct{}

type NameAttributes

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

func (NameAttributes) FamilyName

func (n NameAttributes) FamilyName() terra.StringValue

func (NameAttributes) Formatted

func (n NameAttributes) Formatted() terra.StringValue

func (NameAttributes) GivenName

func (n NameAttributes) GivenName() terra.StringValue

func (NameAttributes) HonorificPrefix

func (n NameAttributes) HonorificPrefix() terra.StringValue

func (NameAttributes) HonorificSuffix

func (n NameAttributes) HonorificSuffix() terra.StringValue

func (NameAttributes) InternalRef

func (n NameAttributes) InternalRef() (terra.Reference, error)

func (NameAttributes) InternalTokens

func (n NameAttributes) InternalTokens() (hclwrite.Tokens, error)

func (NameAttributes) InternalWithRef

func (n NameAttributes) InternalWithRef(ref terra.Reference) NameAttributes

func (NameAttributes) MiddleName

func (n NameAttributes) MiddleName() terra.StringValue

type NameState

type NameState struct {
	FamilyName      string `json:"family_name"`
	Formatted       string `json:"formatted"`
	GivenName       string `json:"given_name"`
	HonorificPrefix string `json:"honorific_prefix"`
	HonorificSuffix string `json:"honorific_suffix"`
	MiddleName      string `json:"middle_name"`
}

type PhoneNumbers

type PhoneNumbers struct{}

type PhoneNumbersAttributes

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

func (PhoneNumbersAttributes) InternalRef

func (pn PhoneNumbersAttributes) InternalRef() (terra.Reference, error)

func (PhoneNumbersAttributes) InternalTokens

func (pn PhoneNumbersAttributes) InternalTokens() (hclwrite.Tokens, error)

func (PhoneNumbersAttributes) InternalWithRef

func (PhoneNumbersAttributes) Primary

func (pn PhoneNumbersAttributes) Primary() terra.BoolValue

func (PhoneNumbersAttributes) Type

func (PhoneNumbersAttributes) Value

type PhoneNumbersState

type PhoneNumbersState struct {
	Primary bool   `json:"primary"`
	Type    string `json:"type"`
	Value   string `json:"value"`
}

type UniqueAttribute

type UniqueAttribute struct {
	// AttributePath: string, required
	AttributePath terra.StringValue `hcl:"attribute_path,attr" validate:"required"`
	// AttributeValue: string, required
	AttributeValue terra.StringValue `hcl:"attribute_value,attr" validate:"required"`
}

type UniqueAttributeAttributes

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

func (UniqueAttributeAttributes) AttributePath

func (ua UniqueAttributeAttributes) AttributePath() terra.StringValue

func (UniqueAttributeAttributes) AttributeValue

func (ua UniqueAttributeAttributes) AttributeValue() terra.StringValue

func (UniqueAttributeAttributes) InternalRef

func (ua UniqueAttributeAttributes) InternalRef() (terra.Reference, error)

func (UniqueAttributeAttributes) InternalTokens

func (ua UniqueAttributeAttributes) InternalTokens() (hclwrite.Tokens, error)

func (UniqueAttributeAttributes) InternalWithRef

type UniqueAttributeState

type UniqueAttributeState struct {
	AttributePath  string `json:"attribute_path"`
	AttributeValue string `json:"attribute_value"`
}

Jump to

Keyboard shortcuts

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