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

dynatrace.LimitOutboundConnections

Explore with Pulumi AI

Create LimitOutboundConnections Resource

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

Constructor syntax

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

@overload
def LimitOutboundConnections(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             allowed_outbound_connections: Optional[LimitOutboundConnectionsAllowedOutboundConnectionsArgs] = None)
func NewLimitOutboundConnections(ctx *Context, name string, args LimitOutboundConnectionsArgs, opts ...ResourceOption) (*LimitOutboundConnections, error)
public LimitOutboundConnections(string name, LimitOutboundConnectionsArgs args, CustomResourceOptions? opts = null)
public LimitOutboundConnections(String name, LimitOutboundConnectionsArgs args)
public LimitOutboundConnections(String name, LimitOutboundConnectionsArgs args, CustomResourceOptions options)
type: dynatrace:LimitOutboundConnections
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. LimitOutboundConnectionsArgs
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. LimitOutboundConnectionsArgs
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. LimitOutboundConnectionsArgs
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. LimitOutboundConnectionsArgs
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. LimitOutboundConnectionsArgs
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 limitOutboundConnectionsResource = new Dynatrace.LimitOutboundConnections("limitOutboundConnectionsResource", new()
{
    AllowedOutboundConnections = new Dynatrace.Inputs.LimitOutboundConnectionsAllowedOutboundConnectionsArgs
    {
        Enforced = false,
        HostLists = new[]
        {
            "string",
        },
    },
});
Copy
example, err := dynatrace.NewLimitOutboundConnections(ctx, "limitOutboundConnectionsResource", &dynatrace.LimitOutboundConnectionsArgs{
	AllowedOutboundConnections: &dynatrace.LimitOutboundConnectionsAllowedOutboundConnectionsArgs{
		Enforced: pulumi.Bool(false),
		HostLists: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
})
Copy
var limitOutboundConnectionsResource = new LimitOutboundConnections("limitOutboundConnectionsResource", LimitOutboundConnectionsArgs.builder()
    .allowedOutboundConnections(LimitOutboundConnectionsAllowedOutboundConnectionsArgs.builder()
        .enforced(false)
        .hostLists("string")
        .build())
    .build());
Copy
limit_outbound_connections_resource = dynatrace.LimitOutboundConnections("limitOutboundConnectionsResource", allowed_outbound_connections={
    "enforced": False,
    "host_lists": ["string"],
})
Copy
const limitOutboundConnectionsResource = new dynatrace.LimitOutboundConnections("limitOutboundConnectionsResource", {allowedOutboundConnections: {
    enforced: false,
    hostLists: ["string"],
}});
Copy
type: dynatrace:LimitOutboundConnections
properties:
    allowedOutboundConnections:
        enforced: false
        hostLists:
            - string
Copy

LimitOutboundConnections 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 LimitOutboundConnections resource accepts the following input properties:

AllowedOutboundConnections This property is required. LimitOutboundConnectionsAllowedOutboundConnectionsArgs
no documentation available
allowedOutboundConnections This property is required. LimitOutboundConnectionsAllowedOutboundConnections
no documentation available
allowedOutboundConnections This property is required. LimitOutboundConnectionsAllowedOutboundConnections
no documentation available
allowedOutboundConnections This property is required. Property Map
no documentation available

Outputs

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

Get an existing LimitOutboundConnections 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?: LimitOutboundConnectionsState, opts?: CustomResourceOptions): LimitOutboundConnections
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        allowed_outbound_connections: Optional[LimitOutboundConnectionsAllowedOutboundConnectionsArgs] = None) -> LimitOutboundConnections
func GetLimitOutboundConnections(ctx *Context, name string, id IDInput, state *LimitOutboundConnectionsState, opts ...ResourceOption) (*LimitOutboundConnections, error)
public static LimitOutboundConnections Get(string name, Input<string> id, LimitOutboundConnectionsState? state, CustomResourceOptions? opts = null)
public static LimitOutboundConnections get(String name, Output<String> id, LimitOutboundConnectionsState state, CustomResourceOptions options)
resources:  _:    type: dynatrace:LimitOutboundConnections    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.

Supporting Types

LimitOutboundConnectionsAllowedOutboundConnections
, LimitOutboundConnectionsAllowedOutboundConnectionsArgs

Enforced This property is required. bool
If enabled, the Dynatrace JavaScript runtime will only be able to connect to the specified hosts.
HostLists List<string>
The Dynatrace JavaScript runtime will only be to connect to these hosts.
Enforced This property is required. bool
If enabled, the Dynatrace JavaScript runtime will only be able to connect to the specified hosts.
HostLists []string
The Dynatrace JavaScript runtime will only be to connect to these hosts.
enforced This property is required. Boolean
If enabled, the Dynatrace JavaScript runtime will only be able to connect to the specified hosts.
hostLists List<String>
The Dynatrace JavaScript runtime will only be to connect to these hosts.
enforced This property is required. boolean
If enabled, the Dynatrace JavaScript runtime will only be able to connect to the specified hosts.
hostLists string[]
The Dynatrace JavaScript runtime will only be to connect to these hosts.
enforced This property is required. bool
If enabled, the Dynatrace JavaScript runtime will only be able to connect to the specified hosts.
host_lists Sequence[str]
The Dynatrace JavaScript runtime will only be to connect to these hosts.
enforced This property is required. Boolean
If enabled, the Dynatrace JavaScript runtime will only be able to connect to the specified hosts.
hostLists List<String>
The Dynatrace JavaScript runtime will only be to connect to these hosts.

Package Details

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