hsdp.ConnectMdmBlobSubscription
Explore with Pulumi AI
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:
- Data
Type stringId - Notification
Topic stringId - Connect
Mdm stringBlob Subscription Id - Description string
- Name string
- The name of the Blob subscription
- Data
Type stringId - Notification
Topic stringId - Connect
Mdm stringBlob Subscription Id - Description string
- Name string
- The name of the Blob subscription
- data
Type StringId - notification
Topic StringId - connect
Mdm StringBlob Subscription Id - description String
- name String
- The name of the Blob subscription
- data
Type stringId - notification
Topic stringId - connect
Mdm stringBlob Subscription Id - description string
- name string
- The name of the Blob subscription
- data_
type_ strid - notification_
topic_ strid - connect_
mdm_ strblob_ subscription_ id - description str
- name str
- The name of the Blob subscription
- data
Type StringId - notification
Topic StringId - connect
Mdm StringBlob Subscription Id - 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 str
- id str
- The provider-assigned unique ID for this managed resource.
- version_
id str
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.
- Connect
Mdm stringBlob Subscription Id - Data
Type stringId - Description string
- Guid string
- Name string
- The name of the Blob subscription
- Notification
Topic stringId - Version
Id string
- Connect
Mdm stringBlob Subscription Id - Data
Type stringId - Description string
- Guid string
- Name string
- The name of the Blob subscription
- Notification
Topic stringId - Version
Id string
- connect
Mdm StringBlob Subscription Id - data
Type StringId - description String
- guid String
- name String
- The name of the Blob subscription
- notification
Topic StringId - version
Id String
- connect
Mdm stringBlob Subscription Id - data
Type stringId - description string
- guid string
- name string
- The name of the Blob subscription
- notification
Topic stringId - version
Id string
- connect_
mdm_ strblob_ subscription_ id - data_
type_ strid - description str
- guid str
- name str
- The name of the Blob subscription
- notification_
topic_ strid - version_
id str
- connect
Mdm StringBlob Subscription Id - data
Type StringId - description String
- guid String
- name String
- The name of the Blob subscription
- notification
Topic StringId - version
Id String
Package Details
- Repository
- hsdp philips-software/terraform-provider-hsdp
- License
- Notes
- This Pulumi package is based on the
hsdp
Terraform Provider.