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

hsdp.ConnectMdmBlobSubscription

Explore with Pulumi AI

hsdp logo
hsdp 0.65.3 published on Tuesday, Apr 15, 2025 by philips-software

    Create and manage MDM BlobSubscription resources

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as hsdp from "@pulumi/hsdp";
    
    const first = new hsdp.ConnectMdmBlobSubscription("first", {
        description: "Terraform provisioned Blob subscription",
        dataTypeId: hsdp_connect_mdm_data_type.first.id,
        notificationTopicId: _var.topic_id,
    });
    
    import pulumi
    import pulumi_hsdp as hsdp
    
    first = hsdp.ConnectMdmBlobSubscription("first",
        description="Terraform provisioned Blob subscription",
        data_type_id=hsdp_connect_mdm_data_type["first"]["id"],
        notification_topic_id=var["topic_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.NewConnectMdmBlobSubscription(ctx, "first", &hsdp.ConnectMdmBlobSubscriptionArgs{
    			Description:         pulumi.String("Terraform provisioned Blob subscription"),
    			DataTypeId:          pulumi.Any(hsdp_connect_mdm_data_type.First.Id),
    			NotificationTopicId: pulumi.Any(_var.Topic_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 first = new Hsdp.ConnectMdmBlobSubscription("first", new()
        {
            Description = "Terraform provisioned Blob subscription",
            DataTypeId = hsdp_connect_mdm_data_type.First.Id,
            NotificationTopicId = @var.Topic_id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.hsdp.ConnectMdmBlobSubscription;
    import com.pulumi.hsdp.ConnectMdmBlobSubscriptionArgs;
    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 first = new ConnectMdmBlobSubscription("first", ConnectMdmBlobSubscriptionArgs.builder()
                .description("Terraform provisioned Blob subscription")
                .dataTypeId(hsdp_connect_mdm_data_type.first().id())
                .notificationTopicId(var_.topic_id())
                .build());
    
        }
    }
    
    resources:
      first:
        type: hsdp:ConnectMdmBlobSubscription
        properties:
          description: Terraform provisioned Blob subscription
          dataTypeId: ${hsdp_connect_mdm_data_type.first.id}
          notificationTopicId: ${var.topic_id}
    

    Attributes reference

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

    • id - The ID reference of the service action (format: Group/${GUID})
    • guid - The GUID of the service action

    Create ConnectMdmBlobSubscription Resource

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

    Constructor syntax

    new ConnectMdmBlobSubscription(name: string, args: ConnectMdmBlobSubscriptionArgs, opts?: CustomResourceOptions);
    @overload
    def ConnectMdmBlobSubscription(resource_name: str,
                                   args: ConnectMdmBlobSubscriptionArgs,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ConnectMdmBlobSubscription(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   data_type_id: Optional[str] = None,
                                   notification_topic_id: Optional[str] = None,
                                   connect_mdm_blob_subscription_id: Optional[str] = None,
                                   description: Optional[str] = None,
                                   name: Optional[str] = None)
    func NewConnectMdmBlobSubscription(ctx *Context, name string, args ConnectMdmBlobSubscriptionArgs, opts ...ResourceOption) (*ConnectMdmBlobSubscription, error)
    public ConnectMdmBlobSubscription(string name, ConnectMdmBlobSubscriptionArgs args, CustomResourceOptions? opts = null)
    public ConnectMdmBlobSubscription(String name, ConnectMdmBlobSubscriptionArgs args)
    public ConnectMdmBlobSubscription(String name, ConnectMdmBlobSubscriptionArgs args, CustomResourceOptions options)
    
    type: hsdp:ConnectMdmBlobSubscription
    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 ConnectMdmBlobSubscriptionArgs
    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 ConnectMdmBlobSubscriptionArgs
    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 ConnectMdmBlobSubscriptionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ConnectMdmBlobSubscriptionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ConnectMdmBlobSubscriptionArgs
    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 connectMdmBlobSubscriptionResource = new Hsdp.ConnectMdmBlobSubscription("connectMdmBlobSubscriptionResource", new()
    {
        DataTypeId = "string",
        NotificationTopicId = "string",
        ConnectMdmBlobSubscriptionId = "string",
        Description = "string",
        Name = "string",
    });
    
    example, err := hsdp.NewConnectMdmBlobSubscription(ctx, "connectMdmBlobSubscriptionResource", &hsdp.ConnectMdmBlobSubscriptionArgs{
    	DataTypeId:                   pulumi.String("string"),
    	NotificationTopicId:          pulumi.String("string"),
    	ConnectMdmBlobSubscriptionId: pulumi.String("string"),
    	Description:                  pulumi.String("string"),
    	Name:                         pulumi.String("string"),
    })
    
    var connectMdmBlobSubscriptionResource = new ConnectMdmBlobSubscription("connectMdmBlobSubscriptionResource", ConnectMdmBlobSubscriptionArgs.builder()
        .dataTypeId("string")
        .notificationTopicId("string")
        .connectMdmBlobSubscriptionId("string")
        .description("string")
        .name("string")
        .build());
    
    connect_mdm_blob_subscription_resource = hsdp.ConnectMdmBlobSubscription("connectMdmBlobSubscriptionResource",
        data_type_id="string",
        notification_topic_id="string",
        connect_mdm_blob_subscription_id="string",
        description="string",
        name="string")
    
    const connectMdmBlobSubscriptionResource = new hsdp.ConnectMdmBlobSubscription("connectMdmBlobSubscriptionResource", {
        dataTypeId: "string",
        notificationTopicId: "string",
        connectMdmBlobSubscriptionId: "string",
        description: "string",
        name: "string",
    });
    
    type: hsdp:ConnectMdmBlobSubscription
    properties:
        connectMdmBlobSubscriptionId: string
        dataTypeId: string
        description: string
        name: string
        notificationTopicId: string
    

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

    DataTypeId string
    NotificationTopicId string
    ConnectMdmBlobSubscriptionId string
    Description string
    Name string
    The name of the Blob subscription
    DataTypeId string
    NotificationTopicId string
    ConnectMdmBlobSubscriptionId string
    Description string
    Name string
    The name of the Blob subscription
    dataTypeId String
    notificationTopicId String
    connectMdmBlobSubscriptionId String
    description String
    name String
    The name of the Blob subscription
    dataTypeId string
    notificationTopicId string
    connectMdmBlobSubscriptionId string
    description string
    name string
    The name of the Blob subscription
    dataTypeId String
    notificationTopicId String
    connectMdmBlobSubscriptionId String
    description String
    name String
    The name of the Blob subscription

    Outputs

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

    Guid string
    Id string
    The provider-assigned unique ID for this managed resource.
    VersionId string
    Guid string
    Id string
    The provider-assigned unique ID for this managed resource.
    VersionId string
    guid String
    id String
    The provider-assigned unique ID for this managed resource.
    versionId String
    guid string
    id string
    The provider-assigned unique ID for this managed resource.
    versionId string
    guid str
    id str
    The provider-assigned unique ID for this managed resource.
    version_id str
    guid String
    id String
    The provider-assigned unique ID for this managed resource.
    versionId String

    Look up Existing ConnectMdmBlobSubscription Resource

    Get an existing ConnectMdmBlobSubscription 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?: ConnectMdmBlobSubscriptionState, opts?: CustomResourceOptions): ConnectMdmBlobSubscription
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            connect_mdm_blob_subscription_id: Optional[str] = None,
            data_type_id: Optional[str] = None,
            description: Optional[str] = None,
            guid: Optional[str] = None,
            name: Optional[str] = None,
            notification_topic_id: Optional[str] = None,
            version_id: Optional[str] = None) -> ConnectMdmBlobSubscription
    func GetConnectMdmBlobSubscription(ctx *Context, name string, id IDInput, state *ConnectMdmBlobSubscriptionState, opts ...ResourceOption) (*ConnectMdmBlobSubscription, error)
    public static ConnectMdmBlobSubscription Get(string name, Input<string> id, ConnectMdmBlobSubscriptionState? state, CustomResourceOptions? opts = null)
    public static ConnectMdmBlobSubscription get(String name, Output<String> id, ConnectMdmBlobSubscriptionState state, CustomResourceOptions options)
    resources:  _:    type: hsdp:ConnectMdmBlobSubscription    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:
    ConnectMdmBlobSubscriptionId string
    DataTypeId string
    Description string
    Guid string
    Name string
    The name of the Blob subscription
    NotificationTopicId string
    VersionId string
    ConnectMdmBlobSubscriptionId string
    DataTypeId string
    Description string
    Guid string
    Name string
    The name of the Blob subscription
    NotificationTopicId string
    VersionId string
    connectMdmBlobSubscriptionId String
    dataTypeId String
    description String
    guid String
    name String
    The name of the Blob subscription
    notificationTopicId String
    versionId String
    connectMdmBlobSubscriptionId string
    dataTypeId string
    description string
    guid string
    name string
    The name of the Blob subscription
    notificationTopicId string
    versionId string
    connectMdmBlobSubscriptionId String
    dataTypeId String
    description String
    guid String
    name String
    The name of the Blob subscription
    notificationTopicId String
    versionId String

    Package Details

    Repository
    hsdp philips-software/terraform-provider-hsdp
    License
    Notes
    This Pulumi package is based on the hsdp Terraform Provider.
    hsdp logo
    hsdp 0.65.3 published on Tuesday, Apr 15, 2025 by philips-software