Dynatrace v0.10.0 published on Friday, Jun 7, 2024 by Pulumiverse
dynatrace.SloNormalization
Explore with Pulumi AI
Create SloNormalization Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SloNormalization(name: string, args: SloNormalizationArgs, opts?: CustomResourceOptions);
@overload
def SloNormalization(resource_name: str,
args: SloNormalizationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SloNormalization(resource_name: str,
opts: Optional[ResourceOptions] = None,
normalize: Optional[bool] = None)
func NewSloNormalization(ctx *Context, name string, args SloNormalizationArgs, opts ...ResourceOption) (*SloNormalization, error)
public SloNormalization(string name, SloNormalizationArgs args, CustomResourceOptions? opts = null)
public SloNormalization(String name, SloNormalizationArgs args)
public SloNormalization(String name, SloNormalizationArgs args, CustomResourceOptions options)
type: dynatrace:SloNormalization
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 SloNormalizationArgs
- 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 SloNormalizationArgs
- 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 SloNormalizationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SloNormalizationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SloNormalizationArgs
- 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 sloNormalizationResource = new Dynatrace.SloNormalization("sloNormalizationResource", new()
{
Normalize = false,
});
example, err := dynatrace.NewSloNormalization(ctx, "sloNormalizationResource", &dynatrace.SloNormalizationArgs{
Normalize: pulumi.Bool(false),
})
var sloNormalizationResource = new SloNormalization("sloNormalizationResource", SloNormalizationArgs.builder()
.normalize(false)
.build());
slo_normalization_resource = dynatrace.SloNormalization("sloNormalizationResource", normalize=False)
const sloNormalizationResource = new dynatrace.SloNormalization("sloNormalizationResource", {normalize: false});
type: dynatrace:SloNormalization
properties:
normalize: false
SloNormalization 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 SloNormalization resource accepts the following input properties:
- Normalize bool
- When set to true, the error budget left will be shown in percent of the total error budget. For more details see SLO normalization help.
- Normalize bool
- When set to true, the error budget left will be shown in percent of the total error budget. For more details see SLO normalization help.
- normalize Boolean
- When set to true, the error budget left will be shown in percent of the total error budget. For more details see SLO normalization help.
- normalize boolean
- When set to true, the error budget left will be shown in percent of the total error budget. For more details see SLO normalization help.
- normalize bool
- When set to true, the error budget left will be shown in percent of the total error budget. For more details see SLO normalization help.
- normalize Boolean
- When set to true, the error budget left will be shown in percent of the total error budget. For more details see SLO normalization help.
Outputs
All input properties are implicitly available as output properties. Additionally, the SloNormalization 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 SloNormalization Resource
Get an existing SloNormalization 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?: SloNormalizationState, opts?: CustomResourceOptions): SloNormalization
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
normalize: Optional[bool] = None) -> SloNormalization
func GetSloNormalization(ctx *Context, name string, id IDInput, state *SloNormalizationState, opts ...ResourceOption) (*SloNormalization, error)
public static SloNormalization Get(string name, Input<string> id, SloNormalizationState? state, CustomResourceOptions? opts = null)
public static SloNormalization get(String name, Output<String> id, SloNormalizationState 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.
- Normalize bool
- When set to true, the error budget left will be shown in percent of the total error budget. For more details see SLO normalization help.
- Normalize bool
- When set to true, the error budget left will be shown in percent of the total error budget. For more details see SLO normalization help.
- normalize Boolean
- When set to true, the error budget left will be shown in percent of the total error budget. For more details see SLO normalization help.
- normalize boolean
- When set to true, the error budget left will be shown in percent of the total error budget. For more details see SLO normalization help.
- normalize bool
- When set to true, the error budget left will be shown in percent of the total error budget. For more details see SLO normalization help.
- normalize Boolean
- When set to true, the error budget left will be shown in percent of the total error budget. For more details see SLO normalization help.
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.