oci.AnnouncementsService.AnnouncementSubscription
Explore with Pulumi AI
This resource provides the Announcement Subscription resource in Oracle Cloud Infrastructure Announcements Service service.
Creates a new announcement subscription.
This call is subject to an Announcements limit that applies to the total number of requests across all read or write operations. Announcements might throttle this call to reject an otherwise valid request when the total rate of operations exceeds 20 requests per second for a given user. The service might also throttle this call to reject an otherwise valid request when the total rate of operations exceeds 100 requests per second for a given tenancy.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAnnouncementSubscription = new oci.announcementsservice.AnnouncementSubscription("test_announcement_subscription", {
compartmentId: compartmentId,
displayName: announcementSubscriptionDisplayName,
onsTopicId: testNotificationTopic.id,
definedTags: {
"foo-namespace.bar-key": "value",
},
description: announcementSubscriptionDescription,
filterGroups: {
filters: [{
type: announcementSubscriptionFilterGroupsFiltersType,
value: announcementSubscriptionFilterGroupsFiltersValue,
}],
},
freeformTags: {
"bar-key": "value",
},
preferredLanguage: announcementSubscriptionPreferredLanguage,
preferredTimeZone: announcementSubscriptionPreferredTimeZone,
});
import pulumi
import pulumi_oci as oci
test_announcement_subscription = oci.announcements_service.AnnouncementSubscription("test_announcement_subscription",
compartment_id=compartment_id,
display_name=announcement_subscription_display_name,
ons_topic_id=test_notification_topic["id"],
defined_tags={
"foo-namespace.bar-key": "value",
},
description=announcement_subscription_description,
filter_groups=oci.announcements_service.AnnouncementSubscriptionFilterGroupsArgs(
filters=[oci.announcements_service.AnnouncementSubscriptionFilterGroupsFilterArgs(
type=announcement_subscription_filter_groups_filters_type,
value=announcement_subscription_filter_groups_filters_value,
)],
),
freeform_tags={
"bar-key": "value",
},
preferred_language=announcement_subscription_preferred_language,
preferred_time_zone=announcement_subscription_preferred_time_zone)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/AnnouncementsService"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := AnnouncementsService.NewAnnouncementSubscription(ctx, "test_announcement_subscription", &AnnouncementsService.AnnouncementSubscriptionArgs{
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(announcementSubscriptionDisplayName),
OnsTopicId: pulumi.Any(testNotificationTopic.Id),
DefinedTags: pulumi.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
Description: pulumi.Any(announcementSubscriptionDescription),
FilterGroups: &announcementsservice.AnnouncementSubscriptionFilterGroupsArgs{
Filters: announcementsservice.AnnouncementSubscriptionFilterGroupsFilterArray{
&announcementsservice.AnnouncementSubscriptionFilterGroupsFilterArgs{
Type: pulumi.Any(announcementSubscriptionFilterGroupsFiltersType),
Value: pulumi.Any(announcementSubscriptionFilterGroupsFiltersValue),
},
},
},
FreeformTags: pulumi.Map{
"bar-key": pulumi.Any("value"),
},
PreferredLanguage: pulumi.Any(announcementSubscriptionPreferredLanguage),
PreferredTimeZone: pulumi.Any(announcementSubscriptionPreferredTimeZone),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testAnnouncementSubscription = new Oci.AnnouncementsService.AnnouncementSubscription("test_announcement_subscription", new()
{
CompartmentId = compartmentId,
DisplayName = announcementSubscriptionDisplayName,
OnsTopicId = testNotificationTopic.Id,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
Description = announcementSubscriptionDescription,
FilterGroups = new Oci.AnnouncementsService.Inputs.AnnouncementSubscriptionFilterGroupsArgs
{
Filters = new[]
{
new Oci.AnnouncementsService.Inputs.AnnouncementSubscriptionFilterGroupsFilterArgs
{
Type = announcementSubscriptionFilterGroupsFiltersType,
Value = announcementSubscriptionFilterGroupsFiltersValue,
},
},
},
FreeformTags =
{
{ "bar-key", "value" },
},
PreferredLanguage = announcementSubscriptionPreferredLanguage,
PreferredTimeZone = announcementSubscriptionPreferredTimeZone,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.AnnouncementsService.AnnouncementSubscription;
import com.pulumi.oci.AnnouncementsService.AnnouncementSubscriptionArgs;
import com.pulumi.oci.AnnouncementsService.inputs.AnnouncementSubscriptionFilterGroupsArgs;
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 testAnnouncementSubscription = new AnnouncementSubscription("testAnnouncementSubscription", AnnouncementSubscriptionArgs.builder()
.compartmentId(compartmentId)
.displayName(announcementSubscriptionDisplayName)
.onsTopicId(testNotificationTopic.id())
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.description(announcementSubscriptionDescription)
.filterGroups(AnnouncementSubscriptionFilterGroupsArgs.builder()
.filters(AnnouncementSubscriptionFilterGroupsFilterArgs.builder()
.type(announcementSubscriptionFilterGroupsFiltersType)
.value(announcementSubscriptionFilterGroupsFiltersValue)
.build())
.build())
.freeformTags(Map.of("bar-key", "value"))
.preferredLanguage(announcementSubscriptionPreferredLanguage)
.preferredTimeZone(announcementSubscriptionPreferredTimeZone)
.build());
}
}
resources:
testAnnouncementSubscription:
type: oci:AnnouncementsService:AnnouncementSubscription
name: test_announcement_subscription
properties:
compartmentId: ${compartmentId}
displayName: ${announcementSubscriptionDisplayName}
onsTopicId: ${testNotificationTopic.id}
definedTags:
foo-namespace.bar-key: value
description: ${announcementSubscriptionDescription}
filterGroups:
filters:
- type: ${announcementSubscriptionFilterGroupsFiltersType}
value: ${announcementSubscriptionFilterGroupsFiltersValue}
freeformTags:
bar-key: value
preferredLanguage: ${announcementSubscriptionPreferredLanguage}
preferredTimeZone: ${announcementSubscriptionPreferredTimeZone}
Create AnnouncementSubscription Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AnnouncementSubscription(name: string, args: AnnouncementSubscriptionArgs, opts?: CustomResourceOptions);
@overload
def AnnouncementSubscription(resource_name: str,
args: AnnouncementSubscriptionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AnnouncementSubscription(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
ons_topic_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
filter_groups: Optional[_announcementsservice.AnnouncementSubscriptionFilterGroupsArgs] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
preferred_language: Optional[str] = None,
preferred_time_zone: Optional[str] = None)
func NewAnnouncementSubscription(ctx *Context, name string, args AnnouncementSubscriptionArgs, opts ...ResourceOption) (*AnnouncementSubscription, error)
public AnnouncementSubscription(string name, AnnouncementSubscriptionArgs args, CustomResourceOptions? opts = null)
public AnnouncementSubscription(String name, AnnouncementSubscriptionArgs args)
public AnnouncementSubscription(String name, AnnouncementSubscriptionArgs args, CustomResourceOptions options)
type: oci:AnnouncementsService:AnnouncementSubscription
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 AnnouncementSubscriptionArgs
- 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 AnnouncementSubscriptionArgs
- 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 AnnouncementSubscriptionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AnnouncementSubscriptionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AnnouncementSubscriptionArgs
- 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 announcementSubscriptionResource = new Oci.AnnouncementsService.AnnouncementSubscription("announcementSubscriptionResource", new()
{
CompartmentId = "string",
DisplayName = "string",
OnsTopicId = "string",
DefinedTags =
{
{ "string", "any" },
},
Description = "string",
FilterGroups = new Oci.AnnouncementsService.Inputs.AnnouncementSubscriptionFilterGroupsArgs
{
Filters = new[]
{
new Oci.AnnouncementsService.Inputs.AnnouncementSubscriptionFilterGroupsFilterArgs
{
Type = "string",
Value = "string",
},
},
Name = "string",
},
FreeformTags =
{
{ "string", "any" },
},
PreferredLanguage = "string",
PreferredTimeZone = "string",
});
example, err := AnnouncementsService.NewAnnouncementSubscription(ctx, "announcementSubscriptionResource", &AnnouncementsService.AnnouncementSubscriptionArgs{
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
OnsTopicId: pulumi.String("string"),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
Description: pulumi.String("string"),
FilterGroups: &announcementsservice.AnnouncementSubscriptionFilterGroupsArgs{
Filters: announcementsservice.AnnouncementSubscriptionFilterGroupsFilterArray{
&announcementsservice.AnnouncementSubscriptionFilterGroupsFilterArgs{
Type: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
},
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
PreferredLanguage: pulumi.String("string"),
PreferredTimeZone: pulumi.String("string"),
})
var announcementSubscriptionResource = new AnnouncementSubscription("announcementSubscriptionResource", AnnouncementSubscriptionArgs.builder()
.compartmentId("string")
.displayName("string")
.onsTopicId("string")
.definedTags(Map.of("string", "any"))
.description("string")
.filterGroups(AnnouncementSubscriptionFilterGroupsArgs.builder()
.filters(AnnouncementSubscriptionFilterGroupsFilterArgs.builder()
.type("string")
.value("string")
.build())
.name("string")
.build())
.freeformTags(Map.of("string", "any"))
.preferredLanguage("string")
.preferredTimeZone("string")
.build());
announcement_subscription_resource = oci.announcements_service.AnnouncementSubscription("announcementSubscriptionResource",
compartment_id="string",
display_name="string",
ons_topic_id="string",
defined_tags={
"string": "any",
},
description="string",
filter_groups=oci.announcements_service.AnnouncementSubscriptionFilterGroupsArgs(
filters=[oci.announcements_service.AnnouncementSubscriptionFilterGroupsFilterArgs(
type="string",
value="string",
)],
name="string",
),
freeform_tags={
"string": "any",
},
preferred_language="string",
preferred_time_zone="string")
const announcementSubscriptionResource = new oci.announcementsservice.AnnouncementSubscription("announcementSubscriptionResource", {
compartmentId: "string",
displayName: "string",
onsTopicId: "string",
definedTags: {
string: "any",
},
description: "string",
filterGroups: {
filters: [{
type: "string",
value: "string",
}],
name: "string",
},
freeformTags: {
string: "any",
},
preferredLanguage: "string",
preferredTimeZone: "string",
});
type: oci:AnnouncementsService:AnnouncementSubscription
properties:
compartmentId: string
definedTags:
string: any
description: string
displayName: string
filterGroups:
filters:
- type: string
value: string
name: string
freeformTags:
string: any
onsTopicId: string
preferredLanguage: string
preferredTimeZone: string
AnnouncementSubscription Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The AnnouncementSubscription resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the announcement subscription.
- Display
Name string - (Updatable) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Ons
Topic stringId - (Updatable) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see Details for Notifications.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) A description of the announcement subscription. Avoid entering confidential information.
- Filter
Groups AnnouncementSubscription Filter Groups - A list of filter groups for the announcement subscription. A filter group combines one or more filters that the Announcements service applies to announcements for matching purposes.
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Preferred
Language string - (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
- Preferred
Time stringZone (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the announcement subscription.
- Display
Name string - (Updatable) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Ons
Topic stringId - (Updatable) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see Details for Notifications.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) A description of the announcement subscription. Avoid entering confidential information.
- Filter
Groups AnnouncementSubscription Filter Groups Args - A list of filter groups for the announcement subscription. A filter group combines one or more filters that the Announcements service applies to announcements for matching purposes.
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Preferred
Language string - (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
- Preferred
Time stringZone (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the announcement subscription.
- display
Name String - (Updatable) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- ons
Topic StringId - (Updatable) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see Details for Notifications.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) A description of the announcement subscription. Avoid entering confidential information.
- filter
Groups AnnouncementSubscription Filter Groups - A list of filter groups for the announcement subscription. A filter group combines one or more filters that the Announcements service applies to announcements for matching purposes.
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- preferred
Language String - (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
- preferred
Time StringZone (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id string - (Updatable) The OCID of the compartment where you want to create the announcement subscription.
- display
Name string - (Updatable) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- ons
Topic stringId - (Updatable) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see Details for Notifications.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) A description of the announcement subscription. Avoid entering confidential information.
- filter
Groups AnnouncementSubscription Filter Groups - A list of filter groups for the announcement subscription. A filter group combines one or more filters that the Announcements service applies to announcements for matching purposes.
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- preferred
Language string - (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
- preferred
Time stringZone (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment_
id str - (Updatable) The OCID of the compartment where you want to create the announcement subscription.
- display_
name str - (Updatable) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- ons_
topic_ strid - (Updatable) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see Details for Notifications.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) A description of the announcement subscription. Avoid entering confidential information.
- filter_
groups announcementsservice.Announcement Subscription Filter Groups Args - A list of filter groups for the announcement subscription. A filter group combines one or more filters that the Announcements service applies to announcements for matching purposes.
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- preferred_
language str - (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
- preferred_
time_ strzone (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the announcement subscription.
- display
Name String - (Updatable) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- ons
Topic StringId - (Updatable) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see Details for Notifications.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) A description of the announcement subscription. Avoid entering confidential information.
- filter
Groups Property Map - A list of filter groups for the announcement subscription. A filter group combines one or more filters that the Announcements service applies to announcements for matching purposes.
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- preferred
Language String - (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
- preferred
Time StringZone (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the AnnouncementSubscription resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
- State string
- The current lifecycle state of the announcement subscription.
- Dictionary<string, object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time that the announcement subscription was created, expressed in RFC 3339 timestamp format.
- Time
Updated string - The date and time that the announcement subscription was updated, expressed in RFC 3339 timestamp format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
- State string
- The current lifecycle state of the announcement subscription.
- map[string]interface{}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time that the announcement subscription was created, expressed in RFC 3339 timestamp format.
- Time
Updated string - The date and time that the announcement subscription was updated, expressed in RFC 3339 timestamp format.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
- state String
- The current lifecycle state of the announcement subscription.
- Map<String,Object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time that the announcement subscription was created, expressed in RFC 3339 timestamp format.
- time
Updated String - The date and time that the announcement subscription was updated, expressed in RFC 3339 timestamp format.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
- state string
- The current lifecycle state of the announcement subscription.
- {[key: string]: any}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time that the announcement subscription was created, expressed in RFC 3339 timestamp format.
- time
Updated string - The date and time that the announcement subscription was updated, expressed in RFC 3339 timestamp format.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
- state str
- The current lifecycle state of the announcement subscription.
- Mapping[str, Any]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The date and time that the announcement subscription was created, expressed in RFC 3339 timestamp format.
- time_
updated str - The date and time that the announcement subscription was updated, expressed in RFC 3339 timestamp format.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
- state String
- The current lifecycle state of the announcement subscription.
- Map<Any>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time that the announcement subscription was created, expressed in RFC 3339 timestamp format.
- time
Updated String - The date and time that the announcement subscription was updated, expressed in RFC 3339 timestamp format.
Look up Existing AnnouncementSubscription Resource
Get an existing AnnouncementSubscription 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?: AnnouncementSubscriptionState, opts?: CustomResourceOptions): AnnouncementSubscription
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
filter_groups: Optional[_announcementsservice.AnnouncementSubscriptionFilterGroupsArgs] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
lifecycle_details: Optional[str] = None,
ons_topic_id: Optional[str] = None,
preferred_language: Optional[str] = None,
preferred_time_zone: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, Any]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> AnnouncementSubscription
func GetAnnouncementSubscription(ctx *Context, name string, id IDInput, state *AnnouncementSubscriptionState, opts ...ResourceOption) (*AnnouncementSubscription, error)
public static AnnouncementSubscription Get(string name, Input<string> id, AnnouncementSubscriptionState? state, CustomResourceOptions? opts = null)
public static AnnouncementSubscription get(String name, Output<String> id, AnnouncementSubscriptionState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the announcement subscription.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) A description of the announcement subscription. Avoid entering confidential information.
- Display
Name string - (Updatable) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filter
Groups AnnouncementSubscription Filter Groups - A list of filter groups for the announcement subscription. A filter group combines one or more filters that the Announcements service applies to announcements for matching purposes.
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Lifecycle
Details string - A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
- Ons
Topic stringId - (Updatable) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see Details for Notifications.
- Preferred
Language string - (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
- Preferred
Time stringZone (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- State string
- The current lifecycle state of the announcement subscription.
- Dictionary<string, object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time that the announcement subscription was created, expressed in RFC 3339 timestamp format.
- Time
Updated string - The date and time that the announcement subscription was updated, expressed in RFC 3339 timestamp format.
- Compartment
Id string - (Updatable) The OCID of the compartment where you want to create the announcement subscription.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) A description of the announcement subscription. Avoid entering confidential information.
- Display
Name string - (Updatable) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filter
Groups AnnouncementSubscription Filter Groups Args - A list of filter groups for the announcement subscription. A filter group combines one or more filters that the Announcements service applies to announcements for matching purposes.
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Lifecycle
Details string - A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
- Ons
Topic stringId - (Updatable) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see Details for Notifications.
- Preferred
Language string - (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
- Preferred
Time stringZone (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- State string
- The current lifecycle state of the announcement subscription.
- map[string]interface{}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time that the announcement subscription was created, expressed in RFC 3339 timestamp format.
- Time
Updated string - The date and time that the announcement subscription was updated, expressed in RFC 3339 timestamp format.
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the announcement subscription.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) A description of the announcement subscription. Avoid entering confidential information.
- display
Name String - (Updatable) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filter
Groups AnnouncementSubscription Filter Groups - A list of filter groups for the announcement subscription. A filter group combines one or more filters that the Announcements service applies to announcements for matching purposes.
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle
Details String - A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
- ons
Topic StringId - (Updatable) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see Details for Notifications.
- preferred
Language String - (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
- preferred
Time StringZone (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state String
- The current lifecycle state of the announcement subscription.
- Map<String,Object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time that the announcement subscription was created, expressed in RFC 3339 timestamp format.
- time
Updated String - The date and time that the announcement subscription was updated, expressed in RFC 3339 timestamp format.
- compartment
Id string - (Updatable) The OCID of the compartment where you want to create the announcement subscription.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) A description of the announcement subscription. Avoid entering confidential information.
- display
Name string - (Updatable) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filter
Groups AnnouncementSubscription Filter Groups - A list of filter groups for the announcement subscription. A filter group combines one or more filters that the Announcements service applies to announcements for matching purposes.
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle
Details string - A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
- ons
Topic stringId - (Updatable) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see Details for Notifications.
- preferred
Language string - (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
- preferred
Time stringZone (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state string
- The current lifecycle state of the announcement subscription.
- {[key: string]: any}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time that the announcement subscription was created, expressed in RFC 3339 timestamp format.
- time
Updated string - The date and time that the announcement subscription was updated, expressed in RFC 3339 timestamp format.
- compartment_
id str - (Updatable) The OCID of the compartment where you want to create the announcement subscription.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) A description of the announcement subscription. Avoid entering confidential information.
- display_
name str - (Updatable) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filter_
groups announcementsservice.Announcement Subscription Filter Groups Args - A list of filter groups for the announcement subscription. A filter group combines one or more filters that the Announcements service applies to announcements for matching purposes.
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle_
details str - A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
- ons_
topic_ strid - (Updatable) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see Details for Notifications.
- preferred_
language str - (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
- preferred_
time_ strzone (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state str
- The current lifecycle state of the announcement subscription.
- Mapping[str, Any]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The date and time that the announcement subscription was created, expressed in RFC 3339 timestamp format.
- time_
updated str - The date and time that the announcement subscription was updated, expressed in RFC 3339 timestamp format.
- compartment
Id String - (Updatable) The OCID of the compartment where you want to create the announcement subscription.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) A description of the announcement subscription. Avoid entering confidential information.
- display
Name String - (Updatable) A user-friendly name for the announcement subscription. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filter
Groups Property Map - A list of filter groups for the announcement subscription. A filter group combines one or more filters that the Announcements service applies to announcements for matching purposes.
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- lifecycle
Details String - A message describing the current lifecycle state in more detail. For example, details might provide required or recommended actions for a resource in a Failed state.
- ons
Topic StringId - (Updatable) The OCID of the Notifications service topic that is the target for publishing announcements that match the configured announcement subscription. The caller of the operation needs the ONS_TOPIC_PUBLISH permission for the targeted Notifications service topic. For more information about Notifications permissions, see Details for Notifications.
- preferred
Language String - (Updatable) (For announcement subscriptions with Oracle Fusion Applications configured as the service only) The language in which the user prefers to receive emailed announcements. Specify the preference with a value that uses the language tag format (x-obmcs-human-language). For example fr-FR.
- preferred
Time StringZone (Updatable) The time zone that the user prefers for announcement time stamps. Specify the preference with a value that uses the IANA Time Zone Database format (x-obmcs-time-zone). For example America/Los_Angeles.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state String
- The current lifecycle state of the announcement subscription.
- Map<Any>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time that the announcement subscription was created, expressed in RFC 3339 timestamp format.
- time
Updated String - The date and time that the announcement subscription was updated, expressed in RFC 3339 timestamp format.
Supporting Types
AnnouncementSubscriptionFilterGroups, AnnouncementSubscriptionFilterGroupsArgs
- Filters
List<Announcement
Subscription Filter Groups Filter> - A list of filters against which the Announcements service matches announcements. You cannot have more than one of any given filter type within a filter group.
- Name string
- The name of the group. The name must be unique and it cannot be changed. Avoid entering confidential information.
- Filters
[]Announcement
Subscription Filter Groups Filter - A list of filters against which the Announcements service matches announcements. You cannot have more than one of any given filter type within a filter group.
- Name string
- The name of the group. The name must be unique and it cannot be changed. Avoid entering confidential information.
- filters
List<Announcement
Subscription Filter Groups Filter> - A list of filters against which the Announcements service matches announcements. You cannot have more than one of any given filter type within a filter group.
- name String
- The name of the group. The name must be unique and it cannot be changed. Avoid entering confidential information.
- filters
Announcement
Subscription Filter Groups Filter[] - A list of filters against which the Announcements service matches announcements. You cannot have more than one of any given filter type within a filter group.
- name string
- The name of the group. The name must be unique and it cannot be changed. Avoid entering confidential information.
- filters
Sequence[announcementsservice.
Announcement Subscription Filter Groups Filter] - A list of filters against which the Announcements service matches announcements. You cannot have more than one of any given filter type within a filter group.
- name str
- The name of the group. The name must be unique and it cannot be changed. Avoid entering confidential information.
- filters List<Property Map>
- A list of filters against which the Announcements service matches announcements. You cannot have more than one of any given filter type within a filter group.
- name String
- The name of the group. The name must be unique and it cannot be changed. Avoid entering confidential information.
AnnouncementSubscriptionFilterGroupsFilter, AnnouncementSubscriptionFilterGroupsFilterArgs
Import
AnnouncementSubscriptions can be imported using the id
, e.g.
$ pulumi import oci:AnnouncementsService/announcementSubscription:AnnouncementSubscription test_announcement_subscription "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.