Documentation ¶
Index ¶
- func AccessIdentityProvider_IsConstruct(x interface{}) *bool
- func AccessIdentityProvider_IsTerraformElement(x interface{}) *bool
- func AccessIdentityProvider_IsTerraformResource(x interface{}) *bool
- func AccessIdentityProvider_TfResourceType() *string
- func NewAccessIdentityProviderConfigAList_Override(a AccessIdentityProviderConfigAList, ...)
- func NewAccessIdentityProviderConfigAOutputReference_Override(a AccessIdentityProviderConfigAOutputReference, ...)
- func NewAccessIdentityProviderScimConfigList_Override(a AccessIdentityProviderScimConfigList, ...)
- func NewAccessIdentityProviderScimConfigOutputReference_Override(a AccessIdentityProviderScimConfigOutputReference, ...)
- func NewAccessIdentityProvider_Override(a AccessIdentityProvider, scope constructs.Construct, id *string, ...)
- type AccessIdentityProvider
- type AccessIdentityProviderConfig
- type AccessIdentityProviderConfigA
- type AccessIdentityProviderConfigAList
- type AccessIdentityProviderConfigAOutputReference
- type AccessIdentityProviderScimConfig
- type AccessIdentityProviderScimConfigList
- type AccessIdentityProviderScimConfigOutputReference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AccessIdentityProvider_IsConstruct ¶
func AccessIdentityProvider_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Use this method instead of `instanceof` to properly detect `Construct` instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the `constructs` library on disk are seen as independent, completely different libraries. As a consequence, the class `Construct` in each copy of the `constructs` library is seen as a different class, and an instance of one class will not test as `instanceof` the other class. `npm install` will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of the `constructs` library can be accidentally installed, and `instanceof` will behave unpredictably. It is safest to avoid using `instanceof`, and using this type-testing method instead.
Returns: true if `x` is an object created from a class which extends `Construct`.
func AccessIdentityProvider_IsTerraformElement ¶
func AccessIdentityProvider_IsTerraformElement(x interface{}) *bool
Experimental.
func AccessIdentityProvider_IsTerraformResource ¶
func AccessIdentityProvider_IsTerraformResource(x interface{}) *bool
Experimental.
func AccessIdentityProvider_TfResourceType ¶
func AccessIdentityProvider_TfResourceType() *string
func NewAccessIdentityProviderConfigAList_Override ¶
func NewAccessIdentityProviderConfigAList_Override(a AccessIdentityProviderConfigAList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewAccessIdentityProviderConfigAOutputReference_Override ¶
func NewAccessIdentityProviderConfigAOutputReference_Override(a AccessIdentityProviderConfigAOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewAccessIdentityProviderScimConfigList_Override ¶
func NewAccessIdentityProviderScimConfigList_Override(a AccessIdentityProviderScimConfigList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewAccessIdentityProviderScimConfigOutputReference_Override ¶
func NewAccessIdentityProviderScimConfigOutputReference_Override(a AccessIdentityProviderScimConfigOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewAccessIdentityProvider_Override ¶
func NewAccessIdentityProvider_Override(a AccessIdentityProvider, scope constructs.Construct, id *string, config *AccessIdentityProviderConfig)
Create a new {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider cloudflare_access_identity_provider} Resource.
Types ¶
type AccessIdentityProvider ¶
type AccessIdentityProvider interface { cdktf.TerraformResource AccountId() *string SetAccountId(val *string) AccountIdInput() *string // Experimental. CdktfStack() cdktf.TerraformStack Config() AccessIdentityProviderConfigAList ConfigInput() interface{} // Experimental. Connection() interface{} // Experimental. SetConnection(val interface{}) // Experimental. ConstructNodeMetadata() *map[string]interface{} // Experimental. Count() interface{} // Experimental. SetCount(val interface{}) // Experimental. DependsOn() *[]*string // Experimental. SetDependsOn(val *[]*string) // Experimental. ForEach() cdktf.ITerraformIterator // Experimental. SetForEach(val cdktf.ITerraformIterator) // Experimental. Fqn() *string // Experimental. FriendlyUniqueId() *string Id() *string SetId(val *string) IdInput() *string // Experimental. Lifecycle() *cdktf.TerraformResourceLifecycle // Experimental. SetLifecycle(val *cdktf.TerraformResourceLifecycle) Name() *string SetName(val *string) NameInput() *string // The tree node. Node() constructs.Node // Experimental. Provider() cdktf.TerraformProvider // Experimental. SetProvider(val cdktf.TerraformProvider) // Experimental. Provisioners() *[]interface{} // Experimental. SetProvisioners(val *[]interface{}) // Experimental. RawOverrides() interface{} ScimConfig() AccessIdentityProviderScimConfigList ScimConfigInput() interface{} // Experimental. TerraformGeneratorMetadata() *cdktf.TerraformProviderGeneratorMetadata // Experimental. TerraformMetaArguments() *map[string]interface{} // Experimental. TerraformResourceType() *string Type() *string SetType(val *string) TypeInput() *string ZoneId() *string SetZoneId(val *string) ZoneIdInput() *string // Experimental. AddOverride(path *string, value interface{}) // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationForAttribute(terraformAttribute *string) cdktf.IResolvable // Overrides the auto-generated logical ID with a specific ID. // Experimental. OverrideLogicalId(newLogicalId *string) PutConfig(value interface{}) PutScimConfig(value interface{}) ResetAccountId() ResetConfig() ResetId() // Resets a previously passed logical Id to use the auto-generated logical id again. // Experimental. ResetOverrideLogicalId() ResetScimConfig() ResetZoneId() SynthesizeAttributes() *map[string]interface{} // Experimental. ToMetadata() interface{} // Returns a string representation of this construct. ToString() *string // Adds this resource to the terraform JSON output. // Experimental. ToTerraform() interface{} }
Represents a {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider cloudflare_access_identity_provider}.
func NewAccessIdentityProvider ¶
func NewAccessIdentityProvider(scope constructs.Construct, id *string, config *AccessIdentityProviderConfig) AccessIdentityProvider
Create a new {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider cloudflare_access_identity_provider} Resource.
type AccessIdentityProviderConfig ¶
type AccessIdentityProviderConfig struct { // Experimental. Connection interface{} `field:"optional" json:"connection" yaml:"connection"` // Experimental. Count interface{} `field:"optional" json:"count" yaml:"count"` // Experimental. DependsOn *[]cdktf.ITerraformDependable `field:"optional" json:"dependsOn" yaml:"dependsOn"` // Experimental. ForEach cdktf.ITerraformIterator `field:"optional" json:"forEach" yaml:"forEach"` // Experimental. Lifecycle *cdktf.TerraformResourceLifecycle `field:"optional" json:"lifecycle" yaml:"lifecycle"` // Experimental. Provider cdktf.TerraformProvider `field:"optional" json:"provider" yaml:"provider"` // Experimental. Provisioners *[]interface{} `field:"optional" json:"provisioners" yaml:"provisioners"` // Friendly name of the Access Identity Provider configuration. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#name AccessIdentityProvider#name} Name *string `field:"required" json:"name" yaml:"name"` // The provider type to use. // // Available values: `centrify`, `facebook`, `google-apps`, `oidc`, `github`, `google`, `saml`, `linkedin`, `azureAD`, `okta`, `onetimepin`, `onelogin`, `yandex`. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#type AccessIdentityProvider#type} Type *string `field:"required" json:"type" yaml:"type"` // The account identifier to target for the resource. // // Conflicts with `zone_id`. **Modifying this attribute will force creation of a new resource.** // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#account_id AccessIdentityProvider#account_id} AccountId *string `field:"optional" json:"accountId" yaml:"accountId"` // config block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#config AccessIdentityProvider#config} Config interface{} `field:"optional" json:"config" yaml:"config"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#id AccessIdentityProvider#id}. // // Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. // If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. Id *string `field:"optional" json:"id" yaml:"id"` // scim_config block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#scim_config AccessIdentityProvider#scim_config} ScimConfig interface{} `field:"optional" json:"scimConfig" yaml:"scimConfig"` // The zone identifier to target for the resource. // // Conflicts with `account_id`. **Modifying this attribute will force creation of a new resource.** // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#zone_id AccessIdentityProvider#zone_id} ZoneId *string `field:"optional" json:"zoneId" yaml:"zoneId"` }
type AccessIdentityProviderConfigA ¶
type AccessIdentityProviderConfigA struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#api_token AccessIdentityProvider#api_token}. ApiToken *string `field:"optional" json:"apiToken" yaml:"apiToken"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#apps_domain AccessIdentityProvider#apps_domain}. AppsDomain *string `field:"optional" json:"appsDomain" yaml:"appsDomain"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#attributes AccessIdentityProvider#attributes}. Attributes *[]*string `field:"optional" json:"attributes" yaml:"attributes"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#auth_url AccessIdentityProvider#auth_url}. AuthUrl *string `field:"optional" json:"authUrl" yaml:"authUrl"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#centrify_account AccessIdentityProvider#centrify_account}. CentrifyAccount *string `field:"optional" json:"centrifyAccount" yaml:"centrifyAccount"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#centrify_app_id AccessIdentityProvider#centrify_app_id}. CentrifyAppId *string `field:"optional" json:"centrifyAppId" yaml:"centrifyAppId"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#certs_url AccessIdentityProvider#certs_url}. CertsUrl *string `field:"optional" json:"certsUrl" yaml:"certsUrl"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#claims AccessIdentityProvider#claims}. Claims *[]*string `field:"optional" json:"claims" yaml:"claims"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#client_id AccessIdentityProvider#client_id}. ClientId *string `field:"optional" json:"clientId" yaml:"clientId"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#client_secret AccessIdentityProvider#client_secret}. ClientSecret *string `field:"optional" json:"clientSecret" yaml:"clientSecret"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#directory_id AccessIdentityProvider#directory_id}. DirectoryId *string `field:"optional" json:"directoryId" yaml:"directoryId"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#email_attribute_name AccessIdentityProvider#email_attribute_name}. EmailAttributeName *string `field:"optional" json:"emailAttributeName" yaml:"emailAttributeName"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#idp_public_cert AccessIdentityProvider#idp_public_cert}. IdpPublicCert *string `field:"optional" json:"idpPublicCert" yaml:"idpPublicCert"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#issuer_url AccessIdentityProvider#issuer_url}. IssuerUrl *string `field:"optional" json:"issuerUrl" yaml:"issuerUrl"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#okta_account AccessIdentityProvider#okta_account}. OktaAccount *string `field:"optional" json:"oktaAccount" yaml:"oktaAccount"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#onelogin_account AccessIdentityProvider#onelogin_account}. OneloginAccount *string `field:"optional" json:"oneloginAccount" yaml:"oneloginAccount"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#pkce_enabled AccessIdentityProvider#pkce_enabled}. PkceEnabled interface{} `field:"optional" json:"pkceEnabled" yaml:"pkceEnabled"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#redirect_url AccessIdentityProvider#redirect_url}. RedirectUrl *string `field:"optional" json:"redirectUrl" yaml:"redirectUrl"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#scopes AccessIdentityProvider#scopes}. Scopes *[]*string `field:"optional" json:"scopes" yaml:"scopes"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#sign_request AccessIdentityProvider#sign_request}. SignRequest interface{} `field:"optional" json:"signRequest" yaml:"signRequest"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#sso_target_url AccessIdentityProvider#sso_target_url}. SsoTargetUrl *string `field:"optional" json:"ssoTargetUrl" yaml:"ssoTargetUrl"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#support_groups AccessIdentityProvider#support_groups}. SupportGroups interface{} `field:"optional" json:"supportGroups" yaml:"supportGroups"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#token_url AccessIdentityProvider#token_url}. TokenUrl *string `field:"optional" json:"tokenUrl" yaml:"tokenUrl"` }
type AccessIdentityProviderConfigAList ¶
type AccessIdentityProviderConfigAList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Experimental. ComputeFqn() *string Get(index *float64) AccessIdentityProviderConfigAOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewAccessIdentityProviderConfigAList ¶
func NewAccessIdentityProviderConfigAList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) AccessIdentityProviderConfigAList
type AccessIdentityProviderConfigAOutputReference ¶
type AccessIdentityProviderConfigAOutputReference interface { cdktf.ComplexObject ApiToken() *string SetApiToken(val *string) ApiTokenInput() *string AppsDomain() *string SetAppsDomain(val *string) AppsDomainInput() *string Attributes() *[]*string SetAttributes(val *[]*string) AttributesInput() *[]*string AuthUrl() *string SetAuthUrl(val *string) AuthUrlInput() *string CentrifyAccount() *string SetCentrifyAccount(val *string) CentrifyAccountInput() *string CentrifyAppId() *string SetCentrifyAppId(val *string) CentrifyAppIdInput() *string CertsUrl() *string SetCertsUrl(val *string) CertsUrlInput() *string Claims() *[]*string SetClaims(val *[]*string) ClaimsInput() *[]*string ClientId() *string SetClientId(val *string) ClientIdInput() *string ClientSecret() *string SetClientSecret(val *string) ClientSecretInput() *string // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string DirectoryId() *string SetDirectoryId(val *string) DirectoryIdInput() *string EmailAttributeName() *string SetEmailAttributeName(val *string) EmailAttributeNameInput() *string // Experimental. Fqn() *string IdpPublicCert() *string SetIdpPublicCert(val *string) IdpPublicCertInput() *string InternalValue() interface{} SetInternalValue(val interface{}) IssuerUrl() *string SetIssuerUrl(val *string) IssuerUrlInput() *string OktaAccount() *string SetOktaAccount(val *string) OktaAccountInput() *string OneloginAccount() *string SetOneloginAccount(val *string) OneloginAccountInput() *string PkceEnabled() interface{} SetPkceEnabled(val interface{}) PkceEnabledInput() interface{} RedirectUrl() *string SetRedirectUrl(val *string) RedirectUrlInput() *string Scopes() *[]*string SetScopes(val *[]*string) ScopesInput() *[]*string SignRequest() interface{} SetSignRequest(val interface{}) SignRequestInput() interface{} SsoTargetUrl() *string SetSsoTargetUrl(val *string) SsoTargetUrlInput() *string SupportGroups() interface{} SetSupportGroups(val interface{}) SupportGroupsInput() interface{} // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) TokenUrl() *string SetTokenUrl(val *string) TokenUrlInput() *string // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetApiToken() ResetAppsDomain() ResetAttributes() ResetAuthUrl() ResetCentrifyAccount() ResetCentrifyAppId() ResetCertsUrl() ResetClaims() ResetClientId() ResetClientSecret() ResetDirectoryId() ResetEmailAttributeName() ResetIdpPublicCert() ResetIssuerUrl() ResetOktaAccount() ResetOneloginAccount() ResetPkceEnabled() ResetRedirectUrl() ResetScopes() ResetSignRequest() ResetSsoTargetUrl() ResetSupportGroups() ResetTokenUrl() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewAccessIdentityProviderConfigAOutputReference ¶
func NewAccessIdentityProviderConfigAOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) AccessIdentityProviderConfigAOutputReference
type AccessIdentityProviderScimConfig ¶
type AccessIdentityProviderScimConfig struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#enabled AccessIdentityProvider#enabled}. Enabled interface{} `field:"optional" json:"enabled" yaml:"enabled"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#group_member_deprovision AccessIdentityProvider#group_member_deprovision}. GroupMemberDeprovision interface{} `field:"optional" json:"groupMemberDeprovision" yaml:"groupMemberDeprovision"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#seat_deprovision AccessIdentityProvider#seat_deprovision}. SeatDeprovision interface{} `field:"optional" json:"seatDeprovision" yaml:"seatDeprovision"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#secret AccessIdentityProvider#secret}. Secret *string `field:"optional" json:"secret" yaml:"secret"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/cloudflare/cloudflare/4.8.0/docs/resources/access_identity_provider#user_deprovision AccessIdentityProvider#user_deprovision}. UserDeprovision interface{} `field:"optional" json:"userDeprovision" yaml:"userDeprovision"` }
type AccessIdentityProviderScimConfigList ¶
type AccessIdentityProviderScimConfigList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Experimental. ComputeFqn() *string Get(index *float64) AccessIdentityProviderScimConfigOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewAccessIdentityProviderScimConfigList ¶
func NewAccessIdentityProviderScimConfigList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) AccessIdentityProviderScimConfigList
type AccessIdentityProviderScimConfigOutputReference ¶
type AccessIdentityProviderScimConfigOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string Enabled() interface{} SetEnabled(val interface{}) EnabledInput() interface{} // Experimental. Fqn() *string GroupMemberDeprovision() interface{} SetGroupMemberDeprovision(val interface{}) GroupMemberDeprovisionInput() interface{} InternalValue() interface{} SetInternalValue(val interface{}) SeatDeprovision() interface{} SetSeatDeprovision(val interface{}) SeatDeprovisionInput() interface{} Secret() *string SetSecret(val *string) SecretInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) UserDeprovision() interface{} SetUserDeprovision(val interface{}) UserDeprovisionInput() interface{} // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetEnabled() ResetGroupMemberDeprovision() ResetSeatDeprovision() ResetSecret() ResetUserDeprovision() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewAccessIdentityProviderScimConfigOutputReference ¶
func NewAccessIdentityProviderScimConfigOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) AccessIdentityProviderScimConfigOutputReference
Source Files ¶
- AccessIdentityProvider.go
- AccessIdentityProviderConfig.go
- AccessIdentityProviderConfigA.go
- AccessIdentityProviderConfigAList.go
- AccessIdentityProviderConfigAList__checks.go
- AccessIdentityProviderConfigAOutputReference.go
- AccessIdentityProviderConfigAOutputReference__checks.go
- AccessIdentityProviderScimConfig.go
- AccessIdentityProviderScimConfigList.go
- AccessIdentityProviderScimConfigList__checks.go
- AccessIdentityProviderScimConfigOutputReference.go
- AccessIdentityProviderScimConfigOutputReference__checks.go
- AccessIdentityProvider__checks.go
- main.go