hsdp.ConnectMdmApplication
Explore with Pulumi AI
Create and manage MDM Application resources
Currently, deleting Application resources is not supported by the MDM API, so use them sparingly
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as hsdp from "@pulumi/hsdp";
const app = new hsdp.ConnectMdmApplication("app", {
description: "Terraform managed Application",
propositionId: data.hsdp_connect_mdm_proposition.prop.id,
});
import pulumi
import pulumi_hsdp as hsdp
app = hsdp.ConnectMdmApplication("app",
description="Terraform managed Application",
proposition_id=data["hsdp_connect_mdm_proposition"]["prop"]["id"])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/hsdp/hsdp"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := hsdp.NewConnectMdmApplication(ctx, "app", &hsdp.ConnectMdmApplicationArgs{
Description: pulumi.String("Terraform managed Application"),
PropositionId: pulumi.Any(data.Hsdp_connect_mdm_proposition.Prop.Id),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Hsdp = Pulumi.Hsdp;
return await Deployment.RunAsync(() =>
{
var app = new Hsdp.ConnectMdmApplication("app", new()
{
Description = "Terraform managed Application",
PropositionId = data.Hsdp_connect_mdm_proposition.Prop.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.hsdp.ConnectMdmApplication;
import com.pulumi.hsdp.ConnectMdmApplicationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var app = new ConnectMdmApplication("app", ConnectMdmApplicationArgs.builder()
.description("Terraform managed Application")
.propositionId(data.hsdp_connect_mdm_proposition().prop().id())
.build());
}
}
resources:
app:
type: hsdp:ConnectMdmApplication
properties:
description: Terraform managed Application
propositionId: ${data.hsdp_connect_mdm_proposition.prop.id}
Attributes reference
In addition to all arguments above, the following attributes are exported:
id
- The ID reference (format:Application/${GUID}
)guid
- The GUID of this resourceapplication_guid_system
- The external system associated with resource (this would point to an IAM deployment)application_guid_value
- The external value associated with this resource (this would be an underlying IAM application ID)
Create ConnectMdmApplication Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ConnectMdmApplication(name: string, args: ConnectMdmApplicationArgs, opts?: CustomResourceOptions);
@overload
def ConnectMdmApplication(resource_name: str,
args: ConnectMdmApplicationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ConnectMdmApplication(resource_name: str,
opts: Optional[ResourceOptions] = None,
proposition_id: Optional[str] = None,
connect_mdm_application_id: Optional[str] = None,
default_group_guid: Optional[str] = None,
description: Optional[str] = None,
global_reference_id: Optional[str] = None,
name: Optional[str] = None)
func NewConnectMdmApplication(ctx *Context, name string, args ConnectMdmApplicationArgs, opts ...ResourceOption) (*ConnectMdmApplication, error)
public ConnectMdmApplication(string name, ConnectMdmApplicationArgs args, CustomResourceOptions? opts = null)
public ConnectMdmApplication(String name, ConnectMdmApplicationArgs args)
public ConnectMdmApplication(String name, ConnectMdmApplicationArgs args, CustomResourceOptions options)
type: hsdp:ConnectMdmApplication
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 ConnectMdmApplicationArgs
- 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 ConnectMdmApplicationArgs
- 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 ConnectMdmApplicationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectMdmApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConnectMdmApplicationArgs
- 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 connectMdmApplicationResource = new Hsdp.ConnectMdmApplication("connectMdmApplicationResource", new()
{
PropositionId = "string",
ConnectMdmApplicationId = "string",
DefaultGroupGuid = "string",
Description = "string",
GlobalReferenceId = "string",
Name = "string",
});
example, err := hsdp.NewConnectMdmApplication(ctx, "connectMdmApplicationResource", &hsdp.ConnectMdmApplicationArgs{
PropositionId: pulumi.String("string"),
ConnectMdmApplicationId: pulumi.String("string"),
DefaultGroupGuid: pulumi.String("string"),
Description: pulumi.String("string"),
GlobalReferenceId: pulumi.String("string"),
Name: pulumi.String("string"),
})
var connectMdmApplicationResource = new ConnectMdmApplication("connectMdmApplicationResource", ConnectMdmApplicationArgs.builder()
.propositionId("string")
.connectMdmApplicationId("string")
.defaultGroupGuid("string")
.description("string")
.globalReferenceId("string")
.name("string")
.build());
connect_mdm_application_resource = hsdp.ConnectMdmApplication("connectMdmApplicationResource",
proposition_id="string",
connect_mdm_application_id="string",
default_group_guid="string",
description="string",
global_reference_id="string",
name="string")
const connectMdmApplicationResource = new hsdp.ConnectMdmApplication("connectMdmApplicationResource", {
propositionId: "string",
connectMdmApplicationId: "string",
defaultGroupGuid: "string",
description: "string",
globalReferenceId: "string",
name: "string",
});
type: hsdp:ConnectMdmApplication
properties:
connectMdmApplicationId: string
defaultGroupGuid: string
description: string
globalReferenceId: string
name: string
propositionId: string
ConnectMdmApplication 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 ConnectMdmApplication resource accepts the following input properties:
- Proposition
Id string - The ID of the Proposition this Application should fall under
- Connect
Mdm stringApplication Id - Default
Group stringGuid The GUID of the IAM Group to assign by default
The
proposition_id
only accept MDM Proposition IDs. Using an IAM Proposition ID will not work, even though they might look similar.The
default_group_guid
takes an IAM Group ID i.e. from anhsdp.IamGroup
resource or data source element- Description string
- A short description of the Application
- Global
Reference stringId - A global reference ID for this application
- Name string
- The name of the Application
- Proposition
Id string - The ID of the Proposition this Application should fall under
- Connect
Mdm stringApplication Id - Default
Group stringGuid The GUID of the IAM Group to assign by default
The
proposition_id
only accept MDM Proposition IDs. Using an IAM Proposition ID will not work, even though they might look similar.The
default_group_guid
takes an IAM Group ID i.e. from anhsdp.IamGroup
resource or data source element- Description string
- A short description of the Application
- Global
Reference stringId - A global reference ID for this application
- Name string
- The name of the Application
- proposition
Id String - The ID of the Proposition this Application should fall under
- connect
Mdm StringApplication Id - default
Group StringGuid The GUID of the IAM Group to assign by default
The
proposition_id
only accept MDM Proposition IDs. Using an IAM Proposition ID will not work, even though they might look similar.The
default_group_guid
takes an IAM Group ID i.e. from anhsdp.IamGroup
resource or data source element- description String
- A short description of the Application
- global
Reference StringId - A global reference ID for this application
- name String
- The name of the Application
- proposition
Id string - The ID of the Proposition this Application should fall under
- connect
Mdm stringApplication Id - default
Group stringGuid The GUID of the IAM Group to assign by default
The
proposition_id
only accept MDM Proposition IDs. Using an IAM Proposition ID will not work, even though they might look similar.The
default_group_guid
takes an IAM Group ID i.e. from anhsdp.IamGroup
resource or data source element- description string
- A short description of the Application
- global
Reference stringId - A global reference ID for this application
- name string
- The name of the Application
- proposition_
id str - The ID of the Proposition this Application should fall under
- connect_
mdm_ strapplication_ id - default_
group_ strguid The GUID of the IAM Group to assign by default
The
proposition_id
only accept MDM Proposition IDs. Using an IAM Proposition ID will not work, even though they might look similar.The
default_group_guid
takes an IAM Group ID i.e. from anhsdp.IamGroup
resource or data source element- description str
- A short description of the Application
- global_
reference_ strid - A global reference ID for this application
- name str
- The name of the Application
- proposition
Id String - The ID of the Proposition this Application should fall under
- connect
Mdm StringApplication Id - default
Group StringGuid The GUID of the IAM Group to assign by default
The
proposition_id
only accept MDM Proposition IDs. Using an IAM Proposition ID will not work, even though they might look similar.The
default_group_guid
takes an IAM Group ID i.e. from anhsdp.IamGroup
resource or data source element- description String
- A short description of the Application
- global
Reference StringId - A global reference ID for this application
- name String
- The name of the Application
Outputs
All input properties are implicitly available as output properties. Additionally, the ConnectMdmApplication resource produces the following output properties:
- Application
Guid stringSystem - Application
Guid stringValue - Guid string
- Id string
- The provider-assigned unique ID for this managed resource.
- Application
Guid stringSystem - Application
Guid stringValue - Guid string
- Id string
- The provider-assigned unique ID for this managed resource.
- application
Guid StringSystem - application
Guid StringValue - guid String
- id String
- The provider-assigned unique ID for this managed resource.
- application
Guid stringSystem - application
Guid stringValue - guid string
- id string
- The provider-assigned unique ID for this managed resource.
- application_
guid_ strsystem - application_
guid_ strvalue - guid str
- id str
- The provider-assigned unique ID for this managed resource.
- application
Guid StringSystem - application
Guid StringValue - guid String
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ConnectMdmApplication Resource
Get an existing ConnectMdmApplication 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?: ConnectMdmApplicationState, opts?: CustomResourceOptions): ConnectMdmApplication
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_guid_system: Optional[str] = None,
application_guid_value: Optional[str] = None,
connect_mdm_application_id: Optional[str] = None,
default_group_guid: Optional[str] = None,
description: Optional[str] = None,
global_reference_id: Optional[str] = None,
guid: Optional[str] = None,
name: Optional[str] = None,
proposition_id: Optional[str] = None) -> ConnectMdmApplication
func GetConnectMdmApplication(ctx *Context, name string, id IDInput, state *ConnectMdmApplicationState, opts ...ResourceOption) (*ConnectMdmApplication, error)
public static ConnectMdmApplication Get(string name, Input<string> id, ConnectMdmApplicationState? state, CustomResourceOptions? opts = null)
public static ConnectMdmApplication get(String name, Output<String> id, ConnectMdmApplicationState state, CustomResourceOptions options)
resources: _: type: hsdp:ConnectMdmApplication 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.
- Application
Guid stringSystem - Application
Guid stringValue - Connect
Mdm stringApplication Id - Default
Group stringGuid The GUID of the IAM Group to assign by default
The
proposition_id
only accept MDM Proposition IDs. Using an IAM Proposition ID will not work, even though they might look similar.The
default_group_guid
takes an IAM Group ID i.e. from anhsdp.IamGroup
resource or data source element- Description string
- A short description of the Application
- Global
Reference stringId - A global reference ID for this application
- Guid string
- Name string
- The name of the Application
- Proposition
Id string - The ID of the Proposition this Application should fall under
- Application
Guid stringSystem - Application
Guid stringValue - Connect
Mdm stringApplication Id - Default
Group stringGuid The GUID of the IAM Group to assign by default
The
proposition_id
only accept MDM Proposition IDs. Using an IAM Proposition ID will not work, even though they might look similar.The
default_group_guid
takes an IAM Group ID i.e. from anhsdp.IamGroup
resource or data source element- Description string
- A short description of the Application
- Global
Reference stringId - A global reference ID for this application
- Guid string
- Name string
- The name of the Application
- Proposition
Id string - The ID of the Proposition this Application should fall under
- application
Guid StringSystem - application
Guid StringValue - connect
Mdm StringApplication Id - default
Group StringGuid The GUID of the IAM Group to assign by default
The
proposition_id
only accept MDM Proposition IDs. Using an IAM Proposition ID will not work, even though they might look similar.The
default_group_guid
takes an IAM Group ID i.e. from anhsdp.IamGroup
resource or data source element- description String
- A short description of the Application
- global
Reference StringId - A global reference ID for this application
- guid String
- name String
- The name of the Application
- proposition
Id String - The ID of the Proposition this Application should fall under
- application
Guid stringSystem - application
Guid stringValue - connect
Mdm stringApplication Id - default
Group stringGuid The GUID of the IAM Group to assign by default
The
proposition_id
only accept MDM Proposition IDs. Using an IAM Proposition ID will not work, even though they might look similar.The
default_group_guid
takes an IAM Group ID i.e. from anhsdp.IamGroup
resource or data source element- description string
- A short description of the Application
- global
Reference stringId - A global reference ID for this application
- guid string
- name string
- The name of the Application
- proposition
Id string - The ID of the Proposition this Application should fall under
- application_
guid_ strsystem - application_
guid_ strvalue - connect_
mdm_ strapplication_ id - default_
group_ strguid The GUID of the IAM Group to assign by default
The
proposition_id
only accept MDM Proposition IDs. Using an IAM Proposition ID will not work, even though they might look similar.The
default_group_guid
takes an IAM Group ID i.e. from anhsdp.IamGroup
resource or data source element- description str
- A short description of the Application
- global_
reference_ strid - A global reference ID for this application
- guid str
- name str
- The name of the Application
- proposition_
id str - The ID of the Proposition this Application should fall under
- application
Guid StringSystem - application
Guid StringValue - connect
Mdm StringApplication Id - default
Group StringGuid The GUID of the IAM Group to assign by default
The
proposition_id
only accept MDM Proposition IDs. Using an IAM Proposition ID will not work, even though they might look similar.The
default_group_guid
takes an IAM Group ID i.e. from anhsdp.IamGroup
resource or data source element- description String
- A short description of the Application
- global
Reference StringId - A global reference ID for this application
- guid String
- name String
- The name of the Application
- proposition
Id String - The ID of the Proposition this Application should fall under
Package Details
- Repository
- hsdp philips-software/terraform-provider-hsdp
- License
- Notes
- This Pulumi package is based on the
hsdp
Terraform Provider.