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

dynatrace.ManagedPublicEndpoints

Explore with Pulumi AI

Create ManagedPublicEndpoints Resource

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

Constructor syntax

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

@overload
def ManagedPublicEndpoints(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           additional_web_ui_addresses: Optional[Sequence[str]] = None,
                           beacon_forwarder_address: Optional[str] = None,
                           cdn_address: Optional[str] = None,
                           web_ui_address: Optional[str] = None)
func NewManagedPublicEndpoints(ctx *Context, name string, args *ManagedPublicEndpointsArgs, opts ...ResourceOption) (*ManagedPublicEndpoints, error)
public ManagedPublicEndpoints(string name, ManagedPublicEndpointsArgs? args = null, CustomResourceOptions? opts = null)
public ManagedPublicEndpoints(String name, ManagedPublicEndpointsArgs args)
public ManagedPublicEndpoints(String name, ManagedPublicEndpointsArgs args, CustomResourceOptions options)
type: dynatrace:ManagedPublicEndpoints
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 ManagedPublicEndpointsArgs
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 ManagedPublicEndpointsArgs
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 ManagedPublicEndpointsArgs
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 ManagedPublicEndpointsArgs
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. ManagedPublicEndpointsArgs
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 managedPublicEndpointsResource = new Dynatrace.ManagedPublicEndpoints("managedPublicEndpointsResource", new()
{
    AdditionalWebUiAddresses = new[]
    {
        "string",
    },
    BeaconForwarderAddress = "string",
    CdnAddress = "string",
    WebUiAddress = "string",
});
Copy
example, err := dynatrace.NewManagedPublicEndpoints(ctx, "managedPublicEndpointsResource", &dynatrace.ManagedPublicEndpointsArgs{
	AdditionalWebUiAddresses: pulumi.StringArray{
		pulumi.String("string"),
	},
	BeaconForwarderAddress: pulumi.String("string"),
	CdnAddress:             pulumi.String("string"),
	WebUiAddress:           pulumi.String("string"),
})
Copy
var managedPublicEndpointsResource = new ManagedPublicEndpoints("managedPublicEndpointsResource", ManagedPublicEndpointsArgs.builder()
    .additionalWebUiAddresses("string")
    .beaconForwarderAddress("string")
    .cdnAddress("string")
    .webUiAddress("string")
    .build());
Copy
managed_public_endpoints_resource = dynatrace.ManagedPublicEndpoints("managedPublicEndpointsResource",
    additional_web_ui_addresses=["string"],
    beacon_forwarder_address="string",
    cdn_address="string",
    web_ui_address="string")
Copy
const managedPublicEndpointsResource = new dynatrace.ManagedPublicEndpoints("managedPublicEndpointsResource", {
    additionalWebUiAddresses: ["string"],
    beaconForwarderAddress: "string",
    cdnAddress: "string",
    webUiAddress: "string",
});
Copy
type: dynatrace:ManagedPublicEndpoints
properties:
    additionalWebUiAddresses:
        - string
    beaconForwarderAddress: string
    cdnAddress: string
    webUiAddress: string
Copy

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

AdditionalWebUiAddresses List<string>
Additional web UI addresses
BeaconForwarderAddress string
Beacon forwarder address
CdnAddress string
CDN address
WebUiAddress string
Web UI address
AdditionalWebUiAddresses []string
Additional web UI addresses
BeaconForwarderAddress string
Beacon forwarder address
CdnAddress string
CDN address
WebUiAddress string
Web UI address
additionalWebUiAddresses List<String>
Additional web UI addresses
beaconForwarderAddress String
Beacon forwarder address
cdnAddress String
CDN address
webUiAddress String
Web UI address
additionalWebUiAddresses string[]
Additional web UI addresses
beaconForwarderAddress string
Beacon forwarder address
cdnAddress string
CDN address
webUiAddress string
Web UI address
additional_web_ui_addresses Sequence[str]
Additional web UI addresses
beacon_forwarder_address str
Beacon forwarder address
cdn_address str
CDN address
web_ui_address str
Web UI address
additionalWebUiAddresses List<String>
Additional web UI addresses
beaconForwarderAddress String
Beacon forwarder address
cdnAddress String
CDN address
webUiAddress String
Web UI address

Outputs

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

Get an existing ManagedPublicEndpoints 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?: ManagedPublicEndpointsState, opts?: CustomResourceOptions): ManagedPublicEndpoints
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        additional_web_ui_addresses: Optional[Sequence[str]] = None,
        beacon_forwarder_address: Optional[str] = None,
        cdn_address: Optional[str] = None,
        web_ui_address: Optional[str] = None) -> ManagedPublicEndpoints
func GetManagedPublicEndpoints(ctx *Context, name string, id IDInput, state *ManagedPublicEndpointsState, opts ...ResourceOption) (*ManagedPublicEndpoints, error)
public static ManagedPublicEndpoints Get(string name, Input<string> id, ManagedPublicEndpointsState? state, CustomResourceOptions? opts = null)
public static ManagedPublicEndpoints get(String name, Output<String> id, ManagedPublicEndpointsState state, CustomResourceOptions options)
resources:  _:    type: dynatrace:ManagedPublicEndpoints    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:
AdditionalWebUiAddresses List<string>
Additional web UI addresses
BeaconForwarderAddress string
Beacon forwarder address
CdnAddress string
CDN address
WebUiAddress string
Web UI address
AdditionalWebUiAddresses []string
Additional web UI addresses
BeaconForwarderAddress string
Beacon forwarder address
CdnAddress string
CDN address
WebUiAddress string
Web UI address
additionalWebUiAddresses List<String>
Additional web UI addresses
beaconForwarderAddress String
Beacon forwarder address
cdnAddress String
CDN address
webUiAddress String
Web UI address
additionalWebUiAddresses string[]
Additional web UI addresses
beaconForwarderAddress string
Beacon forwarder address
cdnAddress string
CDN address
webUiAddress string
Web UI address
additional_web_ui_addresses Sequence[str]
Additional web UI addresses
beacon_forwarder_address str
Beacon forwarder address
cdn_address str
CDN address
web_ui_address str
Web UI address
additionalWebUiAddresses List<String>
Additional web UI addresses
beaconForwarderAddress String
Beacon forwarder address
cdnAddress String
CDN address
webUiAddress String
Web UI address

Package Details

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