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

hsdp.NotificationSubscriber

Explore with Pulumi AI

Create and manage HSDP Notification subscriber resources

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as hsdp from "@pulumi/hsdp";

const subscriber = new hsdp.NotificationSubscriber("subscriber", {
    description: "subscriber description",
    managingOrganization: "exampleOrg",
    managingOrganizationId: "example-d8f5-4fe4-b486-29a7fd30c9ba",
    subscriberProductName: "subsciberProd",
    subscriberServiceBaseUrl: "https://ns-client-logdev.cloud.pcftest.com/",
    subscriberServiceInstanceName: "serviceInsttest12",
    subscriberServiceName: "subsciberService",
    subscriberServicePathUrl: "core",
});
Copy
import pulumi
import pulumi_hsdp as hsdp

subscriber = hsdp.NotificationSubscriber("subscriber",
    description="subscriber description",
    managing_organization="exampleOrg",
    managing_organization_id="example-d8f5-4fe4-b486-29a7fd30c9ba",
    subscriber_product_name="subsciberProd",
    subscriber_service_base_url="https://ns-client-logdev.cloud.pcftest.com/",
    subscriber_service_instance_name="serviceInsttest12",
    subscriber_service_name="subsciberService",
    subscriber_service_path_url="core")
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.NewNotificationSubscriber(ctx, "subscriber", &hsdp.NotificationSubscriberArgs{
			Description:                   pulumi.String("subscriber description"),
			ManagingOrganization:          pulumi.String("exampleOrg"),
			ManagingOrganizationId:        pulumi.String("example-d8f5-4fe4-b486-29a7fd30c9ba"),
			SubscriberProductName:         pulumi.String("subsciberProd"),
			SubscriberServiceBaseUrl:      pulumi.String("https://ns-client-logdev.cloud.pcftest.com/"),
			SubscriberServiceInstanceName: pulumi.String("serviceInsttest12"),
			SubscriberServiceName:         pulumi.String("subsciberService"),
			SubscriberServicePathUrl:      pulumi.String("core"),
		})
		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 subscriber = new Hsdp.NotificationSubscriber("subscriber", new()
    {
        Description = "subscriber description",
        ManagingOrganization = "exampleOrg",
        ManagingOrganizationId = "example-d8f5-4fe4-b486-29a7fd30c9ba",
        SubscriberProductName = "subsciberProd",
        SubscriberServiceBaseUrl = "https://ns-client-logdev.cloud.pcftest.com/",
        SubscriberServiceInstanceName = "serviceInsttest12",
        SubscriberServiceName = "subsciberService",
        SubscriberServicePathUrl = "core",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.hsdp.NotificationSubscriber;
import com.pulumi.hsdp.NotificationSubscriberArgs;
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 subscriber = new NotificationSubscriber("subscriber", NotificationSubscriberArgs.builder()
            .description("subscriber description")
            .managingOrganization("exampleOrg")
            .managingOrganizationId("example-d8f5-4fe4-b486-29a7fd30c9ba")
            .subscriberProductName("subsciberProd")
            .subscriberServiceBaseUrl("https://ns-client-logdev.cloud.pcftest.com/")
            .subscriberServiceInstanceName("serviceInsttest12")
            .subscriberServiceName("subsciberService")
            .subscriberServicePathUrl("core")
            .build());

    }
}
Copy
resources:
  subscriber:
    type: hsdp:NotificationSubscriber
    properties:
      description: subscriber description
      managingOrganization: exampleOrg
      managingOrganizationId: example-d8f5-4fe4-b486-29a7fd30c9ba
      subscriberProductName: subsciberProd
      subscriberServiceBaseUrl: https://ns-client-logdev.cloud.pcftest.com/
      subscriberServiceInstanceName: serviceInsttest12
      subscriberServiceName: subsciberService
      subscriberServicePathUrl: core
Copy

Create NotificationSubscriber Resource

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

Constructor syntax

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

@overload
def NotificationSubscriber(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           managing_organization: Optional[str] = None,
                           managing_organization_id: Optional[str] = None,
                           subscriber_service_base_url: Optional[str] = None,
                           subscriber_service_instance_name: Optional[str] = None,
                           subscriber_service_name: Optional[str] = None,
                           subscriber_service_path_url: Optional[str] = None,
                           description: Optional[str] = None,
                           notification_subscriber_id: Optional[str] = None,
                           principal: Optional[NotificationSubscriberPrincipalArgs] = None,
                           soft_delete: Optional[bool] = None,
                           subscriber_product_name: Optional[str] = None)
