Dynatrace v0.16.0 published on Tuesday, Sep 10, 2024 by Pulumiverse
dynatrace.GenericRelationships
Explore with Pulumi AI
Create GenericRelationships Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GenericRelationships(name: string, args: GenericRelationshipsArgs, opts?: CustomResourceOptions);
@overload
def GenericRelationships(resource_name: str,
args: GenericRelationshipsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GenericRelationships(resource_name: str,
opts: Optional[ResourceOptions] = None,
created_by: Optional[str] = None,
enabled: Optional[bool] = None,
from_type: Optional[str] = None,
sources: Optional[GenericRelationshipsSourcesArgs] = None,
to_type: Optional[str] = None,
type_of_relation: Optional[str] = None,
from_role: Optional[str] = None,
to_role: Optional[str] = None)
func NewGenericRelationships(ctx *Context, name string, args GenericRelationshipsArgs, opts ...ResourceOption) (*GenericRelationships, error)
public GenericRelationships(string name, GenericRelationshipsArgs args, CustomResourceOptions? opts = null)
public GenericRelationships(String name, GenericRelationshipsArgs args)
public GenericRelationships(String name, GenericRelationshipsArgs args, CustomResourceOptions options)
type: dynatrace:GenericRelationships
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args GenericRelationshipsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args GenericRelationshipsArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args GenericRelationshipsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GenericRelationshipsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GenericRelationshipsArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var genericRelationshipsResource = new Dynatrace.GenericRelationships("genericRelationshipsResource", new()
{
CreatedBy = "string",
Enabled = false,
FromType = "string",
Sources = new Dynatrace.Inputs.GenericRelationshipsSourcesArgs
{
Sources = new[]
{
new Dynatrace.Inputs.GenericRelationshipsSourcesSourceArgs
{
SourceType = "string",
Condition = "string",
MappingRules = new Dynatrace.Inputs.GenericRelationshipsSourcesSourceMappingRulesArgs
{
MappingRules = new[]
{
new Dynatrace.Inputs.GenericRelationshipsSourcesSourceMappingRulesMappingRuleArgs
{
DestinationProperty = "string",
DestinationTransformation = "string",
SourceProperty = "string",
SourceTransformation = "string",
},
},
},
},
},
},
ToType = "string",
TypeOfRelation = "string",
FromRole = "string",
ToRole = "string",
});
example, err := dynatrace.NewGenericRelationships(ctx, "genericRelationshipsResource", &dynatrace.GenericRelationshipsArgs{
CreatedBy: pulumi.String("string"),
Enabled: pulumi.Bool(false),
FromType: pulumi.String("string"),
Sources: &dynatrace.GenericRelationshipsSourcesArgs{
Sources: dynatrace.GenericRelationshipsSourcesSourceArray{
&dynatrace.GenericRelationshipsSourcesSourceArgs{
SourceType: pulumi.String("string"),
Condition: pulumi.String("string"),
MappingRules: &dynatrace.GenericRelationshipsSourcesSourceMappingRulesArgs{
MappingRules: dynatrace.GenericRelationshipsSourcesSourceMappingRulesMappingRuleArray{
&dynatrace.GenericRelationshipsSourcesSourceMappingRulesMappingRuleArgs{
DestinationProperty: pulumi.String("string"),
DestinationTransformation: pulumi.String("string"),
SourceProperty: pulumi.String("string"),
SourceTransformation: pulumi.String("string"),
},
},
},
},
},
},
ToType: pulumi.String("string"),
TypeOfRelation: pulumi.String("string"),
FromRole: pulumi.String("string"),
ToRole: pulumi.String("string"),
})
var genericRelationshipsResource = new GenericRelationships("genericRelationshipsResource", GenericRelationshipsArgs.builder()
.createdBy("string")
.enabled(false)
.fromType("string")
.sources(GenericRelationshipsSourcesArgs.builder()
.sources(GenericRelationshipsSourcesSourceArgs.builder()
.sourceType("string")
.condition("string")
.mappingRules(GenericRelationshipsSourcesSourceMappingRulesArgs.builder()
.mappingRules(GenericRelationshipsSourcesSourceMappingRulesMappingRuleArgs.builder()
.destinationProperty("string")
.destinationTransformation("string")
.sourceProperty("string")
.sourceTransformation("string")
.build())
.build())
.build())
.build())
.toType("string")
.typeOfRelation("string")
.fromRole("string")
.toRole("string")
.build());
generic_relationships_resource = dynatrace.GenericRelationships("genericRelationshipsResource",
created_by="string",
enabled=False,
from_type="string",
sources=dynatrace.GenericRelationshipsSourcesArgs(
sources=[dynatrace.GenericRelationshipsSourcesSourceArgs(
source_type="string",
condition="string",
mapping_rules=dynatrace.GenericRelationshipsSourcesSourceMappingRulesArgs(
mapping_rules=[dynatrace.GenericRelationshipsSourcesSourceMappingRulesMappingRuleArgs(
destination_property="string",
destination_transformation="string",
source_property="string",
source_transformation="string",
)],
),
)],
),
to_type="string",
type_of_relation="string",
from_role="string",
to_role="string")
const genericRelationshipsResource = new dynatrace.GenericRelationships("genericRelationshipsResource", {
createdBy: "string",
enabled: false,
fromType: "string",
sources: {
sources: [{
sourceType: "string",
condition: "string",
mappingRules: {
mappingRules: [{
destinationProperty: "string",
destinationTransformation: "string",
sourceProperty: "string",
sourceTransformation: "string",
}],
},
}],
},
toType: "string",
typeOfRelation: "string",
fromRole: "string",
toRole: "string",
});
type: dynatrace:GenericRelationships
properties:
createdBy: string
enabled: false
fromRole: string
fromType: string
sources:
sources:
- condition: string
mappingRules:
mappingRules:
- destinationProperty: string
destinationTransformation: string
sourceProperty: string
sourceTransformation: string
sourceType: string
toRole: string
toType: string
typeOfRelation: string
GenericRelationships Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The GenericRelationships resource accepts the following input properties:
- Created
By string - The user or extension that created this relationship.
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - From
Type string - Define an entity type as the source of the relationship.
- Sources
Pulumiverse.
Dynatrace. Inputs. Generic Relationships Sources - Specify all sources which should be evaluated for this relationship rule. The relationship is only created when any of the filters match.
- To
Type string - Define an entity type as the destination of the relationship. You can choose the same type as the source type. In this case you also may assign different roles for source and destination for having directed relationships.
- Type
Of stringRelation - Possible Values:
CALLS
,CHILD_OF
,INSTANCE_OF
,PART_OF
,RUNS_ON
,SAME_AS
- From
Role string - Specify a role for the source entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the source type is considered for the relationship.
- To
Role string - Specify a role for the destination entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the destination type is considered for the relationship.
- Created
By string - The user or extension that created this relationship.
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - From
Type string - Define an entity type as the source of the relationship.
- Sources
Generic
Relationships Sources Args - Specify all sources which should be evaluated for this relationship rule. The relationship is only created when any of the filters match.
- To
Type string - Define an entity type as the destination of the relationship. You can choose the same type as the source type. In this case you also may assign different roles for source and destination for having directed relationships.
- Type
Of stringRelation - Possible Values:
CALLS
,CHILD_OF
,INSTANCE_OF
,PART_OF
,RUNS_ON
,SAME_AS
- From
Role string - Specify a role for the source entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the source type is considered for the relationship.
- To
Role string - Specify a role for the destination entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the destination type is considered for the relationship.
- created
By String - The user or extension that created this relationship.
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - from
Type String - Define an entity type as the source of the relationship.
- sources
Generic
Relationships Sources - Specify all sources which should be evaluated for this relationship rule. The relationship is only created when any of the filters match.
- to
Type String - Define an entity type as the destination of the relationship. You can choose the same type as the source type. In this case you also may assign different roles for source and destination for having directed relationships.
- type
Of StringRelation - Possible Values:
CALLS
,CHILD_OF
,INSTANCE_OF
,PART_OF
,RUNS_ON
,SAME_AS
- from
Role String - Specify a role for the source entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the source type is considered for the relationship.
- to
Role String - Specify a role for the destination entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the destination type is considered for the relationship.
- created
By string - The user or extension that created this relationship.
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - from
Type string - Define an entity type as the source of the relationship.
- sources
Generic
Relationships Sources - Specify all sources which should be evaluated for this relationship rule. The relationship is only created when any of the filters match.
- to
Type string - Define an entity type as the destination of the relationship. You can choose the same type as the source type. In this case you also may assign different roles for source and destination for having directed relationships.
- type
Of stringRelation - Possible Values:
CALLS
,CHILD_OF
,INSTANCE_OF
,PART_OF
,RUNS_ON
,SAME_AS
- from
Role string - Specify a role for the source entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the source type is considered for the relationship.
- to
Role string - Specify a role for the destination entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the destination type is considered for the relationship.
- created_
by str - The user or extension that created this relationship.
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - from_
type str - Define an entity type as the source of the relationship.
- sources
Generic
Relationships Sources Args - Specify all sources which should be evaluated for this relationship rule. The relationship is only created when any of the filters match.
- to_
type str - Define an entity type as the destination of the relationship. You can choose the same type as the source type. In this case you also may assign different roles for source and destination for having directed relationships.
- type_
of_ strrelation - Possible Values:
CALLS
,CHILD_OF
,INSTANCE_OF
,PART_OF
,RUNS_ON
,SAME_AS
- from_
role str - Specify a role for the source entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the source type is considered for the relationship.
- to_
role str - Specify a role for the destination entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the destination type is considered for the relationship.
- created
By String - The user or extension that created this relationship.
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - from
Type String - Define an entity type as the source of the relationship.
- sources Property Map
- Specify all sources which should be evaluated for this relationship rule. The relationship is only created when any of the filters match.
- to
Type String - Define an entity type as the destination of the relationship. You can choose the same type as the source type. In this case you also may assign different roles for source and destination for having directed relationships.
- type
Of StringRelation - Possible Values:
CALLS
,CHILD_OF
,INSTANCE_OF
,PART_OF
,RUNS_ON
,SAME_AS
- from
Role String - Specify a role for the source entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the source type is considered for the relationship.
- to
Role String - Specify a role for the destination entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the destination type is considered for the relationship.
Outputs
All input properties are implicitly available as output properties. Additionally, the GenericRelationships resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing GenericRelationships Resource
Get an existing GenericRelationships resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: GenericRelationshipsState, opts?: CustomResourceOptions): GenericRelationships
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_by: Optional[str] = None,
enabled: Optional[bool] = None,
from_role: Optional[str] = None,
from_type: Optional[str] = None,
sources: Optional[GenericRelationshipsSourcesArgs] = None,
to_role: Optional[str] = None,
to_type: Optional[str] = None,
type_of_relation: Optional[str] = None) -> GenericRelationships
func GetGenericRelationships(ctx *Context, name string, id IDInput, state *GenericRelationshipsState, opts ...ResourceOption) (*GenericRelationships, error)
public static GenericRelationships Get(string name, Input<string> id, GenericRelationshipsState? state, CustomResourceOptions? opts = null)
public static GenericRelationships get(String name, Output<String> id, GenericRelationshipsState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Created
By string - The user or extension that created this relationship.
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - From
Role string - Specify a role for the source entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the source type is considered for the relationship.
- From
Type string - Define an entity type as the source of the relationship.
- Sources
Pulumiverse.
Dynatrace. Inputs. Generic Relationships Sources - Specify all sources which should be evaluated for this relationship rule. The relationship is only created when any of the filters match.
- To
Role string - Specify a role for the destination entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the destination type is considered for the relationship.
- To
Type string - Define an entity type as the destination of the relationship. You can choose the same type as the source type. In this case you also may assign different roles for source and destination for having directed relationships.
- Type
Of stringRelation - Possible Values:
CALLS
,CHILD_OF
,INSTANCE_OF
,PART_OF
,RUNS_ON
,SAME_AS
- Created
By string - The user or extension that created this relationship.
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - From
Role string - Specify a role for the source entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the source type is considered for the relationship.
- From
Type string - Define an entity type as the source of the relationship.
- Sources
Generic
Relationships Sources Args - Specify all sources which should be evaluated for this relationship rule. The relationship is only created when any of the filters match.
- To
Role string - Specify a role for the destination entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the destination type is considered for the relationship.
- To
Type string - Define an entity type as the destination of the relationship. You can choose the same type as the source type. In this case you also may assign different roles for source and destination for having directed relationships.
- Type
Of stringRelation - Possible Values:
CALLS
,CHILD_OF
,INSTANCE_OF
,PART_OF
,RUNS_ON
,SAME_AS
- created
By String - The user or extension that created this relationship.
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - from
Role String - Specify a role for the source entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the source type is considered for the relationship.
- from
Type String - Define an entity type as the source of the relationship.
- sources
Generic
Relationships Sources - Specify all sources which should be evaluated for this relationship rule. The relationship is only created when any of the filters match.
- to
Role String - Specify a role for the destination entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the destination type is considered for the relationship.
- to
Type String - Define an entity type as the destination of the relationship. You can choose the same type as the source type. In this case you also may assign different roles for source and destination for having directed relationships.
- type
Of StringRelation - Possible Values:
CALLS
,CHILD_OF
,INSTANCE_OF
,PART_OF
,RUNS_ON
,SAME_AS
- created
By string - The user or extension that created this relationship.
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - from
Role string - Specify a role for the source entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the source type is considered for the relationship.
- from
Type string - Define an entity type as the source of the relationship.
- sources
Generic
Relationships Sources - Specify all sources which should be evaluated for this relationship rule. The relationship is only created when any of the filters match.
- to
Role string - Specify a role for the destination entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the destination type is considered for the relationship.
- to
Type string - Define an entity type as the destination of the relationship. You can choose the same type as the source type. In this case you also may assign different roles for source and destination for having directed relationships.
- type
Of stringRelation - Possible Values:
CALLS
,CHILD_OF
,INSTANCE_OF
,PART_OF
,RUNS_ON
,SAME_AS
- created_
by str - The user or extension that created this relationship.
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - from_
role str - Specify a role for the source entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the source type is considered for the relationship.
- from_
type str - Define an entity type as the source of the relationship.
- sources
Generic
Relationships Sources Args - Specify all sources which should be evaluated for this relationship rule. The relationship is only created when any of the filters match.
- to_
role str - Specify a role for the destination entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the destination type is considered for the relationship.
- to_
type str - Define an entity type as the destination of the relationship. You can choose the same type as the source type. In this case you also may assign different roles for source and destination for having directed relationships.
- type_
of_ strrelation - Possible Values:
CALLS
,CHILD_OF
,INSTANCE_OF
,PART_OF
,RUNS_ON
,SAME_AS
- created
By String - The user or extension that created this relationship.
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - from
Role String - Specify a role for the source entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the source type is considered for the relationship.
- from
Type String - Define an entity type as the source of the relationship.
- sources Property Map
- Specify all sources which should be evaluated for this relationship rule. The relationship is only created when any of the filters match.
- to
Role String - Specify a role for the destination entity. If both source and destination type are the same, referring different roles will allow identification of a relationships direction. If role is left blank, any role of the destination type is considered for the relationship.
- to
Type String - Define an entity type as the destination of the relationship. You can choose the same type as the source type. In this case you also may assign different roles for source and destination for having directed relationships.
- type
Of StringRelation - Possible Values:
CALLS
,CHILD_OF
,INSTANCE_OF
,PART_OF
,RUNS_ON
,SAME_AS
Supporting Types
GenericRelationshipsSources, GenericRelationshipsSourcesArgs
GenericRelationshipsSourcesSource, GenericRelationshipsSourcesSourceArgs
- Source
Type string - Possible Values:
BusinessEvents
,Entities
,Events
,Logs
,Metrics
,Spans
,Topology
- Condition string
- Specify a filter that needs to match in order for the extraction to happen.. Two different filters are supported:
$eq(value)
will ensure that the source matches exactly 'value', while$prefix(value)
will ensure that the source begins with exactly 'value'. If your value contains the characters '(', ')' or '~', you need to escape them by adding a '~' in front of them. - Mapping
Rules Pulumiverse.Dynatrace. Inputs. Generic Relationships Sources Source Mapping Rules - Specify all properties which should be compared. If all mapping rules match a relationship between entities will be created.
- Source
Type string - Possible Values:
BusinessEvents
,Entities
,Events
,Logs
,Metrics
,Spans
,Topology
- Condition string
- Specify a filter that needs to match in order for the extraction to happen.. Two different filters are supported:
$eq(value)
will ensure that the source matches exactly 'value', while$prefix(value)
will ensure that the source begins with exactly 'value'. If your value contains the characters '(', ')' or '~', you need to escape them by adding a '~' in front of them. - Mapping
Rules GenericRelationships Sources Source Mapping Rules - Specify all properties which should be compared. If all mapping rules match a relationship between entities will be created.
- source
Type String - Possible Values:
BusinessEvents
,Entities
,Events
,Logs
,Metrics
,Spans
,Topology
- condition String
- Specify a filter that needs to match in order for the extraction to happen.. Two different filters are supported:
$eq(value)
will ensure that the source matches exactly 'value', while$prefix(value)
will ensure that the source begins with exactly 'value'. If your value contains the characters '(', ')' or '~', you need to escape them by adding a '~' in front of them. - mapping
Rules GenericRelationships Sources Source Mapping Rules - Specify all properties which should be compared. If all mapping rules match a relationship between entities will be created.
- source
Type string - Possible Values:
BusinessEvents
,Entities
,Events
,Logs
,Metrics
,Spans
,Topology
- condition string
- Specify a filter that needs to match in order for the extraction to happen.. Two different filters are supported:
$eq(value)
will ensure that the source matches exactly 'value', while$prefix(value)
will ensure that the source begins with exactly 'value'. If your value contains the characters '(', ')' or '~', you need to escape them by adding a '~' in front of them. - mapping
Rules GenericRelationships Sources Source Mapping Rules - Specify all properties which should be compared. If all mapping rules match a relationship between entities will be created.
- source_
type str - Possible Values:
BusinessEvents
,Entities
,Events
,Logs
,Metrics
,Spans
,Topology
- condition str
- Specify a filter that needs to match in order for the extraction to happen.. Two different filters are supported:
$eq(value)
will ensure that the source matches exactly 'value', while$prefix(value)
will ensure that the source begins with exactly 'value'. If your value contains the characters '(', ')' or '~', you need to escape them by adding a '~' in front of them. - mapping_
rules GenericRelationships Sources Source Mapping Rules - Specify all properties which should be compared. If all mapping rules match a relationship between entities will be created.
- source
Type String - Possible Values:
BusinessEvents
,Entities
,Events
,Logs
,Metrics
,Spans
,Topology
- condition String
- Specify a filter that needs to match in order for the extraction to happen.. Two different filters are supported:
$eq(value)
will ensure that the source matches exactly 'value', while$prefix(value)
will ensure that the source begins with exactly 'value'. If your value contains the characters '(', ')' or '~', you need to escape them by adding a '~' in front of them. - mapping
Rules Property Map - Specify all properties which should be compared. If all mapping rules match a relationship between entities will be created.
GenericRelationshipsSourcesSourceMappingRules, GenericRelationshipsSourcesSourceMappingRulesArgs
GenericRelationshipsSourcesSourceMappingRulesMappingRule, GenericRelationshipsSourcesSourceMappingRulesMappingRuleArgs
- Destination
Property string - The case-sensitive name of a property of the destination type.
- Destination
Transformation string - Possible Values:
Leavetextas_is
,Tolowercase
,Touppercase
- Source
Property string - The case-sensitive name of a property of the source type.
- Source
Transformation string - Possible Values:
Leavetextas_is
,Tolowercase
,Touppercase
- Destination
Property string - The case-sensitive name of a property of the destination type.
- Destination
Transformation string - Possible Values:
Leavetextas_is
,Tolowercase
,Touppercase
- Source
Property string - The case-sensitive name of a property of the source type.
- Source
Transformation string - Possible Values:
Leavetextas_is
,Tolowercase
,Touppercase
- destination
Property String - The case-sensitive name of a property of the destination type.
- destination
Transformation String - Possible Values:
Leavetextas_is
,Tolowercase
,Touppercase
- source
Property String - The case-sensitive name of a property of the source type.
- source
Transformation String - Possible Values:
Leavetextas_is
,Tolowercase
,Touppercase
- destination
Property string - The case-sensitive name of a property of the destination type.
- destination
Transformation string - Possible Values:
Leavetextas_is
,Tolowercase
,Touppercase
- source
Property string - The case-sensitive name of a property of the source type.
- source
Transformation string - Possible Values:
Leavetextas_is
,Tolowercase
,Touppercase
- destination_
property str - The case-sensitive name of a property of the destination type.
- destination_
transformation str - Possible Values:
Leavetextas_is
,Tolowercase
,Touppercase
- source_
property str - The case-sensitive name of a property of the source type.
- source_
transformation str - Possible Values:
Leavetextas_is
,Tolowercase
,Touppercase
- destination
Property String - The case-sensitive name of a property of the destination type.
- destination
Transformation String - Possible Values:
Leavetextas_is
,Tolowercase
,Touppercase
- source
Property String - The case-sensitive name of a property of the source type.
- source
Transformation String - Possible Values:
Leavetextas_is
,Tolowercase
,Touppercase
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.