1. Packages
  2. Hsdp Provider
  3. API Docs
  4. ConnectMdmProposition
hsdp 0.65.3 published on Tuesday, Apr 15, 2025 by philips-software

hsdp.ConnectMdmProposition

Explore with Pulumi AI

Create and manage MDM Proposition resources

Currently, deleting Proposition 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.ConnectMdmProposition("app", {
    description: "Terraform managed proposition",
    organizationId: _var.org_id,
});
Copy
import pulumi
import pulumi_hsdp as hsdp

app = hsdp.ConnectMdmProposition("app",
    description="Terraform managed proposition",
    organization_id=var["org_id"])
Copy
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.NewConnectMdmProposition(ctx, "app", &hsdp.ConnectMdmPropositionArgs{
			Description:    pulumi.String("Terraform managed proposition"),
			OrganizationId: pulumi.Any(_var.Org_id),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Hsdp = Pulumi.Hsdp;

return await Deployment.RunAsync(() => 
{
    var app = new Hsdp.ConnectMdmProposition("app", new()
    {
        Description = "Terraform managed proposition",
        OrganizationId = @var.Org_id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.hsdp.ConnectMdmProposition;
import com.pulumi.hsdp.ConnectMdmPropositionArgs;
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 ConnectMdmProposition("app", ConnectMdmPropositionArgs.builder()
            .description("Terraform managed proposition")
            .organizationId(var_.org_id())
            .build());

    }
}
Copy
resources:
  app:
    type: hsdp:ConnectMdmProposition
    properties:
      description: Terraform managed proposition
      organizationId: ${var.org_id}
Copy

Attributes reference

In addition to all arguments above, the following attributes are exported:

  • id - The ID reference (format: Proposition/${GUID})
  • guid - The GUID of the underlying IAM resource
  • proposition_id - The ID of the IAM proposition this proposition falls under
  • proposition_guid - The GUID of the MDM proposition resource

Create ConnectMdmProposition Resource

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

Constructor syntax

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

@overload
def ConnectMdmProposition(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          description: Optional[str] = None,
                          organization_id: Optional[str] = None,
                          status: Optional[str] = None,
                          connect_mdm_proposition_id: Optional[str] = None,
                          global_reference_id: Optional[str] = None,
                          name: Optional[str] = None)
func NewConnectMdmProposition(ctx *Context, name string, args ConnectMdmPropositionArgs, opts ...ResourceOption) (*ConnectMdmProposition, error)
public ConnectMdmProposition(string name, ConnectMdmPropositionArgs args, CustomResourceOptions? opts = null)
public ConnectMdmProposition(String name, ConnectMdmPropositionArgs args)
public ConnectMdmProposition(String name, ConnectMdmPropositionArgs args, CustomResourceOptions options)
type: hsdp:ConnectMdmProposition
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. ConnectMdmPropositionArgs
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. ConnectMdmPropositionArgs
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. ConnectMdmPropositionArgs
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. ConnectMdmPropositionArgs
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. ConnectMdmPropositionArgs
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 connectMdmPropositionResource = new Hsdp.ConnectMdmProposition("connectMdmPropositionResource", new()
{
    Description = "string",
    OrganizationId = "string",
    Status = "string",
    ConnectMdmPropositionId = "string",
    GlobalReferenceId = "string",
    Name = "string",
});
Copy
example, err := hsdp.NewConnectMdmProposition(ctx, "connectMdmPropositionResource", &hsdp.ConnectMdmPropositionArgs{
Description: pulumi.String("string"),
OrganizationId: pulumi.String("string"),
Status: pulumi.String("string"),
ConnectMdmPropositionId: pulumi.String("string"),
GlobalReferenceId: pulumi.String("string"),
Name: pulumi.String("string"),
})
Copy
var connectMdmPropositionResource = new ConnectMdmProposition("connectMdmPropositionResource", ConnectMdmPropositionArgs.builder()
    .description("string")
    .organizationId("string")
    .status("string")
    .connectMdmPropositionId("string")
    .globalReferenceId("string")
    .name("string")
    .build());
Copy
connect_mdm_proposition_resource = hsdp.ConnectMdmProposition("connectMdmPropositionResource",
    description="string",
    organization_id="string",
    status="string",
    connect_mdm_proposition_id="string",
    global_reference_id="string",
    name="string")
Copy
const connectMdmPropositionResource = new hsdp.ConnectMdmProposition("connectMdmPropositionResource", {
    description: "string",
    organizationId: "string",
    status: "string",
    connectMdmPropositionId: "string",
    globalReferenceId: "string",
    name: "string",
});
Copy
type: hsdp:ConnectMdmProposition
properties:
    connectMdmPropositionId: string
    description: string
    globalReferenceId: string
    name: string
    organizationId: string
    status: string
Copy

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

Description This property is required. string
A short description of the Proposition
OrganizationId This property is required. string
The ID of the IAM organization this Proposition should fall under
Status This property is required. string
The status of the Proposition [DRAFT, ACTIVE]
ConnectMdmPropositionId string
GlobalReferenceId string
Name string
The name of the Proposition
Description This property is required. string
A short description of the Proposition
OrganizationId This property is required. string
The ID of the IAM organization this Proposition should fall under
Status This property is required. string
The status of the Proposition [DRAFT, ACTIVE]
ConnectMdmPropositionId string
GlobalReferenceId string
Name string
The name of the Proposition
description This property is required. String
A short description of the Proposition
organizationId This property is required. String
The ID of the IAM organization this Proposition should fall under
status This property is required. String
The status of the Proposition [DRAFT, ACTIVE]
connectMdmPropositionId String
globalReferenceId String
name String
The name of the Proposition
description This property is required. string
A short description of the Proposition
organizationId This property is required. string
The ID of the IAM organization this Proposition should fall under
status This property is required. string
The status of the Proposition [DRAFT, ACTIVE]
connectMdmPropositionId string
globalReferenceId string
name string
The name of the Proposition
description This property is required. str
A short description of the Proposition
organization_id This property is required. str
The ID of the IAM organization this Proposition should fall under
status This property is required. str
The status of the Proposition [DRAFT, ACTIVE]
connect_mdm_proposition_id str
global_reference_id str
name str
The name of the Proposition
description This property is required. String
A short description of the Proposition
organizationId This property is required. String
The ID of the IAM organization this Proposition should fall under
status This property is required. String
The status of the Proposition [DRAFT, ACTIVE]
connectMdmPropositionId String
globalReferenceId String
name String
The name of the Proposition

Outputs

All input properties are implicitly available as output properties. Additionally, the ConnectMdmProposition resource produces the following output properties:

Guid string
Id string
The provider-assigned unique ID for this managed resource.
PropositionGuid string
PropositionId string
Guid string
Id string
The provider-assigned unique ID for this managed resource.
PropositionGuid string
PropositionId string
guid String
id String
The provider-assigned unique ID for this managed resource.
propositionGuid String
propositionId String
guid string
id string
The provider-assigned unique ID for this managed resource.
propositionGuid string
propositionId string
guid str
id str
The provider-assigned unique ID for this managed resource.
proposition_guid str
proposition_id str
guid String
id String
The provider-assigned unique ID for this managed resource.
propositionGuid String
propositionId String

Look up Existing ConnectMdmProposition Resource

Get an existing ConnectMdmProposition 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?: ConnectMdmPropositionState, opts?: CustomResourceOptions): ConnectMdmProposition
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        connect_mdm_proposition_id: Optional[str] = None,
        description: Optional[str] = None,
        global_reference_id: Optional[str] = None,
        guid: Optional[str] = None,
        name: Optional[str] = None,
        organization_id: Optional[str] = None,
        proposition_guid: Optional[str] = None,
        proposition_id: Optional[str] = None,
        status: Optional[str] = None) -> ConnectMdmProposition
func GetConnectMdmProposition(ctx *Context, name string, id IDInput, state *ConnectMdmPropositionState, opts ...ResourceOption) (*ConnectMdmProposition, error)
public static ConnectMdmProposition Get(string name, Input<string> id, ConnectMdmPropositionState? state, CustomResourceOptions? opts = null)
public static ConnectMdmProposition get(String name, Output<String> id, ConnectMdmPropositionState state, CustomResourceOptions options)
resources:  _:    type: hsdp:ConnectMdmProposition    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:
ConnectMdmPropositionId string
Description string
A short description of the Proposition
GlobalReferenceId string
Guid string
Name string
The name of the Proposition
OrganizationId string
The ID of the IAM organization this Proposition should fall under
PropositionGuid string
PropositionId string
Status string
The status of the Proposition [DRAFT, ACTIVE]
ConnectMdmPropositionId string
Description string
A short description of the Proposition
GlobalReferenceId string
Guid string
Name string
The name of the Proposition
OrganizationId string
The ID of the IAM organization this Proposition should fall under
PropositionGuid string
PropositionId string
Status string
The status of the Proposition [DRAFT, ACTIVE]
connectMdmPropositionId String
description String
A short description of the Proposition
globalReferenceId String
guid String
name String
The name of the Proposition
organizationId String
The ID of the IAM organization this Proposition should fall under
propositionGuid String
propositionId String
status String
The status of the Proposition [DRAFT, ACTIVE]
connectMdmPropositionId string
description string
A short description of the Proposition
globalReferenceId string
guid string
name string
The name of the Proposition
organizationId string
The ID of the IAM organization this Proposition should fall under
propositionGuid string
propositionId string
status string
The status of the Proposition [DRAFT, ACTIVE]
connect_mdm_proposition_id str
description str
A short description of the Proposition
global_reference_id str
guid str
name str
The name of the Proposition
organization_id str
The ID of the IAM organization this Proposition should fall under
proposition_guid str
proposition_id str
status str
The status of the Proposition [DRAFT, ACTIVE]
connectMdmPropositionId String
description String
A short description of the Proposition
globalReferenceId String
guid String
name String
The name of the Proposition
organizationId String
The ID of the IAM organization this Proposition should fall under
propositionGuid String
propositionId String
status String
The status of the Proposition [DRAFT, ACTIVE]

Package Details

Repository
hsdp philips-software/terraform-provider-hsdp
License
Notes
This Pulumi package is based on the hsdp Terraform Provider.