func NewNotificationSubscriber(ctx *Context, name string, args NotificationSubscriberArgs, opts ...ResourceOption) (*NotificationSubscriber, error)
public NotificationSubscriber(string name, NotificationSubscriberArgs args, CustomResourceOptions? opts = null)
public NotificationSubscriber(String name, NotificationSubscriberArgs args)
public NotificationSubscriber(String name, NotificationSubscriberArgs args, CustomResourceOptions options)
type: hsdp:NotificationSubscriber
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. NotificationSubscriberArgs
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. NotificationSubscriberArgs
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. NotificationSubscriberArgs
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. NotificationSubscriberArgs
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. NotificationSubscriberArgs
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 notificationSubscriberResource = new Hsdp.NotificationSubscriber("notificationSubscriberResource", new()
{
    ManagingOrganization = "string",
    ManagingOrganizationId = "string",
    SubscriberServiceBaseUrl = "string",
    SubscriberServiceInstanceName = "string",
    SubscriberServiceName = "string",
    SubscriberServicePathUrl = "string",
    Description = "string",
    NotificationSubscriberId = "string",
    Principal = new Hsdp.Inputs.NotificationSubscriberPrincipalArgs
    {
        Endpoint = "string",
        Environment = "string",
        Oauth2ClientId = "string",
        Oauth2Password = "string",
        Password = "string",
        Region = "string",
        ServiceId = "string",
        ServicePrivateKey = "string",
        UaaPassword = "string",
        UaaUsername = "string",
        Username = "string",
    },
    SoftDelete = false,
    SubscriberProductName = "string",
});
Copy
example, err := hsdp.NewNotificationSubscriber(ctx, "notificationSubscriberResource", &hsdp.NotificationSubscriberArgs{
ManagingOrganization: pulumi.String("string"),
ManagingOrganizationId: pulumi.String("string"),
SubscriberServiceBaseUrl: pulumi.String("string"),
SubscriberServiceInstanceName: pulumi.String("string"),
SubscriberServiceName: pulumi.String("string"),
SubscriberServicePathUrl: pulumi.String("string"),
Description: pulumi.String("string"),
NotificationSubscriberId: pulumi.String("string"),
Principal: &.NotificationSubscriberPrincipalArgs{
Endpoint: pulumi.String("string"),
Environment: pulumi.String("string"),
Oauth2ClientId: pulumi.String("string"),
Oauth2Password: pulumi.String("string"),
Password: pulumi.String("string"),
Region: pulumi.String("string"),
ServiceId: pulumi.String("string"),
ServicePrivateKey: pulumi.String("string"),
UaaPassword: pulumi.String("string"),
UaaUsername: pulumi.String("string"),
Username: pulumi.String("string"),
},
SoftDelete: pulumi.Bool(false),
SubscriberProductName: pulumi.String("string"),
})
Copy
var notificationSubscriberResource = new NotificationSubscriber("notificationSubscriberResource", NotificationSubscriberArgs.builder()
    .managingOrganization("string")
    .managingOrganizationId("string")
    .subscriberServiceBaseUrl("string")
    .subscriberServiceInstanceName("string")
    .subscriberServiceName("string")
    .subscriberServicePathUrl("string")
    .description("string")
    .notificationSubscriberId("string")
    .principal(NotificationSubscriberPrincipalArgs.builder()
        .endpoint("string")
        .environment("string")
        .oauth2ClientId("string")
        .oauth2Password("string")
        .password("string")
        .region("string")
        .serviceId("string")
        .servicePrivateKey("string")
        .uaaPassword("string")
        .uaaUsername("string")
        .username("string")
        .build())
    .softDelete(false)
    .subscriberProductName("string")
    .build());
Copy
notification_subscriber_resource = hsdp.NotificationSubscriber("notificationSubscriberResource",
    managing_organization="string",
    managing_organization_id="string",
    subscriber_service_base_url="string",
    subscriber_service_instance_name="string",
    subscriber_service_name="string",
    subscriber_service_path_url="string",
    description="string",
    notification_subscriber_id="string",
    principal={
        "endpoint": "string",
        "environment": "string",
        "oauth2_client_id": "string",
        "oauth2_password": "string",
        "password": "string",
        "region": "string",
        "service_id": "string",
        "service_private_key": "string",
        "uaa_password": "string",
        "uaa_username": "string",
        "username": "string",
    },
    soft_delete=False,
    subscriber_product_name="string")
