provider

package
v7.0.0 Latest Latest
Warning

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

Go to latest
Published: Oct 17, 2023 License: MPL-2.0 Imports: 7 Imported by: 0

README

provider

Refer to the Terraform Registory for docs: oraclepaas.

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://registry.terraform.io/providers/hashicorp/oraclepaas/1.5.3/docs oraclepaas} Resource.

func OraclepaasProvider_GenerateConfigForImport

func OraclepaasProvider_GenerateConfigForImport(scope constructs.Construct, importToId *string, importFromId *string, provider cdktf.TerraformProvider) cdktf.ImportableResource

Generates CDKTF code for importing a OraclepaasProvider resource upon running "cdktf plan <stack-name>".

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_IsTerraformElement

func OraclepaasProvider_IsTerraformElement(x interface{}) *bool

Experimental.

func OraclepaasProvider_IsTerraformProvider

func OraclepaasProvider_IsTerraformProvider(x interface{}) *bool

Experimental.

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://registry.terraform.io/providers/hashicorp/oraclepaas/1.5.3/docs oraclepaas}.

func NewOraclepaasProvider

func NewOraclepaasProvider(scope constructs.Construct, id *string, config *OraclepaasProviderConfig) OraclepaasProvider

Create a new {@link https://registry.terraform.io/providers/hashicorp/oraclepaas/1.5.3/docs oraclepaas} Resource.

type OraclepaasProviderConfig

type OraclepaasProviderConfig struct {
	// The OPAAS identity domain for API operations.
	//
	// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/oraclepaas/1.5.3/docs#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://registry.terraform.io/providers/hashicorp/oraclepaas/1.5.3/docs#password OraclepaasProvider#password}
	Password *string `field:"required" json:"password" yaml:"password"`
	// The user name for OPAAS API operations.
	//
	// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/oraclepaas/1.5.3/docs#user OraclepaasProvider#user}
	User *string `field:"required" json:"user" yaml:"user"`
	// Alias name.
	//
	// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/oraclepaas/1.5.3/docs#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://registry.terraform.io/providers/hashicorp/oraclepaas/1.5.3/docs#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://registry.terraform.io/providers/hashicorp/oraclepaas/1.5.3/docs#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://registry.terraform.io/providers/hashicorp/oraclepaas/1.5.3/docs#insecure OraclepaasProvider#insecure}
	Insecure interface{} `field:"optional" json:"insecure" yaml:"insecure"`
	// The HTTP endpoint for Oracle Java operations.
	//
	// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/oraclepaas/1.5.3/docs#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://registry.terraform.io/providers/hashicorp/oraclepaas/1.5.3/docs#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://registry.terraform.io/providers/hashicorp/oraclepaas/1.5.3/docs#mysql_endpoint OraclepaasProvider#mysql_endpoint}
	MysqlEndpoint *string `field:"optional" json:"mysqlEndpoint" yaml:"mysqlEndpoint"`
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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