dataapplication

package
v0.0.0-...-c2cc54e Latest Latest
Warning

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

Go to latest
Published: Oct 27, 2023 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 AccessToken

type AccessToken struct{}

type AccessTokenAttributes

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

func (AccessTokenAttributes) AdditionalProperties

func (at AccessTokenAttributes) AdditionalProperties() terra.ListValue[terra.StringValue]

func (AccessTokenAttributes) Essential

func (at AccessTokenAttributes) Essential() terra.BoolValue

func (AccessTokenAttributes) InternalRef

func (at AccessTokenAttributes) InternalRef() (terra.Reference, error)

func (AccessTokenAttributes) InternalTokens

func (at AccessTokenAttributes) InternalTokens() (hclwrite.Tokens, error)

func (AccessTokenAttributes) InternalWithRef

func (AccessTokenAttributes) Name

func (AccessTokenAttributes) Source

type AccessTokenState

type AccessTokenState struct {
	AdditionalProperties []string `json:"additional_properties"`
	Essential            bool     `json:"essential"`
	Name                 string   `json:"name"`
	Source               string   `json:"source"`
}

type Api

type Api struct {
	// Oauth2PermissionScopes: min=0
	Oauth2PermissionScopes []Oauth2PermissionScopes `hcl:"oauth2_permission_scopes,block" validate:"min=0"`
}

type ApiAttributes

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

func (ApiAttributes) InternalRef

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

func (ApiAttributes) InternalTokens

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

func (ApiAttributes) InternalWithRef

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

func (ApiAttributes) KnownClientApplications

func (a ApiAttributes) KnownClientApplications() terra.ListValue[terra.StringValue]

func (ApiAttributes) MappedClaimsEnabled

func (a ApiAttributes) MappedClaimsEnabled() terra.BoolValue

func (ApiAttributes) Oauth2PermissionScopes

func (a ApiAttributes) Oauth2PermissionScopes() terra.ListValue[Oauth2PermissionScopesAttributes]

func (ApiAttributes) RequestedAccessTokenVersion

func (a ApiAttributes) RequestedAccessTokenVersion() terra.NumberValue

type ApiState

type ApiState struct {
	KnownClientApplications     []string                      `json:"known_client_applications"`
	MappedClaimsEnabled         bool                          `json:"mapped_claims_enabled"`
	RequestedAccessTokenVersion float64                       `json:"requested_access_token_version"`
	Oauth2PermissionScopes      []Oauth2PermissionScopesState `json:"oauth2_permission_scopes"`
}

type AppRoles

type AppRoles struct{}

type AppRolesAttributes

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

func (AppRolesAttributes) AllowedMemberTypes

func (ar AppRolesAttributes) AllowedMemberTypes() terra.ListValue[terra.StringValue]

func (AppRolesAttributes) Description

func (ar AppRolesAttributes) Description() terra.StringValue

func (AppRolesAttributes) DisplayName

func (ar AppRolesAttributes) DisplayName() terra.StringValue

func (AppRolesAttributes) Enabled

func (ar AppRolesAttributes) Enabled() terra.BoolValue

func (AppRolesAttributes) Id

func (AppRolesAttributes) InternalRef

func (ar AppRolesAttributes) InternalRef() (terra.Reference, error)

func (AppRolesAttributes) InternalTokens

func (ar AppRolesAttributes) InternalTokens() (hclwrite.Tokens, error)

func (AppRolesAttributes) InternalWithRef

func (ar AppRolesAttributes) InternalWithRef(ref terra.Reference) AppRolesAttributes

func (AppRolesAttributes) Value

type AppRolesState

type AppRolesState struct {
	AllowedMemberTypes []string `json:"allowed_member_types"`
	Description        string   `json:"description"`
	DisplayName        string   `json:"display_name"`
	Enabled            bool     `json:"enabled"`
	Id                 string   `json:"id"`
	Value              string   `json:"value"`
}