Copy
const notificationSubscriberResource = new hsdp.NotificationSubscriber("notificationSubscriberResource", {
    managingOrganization: "string",
    managingOrganizationId: "string",
    subscriberServiceBaseUrl: "string",
    subscriberServiceInstanceName: "string",
    subscriberServiceName: "string",
    subscriberServicePathUrl: "string",
    description: "string",
    notificationSubscriberId: "string",
    principal: {
        endpoint: "string",
        environment: "string",
        oauth2ClientId: "string",
        oauth2Password: "string",
        password: "string",
        region: "string",
        serviceId: "string",
        servicePrivateKey: "string",
        uaaPassword: "string",
        uaaUsername: "string",
        username: "string",
    },
    softDelete: false,
    subscriberProductName: "string",
});
Copy
type: hsdp:NotificationSubscriber
properties:
    description: string
    managingOrganization: string
    managingOrganizationId: string
    notificationSubscriberId: string
    principal:
        endpoint: string
        environment: string
        oauth2ClientId: string
        oauth2Password: string
        password: string
        region: string
        serviceId: string
        servicePrivateKey: string
        uaaPassword: string
        uaaUsername: string
        username: string
    softDelete: false
    subscriberProductName: string
    subscriberServiceBaseUrl: string
    subscriberServiceInstanceName: string
    subscriberServiceName: string
    subscriberServicePathUrl: string
Copy

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

ManagingOrganization This property is required. string
The name of IAM organization or tenant
ManagingOrganizationId This property is required. string
The UUID of the IAM organization or tenant
SubscriberServiceBaseUrl This property is required. string
The base URL of the subscriber
SubscriberServiceInstanceName This property is required. string
The name of a service instance, used to differentiate multiple copies of the same service used in an organization
SubscriberServiceName This property is required. string
The name of the subscriber service
SubscriberServicePathUrl This property is required. string
The URL extension of the subscriber
Description string
Description of the subscriber application
NotificationSubscriberId string
The subscriber ID
Principal NotificationSubscriberPrincipal
The optional principal to use for this resource
SoftDelete bool
Soft delete resource in case the subscription is still pending. Default: false
SubscriberProductName string
The name of the product
ManagingOrganization This property is required. string
The name of IAM organization or tenant
ManagingOrganizationId This property is required. string
The UUID of the IAM organization or tenant
SubscriberServiceBaseUrl This property is required. string
The base URL of the subscriber
SubscriberServiceInstanceName This property is required. string
The name of a service instance, used to differentiate multiple copies of the same service used in an organization
SubscriberServiceName This property is required. string
The name of the subscriber service
SubscriberServicePathUrl This property is required. string
The URL extension of the subscriber
Description string
Description of the subscriber application
NotificationSubscriberId string
The subscriber ID
Principal NotificationSubscriberPrincipalArgs
The optional principal to use for this resource
SoftDelete bool
Soft delete resource in case the subscription is still pending. Default: false
SubscriberProductName string
The name of the product
managingOrganization This property is required. String
The name of IAM organization or tenant
managingOrganizationId This property is required. String
The UUID of the IAM organization or tenant
subscriberServiceBaseUrl This property is required. String
The base URL of the subscriber
subscriberServiceInstanceName This property is required. String
The name of a service instance, used to differentiate multiple copies of the same service used in an organization
subscriberServiceName This property is required. String
The name of the subscriber service
subscriberServicePathUrl This property is required. String
The URL extension of the subscriber
description String
Description of the subscriber application
notificationSubscriberId String
The subscriber ID
principal NotificationSubscriberPrincipal
The optional principal to use for this resource
softDelete Boolean
Soft delete resource in case the subscription is still pending. Default: false
subscriberProductName String
The name of the product
managingOrganization This property is required. string
The name of IAM organization or tenant
managingOrganizationId This property is required. string
The UUID of the IAM organization or tenant
subscriberServiceBaseUrl This property is required. string
The base URL of the subscriber
subscriberServiceInstanceName This property is required. string
The name of a service instance, used to differentiate multiple copies of the same service used in an organization
subscriberServiceName This property is required. string
The name of the subscriber service
subscriberServicePathUrl This property is required. string
The URL extension of the subscriber
description string
Description of the subscriber application
notificationSubscriberId string
The subscriber ID
principal NotificationSubscriberPrincipal
The optional principal to use for this resource
softDelete boolean
Soft delete resource in case the subscription is still pending. Default: false
subscriberProductName string
The name of the product
managing_organization This property is required. str
The name of IAM organization or tenant
managing_organization_id This property is required. str
The UUID of the IAM organization or tenant
subscriber_service_base_url This property is required. str
The base URL of the subscriber
subscriber_service_instance_name This property is required. str
The name of a service instance, used to differentiate multiple copies of the same service used in an organization
subscriber_service_name This property is required. str
The name of the subscriber service
subscriber_service_path_url This property is required. str
The URL extension of the subscriber
description str
Description of the subscriber application
notification_subscriber_id str
The subscriber ID
principal NotificationSubscriberPrincipalArgs
The optional principal to use for this resource
soft_delete bool
Soft delete resource in case the subscription is still pending. Default: false
subscriber_product_name str
The name of the product
managingOrganization This property is required. String
The name of IAM organization or tenant
managingOrganizationId This property is required. String
The UUID of the IAM organization or tenant
subscriberServiceBaseUrl This property is required. String
The base URL of the subscriber
subscriberServiceInstanceName This property is required. String
The name of a service instance, used to differentiate multiple copies of the same service used in an organization
subscriberServiceName This property is required. String
The name of the subscriber service
subscriberServicePathUrl This property is required. String
The URL extension of the subscriber
description String
Description of the subscriber application
notificationSubscriberId String
The subscriber ID
principal Property Map
The optional principal to use for this resource
softDelete Boolean
Soft delete resource in case the subscription is still pending. Default: false
subscriberProductName String
The name of the product

