1. Packages
  2. Dynatrace
  3. API Docs
  4. DefaultLaunchpad
Dynatrace v0.24.0 published on Monday, Jan 13, 2025 by Pulumiverse

dynatrace.DefaultLaunchpad

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.24.0 published on Monday, Jan 13, 2025 by Pulumiverse

    Create DefaultLaunchpad Resource

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

    Constructor syntax

    new DefaultLaunchpad(name: string, args?: DefaultLaunchpadArgs, opts?: CustomResourceOptions);
    @overload
    def DefaultLaunchpad(resource_name: str,
                         args: Optional[DefaultLaunchpadArgs] = None,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def DefaultLaunchpad(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         group_launchpads: Optional[DefaultLaunchpadGroupLaunchpadsArgs] = None)
    func NewDefaultLaunchpad(ctx *Context, name string, args *DefaultLaunchpadArgs, opts ...ResourceOption) (*DefaultLaunchpad, error)
    public DefaultLaunchpad(string name, DefaultLaunchpadArgs? args = null, CustomResourceOptions? opts = null)
    public DefaultLaunchpad(String name, DefaultLaunchpadArgs args)
    public DefaultLaunchpad(String name, DefaultLaunchpadArgs args, CustomResourceOptions options)
    
    type: dynatrace:DefaultLaunchpad
    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 DefaultLaunchpadArgs
    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 DefaultLaunchpadArgs
    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 DefaultLaunchpadArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DefaultLaunchpadArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DefaultLaunchpadArgs
    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 defaultLaunchpadResource = new Dynatrace.DefaultLaunchpad("defaultLaunchpadResource", new()
    {
        GroupLaunchpads = new Dynatrace.Inputs.DefaultLaunchpadGroupLaunchpadsArgs
        {
            GroupLaunchpads = new[]
            {
                new Dynatrace.Inputs.DefaultLaunchpadGroupLaunchpadsGroupLaunchpadArgs
                {
                    IsEnabled = false,
                    LaunchpadId = "string",
                    UserGroupId = "string",
                },
            },
        },
    });
    
    example, err := dynatrace.NewDefaultLaunchpad(ctx, "defaultLaunchpadResource", &dynatrace.DefaultLaunchpadArgs{
    	GroupLaunchpads: &dynatrace.DefaultLaunchpadGroupLaunchpadsArgs{
    		GroupLaunchpads: dynatrace.DefaultLaunchpadGroupLaunchpadsGroupLaunchpadArray{
    			&dynatrace.DefaultLaunchpadGroupLaunchpadsGroupLaunchpadArgs{
    				IsEnabled:   pulumi.Bool(false),
    				LaunchpadId: pulumi.String("string"),
    				UserGroupId: pulumi.String("string"),
    			},
    		},
    	},
    })
    
    var defaultLaunchpadResource = new DefaultLaunchpad("defaultLaunchpadResource", DefaultLaunchpadArgs.builder()
        .groupLaunchpads(DefaultLaunchpadGroupLaunchpadsArgs.builder()
            .groupLaunchpads(DefaultLaunchpadGroupLaunchpadsGroupLaunchpadArgs.builder()
                .isEnabled(false)
                .launchpadId("string")
                .userGroupId("string")
                .build())
            .build())
        .build());
    
    default_launchpad_resource = dynatrace.DefaultLaunchpad("defaultLaunchpadResource", group_launchpads={
        "group_launchpads": [{
            "is_enabled": False,
            "launchpad_id": "string",
            "user_group_id": "string",
        }],
    })
    
    const defaultLaunchpadResource = new dynatrace.DefaultLaunchpad("defaultLaunchpadResource", {groupLaunchpads: {
        groupLaunchpads: [{
            isEnabled: false,
            launchpadId: "string",
            userGroupId: "string",
        }],
    }});
    
    type: dynatrace:DefaultLaunchpad
    properties:
        groupLaunchpads:
            groupLaunchpads:
                - isEnabled: false
                  launchpadId: string
                  userGroupId: string
    

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

    GroupLaunchpads Pulumiverse.Dynatrace.Inputs.DefaultLaunchpadGroupLaunchpads
    Set default launchpads for user groups. The highest ranked will be shown to the user of a group.
    GroupLaunchpads DefaultLaunchpadGroupLaunchpadsArgs
    Set default launchpads for user groups. The highest ranked will be shown to the user of a group.
    groupLaunchpads DefaultLaunchpadGroupLaunchpads
    Set default launchpads for user groups. The highest ranked will be shown to the user of a group.
    groupLaunchpads DefaultLaunchpadGroupLaunchpads
    Set default launchpads for user groups. The highest ranked will be shown to the user of a group.
    group_launchpads DefaultLaunchpadGroupLaunchpadsArgs
    Set default launchpads for user groups. The highest ranked will be shown to the user of a group.
    groupLaunchpads Property Map
    Set default launchpads for user groups. The highest ranked will be shown to the user of a group.

    Outputs

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

    Get an existing DefaultLaunchpad 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?: DefaultLaunchpadState, opts?: CustomResourceOptions): DefaultLaunchpad
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            group_launchpads: Optional[DefaultLaunchpadGroupLaunchpadsArgs] = None) -> DefaultLaunchpad
    func GetDefaultLaunchpad(ctx *Context, name string, id IDInput, state *DefaultLaunchpadState, opts ...ResourceOption) (*DefaultLaunchpad, error)
    public static DefaultLaunchpad Get(string name, Input<string> id, DefaultLaunchpadState? state, CustomResourceOptions? opts = null)
    public static DefaultLaunchpad get(String name, Output<String> id, DefaultLaunchpadState state, CustomResourceOptions options)
    resources:  _:    type: dynatrace:DefaultLaunchpad    get:      id: ${id}
    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.
    The following state arguments are supported:
    GroupLaunchpads Pulumiverse.Dynatrace.Inputs.DefaultLaunchpadGroupLaunchpads
    Set default launchpads for user groups. The highest ranked will be shown to the user of a group.
    GroupLaunchpads DefaultLaunchpadGroupLaunchpadsArgs
    Set default launchpads for user groups. The highest ranked will be shown to the user of a group.
    groupLaunchpads DefaultLaunchpadGroupLaunchpads
    Set default launchpads for user groups. The highest ranked will be shown to the user of a group.
    groupLaunchpads DefaultLaunchpadGroupLaunchpads
    Set default launchpads for user groups. The highest ranked will be shown to the user of a group.
    group_launchpads DefaultLaunchpadGroupLaunchpadsArgs
    Set default launchpads for user groups. The highest ranked will be shown to the user of a group.
    groupLaunchpads Property Map
    Set default launchpads for user groups. The highest ranked will be shown to the user of a group.

    Supporting Types

    DefaultLaunchpadGroupLaunchpads, DefaultLaunchpadGroupLaunchpadsArgs

    DefaultLaunchpadGroupLaunchpadsGroupLaunchpad, DefaultLaunchpadGroupLaunchpadsGroupLaunchpadArgs

    IsEnabled bool
    State
    LaunchpadId string
    Launchpad
    UserGroupId string
    User Group
    IsEnabled bool
    State
    LaunchpadId string
    Launchpad
    UserGroupId string
    User Group
    isEnabled Boolean
    State
    launchpadId String
    Launchpad
    userGroupId String
    User Group
    isEnabled boolean
    State
    launchpadId string
    Launchpad
    userGroupId string
    User Group
    is_enabled bool
    State
    launchpad_id str
    Launchpad
    user_group_id str
    User Group
    isEnabled Boolean
    State
    launchpadId String
    Launchpad
    userGroupId String
    User Group

    Package Details

    Repository
    dynatrace pulumiverse/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.24.0 published on Monday, Jan 13, 2025 by Pulumiverse