Documentation
¶
Index ¶
- func NewOrgConfiguration_Override(o OrgConfiguration, scope constructs.Construct, id *string, ...)
- func OrgConfiguration_IsConstruct(x interface{}) *bool
- func OrgConfiguration_IsTerraformElement(x interface{}) *bool
- func OrgConfiguration_IsTerraformResource(x interface{}) *bool
- func OrgConfiguration_TfResourceType() *string
- type OrgConfiguration
- type OrgConfigurationConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewOrgConfiguration_Override ¶
func NewOrgConfiguration_Override(o OrgConfiguration, scope constructs.Construct, id *string, config *OrgConfigurationConfig)
Create a new {@link https://www.terraform.io/docs/providers/okta/r/org_configuration okta_org_configuration} Resource.
func OrgConfiguration_IsConstruct ¶
func OrgConfiguration_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 OrgConfiguration_IsTerraformElement ¶
func OrgConfiguration_IsTerraformElement(x interface{}) *bool
Experimental.
func OrgConfiguration_IsTerraformResource ¶
func OrgConfiguration_IsTerraformResource(x interface{}) *bool
Experimental.
func OrgConfiguration_TfResourceType ¶
func OrgConfiguration_TfResourceType() *string
Types ¶
type OrgConfiguration ¶
type OrgConfiguration interface { cdktf.TerraformResource Address1() *string SetAddress1(val *string) Address1Input() *string Address2() *string SetAddress2(val *string) Address2Input() *string BillingContactUser() *string SetBillingContactUser(val *string) BillingContactUserInput() *string // Experimental. CdktfStack() cdktf.TerraformStack City() *string SetCity(val *string) CityInput() *string CompanyName() *string SetCompanyName(val *string) CompanyNameInput() *string // Experimental. Connection() interface{} // Experimental. SetConnection(val interface{}) // Experimental. ConstructNodeMetadata() *map[string]interface{} // Experimental. Count() *float64 // Experimental. SetCount(val *float64) Country() *string SetCountry(val *string) CountryInput() *string // Experimental. DependsOn() *[]*string // Experimental. SetDependsOn(val *[]*string) EndUserSupportHelpUrl() *string SetEndUserSupportHelpUrl(val *string) EndUserSupportHelpUrlInput() *string ExpiresAt() *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) Logo() *string SetLogo(val *string) LogoInput() *string // The tree node. Node() constructs.Node OptOutCommunicationEmails() interface{} SetOptOutCommunicationEmails(val interface{}) OptOutCommunicationEmailsInput() interface{} PhoneNumber() *string SetPhoneNumber(val *string) PhoneNumberInput() *string PostalCode() *string SetPostalCode(val *string) PostalCodeInput() *string // Experimental. Provider() cdktf.TerraformProvider // Experimental. SetProvider(val cdktf.TerraformProvider) // Experimental. Provisioners() *[]interface{} // Experimental. SetProvisioners(val *[]interface{}) // Experimental. RawOverrides() interface{} State() *string SetState(val *string) StateInput() *string Subdomain() *string SupportPhoneNumber() *string SetSupportPhoneNumber(val *string) SupportPhoneNumberInput() *string TechnicalContactUser() *string SetTechnicalContactUser(val *string) TechnicalContactUserInput() *string // Experimental. TerraformGeneratorMetadata() *cdktf.TerraformProviderGeneratorMetadata // Experimental. TerraformMetaArguments() *map[string]interface{} // Experimental. TerraformResourceType() *string Website() *string SetWebsite(val *string) WebsiteInput() *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) ResetAddress1() ResetAddress2() ResetBillingContactUser() ResetCity() ResetCountry() ResetEndUserSupportHelpUrl() ResetId() ResetLogo() ResetOptOutCommunicationEmails() // Resets a previously passed logical Id to use the auto-generated logical id again. // Experimental. ResetOverrideLogicalId() ResetPhoneNumber() ResetPostalCode() ResetState() ResetSupportPhoneNumber() ResetTechnicalContactUser() ResetWebsite() 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://www.terraform.io/docs/providers/okta/r/org_configuration okta_org_configuration}.
func NewOrgConfiguration ¶
func NewOrgConfiguration(scope constructs.Construct, id *string, config *OrgConfigurationConfig) OrgConfiguration
Create a new {@link https://www.terraform.io/docs/providers/okta/r/org_configuration okta_org_configuration} Resource.
type OrgConfigurationConfig ¶
type OrgConfigurationConfig struct { // Experimental. Connection interface{} `field:"optional" json:"connection" yaml:"connection"` // Experimental. Count *float64 `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"` // Name of org. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#company_name OrgConfiguration#company_name} CompanyName *string `field:"required" json:"companyName" yaml:"companyName"` // Primary address of org. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#address_1 OrgConfiguration#address_1} Address1 *string `field:"optional" json:"address1" yaml:"address1"` // Secondary address of org. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#address_2 OrgConfiguration#address_2} Address2 *string `field:"optional" json:"address2" yaml:"address2"` // User ID representing the billing contact. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#billing_contact_user OrgConfiguration#billing_contact_user} BillingContactUser *string `field:"optional" json:"billingContactUser" yaml:"billingContactUser"` // City of org. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#city OrgConfiguration#city} City *string `field:"optional" json:"city" yaml:"city"` // Country of org. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#country OrgConfiguration#country} Country *string `field:"optional" json:"country" yaml:"country"` // Support link of org. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#end_user_support_help_url OrgConfiguration#end_user_support_help_url} EndUserSupportHelpUrl *string `field:"optional" json:"endUserSupportHelpUrl" yaml:"endUserSupportHelpUrl"` // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#id OrgConfiguration#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"` // Local path to logo of the org. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#logo OrgConfiguration#logo} Logo *string `field:"optional" json:"logo" yaml:"logo"` // Indicates whether the org's users receive Okta Communication emails. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#opt_out_communication_emails OrgConfiguration#opt_out_communication_emails} OptOutCommunicationEmails interface{} `field:"optional" json:"optOutCommunicationEmails" yaml:"optOutCommunicationEmails"` // Support help phone of org. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#phone_number OrgConfiguration#phone_number} PhoneNumber *string `field:"optional" json:"phoneNumber" yaml:"phoneNumber"` // Postal code of org. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#postal_code OrgConfiguration#postal_code} PostalCode *string `field:"optional" json:"postalCode" yaml:"postalCode"` // State of org. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#state OrgConfiguration#state} State *string `field:"optional" json:"state" yaml:"state"` // Support help phone of org. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#support_phone_number OrgConfiguration#support_phone_number} SupportPhoneNumber *string `field:"optional" json:"supportPhoneNumber" yaml:"supportPhoneNumber"` // User ID representing the technical contact. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#technical_contact_user OrgConfiguration#technical_contact_user} TechnicalContactUser *string `field:"optional" json:"technicalContactUser" yaml:"technicalContactUser"` // The org's website. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/okta/r/org_configuration#website OrgConfiguration#website} Website *string `field:"optional" json:"website" yaml:"website"` }