Outputs

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

Get an existing NotificationSubscriber 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?: NotificationSubscriberState, opts?: CustomResourceOptions): NotificationSubscriber
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        managing_organization: Optional[str] = None,
        managing_organization_id: Optional[str] = None,
        notification_subscriber_id: Optional[str] = None,
        principal: Optional[NotificationSubscriberPrincipalArgs] = None,
        soft_delete: Optional[bool] = None,
        subscriber_product_name: Optional[str] = None,
        subscriber_service_base_url: Optional[str] = None,
        subscriber_service_instance_name: Optional[str] = None,
        subscriber_service_name: Optional[str] = None,
        subscriber_service_path_url: Optional[str] = None) -> NotificationSubscriber
func GetNotificationSubscriber(ctx *Context, name string, id IDInput, state *NotificationSubscriberState, opts ...ResourceOption) (*NotificationSubscriber, error)
public static NotificationSubscriber Get(string name, Input<string> id, NotificationSubscriberState? state, CustomResourceOptions? opts = null)
public static NotificationSubscriber get(String name, Output<String> id, NotificationSubscriberState state, CustomResourceOptions options)
resources:  _:    type: hsdp:NotificationSubscriber    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:
Description string
Description of the subscriber application
ManagingOrganization string
The name of IAM organization or tenant
ManagingOrganizationId string
The UUID of the IAM organization or tenant
NotificationSubscriberId string
The subscriber ID
Principal NotificationSubscriberPrincipal
The optional principal to use for this resource
SoftDelete bool
Soft delete resource in case the subscription is still pending. Default: false
SubscriberProductName string
The name of the product
SubscriberServiceBaseUrl string
The base URL of the subscriber
SubscriberServiceInstanceName string
The name of a service instance, used to differentiate multiple copies of the same service used in an organization
SubscriberServiceName string
The name of the subscriber service
SubscriberServicePathUrl string
The URL extension of the subscriber
Description string
Description of the subscriber application
ManagingOrganization string
The name of IAM organization or tenant
ManagingOrganizationId string
The UUID of the IAM organization or tenant
NotificationSubscriberId string
The subscriber ID
Principal NotificationSubscriberPrincipalArgs
The optional principal to use for this resource
SoftDelete bool
Soft delete resource in case the subscription is still pending. Default: false
SubscriberProductName string
The name of the product
SubscriberServiceBaseUrl string
The base URL of the subscriber
SubscriberServiceInstanceName string
The name of a service instance, used to differentiate multiple copies of the same service used in an organization
SubscriberServiceName string
The name of the subscriber service
SubscriberServicePathUrl string
The URL extension of the subscriber
description String
Description of the subscriber application
managingOrganization String
The name of IAM organization or tenant
managingOrganizationId String
The UUID of the IAM organization or tenant
notificationSubscriberId String
The subscriber ID
principal NotificationSubscriberPrincipal
The optional principal to use for this resource
softDelete Boolean
Soft delete resource in case the subscription is still pending. Default: false
subscriberProductName String
The name of the product
subscriberServiceBaseUrl String
The base URL of the subscriber
subscriberServiceInstanceName String
The name of a service instance, used to differentiate multiple copies of the same service used in an organization
subscriberServiceName String
The name of the subscriber service
subscriberServicePathUrl String
The URL extension of the subscriber
description string
Description of the subscriber application
managingOrganization string
The name of IAM organization or tenant
managingOrganizationId string
The UUID of the IAM organization or tenant
notificationSubscriberId string
The subscriber ID
principal NotificationSubscriberPrincipal
The optional principal to use for this resource
softDelete boolean
Soft delete resource in case the subscription is still pending. Default: false
subscriberProductName string
The name of the product
subscriberServiceBaseUrl string
The base URL of the subscriber
subscriberServiceInstanceName string
The name of a service instance, used to differentiate multiple copies of the same service used in an organization
subscriberServiceName string
The name of the subscriber service
subscriberServicePathUrl string
The URL extension of the subscriber
description str
Description of the subscriber application
managing_organization str
The name of IAM organization or tenant
managing_organization_id str
The UUID of the IAM organization or tenant
notification_subscriber_id str
The subscriber ID
principal NotificationSubscriberPrincipalArgs
The optional principal to use for this resource
soft_delete bool
Soft delete resource in case the subscription is still pending. Default: false
subscriber_product_name str
The name of the product
subscriber_service_base_url str
The base URL of the subscriber
subscriber_service_instance_name str
The name of a service instance, used to differentiate multiple copies of the same service used in an organization
subscriber_service_name str
The name of the subscriber service
subscriber_service_path_url str
The URL extension of the subscriber
description String
Description of the subscriber application
managingOrganization String
The name of IAM organization or tenant
managingOrganizationId String
The UUID of the IAM organization or tenant
notificationSubscriberId String
The subscriber ID
principal Property Map
The optional principal to use for this resource
softDelete Boolean
Soft delete resource in case the subscription is still pending. Default: false
subscriberProductName String
The name of the product
subscriberServiceBaseUrl String
The base URL of the subscriber
subscriberServiceInstanceName String
The name of a service instance, used to differentiate multiple copies of the same service used in an organization
subscriberServiceName String
The name of the subscriber service
subscriberServicePathUrl String
The URL extension of the subscriber

