Documentation
¶
Index ¶
- func NewSentryProvider_Override(s SentryProvider, scope constructs.Construct, id *string, ...)
- func SentryProvider_GenerateConfigForImport(scope constructs.Construct, importToId *string, importFromId *string, ...) cdktf.ImportableResource
- func SentryProvider_IsConstruct(x interface{}) *bool
- func SentryProvider_IsTerraformElement(x interface{}) *bool
- func SentryProvider_IsTerraformProvider(x interface{}) *bool
- func SentryProvider_TfResourceType() *string
- type SentryProvider
- type SentryProviderConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewSentryProvider_Override ¶
func NewSentryProvider_Override(s SentryProvider, scope constructs.Construct, id *string, config *SentryProviderConfig)
Create a new {@link https://registry.terraform.io/providers/jianyuan/sentry/0.14.5/docs sentry} Resource.
func SentryProvider_GenerateConfigForImport ¶
func SentryProvider_GenerateConfigForImport(scope constructs.Construct, importToId *string, importFromId *string, provider cdktf.TerraformProvider) cdktf.ImportableResource
Generates CDKTF code for importing a SentryProvider resource upon running "cdktf plan <stack-name>".
func SentryProvider_IsConstruct ¶
func SentryProvider_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 SentryProvider_IsTerraformElement ¶
func SentryProvider_IsTerraformElement(x interface{}) *bool
Experimental.
func SentryProvider_IsTerraformProvider ¶
func SentryProvider_IsTerraformProvider(x interface{}) *bool
Experimental.
func SentryProvider_TfResourceType ¶
func SentryProvider_TfResourceType() *string
Types ¶
type SentryProvider ¶
type SentryProvider interface {
cdktf.TerraformProvider
Alias() *string
SetAlias(val *string)
AliasInput() *string
BaseUrl() *string
SetBaseUrl(val *string)
BaseUrlInput() *string
// Experimental.
CdktfStack() cdktf.TerraformStack
// Experimental.
ConstructNodeMetadata() *map[string]interface{}
// Experimental.
Fqn() *string
// Experimental.
FriendlyUniqueId() *string
// Experimental.
MetaAttributes() *map[string]interface{}
// The tree node.
Node() constructs.Node
// Experimental.
RawOverrides() interface{}
// Experimental.
TerraformGeneratorMetadata() *cdktf.TerraformProviderGeneratorMetadata
// Experimental.
TerraformProviderSource() *string
// Experimental.
TerraformResourceType() *string
Token() *string
SetToken(val *string)
TokenInput() *string
// Experimental.
AddOverride(path *string, value interface{})
// Overrides the auto-generated logical ID with a specific ID.
// Experimental.
OverrideLogicalId(newLogicalId *string)
ResetAlias()
ResetBaseUrl()
// Resets a previously passed logical Id to use the auto-generated logical id again.
// Experimental.
ResetOverrideLogicalId()
ResetToken()
SynthesizeAttributes() *map[string]interface{}
SynthesizeHclAttributes() *map[string]interface{}
// Experimental.
ToHclTerraform() 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/jianyuan/sentry/0.14.5/docs sentry}.
func NewSentryProvider ¶
func NewSentryProvider(scope constructs.Construct, id *string, config *SentryProviderConfig) SentryProvider
Create a new {@link https://registry.terraform.io/providers/jianyuan/sentry/0.14.5/docs sentry} Resource.
type SentryProviderConfig ¶
type SentryProviderConfig struct {
// Alias name.
//
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/jianyuan/sentry/0.14.5/docs#alias SentryProvider#alias}
Alias *string `field:"optional" json:"alias" yaml:"alias"`
// The target Sentry Base API URL in the format `https://[hostname]/api/`.
//
// The default value is `https://sentry.io/api/`. The value must be provided when working with Sentry On-Premise. The value can be sourced from the `SENTRY_BASE_URL` environment variable.
//
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/jianyuan/sentry/0.14.5/docs#base_url SentryProvider#base_url}
BaseUrl *string `field:"optional" json:"baseUrl" yaml:"baseUrl"`
// The authentication token used to connect to Sentry. The value can be sourced from the `SENTRY_AUTH_TOKEN` environment variable.
//
// Docs at Terraform Registry: {@link https://registry.terraform.io/providers/jianyuan/sentry/0.14.5/docs#token SentryProvider#token}
Token *string `field:"optional" json:"token" yaml:"token"`
}