Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewOraclepaasProvider_Override ¶
func NewOraclepaasProvider_Override(o OraclepaasProvider, scope constructs.Construct, id *string, config *OraclepaasProviderConfig)
Create a new {@link https://www.terraform.io/docs/providers/oraclepaas oraclepaas} Resource.
func OraclepaasProvider_IsConstruct ¶
func OraclepaasProvider_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 OraclepaasProvider_TfResourceType ¶
func OraclepaasProvider_TfResourceType() *string
Types ¶
type OraclepaasProvider ¶
type OraclepaasProvider interface { cdktf.TerraformProvider Alias() *string SetAlias(val *string) AliasInput() *string ApplicationEndpoint() *string SetApplicationEndpoint(val *string) ApplicationEndpointInput() *string // Experimental. CdktfStack() cdktf.TerraformStack // Experimental. ConstructNodeMetadata() *map[string]interface{} DatabaseEndpoint() *string SetDatabaseEndpoint(val *string) DatabaseEndpointInput() *string // Experimental. Fqn() *string // Experimental. FriendlyUniqueId() *string IdentityDomain() *string SetIdentityDomain(val *string) IdentityDomainInput() *string Insecure() interface{} SetInsecure(val interface{}) InsecureInput() interface{} JavaEndpoint() *string SetJavaEndpoint(val *string) JavaEndpointInput() *string MaxRetries() *float64 SetMaxRetries(val *float64) MaxRetriesInput() *float64 // Experimental. MetaAttributes() *map[string]interface{} MysqlEndpoint() *string SetMysqlEndpoint(val *string) MysqlEndpointInput() *string // The tree node. Node() constructs.Node Password() *string SetPassword(val *string) PasswordInput() *string // Experimental. RawOverrides() interface{} // Experimental. TerraformGeneratorMetadata() *cdktf.TerraformProviderGeneratorMetadata // Experimental. TerraformProviderSource() *string // Experimental. TerraformResourceType() *string User() *string SetUser(val *string) UserInput() *string // Experimental. AddOverride(path *string, value interface{}) // Overrides the auto-generated logical ID with a specific ID. // Experimental. OverrideLogicalId(newLogicalId *string) ResetAlias() ResetApplicationEndpoint() ResetDatabaseEndpoint() ResetInsecure() ResetJavaEndpoint() ResetMaxRetries() ResetMysqlEndpoint() // Resets a previously passed logical Id to use the auto-generated logical id again. // Experimental. ResetOverrideLogicalId() 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/oraclepaas oraclepaas}.
func NewOraclepaasProvider ¶
func NewOraclepaasProvider(scope constructs.Construct, id *string, config *OraclepaasProviderConfig) OraclepaasProvider
Create a new {@link https://www.terraform.io/docs/providers/oraclepaas oraclepaas} Resource.
type OraclepaasProviderConfig ¶
type OraclepaasProviderConfig struct { // The OPAAS identity domain for API operations. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/oraclepaas#identity_domain OraclepaasProvider#identity_domain} IdentityDomain *string `field:"required" json:"identityDomain" yaml:"identityDomain"` // The user password for OPAAS API operations. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/oraclepaas#password OraclepaasProvider#password} Password *string `field:"required" json:"password" yaml:"password"` // The user name for OPAAS API operations. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/oraclepaas#user OraclepaasProvider#user} User *string `field:"required" json:"user" yaml:"user"` // Alias name. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/oraclepaas#alias OraclepaasProvider#alias} Alias *string `field:"optional" json:"alias" yaml:"alias"` // The HTTP endpoint for the Oracle Application operations. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/oraclepaas#application_endpoint OraclepaasProvider#application_endpoint} ApplicationEndpoint *string `field:"optional" json:"applicationEndpoint" yaml:"applicationEndpoint"` // The HTTP endpoint for Oracle Database operations. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/oraclepaas#database_endpoint OraclepaasProvider#database_endpoint} DatabaseEndpoint *string `field:"optional" json:"databaseEndpoint" yaml:"databaseEndpoint"` // Skip TLS Verification for self-signed certificates. Should only be used if absolutely required. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/oraclepaas#insecure OraclepaasProvider#insecure} Insecure interface{} `field:"optional" json:"insecure" yaml:"insecure"` // The HTTP endpoint for Oracle Java operations. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/oraclepaas#java_endpoint OraclepaasProvider#java_endpoint} JavaEndpoint *string `field:"optional" json:"javaEndpoint" yaml:"javaEndpoint"` // Maximum number retries to wait for a successful response when operating on resources within OPAAS (defaults to 1). // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/oraclepaas#max_retries OraclepaasProvider#max_retries} MaxRetries *float64 `field:"optional" json:"maxRetries" yaml:"maxRetries"` // The HTTP endpoint for Oracle MySQL operations. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/oraclepaas#mysql_endpoint OraclepaasProvider#mysql_endpoint} MysqlEndpoint *string `field:"optional" json:"mysqlEndpoint" yaml:"mysqlEndpoint"` }