Supporting Types

NotificationSubscriberPrincipal
, NotificationSubscriberPrincipalArgs

Endpoint string
The endpoint URL to use if applicable. When not set, the provider config is used
Environment string
Environment to use. When not set, the provider config is used
Oauth2ClientId string
Oauth2Password string
Password string
Region string
Region to use. When not set, the provider config is used
ServiceId string
The IAM service ID
ServicePrivateKey string
The IAM service private key to use
UaaPassword string
UaaUsername string
Username string
Endpoint string
The endpoint URL to use if applicable. When not set, the provider config is used
Environment string
Environment to use. When not set, the provider config is used
Oauth2ClientId string
Oauth2Password string
Password string
Region string
Region to use. When not set, the provider config is used
ServiceId string
The IAM service ID
ServicePrivateKey string
The IAM service private key to use
UaaPassword string
UaaUsername string
Username string
endpoint String
The endpoint URL to use if applicable. When not set, the provider config is used
environment String
Environment to use. When not set, the provider config is used
oauth2ClientId String
oauth2Password String
password String
region String
Region to use. When not set, the provider config is used
serviceId String
The IAM service ID
servicePrivateKey String
The IAM service private key to use
uaaPassword String
uaaUsername String
username String
endpoint string
The endpoint URL to use if applicable. When not set, the provider config is used
environment string
Environment to use. When not set, the provider config is used
oauth2ClientId string
oauth2Password string
password string
region string
Region to use. When not set, the provider config is used
serviceId string
The IAM service ID
servicePrivateKey string
The IAM service private key to use
uaaPassword string
uaaUsername string
username string
endpoint str
The endpoint URL to use if applicable. When not set, the provider config is used
environment str
Environment to use. When not set, the provider config is used
oauth2_client_id str
oauth2_password str
password str
region str
Region to use. When not set, the provider config is used
service_id str
The IAM service ID
service_private_key str
The IAM service private key to use
uaa_password str
uaa_username str
username str
endpoint String
The endpoint URL to use if applicable. When not set, the provider config is used
environment String
Environment to use. When not set, the provider config is used
oauth2ClientId String
oauth2Password String
password String
region String
Region to use. When not set, the provider config is used
serviceId String
The IAM service ID
servicePrivateKey String
The IAM service private key to use
uaaPassword String
uaaUsername String
username String

Import

ing

Importing a HSDP Notification producer is supported.

To learn more about importing existing cloud resources, see Importing resources.

Package Details

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