ibm.EnDestinationSafari
Explore with Pulumi AI
Create, update, or delete Safari destination by using IBM Cloud™ Event Notifications.
Example Usage
Create EnDestinationSafari Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EnDestinationSafari(name: string, args: EnDestinationSafariArgs, opts?: CustomResourceOptions);
@overload
def EnDestinationSafari(resource_name: str,
args: EnDestinationSafariArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EnDestinationSafari(resource_name: str,
opts: Optional[ResourceOptions] = None,
certificate: Optional[str] = None,
type: Optional[str] = None,
instance_guid: Optional[str] = None,
icon16x162x: Optional[str] = None,
icon16x16_content_type: Optional[str] = None,
icon128x128: Optional[str] = None,
icon128x1282x: Optional[str] = None,
icon128x1282x_content_type: Optional[str] = None,
icon128x128_content_type: Optional[str] = None,
icon16x16: Optional[str] = None,
description: Optional[str] = None,
icon16x162x_content_type: Optional[str] = None,
en_destination_safari_id: Optional[str] = None,
icon32x32: Optional[str] = None,
icon32x322x: Optional[str] = None,
icon32x322x_content_type: Optional[str] = None,
icon32x32_content_type: Optional[str] = None,
config: Optional[EnDestinationSafariConfigArgs] = None,
name: Optional[str] = None,
collect_failed_events: Optional[bool] = None)
func NewEnDestinationSafari(ctx *Context, name string, args EnDestinationSafariArgs, opts ...ResourceOption) (*EnDestinationSafari, error)
public EnDestinationSafari(string name, EnDestinationSafariArgs args, CustomResourceOptions? opts = null)
public EnDestinationSafari(String name, EnDestinationSafariArgs args)
public EnDestinationSafari(String name, EnDestinationSafariArgs args, CustomResourceOptions options)
type: ibm:EnDestinationSafari
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 EnDestinationSafariArgs
- 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 EnDestinationSafariArgs
- 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 EnDestinationSafariArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EnDestinationSafariArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EnDestinationSafariArgs
- 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 enDestinationSafariResource = new Ibm.EnDestinationSafari("enDestinationSafariResource", new()
{
Certificate = "string",
Type = "string",
InstanceGuid = "string",
Icon16x162x = "string",
Icon16x16ContentType = "string",
Icon128x128 = "string",
Icon128x1282x = "string",
Icon128x1282xContentType = "string",
Icon128x128ContentType = "string",
Icon16x16 = "string",
Description = "string",
Icon16x162xContentType = "string",
EnDestinationSafariId = "string",
Icon32x32 = "string",
Icon32x322x = "string",
Icon32x322xContentType = "string",
Icon32x32ContentType = "string",
Config = new Ibm.Inputs.EnDestinationSafariConfigArgs
{
Params = new Ibm.Inputs.EnDestinationSafariConfigParamsArgs
{
CertType = "string",
Password = "string",
PreProd = false,
UrlFormatString = "string",
WebsiteName = "string",
WebsitePushId = "string",
WebsiteUrl = "string",
},
},
Name = "string",
CollectFailedEvents = false,
});
example, err := ibm.NewEnDestinationSafari(ctx, "enDestinationSafariResource", &ibm.EnDestinationSafariArgs{
Certificate: pulumi.String("string"),
Type: pulumi.String("string"),
InstanceGuid: pulumi.String("string"),
Icon16x162x: pulumi.String("string"),
Icon16x16ContentType: pulumi.String("string"),
Icon128x128: pulumi.String("string"),
Icon128x1282x: pulumi.String("string"),
Icon128x1282xContentType: pulumi.String("string"),
Icon128x128ContentType: pulumi.String("string"),
Icon16x16: pulumi.String("string"),
Description: pulumi.String("string"),
Icon16x162xContentType: pulumi.String("string"),
EnDestinationSafariId: pulumi.String("string"),
Icon32x32: pulumi.String("string"),
Icon32x322x: pulumi.String("string"),
Icon32x322xContentType: pulumi.String("string"),
Icon32x32ContentType: pulumi.String("string"),
Config: &ibm.EnDestinationSafariConfigArgs{
Params: &ibm.EnDestinationSafariConfigParamsArgs{
CertType: pulumi.String("string"),
Password: pulumi.String("string"),
PreProd: pulumi.Bool(false),
UrlFormatString: pulumi.String("string"),
WebsiteName: pulumi.String("string"),
WebsitePushId: pulumi.String("string"),
WebsiteUrl: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
CollectFailedEvents: pulumi.Bool(false),
})
var enDestinationSafariResource = new EnDestinationSafari("enDestinationSafariResource", EnDestinationSafariArgs.builder()
.certificate("string")
.type("string")
.instanceGuid("string")
.icon16x162x("string")
.icon16x16ContentType("string")
.icon128x128("string")
.icon128x1282x("string")
.icon128x1282xContentType("string")
.icon128x128ContentType("string")
.icon16x16("string")
.description("string")
.icon16x162xContentType("string")
.enDestinationSafariId("string")
.icon32x32("string")
.icon32x322x("string")
.icon32x322xContentType("string")
.icon32x32ContentType("string")
.config(EnDestinationSafariConfigArgs.builder()
.params(EnDestinationSafariConfigParamsArgs.builder()
.certType("string")
.password("string")
.preProd(false)
.urlFormatString("string")
.websiteName("string")
.websitePushId("string")
.websiteUrl("string")
.build())
.build())
.name("string")
.collectFailedEvents(false)
.build());
en_destination_safari_resource = ibm.EnDestinationSafari("enDestinationSafariResource",
certificate="string",
type="string",
instance_guid="string",
icon16x162x="string",
icon16x16_content_type="string",
icon128x128="string",
icon128x1282x="string",
icon128x1282x_content_type="string",
icon128x128_content_type="string",
icon16x16="string",
description="string",
icon16x162x_content_type="string",
en_destination_safari_id="string",
icon32x32="string",
icon32x322x="string",
icon32x322x_content_type="string",
icon32x32_content_type="string",
config={
"params": {
"cert_type": "string",
"password": "string",
"pre_prod": False,
"url_format_string": "string",
"website_name": "string",
"website_push_id": "string",
"website_url": "string",
},
},
name="string",
collect_failed_events=False)
const enDestinationSafariResource = new ibm.EnDestinationSafari("enDestinationSafariResource", {
certificate: "string",
type: "string",
instanceGuid: "string",
icon16x162x: "string",
icon16x16ContentType: "string",
icon128x128: "string",
icon128x1282x: "string",
icon128x1282xContentType: "string",
icon128x128ContentType: "string",
icon16x16: "string",
description: "string",
icon16x162xContentType: "string",
enDestinationSafariId: "string",
icon32x32: "string",
icon32x322x: "string",
icon32x322xContentType: "string",
icon32x32ContentType: "string",
config: {
params: {
certType: "string",
password: "string",
preProd: false,
urlFormatString: "string",
websiteName: "string",
websitePushId: "string",
websiteUrl: "string",
},
},
name: "string",
collectFailedEvents: false,
});
type: ibm:EnDestinationSafari
properties:
certificate: string
collectFailedEvents: false
config:
params:
certType: string
password: string
preProd: false
urlFormatString: string
websiteName: string
websitePushId: string
websiteUrl: string
description: string
enDestinationSafariId: string
icon16x16: string
icon16x16ContentType: string
icon16x162x: string
icon16x162xContentType: string
icon32x32: string
icon32x32ContentType: string
icon32x322x: string
icon32x322xContentType: string
icon128x128: string
icon128x128ContentType: string
icon128x1282x: string
icon128x1282xContentType: string
instanceGuid: string
name: string
type: string
EnDestinationSafari 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 EnDestinationSafari resource accepts the following input properties:
- Certificate string
- Certificate file. The file type allowed is .p8 and .p12
- Instance
Guid string - Unique identifier for IBM Cloud Event Notifications instance.
- Type string
- push_safari.
- Collect
Failed boolEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- Config
En
Destination Safari Config Payload describing a destination configuration.
Nested scheme for config:
- Description string
- The Destination description.
- En
Destination stringSafari Id - (String) The unique identifier of the
safari_en_destination
. - Icon128x128 string
- icon file of dimension 128x128
- Icon128x1282x string
- icon file of dimension 128x128x2x
- Icon128x1282x
Content stringType - The extension of icon image of 128x128x2x dimension. Required in case of passing icon file.
- Icon128x128Content
Type string - The extension of icon image of 128x128 dimension. Required in case of passing icon file.
- Icon16x16 string
- icon file of dimension 16x16
- Icon16x162x string
- icon file of dimension 16x16x2x
- Icon16x162x
Content stringType - The extension of icon image of 16x16x2x dimension. Required in case of passing icon file.
- Icon16x16Content
Type string - The extension of icon image of 16x16 dimension. Required in case of passing icon file.
- Icon32x32 string
- icon file of dimension 32x32
- Icon32x322x string
- icon file of dimension 32x32x2x
- Icon32x322x
Content stringType - The extension of icon image of 32x32x2x dimension. Required in case of passing icon file.
- Icon32x32Content
Type string - The extension of icon image of 32x32 dimension. Required in case of passing icon file.
- Name string
- The Destintion name.
- Certificate string
- Certificate file. The file type allowed is .p8 and .p12
- Instance
Guid string - Unique identifier for IBM Cloud Event Notifications instance.
- Type string
- push_safari.
- Collect
Failed boolEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- Config
En
Destination Safari Config Args Payload describing a destination configuration.
Nested scheme for config:
- Description string
- The Destination description.
- En
Destination stringSafari Id - (String) The unique identifier of the
safari_en_destination
. - Icon128x128 string
- icon file of dimension 128x128
- Icon128x1282x string
- icon file of dimension 128x128x2x
- Icon128x1282x
Content stringType - The extension of icon image of 128x128x2x dimension. Required in case of passing icon file.
- Icon128x128Content
Type string - The extension of icon image of 128x128 dimension. Required in case of passing icon file.
- Icon16x16 string
- icon file of dimension 16x16
- Icon16x162x string
- icon file of dimension 16x16x2x
- Icon16x162x
Content stringType - The extension of icon image of 16x16x2x dimension. Required in case of passing icon file.
- Icon16x16Content
Type string - The extension of icon image of 16x16 dimension. Required in case of passing icon file.
- Icon32x32 string
- icon file of dimension 32x32
- Icon32x322x string
- icon file of dimension 32x32x2x
- Icon32x322x
Content stringType - The extension of icon image of 32x32x2x dimension. Required in case of passing icon file.
- Icon32x32Content
Type string - The extension of icon image of 32x32 dimension. Required in case of passing icon file.
- Name string
- The Destintion name.
- certificate String
- Certificate file. The file type allowed is .p8 and .p12
- instance
Guid String - Unique identifier for IBM Cloud Event Notifications instance.
- type String
- push_safari.
- collect
Failed BooleanEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- config
En
Destination Safari Config Payload describing a destination configuration.
Nested scheme for config:
- description String
- The Destination description.
- en
Destination StringSafari Id - (String) The unique identifier of the
safari_en_destination
. - icon128x128 String
- icon file of dimension 128x128
- icon128x1282x String
- icon file of dimension 128x128x2x
- icon128x1282x
Content StringType - The extension of icon image of 128x128x2x dimension. Required in case of passing icon file.
- icon128x128Content
Type String - The extension of icon image of 128x128 dimension. Required in case of passing icon file.
- icon16x16 String
- icon file of dimension 16x16
- icon16x162x String
- icon file of dimension 16x16x2x
- icon16x162x
Content StringType - The extension of icon image of 16x16x2x dimension. Required in case of passing icon file.
- icon16x16Content
Type String - The extension of icon image of 16x16 dimension. Required in case of passing icon file.
- icon32x32 String
- icon file of dimension 32x32
- icon32x322x String
- icon file of dimension 32x32x2x
- icon32x322x
Content StringType - The extension of icon image of 32x32x2x dimension. Required in case of passing icon file.
- icon32x32Content
Type String - The extension of icon image of 32x32 dimension. Required in case of passing icon file.
- name String
- The Destintion name.
- certificate string
- Certificate file. The file type allowed is .p8 and .p12
- instance
Guid string - Unique identifier for IBM Cloud Event Notifications instance.
- type string
- push_safari.
- collect
Failed booleanEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- config
En
Destination Safari Config Payload describing a destination configuration.
Nested scheme for config:
- description string
- The Destination description.
- en
Destination stringSafari Id - (String) The unique identifier of the
safari_en_destination
. - icon128x128 string
- icon file of dimension 128x128
- icon128x1282x string
- icon file of dimension 128x128x2x
- icon128x1282x
Content stringType - The extension of icon image of 128x128x2x dimension. Required in case of passing icon file.
- icon128x128Content
Type string - The extension of icon image of 128x128 dimension. Required in case of passing icon file.
- icon16x16 string
- icon file of dimension 16x16
- icon16x162x string
- icon file of dimension 16x16x2x
- icon16x162x
Content stringType - The extension of icon image of 16x16x2x dimension. Required in case of passing icon file.
- icon16x16Content
Type string - The extension of icon image of 16x16 dimension. Required in case of passing icon file.
- icon32x32 string
- icon file of dimension 32x32
- icon32x322x string
- icon file of dimension 32x32x2x
- icon32x322x
Content stringType - The extension of icon image of 32x32x2x dimension. Required in case of passing icon file.
- icon32x32Content
Type string - The extension of icon image of 32x32 dimension. Required in case of passing icon file.
- name string
- The Destintion name.
- certificate str
- Certificate file. The file type allowed is .p8 and .p12
- instance_
guid str - Unique identifier for IBM Cloud Event Notifications instance.
- type str
- push_safari.
- collect_
failed_ boolevents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- config
En
Destination Safari Config Args Payload describing a destination configuration.
Nested scheme for config:
- description str
- The Destination description.
- en_
destination_ strsafari_ id - (String) The unique identifier of the
safari_en_destination
. - icon128x128 str
- icon file of dimension 128x128
- icon128x1282x str
- icon file of dimension 128x128x2x
- icon128x1282x_
content_ strtype - The extension of icon image of 128x128x2x dimension. Required in case of passing icon file.
- icon128x128_
content_ strtype - The extension of icon image of 128x128 dimension. Required in case of passing icon file.
- icon16x16 str
- icon file of dimension 16x16
- icon16x162x str
- icon file of dimension 16x16x2x
- icon16x162x_
content_ strtype - The extension of icon image of 16x16x2x dimension. Required in case of passing icon file.
- icon16x16_
content_ strtype - The extension of icon image of 16x16 dimension. Required in case of passing icon file.
- icon32x32 str
- icon file of dimension 32x32
- icon32x322x str
- icon file of dimension 32x32x2x
- icon32x322x_
content_ strtype - The extension of icon image of 32x32x2x dimension. Required in case of passing icon file.
- icon32x32_
content_ strtype - The extension of icon image of 32x32 dimension. Required in case of passing icon file.
- name str
- The Destintion name.
- certificate String
- Certificate file. The file type allowed is .p8 and .p12
- instance
Guid String - Unique identifier for IBM Cloud Event Notifications instance.
- type String
- push_safari.
- collect
Failed BooleanEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- config Property Map
Payload describing a destination configuration.
Nested scheme for config:
- description String
- The Destination description.
- en
Destination StringSafari Id - (String) The unique identifier of the
safari_en_destination
. - icon128x128 String
- icon file of dimension 128x128
- icon128x1282x String
- icon file of dimension 128x128x2x
- icon128x1282x
Content StringType - The extension of icon image of 128x128x2x dimension. Required in case of passing icon file.
- icon128x128Content
Type String - The extension of icon image of 128x128 dimension. Required in case of passing icon file.
- icon16x16 String
- icon file of dimension 16x16
- icon16x162x String
- icon file of dimension 16x16x2x
- icon16x162x
Content StringType - The extension of icon image of 16x16x2x dimension. Required in case of passing icon file.
- icon16x16Content
Type String - The extension of icon image of 16x16 dimension. Required in case of passing icon file.
- icon32x32 String
- icon file of dimension 32x32
- icon32x322x String
- icon file of dimension 32x32x2x
- icon32x322x
Content StringType - The extension of icon image of 32x32x2x dimension. Required in case of passing icon file.
- icon32x32Content
Type String - The extension of icon image of 32x32 dimension. Required in case of passing icon file.
- name String
- The Destintion name.
Outputs
All input properties are implicitly available as output properties. Additionally, the EnDestinationSafari resource produces the following output properties:
- Destination
Id string - (String) The unique identifier of the created destination.
- Id string
- The provider-assigned unique ID for this managed resource.
- Subscription
Count double - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0
.
- Constraints: The minimum value is
- Subscription
Names List<string> - (List) List of subscriptions.
- Updated
At string - (String) Last updated time.
- Destination
Id string - (String) The unique identifier of the created destination.
- Id string
- The provider-assigned unique ID for this managed resource.
- Subscription
Count float64 - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0
.
- Constraints: The minimum value is
- Subscription
Names []string - (List) List of subscriptions.
- Updated
At string - (String) Last updated time.
- destination
Id String - (String) The unique identifier of the created destination.
- id String
- The provider-assigned unique ID for this managed resource.
- subscription
Count Double - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0
.
- Constraints: The minimum value is
- subscription
Names List<String> - (List) List of subscriptions.
- updated
At String - (String) Last updated time.
- destination
Id string - (String) The unique identifier of the created destination.
- id string
- The provider-assigned unique ID for this managed resource.
- subscription
Count number - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0
.
- Constraints: The minimum value is
- subscription
Names string[] - (List) List of subscriptions.
- updated
At string - (String) Last updated time.
- destination_
id str - (String) The unique identifier of the created destination.
- id str
- The provider-assigned unique ID for this managed resource.
- subscription_
count float - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0
.
- Constraints: The minimum value is
- subscription_
names Sequence[str] - (List) List of subscriptions.
- updated_
at str - (String) Last updated time.
- destination
Id String - (String) The unique identifier of the created destination.
- id String
- The provider-assigned unique ID for this managed resource.
- subscription
Count Number - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0
.
- Constraints: The minimum value is
- subscription
Names List<String> - (List) List of subscriptions.
- updated
At String - (String) Last updated time.
Look up Existing EnDestinationSafari Resource
Get an existing EnDestinationSafari 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?: EnDestinationSafariState, opts?: CustomResourceOptions): EnDestinationSafari
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
certificate: Optional[str] = None,
collect_failed_events: Optional[bool] = None,
config: Optional[EnDestinationSafariConfigArgs] = None,
description: Optional[str] = None,
destination_id: Optional[str] = None,
en_destination_safari_id: Optional[str] = None,
icon128x128: Optional[str] = None,
icon128x1282x: Optional[str] = None,
icon128x1282x_content_type: Optional[str] = None,
icon128x128_content_type: Optional[str] = None,
icon16x16: Optional[str] = None,
icon16x162x: Optional[str] = None,
icon16x162x_content_type: Optional[str] = None,
icon16x16_content_type: Optional[str] = None,
icon32x32: Optional[str] = None,
icon32x322x: Optional[str] = None,
icon32x322x_content_type: Optional[str] = None,
icon32x32_content_type: Optional[str] = None,
instance_guid: Optional[str] = None,
name: Optional[str] = None,
subscription_count: Optional[float] = None,
subscription_names: Optional[Sequence[str]] = None,
type: Optional[str] = None,
updated_at: Optional[str] = None) -> EnDestinationSafari
func GetEnDestinationSafari(ctx *Context, name string, id IDInput, state *EnDestinationSafariState, opts ...ResourceOption) (*EnDestinationSafari, error)
public static EnDestinationSafari Get(string name, Input<string> id, EnDestinationSafariState? state, CustomResourceOptions? opts = null)
public static EnDestinationSafari get(String name, Output<String> id, EnDestinationSafariState state, CustomResourceOptions options)
resources: _: type: ibm:EnDestinationSafari 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.
- Certificate string
- Certificate file. The file type allowed is .p8 and .p12
- Collect
Failed boolEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- Config
En
Destination Safari Config Payload describing a destination configuration.
Nested scheme for config:
- Description string
- The Destination description.
- Destination
Id string - (String) The unique identifier of the created destination.
- En
Destination stringSafari Id - (String) The unique identifier of the
safari_en_destination
. - Icon128x128 string
- icon file of dimension 128x128
- Icon128x1282x string
- icon file of dimension 128x128x2x
- Icon128x1282x
Content stringType - The extension of icon image of 128x128x2x dimension. Required in case of passing icon file.
- Icon128x128Content
Type string - The extension of icon image of 128x128 dimension. Required in case of passing icon file.
- Icon16x16 string
- icon file of dimension 16x16
- Icon16x162x string
- icon file of dimension 16x16x2x
- Icon16x162x
Content stringType - The extension of icon image of 16x16x2x dimension. Required in case of passing icon file.
- Icon16x16Content
Type string - The extension of icon image of 16x16 dimension. Required in case of passing icon file.
- Icon32x32 string
- icon file of dimension 32x32
- Icon32x322x string
- icon file of dimension 32x32x2x
- Icon32x322x
Content stringType - The extension of icon image of 32x32x2x dimension. Required in case of passing icon file.
- Icon32x32Content
Type string - The extension of icon image of 32x32 dimension. Required in case of passing icon file.
- Instance
Guid string - Unique identifier for IBM Cloud Event Notifications instance.
- Name string
- The Destintion name.
- Subscription
Count double - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0
.
- Constraints: The minimum value is
- Subscription
Names List<string> - (List) List of subscriptions.
- Type string
- push_safari.
- Updated
At string - (String) Last updated time.
- Certificate string
- Certificate file. The file type allowed is .p8 and .p12
- Collect
Failed boolEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- Config
En
Destination Safari Config Args Payload describing a destination configuration.
Nested scheme for config:
- Description string
- The Destination description.
- Destination
Id string - (String) The unique identifier of the created destination.
- En
Destination stringSafari Id - (String) The unique identifier of the
safari_en_destination
. - Icon128x128 string
- icon file of dimension 128x128
- Icon128x1282x string
- icon file of dimension 128x128x2x
- Icon128x1282x
Content stringType - The extension of icon image of 128x128x2x dimension. Required in case of passing icon file.
- Icon128x128Content
Type string - The extension of icon image of 128x128 dimension. Required in case of passing icon file.
- Icon16x16 string
- icon file of dimension 16x16
- Icon16x162x string
- icon file of dimension 16x16x2x
- Icon16x162x
Content stringType - The extension of icon image of 16x16x2x dimension. Required in case of passing icon file.
- Icon16x16Content
Type string - The extension of icon image of 16x16 dimension. Required in case of passing icon file.
- Icon32x32 string
- icon file of dimension 32x32
- Icon32x322x string
- icon file of dimension 32x32x2x
- Icon32x322x
Content stringType - The extension of icon image of 32x32x2x dimension. Required in case of passing icon file.
- Icon32x32Content
Type string - The extension of icon image of 32x32 dimension. Required in case of passing icon file.
- Instance
Guid string - Unique identifier for IBM Cloud Event Notifications instance.
- Name string
- The Destintion name.
- Subscription
Count float64 - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0
.
- Constraints: The minimum value is
- Subscription
Names []string - (List) List of subscriptions.
- Type string
- push_safari.
- Updated
At string - (String) Last updated time.
- certificate String
- Certificate file. The file type allowed is .p8 and .p12
- collect
Failed BooleanEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- config
En
Destination Safari Config Payload describing a destination configuration.
Nested scheme for config:
- description String
- The Destination description.
- destination
Id String - (String) The unique identifier of the created destination.
- en
Destination StringSafari Id - (String) The unique identifier of the
safari_en_destination
. - icon128x128 String
- icon file of dimension 128x128
- icon128x1282x String
- icon file of dimension 128x128x2x
- icon128x1282x
Content StringType - The extension of icon image of 128x128x2x dimension. Required in case of passing icon file.
- icon128x128Content
Type String - The extension of icon image of 128x128 dimension. Required in case of passing icon file.
- icon16x16 String
- icon file of dimension 16x16
- icon16x162x String
- icon file of dimension 16x16x2x
- icon16x162x
Content StringType - The extension of icon image of 16x16x2x dimension. Required in case of passing icon file.
- icon16x16Content
Type String - The extension of icon image of 16x16 dimension. Required in case of passing icon file.
- icon32x32 String
- icon file of dimension 32x32
- icon32x322x String
- icon file of dimension 32x32x2x
- icon32x322x
Content StringType - The extension of icon image of 32x32x2x dimension. Required in case of passing icon file.
- icon32x32Content
Type String - The extension of icon image of 32x32 dimension. Required in case of passing icon file.
- instance
Guid String - Unique identifier for IBM Cloud Event Notifications instance.
- name String
- The Destintion name.
- subscription
Count Double - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0
.
- Constraints: The minimum value is
- subscription
Names List<String> - (List) List of subscriptions.
- type String
- push_safari.
- updated
At String - (String) Last updated time.
- certificate string
- Certificate file. The file type allowed is .p8 and .p12
- collect
Failed booleanEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- config
En
Destination Safari Config Payload describing a destination configuration.
Nested scheme for config:
- description string
- The Destination description.
- destination
Id string - (String) The unique identifier of the created destination.
- en
Destination stringSafari Id - (String) The unique identifier of the
safari_en_destination
. - icon128x128 string
- icon file of dimension 128x128
- icon128x1282x string
- icon file of dimension 128x128x2x
- icon128x1282x
Content stringType - The extension of icon image of 128x128x2x dimension. Required in case of passing icon file.
- icon128x128Content
Type string - The extension of icon image of 128x128 dimension. Required in case of passing icon file.
- icon16x16 string
- icon file of dimension 16x16
- icon16x162x string
- icon file of dimension 16x16x2x
- icon16x162x
Content stringType - The extension of icon image of 16x16x2x dimension. Required in case of passing icon file.
- icon16x16Content
Type string - The extension of icon image of 16x16 dimension. Required in case of passing icon file.
- icon32x32 string
- icon file of dimension 32x32
- icon32x322x string
- icon file of dimension 32x32x2x
- icon32x322x
Content stringType - The extension of icon image of 32x32x2x dimension. Required in case of passing icon file.
- icon32x32Content
Type string - The extension of icon image of 32x32 dimension. Required in case of passing icon file.
- instance
Guid string - Unique identifier for IBM Cloud Event Notifications instance.
- name string
- The Destintion name.
- subscription
Count number - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0
.
- Constraints: The minimum value is
- subscription
Names string[] - (List) List of subscriptions.
- type string
- push_safari.
- updated
At string - (String) Last updated time.
- certificate str
- Certificate file. The file type allowed is .p8 and .p12
- collect_
failed_ boolevents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- config
En
Destination Safari Config Args Payload describing a destination configuration.
Nested scheme for config:
- description str
- The Destination description.
- destination_
id str - (String) The unique identifier of the created destination.
- en_
destination_ strsafari_ id - (String) The unique identifier of the
safari_en_destination
. - icon128x128 str
- icon file of dimension 128x128
- icon128x1282x str
- icon file of dimension 128x128x2x
- icon128x1282x_
content_ strtype - The extension of icon image of 128x128x2x dimension. Required in case of passing icon file.
- icon128x128_
content_ strtype - The extension of icon image of 128x128 dimension. Required in case of passing icon file.
- icon16x16 str
- icon file of dimension 16x16
- icon16x162x str
- icon file of dimension 16x16x2x
- icon16x162x_
content_ strtype - The extension of icon image of 16x16x2x dimension. Required in case of passing icon file.
- icon16x16_
content_ strtype - The extension of icon image of 16x16 dimension. Required in case of passing icon file.
- icon32x32 str
- icon file of dimension 32x32
- icon32x322x str
- icon file of dimension 32x32x2x
- icon32x322x_
content_ strtype - The extension of icon image of 32x32x2x dimension. Required in case of passing icon file.
- icon32x32_
content_ strtype - The extension of icon image of 32x32 dimension. Required in case of passing icon file.
- instance_
guid str - Unique identifier for IBM Cloud Event Notifications instance.
- name str
- The Destintion name.
- subscription_
count float - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0
.
- Constraints: The minimum value is
- subscription_
names Sequence[str] - (List) List of subscriptions.
- type str
- push_safari.
- updated_
at str - (String) Last updated time.
- certificate String
- Certificate file. The file type allowed is .p8 and .p12
- collect
Failed BooleanEvents - Toggle switch to enable collect failed event in Cloud Object Storage bucket.
- config Property Map
Payload describing a destination configuration.
Nested scheme for config:
- description String
- The Destination description.
- destination
Id String - (String) The unique identifier of the created destination.
- en
Destination StringSafari Id - (String) The unique identifier of the
safari_en_destination
. - icon128x128 String
- icon file of dimension 128x128
- icon128x1282x String
- icon file of dimension 128x128x2x
- icon128x1282x
Content StringType - The extension of icon image of 128x128x2x dimension. Required in case of passing icon file.
- icon128x128Content
Type String - The extension of icon image of 128x128 dimension. Required in case of passing icon file.
- icon16x16 String
- icon file of dimension 16x16
- icon16x162x String
- icon file of dimension 16x16x2x
- icon16x162x
Content StringType - The extension of icon image of 16x16x2x dimension. Required in case of passing icon file.
- icon16x16Content
Type String - The extension of icon image of 16x16 dimension. Required in case of passing icon file.
- icon32x32 String
- icon file of dimension 32x32
- icon32x322x String
- icon file of dimension 32x32x2x
- icon32x322x
Content StringType - The extension of icon image of 32x32x2x dimension. Required in case of passing icon file.
- icon32x32Content
Type String - The extension of icon image of 32x32 dimension. Required in case of passing icon file.
- instance
Guid String - Unique identifier for IBM Cloud Event Notifications instance.
- name String
- The Destintion name.
- subscription
Count Number - (Integer) Number of subscriptions.
- Constraints: The minimum value is
0
.
- Constraints: The minimum value is
- subscription
Names List<String> - (List) List of subscriptions.
- type String
- push_safari.
- updated
At String - (String) Last updated time.
Supporting Types
EnDestinationSafariConfig, EnDestinationSafariConfigArgs
- Params
En
Destination Safari Config Params - Nested scheme for params:
- Params
En
Destination Safari Config Params - Nested scheme for params:
- params
En
Destination Safari Config Params - Nested scheme for params:
- params
En
Destination Safari Config Params - Nested scheme for params:
- params
En
Destination Safari Config Params - Nested scheme for params:
- params Property Map
- Nested scheme for params:
EnDestinationSafariConfigParams, EnDestinationSafariConfigParamsArgs
- Cert
Type string - The Certificate Type for IOS, the values are p8/p12.
- Password string
- The Password for APNS Certificate in case of P12 certificate
- Pre
Prod bool - The flag to enable destination as pre-prod or prod
- Url
Format stringString - The Key ID In case of P8 Certificate
- Website
Name string - The Team ID In case of P8 Certificate
- Website
Push stringId - The Bundle ID In case of P8 Certificate
- Website
Url string - The Bundle ID In case of P8 Certificate
- Cert
Type string - The Certificate Type for IOS, the values are p8/p12.
- Password string
- The Password for APNS Certificate in case of P12 certificate
- Pre
Prod bool - The flag to enable destination as pre-prod or prod
- Url
Format stringString - The Key ID In case of P8 Certificate
- Website
Name string - The Team ID In case of P8 Certificate
- Website
Push stringId - The Bundle ID In case of P8 Certificate
- Website
Url string - The Bundle ID In case of P8 Certificate
- cert
Type String - The Certificate Type for IOS, the values are p8/p12.
- password String
- The Password for APNS Certificate in case of P12 certificate
- pre
Prod Boolean - The flag to enable destination as pre-prod or prod
- url
Format StringString - The Key ID In case of P8 Certificate
- website
Name String - The Team ID In case of P8 Certificate
- website
Push StringId - The Bundle ID In case of P8 Certificate
- website
Url String - The Bundle ID In case of P8 Certificate
- cert
Type string - The Certificate Type for IOS, the values are p8/p12.
- password string
- The Password for APNS Certificate in case of P12 certificate
- pre
Prod boolean - The flag to enable destination as pre-prod or prod
- url
Format stringString - The Key ID In case of P8 Certificate
- website
Name string - The Team ID In case of P8 Certificate
- website
Push stringId - The Bundle ID In case of P8 Certificate
- website
Url string - The Bundle ID In case of P8 Certificate
- cert_
type str - The Certificate Type for IOS, the values are p8/p12.
- password str
- The Password for APNS Certificate in case of P12 certificate
- pre_
prod bool - The flag to enable destination as pre-prod or prod
- url_
format_ strstring - The Key ID In case of P8 Certificate
- website_
name str - The Team ID In case of P8 Certificate
- website_
push_ strid - The Bundle ID In case of P8 Certificate
- website_
url str - The Bundle ID In case of P8 Certificate
- cert
Type String - The Certificate Type for IOS, the values are p8/p12.
- password String
- The Password for APNS Certificate in case of P12 certificate
- pre
Prod Boolean - The flag to enable destination as pre-prod or prod
- url
Format StringString - The Key ID In case of P8 Certificate
- website
Name String - The Team ID In case of P8 Certificate
- website
Push StringId - The Bundle ID In case of P8 Certificate
- website
Url String - The Bundle ID In case of P8 Certificate
Import
You can import the ibm_en_destination_safari
resource by using id
.
The id
property can be formed from instance_guid
, and destination_id
in the following format:
<instance_guid>/<destination_id>
instance_guid
: A string. Unique identifier for IBM Cloud Event Notifications instance.destination_id
: A string. Unique identifier for Destination.
Example
$ pulumi import ibm:index/enDestinationSafari:EnDestinationSafari safari_en_destination <instance_guid>/<destination_id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.