Documentation ¶
Index ¶
- func DataHttp_IsConstruct(x interface{}) *bool
- func DataHttp_IsTerraformDataSource(x interface{}) *bool
- func DataHttp_IsTerraformElement(x interface{}) *bool
- func DataHttp_TfResourceType() *string
- func NewDataHttpRetryOutputReference_Override(d DataHttpRetryOutputReference, terraformResource cdktf.IInterpolatingParent, ...)
- func NewDataHttp_Override(d DataHttp, scope constructs.Construct, id *string, config *DataHttpConfig)
- type DataHttp
- type DataHttpConfig
- type DataHttpRetry
- type DataHttpRetryOutputReference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DataHttp_IsConstruct ¶
func DataHttp_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 DataHttp_IsTerraformDataSource ¶
func DataHttp_IsTerraformDataSource(x interface{}) *bool
Experimental.
func DataHttp_IsTerraformElement ¶
func DataHttp_IsTerraformElement(x interface{}) *bool
Experimental.
func DataHttp_TfResourceType ¶
func DataHttp_TfResourceType() *string
func NewDataHttpRetryOutputReference_Override ¶ added in v4.0.1
func NewDataHttpRetryOutputReference_Override(d DataHttpRetryOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewDataHttp_Override ¶
func NewDataHttp_Override(d DataHttp, scope constructs.Construct, id *string, config *DataHttpConfig)
Create a new {@link https://registry.terraform.io/providers/hashicorp/http/3.3.0/docs/data-sources/http http} Data Source.
Types ¶
type DataHttp ¶
type DataHttp interface { cdktf.TerraformDataSource Body() *string CaCertPem() *string SetCaCertPem(val *string) CaCertPemInput() *string // Experimental. CdktfStack() cdktf.TerraformStack // 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 Insecure() interface{} SetInsecure(val interface{}) InsecureInput() interface{} // Experimental. Lifecycle() *cdktf.TerraformResourceLifecycle // Experimental. SetLifecycle(val *cdktf.TerraformResourceLifecycle) Method() *string SetMethod(val *string) MethodInput() *string // The tree node. Node() constructs.Node // Experimental. Provider() cdktf.TerraformProvider // Experimental. SetProvider(val cdktf.TerraformProvider) // Experimental. RawOverrides() interface{} RequestBody() *string SetRequestBody(val *string) RequestBodyInput() *string RequestHeaders() *map[string]*string SetRequestHeaders(val *map[string]*string) RequestHeadersInput() *map[string]*string RequestTimeoutMs() *float64 SetRequestTimeoutMs(val *float64) RequestTimeoutMsInput() *float64 ResponseBody() *string ResponseHeaders() cdktf.StringMap Retry() DataHttpRetryOutputReference RetryInput() interface{} StatusCode() *float64 // Experimental. TerraformGeneratorMetadata() *cdktf.TerraformProviderGeneratorMetadata // Experimental. TerraformMetaArguments() *map[string]interface{} // Experimental. TerraformResourceType() *string Url() *string SetUrl(val *string) UrlInput() *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) PutRetry(value *DataHttpRetry) ResetCaCertPem() ResetInsecure() ResetMethod() // Resets a previously passed logical Id to use the auto-generated logical id again. // Experimental. ResetOverrideLogicalId() ResetRequestBody() ResetRequestHeaders() ResetRequestTimeoutMs() ResetRetry() 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/http/3.3.0/docs/data-sources/http http}.
func NewDataHttp ¶
func NewDataHttp(scope constructs.Construct, id *string, config *DataHttpConfig) DataHttp
Create a new {@link https://registry.terraform.io/providers/hashicorp/http/3.3.0/docs/data-sources/http http} Data Source.
type DataHttpConfig ¶
type DataHttpConfig 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"` // The URL for the request. Supported schemes are `http` and `https`. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/http/3.3.0/docs/data-sources/http#url DataHttp#url} Url *string `field:"required" json:"url" yaml:"url"` // Certificate data of the Certificate Authority (CA) in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/http/3.3.0/docs/data-sources/http#ca_cert_pem DataHttp#ca_cert_pem} CaCertPem *string `field:"optional" json:"caCertPem" yaml:"caCertPem"` // Disables verification of the server's certificate chain and hostname. Defaults to `false`. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/http/3.3.0/docs/data-sources/http#insecure DataHttp#insecure} Insecure interface{} `field:"optional" json:"insecure" yaml:"insecure"` // The HTTP Method for the request. // // Allowed methods are a subset of methods defined in [RFC7231](https://datatracker.ietf.org/doc/html/rfc7231#section-4.3) namely, `GET`, `HEAD`, and `POST`. `POST` support is only intended for read-only URLs, such as submitting a search. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/http/3.3.0/docs/data-sources/http#method DataHttp#method} Method *string `field:"optional" json:"method" yaml:"method"` // The request body as a string. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/http/3.3.0/docs/data-sources/http#request_body DataHttp#request_body} RequestBody *string `field:"optional" json:"requestBody" yaml:"requestBody"` // A map of request header field names and values. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/http/3.3.0/docs/data-sources/http#request_headers DataHttp#request_headers} RequestHeaders *map[string]*string `field:"optional" json:"requestHeaders" yaml:"requestHeaders"` // The request timeout in milliseconds. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/http/3.3.0/docs/data-sources/http#request_timeout_ms DataHttp#request_timeout_ms} RequestTimeoutMs *float64 `field:"optional" json:"requestTimeoutMs" yaml:"requestTimeoutMs"` // retry block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/http/3.3.0/docs/data-sources/http#retry DataHttp#retry} Retry *DataHttpRetry `field:"optional" json:"retry" yaml:"retry"` }
type DataHttpRetry ¶ added in v4.0.1
type DataHttpRetry struct { // The number of times the request is to be retried. // // For example, if 2 is specified, the request will be tried a maximum of 3 times. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/http/3.3.0/docs/data-sources/http#attempts DataHttp#attempts} Attempts *float64 `field:"optional" json:"attempts" yaml:"attempts"` // The maximum delay between retry requests in milliseconds. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/http/3.3.0/docs/data-sources/http#max_delay_ms DataHttp#max_delay_ms} MaxDelayMs *float64 `field:"optional" json:"maxDelayMs" yaml:"maxDelayMs"` // The minimum delay between retry requests in milliseconds. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/http/3.3.0/docs/data-sources/http#min_delay_ms DataHttp#min_delay_ms} MinDelayMs *float64 `field:"optional" json:"minDelayMs" yaml:"minDelayMs"` }
type DataHttpRetryOutputReference ¶ added in v4.0.1
type DataHttpRetryOutputReference interface { cdktf.ComplexObject Attempts() *float64 SetAttempts(val *float64) AttemptsInput() *float64 // 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 // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) MaxDelayMs() *float64 SetMaxDelayMs(val *float64) MaxDelayMsInput() *float64 MinDelayMs() *float64 SetMinDelayMs(val *float64) MinDelayMsInput() *float64 // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // 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 ResetAttempts() ResetMaxDelayMs() ResetMinDelayMs() // 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 NewDataHttpRetryOutputReference ¶ added in v4.0.1
func NewDataHttpRetryOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) DataHttpRetryOutputReference