type FeatureTags

type FeatureTags struct{}

type FeatureTagsAttributes

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

func (FeatureTagsAttributes) CustomSingleSignOn

func (ft FeatureTagsAttributes) CustomSingleSignOn() terra.BoolValue

func (FeatureTagsAttributes) Enterprise

func (ft FeatureTagsAttributes) Enterprise() terra.BoolValue

func (FeatureTagsAttributes) Gallery

func (ft FeatureTagsAttributes) Gallery() terra.BoolValue

func (FeatureTagsAttributes) Hide

func (FeatureTagsAttributes) InternalRef

func (ft FeatureTagsAttributes) InternalRef() (terra.Reference, error)

func (FeatureTagsAttributes) InternalTokens

func (ft FeatureTagsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (FeatureTagsAttributes) InternalWithRef

type FeatureTagsState

type FeatureTagsState struct {
	CustomSingleSignOn bool `json:"custom_single_sign_on"`
	Enterprise         bool `json:"enterprise"`
	Gallery            bool `json:"gallery"`
	Hide               bool `json:"hide"`
}

type IdToken

type IdToken struct{}

type IdTokenAttributes

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

func (IdTokenAttributes) AdditionalProperties

func (it IdTokenAttributes) AdditionalProperties() terra.ListValue[terra.StringValue]

func (IdTokenAttributes) Essential

func (it IdTokenAttributes) Essential() terra.BoolValue

func (IdTokenAttributes) InternalRef

func (it IdTokenAttributes) InternalRef() (terra.Reference, error)

func (IdTokenAttributes) InternalTokens

func (it IdTokenAttributes) InternalTokens() (hclwrite.Tokens, error)

func (IdTokenAttributes) InternalWithRef

func (it IdTokenAttributes) InternalWithRef(ref terra.Reference) IdTokenAttributes

func (IdTokenAttributes) Name

func (IdTokenAttributes) Source

func (it IdTokenAttributes) Source() terra.StringValue

type IdTokenState

type IdTokenState struct {
	AdditionalProperties []string `json:"additional_properties"`
	Essential            bool     `json:"essential"`
	Name                 string   `json:"name"`
	Source               string   `json:"source"`
}

type ImplicitGrant

type ImplicitGrant struct{}

type ImplicitGrantAttributes

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

func (ImplicitGrantAttributes) AccessTokenIssuanceEnabled

func (ig ImplicitGrantAttributes) AccessTokenIssuanceEnabled() terra.BoolValue

func (ImplicitGrantAttributes) IdTokenIssuanceEnabled

func (ig ImplicitGrantAttributes) IdTokenIssuanceEnabled() terra.BoolValue

func (ImplicitGrantAttributes) InternalRef

func (ig ImplicitGrantAttributes) InternalRef() (terra.Reference, error)

func (ImplicitGrantAttributes) InternalTokens

func (ig ImplicitGrantAttributes) InternalTokens() (hclwrite.Tokens, error)

func (ImplicitGrantAttributes) InternalWithRef

type ImplicitGrantState

type ImplicitGrantState struct {
	AccessTokenIssuanceEnabled bool `json:"access_token_issuance_enabled"`
	IdTokenIssuanceEnabled     bool `json:"id_token_issuance_enabled"`
}

type Oauth2PermissionScopes

type Oauth2PermissionScopes struct{}

type Oauth2PermissionScopesAttributes

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

func (Oauth2PermissionScopesAttributes) AdminConsentDescription

func (ops Oauth2PermissionScopesAttributes) AdminConsentDescription() terra.StringValue

func (Oauth2PermissionScopesAttributes) AdminConsentDisplayName

func (ops Oauth2PermissionScopesAttributes) AdminConsentDisplayName() terra.StringValue

func (Oauth2PermissionScopesAttributes) Enabled

func (Oauth2PermissionScopesAttributes) Id

func (Oauth2PermissionScopesAttributes) InternalRef

func (Oauth2PermissionScopesAttributes) InternalTokens

func (ops Oauth2PermissionScopesAttributes) InternalTokens() (hclwrite.Tokens, error)

func (Oauth2PermissionScopesAttributes) InternalWithRef

func (Oauth2PermissionScopesAttributes) Type

func (Oauth2PermissionScopesAttributes) UserConsentDescription

func (ops Oauth2PermissionScopesAttributes) UserConsentDescription() terra.StringValue

func (Oauth2PermissionScopesAttributes) UserConsentDisplayName

func (ops Oauth2PermissionScopesAttributes) UserConsentDisplayName() terra.StringValue

func (Oauth2PermissionScopesAttributes) Value

type Oauth2PermissionScopesState

type Oauth2PermissionScopesState struct {
	AdminConsentDescription string `json:"admin_consent_description"`
	AdminConsentDisplayName string `json:"admin_consent_display_name"`
	Enabled                 bool   `json:"enabled"`
	Id                      string `json:"id"`
	Type                    string `json:"type"`
	UserConsentDescription  string `json:"user_consent_description"`
	UserConsentDisplayName  string `json:"user_consent_display_name"`
	Value                   string `json:"value"`
}

type OptionalClaims

type OptionalClaims struct {
	// AccessToken: min=0
	AccessToken []AccessToken `hcl:"access_token,block" validate:"min=0"`
	// IdToken: min=0
	IdToken []IdToken `hcl:"id_token,block" validate:"min=0"`
	// Saml2Token: min=0
	Saml2Token []Saml2Token `hcl:"saml2_token,block" validate:"min=0"`
}

type OptionalClaimsAttributes

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

func (OptionalClaimsAttributes) AccessToken

func (OptionalClaimsAttributes) IdToken

func (OptionalClaimsAttributes) InternalRef

func (oc OptionalClaimsAttributes) InternalRef() (terra.Reference, error)

func (OptionalClaimsAttributes) InternalTokens

func (oc OptionalClaimsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (OptionalClaimsAttributes) InternalWithRef

func (OptionalClaimsAttributes) Saml2Token

type OptionalClaimsState

type OptionalClaimsState struct {
	AccessToken []AccessTokenState `json:"access_token"`
	IdToken     []IdTokenState     `json:"id_token"`
	Saml2Token  []Saml2TokenState  `json:"saml2_token"`
}

type PublicClient

type PublicClient struct{}

type PublicClientAttributes

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

func (PublicClientAttributes) InternalRef

func (pc PublicClientAttributes) InternalRef() (terra.Reference, error)

func (PublicClientAttributes) InternalTokens

func (pc PublicClientAttributes) InternalTokens() (hclwrite.Tokens, error)

func (PublicClientAttributes) InternalWithRef

func (PublicClientAttributes) RedirectUris

type PublicClientState

type PublicClientState struct {
	RedirectUris []string `json:"redirect_uris"`
}

type RequiredResourceAccess

type RequiredResourceAccess struct {
	// ResourceAccess: min=0
	ResourceAccess []ResourceAccess `hcl:"resource_access,block" validate:"min=0"`
}

type RequiredResourceAccessAttributes

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

func (RequiredResourceAccessAttributes) InternalRef

func (RequiredResourceAccessAttributes) InternalTokens

func (rra RequiredResourceAccessAttributes) InternalTokens() (hclwrite.Tokens, error)

func (RequiredResourceAccessAttributes) InternalWithRef

func (RequiredResourceAccessAttributes) ResourceAccess

func (RequiredResourceAccessAttributes) ResourceAppId

type RequiredResourceAccessState

type RequiredResourceAccessState struct {
	ResourceAppId  string                `json:"resource_app_id"`
	ResourceAccess []ResourceAccessState `json:"resource_access"`
}

type ResourceAccess

type ResourceAccess struct{}

type ResourceAccessAttributes

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

func (ResourceAccessAttributes) Id

func (ResourceAccessAttributes) InternalRef

func (ra ResourceAccessAttributes) InternalRef() (terra.Reference, error)

func (ResourceAccessAttributes) InternalTokens

func (ra ResourceAccessAttributes) InternalTokens() (hclwrite.Tokens, error)

func (ResourceAccessAttributes) InternalWithRef

func (ResourceAccessAttributes) Type

type ResourceAccessState

type ResourceAccessState struct {
	Id   string `json:"id"`
	Type string `json:"type"`
}

type Saml2Token

type Saml2Token struct{}

type Saml2TokenAttributes

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

func (Saml2TokenAttributes) AdditionalProperties

func (st Saml2TokenAttributes) AdditionalProperties() terra.ListValue[terra.StringValue]

func (Saml2TokenAttributes) Essential

func (st Saml2TokenAttributes) Essential() terra.BoolValue

func (Saml2TokenAttributes) InternalRef

func (st Saml2TokenAttributes) InternalRef() (terra.Reference, error)

func (Saml2TokenAttributes) InternalTokens

func (st Saml2TokenAttributes) InternalTokens() (hclwrite.Tokens, error)

func (Saml2TokenAttributes) InternalWithRef

func (st Saml2TokenAttributes) InternalWithRef(ref terra.Reference) Saml2TokenAttributes

func (Saml2TokenAttributes) Name

func (Saml2TokenAttributes) Source

type Saml2TokenState

type Saml2TokenState struct {
	AdditionalProperties []string `json:"additional_properties"`
	Essential            bool     `json:"essential"`
	Name                 string   `json:"name"`
	Source               string   `json:"source"`
}

type SinglePageApplication

type SinglePageApplication struct{}

type SinglePageApplicationAttributes

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

func (SinglePageApplicationAttributes) InternalRef

func (SinglePageApplicationAttributes) InternalTokens

func (spa SinglePageApplicationAttributes) InternalTokens() (hclwrite.Tokens, error)

func (SinglePageApplicationAttributes) InternalWithRef

func (SinglePageApplicationAttributes) RedirectUris

type SinglePageApplicationState

type SinglePageApplicationState struct {
	RedirectUris []string `json:"redirect_uris"`
}

type Timeouts

type Timeouts struct {
	// Read: string, optional
	Read terra.StringValue `hcl:"read,attr"`
}

type TimeoutsAttributes

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

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) Read

type TimeoutsState

type TimeoutsState struct {
	Read string `json:"read"`
}

type Web

type Web struct {
	// ImplicitGrant: min=0
	ImplicitGrant []ImplicitGrant `hcl:"implicit_grant,block" validate:"min=0"`
}

type WebAttributes

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

func (WebAttributes) HomepageUrl

func (w WebAttributes) HomepageUrl() terra.StringValue

func (WebAttributes) ImplicitGrant

func (WebAttributes) InternalRef

func (w WebAttributes) InternalRef() (terra.Reference, error)

func (WebAttributes) InternalTokens

func (w WebAttributes) InternalTokens() (hclwrite.Tokens, error)

func (WebAttributes) InternalWithRef

func (w WebAttributes) InternalWithRef(ref terra.Reference) WebAttributes

func (WebAttributes) LogoutUrl

func (w WebAttributes) LogoutUrl() terra.StringValue

func (WebAttributes) RedirectUris

func (w WebAttributes) RedirectUris() terra.ListValue[terra.StringValue]

type WebState

type WebState struct {
	HomepageUrl   string               `json:"homepage_url"`
	LogoutUrl     string               `json:"logout_url"`
	RedirectUris  []string             `json:"redirect_uris"`
	ImplicitGrant []ImplicitGrantState `json:"implicit_grant"`
}

Jump to

Keyboard shortcuts

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