1. Packages
  2. Dynatrace
  3. API Docs
  4. MutedRequests
Dynatrace v0.27.0 published on Friday, Mar 21, 2025 by Pulumiverse

dynatrace.MutedRequests

Explore with Pulumi AI

Create MutedRequests Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new MutedRequests(name: string, args: MutedRequestsArgs, opts?: CustomResourceOptions);
@overload
def MutedRequests(resource_name: str,
                  args: MutedRequestsArgs,
                  opts: Optional[ResourceOptions] = None)

@overload
def MutedRequests(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  service_id: Optional[str] = None,
                  muted_request_names: Optional[Sequence[str]] = None)
func NewMutedRequests(ctx *Context, name string, args MutedRequestsArgs, opts ...ResourceOption) (*MutedRequests, error)
public MutedRequests(string name, MutedRequestsArgs args, CustomResourceOptions? opts = null)
public MutedRequests(String name, MutedRequestsArgs args)
public MutedRequests(String name, MutedRequestsArgs args, CustomResourceOptions options)
type: dynatrace:MutedRequests
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. MutedRequestsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. MutedRequestsArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. MutedRequestsArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. MutedRequestsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. MutedRequestsArgs
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 mutedRequestsResource = new Dynatrace.MutedRequests("mutedRequestsResource", new()
{
    ServiceId = "string",
    MutedRequestNames = new[]
    {
        "string",
    },
});
Copy
example, err := dynatrace.NewMutedRequests(ctx, "mutedRequestsResource", &dynatrace.MutedRequestsArgs{
	ServiceId: pulumi.String("string"),
	MutedRequestNames: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var mutedRequestsResource = new MutedRequests("mutedRequestsResource", MutedRequestsArgs.builder()
    .serviceId("string")
    .mutedRequestNames("string")
    .build());
Copy
muted_requests_resource = dynatrace.MutedRequests("mutedRequestsResource",
    service_id="string",
    muted_request_names=["string"])
Copy
const mutedRequestsResource = new dynatrace.MutedRequests("mutedRequestsResource", {
    serviceId: "string",
    mutedRequestNames: ["string"],
});
Copy
type: dynatrace:MutedRequests
properties:
    mutedRequestNames:
        - string
    serviceId: string
Copy

MutedRequests Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The MutedRequests resource accepts the following input properties:

ServiceId
This property is required.
Changes to this property will trigger replacement.
string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
MutedRequestNames List<string>
Muted request names
ServiceId
This property is required.
Changes to this property will trigger replacement.
string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
MutedRequestNames []string
Muted request names
serviceId
This property is required.
Changes to this property will trigger replacement.
String
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
mutedRequestNames List<String>
Muted request names
serviceId
This property is required.
Changes to this property will trigger replacement.
string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
mutedRequestNames string[]
Muted request names
service_id
This property is required.
Changes to this property will trigger replacement.
str
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
muted_request_names Sequence[str]
Muted request names
serviceId
This property is required.
Changes to this property will trigger replacement.
String
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
mutedRequestNames List<String>
Muted request names

Outputs

All input properties are implicitly available as output properties. Additionally, the MutedRequests 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 MutedRequests Resource

Get an existing MutedRequests 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?: MutedRequestsState, opts?: CustomResourceOptions): MutedRequests
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        muted_request_names: Optional[Sequence[str]] = None,
        service_id: Optional[str] = None) -> MutedRequests
func GetMutedRequests(ctx *Context, name string, id IDInput, state *MutedRequestsState, opts ...ResourceOption) (*MutedRequests, error)
public static MutedRequests Get(string name, Input<string> id, MutedRequestsState? state, CustomResourceOptions? opts = null)
public static MutedRequests get(String name, Output<String> id, MutedRequestsState state, CustomResourceOptions options)
resources:  _:    type: dynatrace:MutedRequests    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
MutedRequestNames List<string>
Muted request names
ServiceId Changes to this property will trigger replacement. string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
MutedRequestNames []string
Muted request names
ServiceId Changes to this property will trigger replacement. string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
mutedRequestNames List<String>
Muted request names
serviceId Changes to this property will trigger replacement. String
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
mutedRequestNames string[]
Muted request names
serviceId Changes to this property will trigger replacement. string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
muted_request_names Sequence[str]
Muted request names
service_id Changes to this property will trigger replacement. str
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
mutedRequestNames List<String>
Muted request names
serviceId Changes to this property will trigger replacement. String
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.

Package Details

Repository
dynatrace pulumiverse/pulumi-dynatrace
License
Apache-2.0
Notes
This Pulumi package is based on the dynatrace Terraform Provider.