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",
});
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")
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
})
}
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",
});
});
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());
}
}
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
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 string
- The unique name of the resource.
- args NotificationSubscriberArgs
- 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 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 string
- The unique name of the resource.
- args NotificationSubscriberArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NotificationSubscriberArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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: &hsdp.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"),
})
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());
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")
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",
});
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
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:
- Managing
Organization string - The name of IAM organization or tenant
- Managing
Organization stringId - The UUID of the IAM organization or tenant
- Subscriber
Service stringBase Url - The base URL of the subscriber
- Subscriber
Service stringInstance Name - The name of a service instance, used to differentiate multiple copies of the same service used in an organization
- Subscriber
Service stringName - The name of the subscriber service
- Subscriber
Service stringPath Url - The URL extension of the subscriber
- Description string
- Description of the subscriber application
- Notification
Subscriber stringId - The subscriber ID
- Principal
Notification
Subscriber Principal - 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 stringName - The name of the product
- Managing
Organization string - The name of IAM organization or tenant
- Managing
Organization stringId - The UUID of the IAM organization or tenant
- Subscriber
Service stringBase Url - The base URL of the subscriber
- Subscriber
Service stringInstance Name - The name of a service instance, used to differentiate multiple copies of the same service used in an organization
- Subscriber
Service stringName - The name of the subscriber service
- Subscriber
Service stringPath Url - The URL extension of the subscriber
- Description string
- Description of the subscriber application
- Notification
Subscriber stringId - The subscriber ID
- Principal
Notification
Subscriber Principal Args - 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 stringName - The name of the product
- managing
Organization String - The name of IAM organization or tenant
- managing
Organization StringId - The UUID of the IAM organization or tenant
- subscriber
Service StringBase Url - The base URL of the subscriber
- subscriber
Service StringInstance Name - The name of a service instance, used to differentiate multiple copies of the same service used in an organization
- subscriber
Service StringName - The name of the subscriber service
- subscriber
Service StringPath Url - The URL extension of the subscriber
- description String
- Description of the subscriber application
- notification
Subscriber StringId - The subscriber ID
- principal
Notification
Subscriber Principal - The optional principal to use for this resource
- soft
Delete Boolean - Soft delete resource in case the subscription is still pending. Default:
false
- subscriber
Product StringName - The name of the product
- managing
Organization string - The name of IAM organization or tenant
- managing
Organization stringId - The UUID of the IAM organization or tenant
- subscriber
Service stringBase Url - The base URL of the subscriber
- subscriber
Service stringInstance Name - The name of a service instance, used to differentiate multiple copies of the same service used in an organization
- subscriber
Service stringName - The name of the subscriber service
- subscriber
Service stringPath Url - The URL extension of the subscriber
- description string
- Description of the subscriber application
- notification
Subscriber stringId - The subscriber ID
- principal
Notification
Subscriber Principal - The optional principal to use for this resource
- soft
Delete boolean - Soft delete resource in case the subscription is still pending. Default:
false
- subscriber
Product stringName - The name of the product
- managing_
organization str - The name of IAM organization or tenant
- managing_
organization_ strid - The UUID of the IAM organization or tenant
- subscriber_
service_ strbase_ url - The base URL of the subscriber
- subscriber_
service_ strinstance_ name - The name of a service instance, used to differentiate multiple copies of the same service used in an organization
- subscriber_
service_ strname - The name of the subscriber service
- subscriber_
service_ strpath_ url - The URL extension of the subscriber
- description str
- Description of the subscriber application
- notification_
subscriber_ strid - The subscriber ID
- principal
Notification
Subscriber Principal Args - 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_ strname - The name of the product
- managing
Organization String - The name of IAM organization or tenant
- managing
Organization StringId - The UUID of the IAM organization or tenant
- subscriber
Service StringBase Url - The base URL of the subscriber
- subscriber
Service StringInstance Name - The name of a service instance, used to differentiate multiple copies of the same service used in an organization
- subscriber
Service StringName - The name of the subscriber service
- subscriber
Service StringPath Url - The URL extension of the subscriber
- description String
- Description of the subscriber application
- notification
Subscriber StringId - The subscriber ID
- principal Property Map
- The optional principal to use for this resource
- soft
Delete Boolean - Soft delete resource in case the subscription is still pending. Default:
false
- subscriber
Product StringName - 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
- 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.
- Description string
- Description of the subscriber application
- Managing
Organization string - The name of IAM organization or tenant
- Managing
Organization stringId - The UUID of the IAM organization or tenant
- Notification
Subscriber stringId - The subscriber ID
- Principal
Notification
Subscriber Principal - 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 stringName - The name of the product
- Subscriber
Service stringBase Url - The base URL of the subscriber
- Subscriber
Service stringInstance Name - The name of a service instance, used to differentiate multiple copies of the same service used in an organization
- Subscriber
Service stringName - The name of the subscriber service
- Subscriber
Service stringPath Url - The URL extension of the subscriber
- Description string
- Description of the subscriber application
- Managing
Organization string - The name of IAM organization or tenant
- Managing
Organization stringId - The UUID of the IAM organization or tenant
- Notification
Subscriber stringId - The subscriber ID
- Principal
Notification
Subscriber Principal Args - 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 stringName - The name of the product
- Subscriber
Service stringBase Url - The base URL of the subscriber
- Subscriber
Service stringInstance Name - The name of a service instance, used to differentiate multiple copies of the same service used in an organization
- Subscriber
Service stringName - The name of the subscriber service
- Subscriber
Service stringPath Url - The URL extension of the subscriber
- description String
- Description of the subscriber application
- managing
Organization String - The name of IAM organization or tenant
- managing
Organization StringId - The UUID of the IAM organization or tenant
- notification
Subscriber StringId - The subscriber ID
- principal
Notification
Subscriber Principal - The optional principal to use for this resource
- soft
Delete Boolean - Soft delete resource in case the subscription is still pending. Default:
false
- subscriber
Product StringName - The name of the product
- subscriber
Service StringBase Url - The base URL of the subscriber
- subscriber
Service StringInstance Name - The name of a service instance, used to differentiate multiple copies of the same service used in an organization
- subscriber
Service StringName - The name of the subscriber service
- subscriber
Service StringPath Url - The URL extension of the subscriber
- description string
- Description of the subscriber application
- managing
Organization string - The name of IAM organization or tenant
- managing
Organization stringId - The UUID of the IAM organization or tenant
- notification
Subscriber stringId - The subscriber ID
- principal
Notification
Subscriber Principal - The optional principal to use for this resource
- soft
Delete boolean - Soft delete resource in case the subscription is still pending. Default:
false
- subscriber
Product stringName - The name of the product
- subscriber
Service stringBase Url - The base URL of the subscriber
- subscriber
Service stringInstance Name - The name of a service instance, used to differentiate multiple copies of the same service used in an organization
- subscriber
Service stringName - The name of the subscriber service
- subscriber
Service stringPath Url - 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_ strid - The UUID of the IAM organization or tenant
- notification_
subscriber_ strid - The subscriber ID
- principal
Notification
Subscriber Principal Args - 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_ strname - The name of the product
- subscriber_
service_ strbase_ url - The base URL of the subscriber
- subscriber_
service_ strinstance_ name - The name of a service instance, used to differentiate multiple copies of the same service used in an organization
- subscriber_
service_ strname - The name of the subscriber service
- subscriber_
service_ strpath_ url - The URL extension of the subscriber
- description String
- Description of the subscriber application
- managing
Organization String - The name of IAM organization or tenant
- managing
Organization StringId - The UUID of the IAM organization or tenant
- notification
Subscriber StringId - The subscriber ID
- principal Property Map
- The optional principal to use for this resource
- soft
Delete Boolean - Soft delete resource in case the subscription is still pending. Default:
false
- subscriber
Product StringName - The name of the product
- subscriber
Service StringBase Url - The base URL of the subscriber
- subscriber
Service StringInstance Name - The name of a service instance, used to differentiate multiple copies of the same service used in an organization
- subscriber
Service StringName - The name of the subscriber service
- subscriber
Service StringPath Url - 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
- Oauth2Client
Id string - Oauth2Password string
- Password string
- Region string
- Region to use. When not set, the provider config is used
- Service
Id string - The IAM service ID
- Service
Private stringKey - The IAM service private key to use
- Uaa
Password string - Uaa
Username 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
- Oauth2Client
Id string - Oauth2Password string
- Password string
- Region string
- Region to use. When not set, the provider config is used
- Service
Id string - The IAM service ID
- Service
Private stringKey - The IAM service private key to use
- Uaa
Password string - Uaa
Username 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
- oauth2Client
Id String - oauth2Password String
- password String
- region String
- Region to use. When not set, the provider config is used
- service
Id String - The IAM service ID
- service
Private StringKey - The IAM service private key to use
- uaa
Password String - uaa
Username 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
- oauth2Client
Id string - oauth2Password string
- password string
- region string
- Region to use. When not set, the provider config is used
- service
Id string - The IAM service ID
- service
Private stringKey - The IAM service private key to use
- uaa
Password string - uaa
Username 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_ strid - 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_ strkey - 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
- oauth2Client
Id String - oauth2Password String
- password String
- region String
- Region to use. When not set, the provider config is used
- service
Id String - The IAM service ID
- service
Private StringKey - The IAM service private key to use
- uaa
Password String - uaa
Username 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.