oci.Opsi.NewsReport
Explore with Pulumi AI
This resource provides the News Report resource in Oracle Cloud Infrastructure Opsi service.
Create a news report in Ops Insights. The report will be enabled in Ops Insights. Insights will be emailed as per selected frequency.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testNewsReport = new oci.opsi.NewsReport("test_news_report", {
compartmentId: compartmentId,
contentTypes: {
capacityPlanningResources: newsReportContentTypesCapacityPlanningResources,
sqlInsightsFleetAnalysisResources: newsReportContentTypesSqlInsightsFleetAnalysisResources,
sqlInsightsPerformanceDegradationResources: newsReportContentTypesSqlInsightsPerformanceDegradationResources,
sqlInsightsPlanChangesResources: newsReportContentTypesSqlInsightsPlanChangesResources,
sqlInsightsTopDatabasesResources: newsReportContentTypesSqlInsightsTopDatabasesResources,
sqlInsightsTopSqlByInsightsResources: newsReportContentTypesSqlInsightsTopSqlByInsightsResources,
sqlInsightsTopSqlResources: newsReportContentTypesSqlInsightsTopSqlResources,
},
description: newsReportDescription,
locale: newsReportLocale,
name: newsReportName,
newsFrequency: newsReportNewsFrequency,
onsTopicId: testOnsTopic.id,
areChildCompartmentsIncluded: newsReportAreChildCompartmentsIncluded,
dayOfWeek: newsReportDayOfWeek,
definedTags: {
"foo-namespace.bar-key": "value",
},
freeformTags: {
"bar-key": "value",
},
status: newsReportStatus,
});
import pulumi
import pulumi_oci as oci
test_news_report = oci.opsi.NewsReport("test_news_report",
compartment_id=compartment_id,
content_types={
"capacity_planning_resources": news_report_content_types_capacity_planning_resources,
"sql_insights_fleet_analysis_resources": news_report_content_types_sql_insights_fleet_analysis_resources,
"sql_insights_performance_degradation_resources": news_report_content_types_sql_insights_performance_degradation_resources,
"sql_insights_plan_changes_resources": news_report_content_types_sql_insights_plan_changes_resources,
"sql_insights_top_databases_resources": news_report_content_types_sql_insights_top_databases_resources,
"sql_insights_top_sql_by_insights_resources": news_report_content_types_sql_insights_top_sql_by_insights_resources,
"sql_insights_top_sql_resources": news_report_content_types_sql_insights_top_sql_resources,
},
description=news_report_description,
locale=news_report_locale,
name=news_report_name,
news_frequency=news_report_news_frequency,
ons_topic_id=test_ons_topic["id"],
are_child_compartments_included=news_report_are_child_compartments_included,
day_of_week=news_report_day_of_week,
defined_tags={
"foo-namespace.bar-key": "value",
},
freeform_tags={
"bar-key": "value",
},
status=news_report_status)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Opsi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Opsi.NewNewsReport(ctx, "test_news_report", &Opsi.NewsReportArgs{
CompartmentId: pulumi.Any(compartmentId),
ContentTypes: &opsi.NewsReportContentTypesArgs{
CapacityPlanningResources: pulumi.Any(newsReportContentTypesCapacityPlanningResources),
SqlInsightsFleetAnalysisResources: pulumi.Any(newsReportContentTypesSqlInsightsFleetAnalysisResources),
SqlInsightsPerformanceDegradationResources: pulumi.Any(newsReportContentTypesSqlInsightsPerformanceDegradationResources),
SqlInsightsPlanChangesResources: pulumi.Any(newsReportContentTypesSqlInsightsPlanChangesResources),
SqlInsightsTopDatabasesResources: pulumi.Any(newsReportContentTypesSqlInsightsTopDatabasesResources),
SqlInsightsTopSqlByInsightsResources: pulumi.Any(newsReportContentTypesSqlInsightsTopSqlByInsightsResources),
SqlInsightsTopSqlResources: pulumi.Any(newsReportContentTypesSqlInsightsTopSqlResources),
},
Description: pulumi.Any(newsReportDescription),
Locale: pulumi.Any(newsReportLocale),
Name: pulumi.Any(newsReportName),
NewsFrequency: pulumi.Any(newsReportNewsFrequency),
OnsTopicId: pulumi.Any(testOnsTopic.Id),
AreChildCompartmentsIncluded: pulumi.Any(newsReportAreChildCompartmentsIncluded),
DayOfWeek: pulumi.Any(newsReportDayOfWeek),
DefinedTags: pulumi.StringMap{
"foo-namespace.bar-key": pulumi.String("value"),
},
FreeformTags: pulumi.StringMap{
"bar-key": pulumi.String("value"),
},
Status: pulumi.Any(newsReportStatus),
})
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 testNewsReport = new Oci.Opsi.NewsReport("test_news_report", new()
{
CompartmentId = compartmentId,
ContentTypes = new Oci.Opsi.Inputs.NewsReportContentTypesArgs
{
CapacityPlanningResources = newsReportContentTypesCapacityPlanningResources,
SqlInsightsFleetAnalysisResources = newsReportContentTypesSqlInsightsFleetAnalysisResources,
SqlInsightsPerformanceDegradationResources = newsReportContentTypesSqlInsightsPerformanceDegradationResources,
SqlInsightsPlanChangesResources = newsReportContentTypesSqlInsightsPlanChangesResources,
SqlInsightsTopDatabasesResources = newsReportContentTypesSqlInsightsTopDatabasesResources,
SqlInsightsTopSqlByInsightsResources = newsReportContentTypesSqlInsightsTopSqlByInsightsResources,
SqlInsightsTopSqlResources = newsReportContentTypesSqlInsightsTopSqlResources,
},
Description = newsReportDescription,
Locale = newsReportLocale,
Name = newsReportName,
NewsFrequency = newsReportNewsFrequency,
OnsTopicId = testOnsTopic.Id,
AreChildCompartmentsIncluded = newsReportAreChildCompartmentsIncluded,
DayOfWeek = newsReportDayOfWeek,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
FreeformTags =
{
{ "bar-key", "value" },
},
Status = newsReportStatus,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Opsi.NewsReport;
import com.pulumi.oci.Opsi.NewsReportArgs;
import com.pulumi.oci.Opsi.inputs.NewsReportContentTypesArgs;
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 testNewsReport = new NewsReport("testNewsReport", NewsReportArgs.builder()
.compartmentId(compartmentId)
.contentTypes(NewsReportContentTypesArgs.builder()
.capacityPlanningResources(newsReportContentTypesCapacityPlanningResources)
.sqlInsightsFleetAnalysisResources(newsReportContentTypesSqlInsightsFleetAnalysisResources)
.sqlInsightsPerformanceDegradationResources(newsReportContentTypesSqlInsightsPerformanceDegradationResources)
.sqlInsightsPlanChangesResources(newsReportContentTypesSqlInsightsPlanChangesResources)
.sqlInsightsTopDatabasesResources(newsReportContentTypesSqlInsightsTopDatabasesResources)
.sqlInsightsTopSqlByInsightsResources(newsReportContentTypesSqlInsightsTopSqlByInsightsResources)
.sqlInsightsTopSqlResources(newsReportContentTypesSqlInsightsTopSqlResources)
.build())
.description(newsReportDescription)
.locale(newsReportLocale)
.name(newsReportName)
.newsFrequency(newsReportNewsFrequency)
.onsTopicId(testOnsTopic.id())
.areChildCompartmentsIncluded(newsReportAreChildCompartmentsIncluded)
.dayOfWeek(newsReportDayOfWeek)
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.freeformTags(Map.of("bar-key", "value"))
.status(newsReportStatus)
.build());
}
}
resources:
testNewsReport:
type: oci:Opsi:NewsReport
name: test_news_report
properties:
compartmentId: ${compartmentId}
contentTypes:
capacityPlanningResources: ${newsReportContentTypesCapacityPlanningResources}
sqlInsightsFleetAnalysisResources: ${newsReportContentTypesSqlInsightsFleetAnalysisResources}
sqlInsightsPerformanceDegradationResources: ${newsReportContentTypesSqlInsightsPerformanceDegradationResources}
sqlInsightsPlanChangesResources: ${newsReportContentTypesSqlInsightsPlanChangesResources}
sqlInsightsTopDatabasesResources: ${newsReportContentTypesSqlInsightsTopDatabasesResources}
sqlInsightsTopSqlByInsightsResources: ${newsReportContentTypesSqlInsightsTopSqlByInsightsResources}
sqlInsightsTopSqlResources: ${newsReportContentTypesSqlInsightsTopSqlResources}
description: ${newsReportDescription}
locale: ${newsReportLocale}
name: ${newsReportName}
newsFrequency: ${newsReportNewsFrequency}
onsTopicId: ${testOnsTopic.id}
areChildCompartmentsIncluded: ${newsReportAreChildCompartmentsIncluded}
dayOfWeek: ${newsReportDayOfWeek}
definedTags:
foo-namespace.bar-key: value
freeformTags:
bar-key: value
status: ${newsReportStatus}
Create NewsReport Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NewsReport(name: string, args: NewsReportArgs, opts?: CustomResourceOptions);
@overload
def NewsReport(resource_name: str,
args: NewsReportArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NewsReport(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
content_types: Optional[_opsi.NewsReportContentTypesArgs] = None,
description: Optional[str] = None,
locale: Optional[str] = None,
news_frequency: Optional[str] = None,
ons_topic_id: Optional[str] = None,
are_child_compartments_included: Optional[bool] = None,
day_of_week: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
status: Optional[str] = None)
func NewNewsReport(ctx *Context, name string, args NewsReportArgs, opts ...ResourceOption) (*NewsReport, error)
public NewsReport(string name, NewsReportArgs args, CustomResourceOptions? opts = null)
public NewsReport(String name, NewsReportArgs args)
public NewsReport(String name, NewsReportArgs args, CustomResourceOptions options)
type: oci:Opsi:NewsReport
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 NewsReportArgs
- 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 NewsReportArgs
- 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 NewsReportArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NewsReportArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NewsReportArgs
- 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 newsReportResource = new Oci.Opsi.NewsReport("newsReportResource", new()
{
CompartmentId = "string",
ContentTypes = new Oci.Opsi.Inputs.NewsReportContentTypesArgs
{
CapacityPlanningResources = new[]
{
"string",
},
SqlInsightsFleetAnalysisResources = new[]
{
"string",
},
SqlInsightsPerformanceDegradationResources = new[]
{
"string",
},
SqlInsightsPlanChangesResources = new[]
{
"string",
},
SqlInsightsTopDatabasesResources = new[]
{
"string",
},
SqlInsightsTopSqlByInsightsResources = new[]
{
"string",
},
SqlInsightsTopSqlResources = new[]
{
"string",
},
},
Description = "string",
Locale = "string",
NewsFrequency = "string",
OnsTopicId = "string",
AreChildCompartmentsIncluded = false,
DayOfWeek = "string",
DefinedTags =
{
{ "string", "string" },
},
FreeformTags =
{
{ "string", "string" },
},
Name = "string",
Status = "string",
});
example, err := Opsi.NewNewsReport(ctx, "newsReportResource", &Opsi.NewsReportArgs{
CompartmentId: pulumi.String("string"),
ContentTypes: &opsi.NewsReportContentTypesArgs{
CapacityPlanningResources: pulumi.StringArray{
pulumi.String("string"),
},
SqlInsightsFleetAnalysisResources: pulumi.StringArray{
pulumi.String("string"),
},
SqlInsightsPerformanceDegradationResources: pulumi.StringArray{
pulumi.String("string"),
},
SqlInsightsPlanChangesResources: pulumi.StringArray{
pulumi.String("string"),
},
SqlInsightsTopDatabasesResources: pulumi.StringArray{
pulumi.String("string"),
},
SqlInsightsTopSqlByInsightsResources: pulumi.StringArray{
pulumi.String("string"),
},
SqlInsightsTopSqlResources: pulumi.StringArray{
pulumi.String("string"),
},
},
Description: pulumi.String("string"),
Locale: pulumi.String("string"),
NewsFrequency: pulumi.String("string"),
OnsTopicId: pulumi.String("string"),
AreChildCompartmentsIncluded: pulumi.Bool(false),
DayOfWeek: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
Status: pulumi.String("string"),
})
var newsReportResource = new NewsReport("newsReportResource", NewsReportArgs.builder()
.compartmentId("string")
.contentTypes(NewsReportContentTypesArgs.builder()
.capacityPlanningResources("string")
.sqlInsightsFleetAnalysisResources("string")
.sqlInsightsPerformanceDegradationResources("string")
.sqlInsightsPlanChangesResources("string")
.sqlInsightsTopDatabasesResources("string")
.sqlInsightsTopSqlByInsightsResources("string")
.sqlInsightsTopSqlResources("string")
.build())
.description("string")
.locale("string")
.newsFrequency("string")
.onsTopicId("string")
.areChildCompartmentsIncluded(false)
.dayOfWeek("string")
.definedTags(Map.of("string", "string"))
.freeformTags(Map.of("string", "string"))
.name("string")
.status("string")
.build());
news_report_resource = oci.opsi.NewsReport("newsReportResource",
compartment_id="string",
content_types=oci.opsi.NewsReportContentTypesArgs(
capacity_planning_resources=["string"],
sql_insights_fleet_analysis_resources=["string"],
sql_insights_performance_degradation_resources=["string"],
sql_insights_plan_changes_resources=["string"],
sql_insights_top_databases_resources=["string"],
sql_insights_top_sql_by_insights_resources=["string"],
sql_insights_top_sql_resources=["string"],
),
description="string",
locale="string",
news_frequency="string",
ons_topic_id="string",
are_child_compartments_included=False,
day_of_week="string",
defined_tags={
"string": "string",
},
freeform_tags={
"string": "string",
},
name="string",
status="string")
const newsReportResource = new oci.opsi.NewsReport("newsReportResource", {
compartmentId: "string",
contentTypes: {
capacityPlanningResources: ["string"],
sqlInsightsFleetAnalysisResources: ["string"],
sqlInsightsPerformanceDegradationResources: ["string"],
sqlInsightsPlanChangesResources: ["string"],
sqlInsightsTopDatabasesResources: ["string"],
sqlInsightsTopSqlByInsightsResources: ["string"],
sqlInsightsTopSqlResources: ["string"],
},
description: "string",
locale: "string",
newsFrequency: "string",
onsTopicId: "string",
areChildCompartmentsIncluded: false,
dayOfWeek: "string",
definedTags: {
string: "string",
},
freeformTags: {
string: "string",
},
name: "string",
status: "string",
});
type: oci:Opsi:NewsReport
properties:
areChildCompartmentsIncluded: false
compartmentId: string
contentTypes:
capacityPlanningResources:
- string
sqlInsightsFleetAnalysisResources:
- string
sqlInsightsPerformanceDegradationResources:
- string
sqlInsightsPlanChangesResources:
- string
sqlInsightsTopDatabasesResources:
- string
sqlInsightsTopSqlByInsightsResources:
- string
sqlInsightsTopSqlResources:
- string
dayOfWeek: string
definedTags:
string: string
description: string
freeformTags:
string: string
locale: string
name: string
newsFrequency: string
onsTopicId: string
status: string
NewsReport 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 NewsReport resource accepts the following input properties:
- Compartment
Id string - (Updatable) Compartment Identifier where the news report will be created.
- Content
Types NewsReport Content Types - (Updatable) Content types that the news report can handle.
- Description string
- (Updatable) The description of the news report.
- Locale string
- (Updatable) Language of the news report.
- News
Frequency string - (Updatable) News report frequency.
- Ons
Topic stringId - (Updatable) The OCID of the ONS topic.
- Are
Child boolCompartments Included - (Updatable) A flag to consider the resources within a given compartment and all sub-compartments.
- Day
Of stringWeek - (Updatable) Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Name string
- (Updatable) The news report name.
- Status string
(Updatable) Defines if the news report will be enabled or disabled.
** 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) Compartment Identifier where the news report will be created.
- Content
Types NewsReport Content Types Args - (Updatable) Content types that the news report can handle.
- Description string
- (Updatable) The description of the news report.
- Locale string
- (Updatable) Language of the news report.
- News
Frequency string - (Updatable) News report frequency.
- Ons
Topic stringId - (Updatable) The OCID of the ONS topic.
- Are
Child boolCompartments Included - (Updatable) A flag to consider the resources within a given compartment and all sub-compartments.
- Day
Of stringWeek - (Updatable) Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Name string
- (Updatable) The news report name.
- Status string
(Updatable) Defines if the news report will be enabled or disabled.
** 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) Compartment Identifier where the news report will be created.
- content
Types NewsReport Content Types - (Updatable) Content types that the news report can handle.
- description String
- (Updatable) The description of the news report.
- locale String
- (Updatable) Language of the news report.
- news
Frequency String - (Updatable) News report frequency.
- ons
Topic StringId - (Updatable) The OCID of the ONS topic.
- are
Child BooleanCompartments Included - (Updatable) A flag to consider the resources within a given compartment and all sub-compartments.
- day
Of StringWeek - (Updatable) Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- name String
- (Updatable) The news report name.
- status String
(Updatable) Defines if the news report will be enabled or disabled.
** 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) Compartment Identifier where the news report will be created.
- content
Types NewsReport Content Types - (Updatable) Content types that the news report can handle.
- description string
- (Updatable) The description of the news report.
- locale string
- (Updatable) Language of the news report.
- news
Frequency string - (Updatable) News report frequency.
- ons
Topic stringId - (Updatable) The OCID of the ONS topic.
- are
Child booleanCompartments Included - (Updatable) A flag to consider the resources within a given compartment and all sub-compartments.
- day
Of stringWeek - (Updatable) Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- name string
- (Updatable) The news report name.
- status string
(Updatable) Defines if the news report will be enabled or disabled.
** 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) Compartment Identifier where the news report will be created.
- content_
types opsi.News Report Content Types Args - (Updatable) Content types that the news report can handle.
- description str
- (Updatable) The description of the news report.
- locale str
- (Updatable) Language of the news report.
- news_
frequency str - (Updatable) News report frequency.
- ons_
topic_ strid - (Updatable) The OCID of the ONS topic.
- are_
child_ boolcompartments_ included - (Updatable) A flag to consider the resources within a given compartment and all sub-compartments.
- day_
of_ strweek - (Updatable) Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- name str
- (Updatable) The news report name.
- status str
(Updatable) Defines if the news report will be enabled or disabled.
** 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) Compartment Identifier where the news report will be created.
- content
Types Property Map - (Updatable) Content types that the news report can handle.
- description String
- (Updatable) The description of the news report.
- locale String
- (Updatable) Language of the news report.
- news
Frequency String - (Updatable) News report frequency.
- ons
Topic StringId - (Updatable) The OCID of the ONS topic.
- are
Child BooleanCompartments Included - (Updatable) A flag to consider the resources within a given compartment and all sub-compartments.
- day
Of StringWeek - (Updatable) Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- name String
- (Updatable) The news report name.
- status String
(Updatable) Defines if the news report will be enabled or disabled.
** 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 NewsReport 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 state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- State string
- The current state of the news report.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the news report was first enabled. An RFC3339 formatted datetime string.
- Time
Updated string - The time the news report was updated. An RFC3339 formatted datetime string.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- State string
- The current state of the news report.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the news report was first enabled. An RFC3339 formatted datetime string.
- Time
Updated string - The time the news report was updated. An RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state String
- The current state of the news report.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the news report was first enabled. An RFC3339 formatted datetime string.
- time
Updated String - The time the news report was updated. An RFC3339 formatted datetime string.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state string
- The current state of the news report.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the the news report was first enabled. An RFC3339 formatted datetime string.
- time
Updated string - The time the news report was updated. An RFC3339 formatted datetime string.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state str
- The current state of the news report.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time the the news report was first enabled. An RFC3339 formatted datetime string.
- time_
updated str - The time the news report was updated. An RFC3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state String
- The current state of the news report.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the news report was first enabled. An RFC3339 formatted datetime string.
- time
Updated String - The time the news report was updated. An RFC3339 formatted datetime string.
Look up Existing NewsReport Resource
Get an existing NewsReport 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?: NewsReportState, opts?: CustomResourceOptions): NewsReport
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
are_child_compartments_included: Optional[bool] = None,
compartment_id: Optional[str] = None,
content_types: Optional[_opsi.NewsReportContentTypesArgs] = None,
day_of_week: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
lifecycle_details: Optional[str] = None,
locale: Optional[str] = None,
name: Optional[str] = None,
news_frequency: Optional[str] = None,
ons_topic_id: Optional[str] = None,
state: Optional[str] = None,
status: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> NewsReport
func GetNewsReport(ctx *Context, name string, id IDInput, state *NewsReportState, opts ...ResourceOption) (*NewsReport, error)
public static NewsReport Get(string name, Input<string> id, NewsReportState? state, CustomResourceOptions? opts = null)
public static NewsReport get(String name, Output<String> id, NewsReportState 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.
- Are
Child boolCompartments Included - (Updatable) A flag to consider the resources within a given compartment and all sub-compartments.
- Compartment
Id string - (Updatable) Compartment Identifier where the news report will be created.
- Content
Types NewsReport Content Types - (Updatable) Content types that the news report can handle.
- Day
Of stringWeek - (Updatable) Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) The description of the news report.
- Dictionary<string, string>
- (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 state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Locale string
- (Updatable) Language of the news report.
- Name string
- (Updatable) The news report name.
- News
Frequency string - (Updatable) News report frequency.
- Ons
Topic stringId - (Updatable) The OCID of the ONS topic.
- State string
- The current state of the news report.
- Status string
(Updatable) Defines if the news report will be enabled or disabled.
** 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
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the news report was first enabled. An RFC3339 formatted datetime string.
- Time
Updated string - The time the news report was updated. An RFC3339 formatted datetime string.
- Are
Child boolCompartments Included - (Updatable) A flag to consider the resources within a given compartment and all sub-compartments.
- Compartment
Id string - (Updatable) Compartment Identifier where the news report will be created.
- Content
Types NewsReport Content Types Args - (Updatable) Content types that the news report can handle.
- Day
Of stringWeek - (Updatable) Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) The description of the news report.
- map[string]string
- (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 state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Locale string
- (Updatable) Language of the news report.
- Name string
- (Updatable) The news report name.
- News
Frequency string - (Updatable) News report frequency.
- Ons
Topic stringId - (Updatable) The OCID of the ONS topic.
- State string
- The current state of the news report.
- Status string
(Updatable) Defines if the news report will be enabled or disabled.
** 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
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time the the news report was first enabled. An RFC3339 formatted datetime string.
- Time
Updated string - The time the news report was updated. An RFC3339 formatted datetime string.
- are
Child BooleanCompartments Included - (Updatable) A flag to consider the resources within a given compartment and all sub-compartments.
- compartment
Id String - (Updatable) Compartment Identifier where the news report will be created.
- content
Types NewsReport Content Types - (Updatable) Content types that the news report can handle.
- day
Of StringWeek - (Updatable) Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) The description of the news report.
- Map<String,String>
- (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 state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- locale String
- (Updatable) Language of the news report.
- name String
- (Updatable) The news report name.
- news
Frequency String - (Updatable) News report frequency.
- ons
Topic StringId - (Updatable) The OCID of the ONS topic.
- state String
- The current state of the news report.
- status String
(Updatable) Defines if the news report will be enabled or disabled.
** 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
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the news report was first enabled. An RFC3339 formatted datetime string.
- time
Updated String - The time the news report was updated. An RFC3339 formatted datetime string.
- are
Child booleanCompartments Included - (Updatable) A flag to consider the resources within a given compartment and all sub-compartments.
- compartment
Id string - (Updatable) Compartment Identifier where the news report will be created.
- content
Types NewsReport Content Types - (Updatable) Content types that the news report can handle.
- day
Of stringWeek - (Updatable) Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) The description of the news report.
- {[key: string]: string}
- (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 state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- locale string
- (Updatable) Language of the news report.
- name string
- (Updatable) The news report name.
- news
Frequency string - (Updatable) News report frequency.
- ons
Topic stringId - (Updatable) The OCID of the ONS topic.
- state string
- The current state of the news report.
- status string
(Updatable) Defines if the news report will be enabled or disabled.
** 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
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time the the news report was first enabled. An RFC3339 formatted datetime string.
- time
Updated string - The time the news report was updated. An RFC3339 formatted datetime string.
- are_
child_ boolcompartments_ included - (Updatable) A flag to consider the resources within a given compartment and all sub-compartments.
- compartment_
id str - (Updatable) Compartment Identifier where the news report will be created.
- content_
types opsi.News Report Content Types Args - (Updatable) Content types that the news report can handle.
- day_
of_ strweek - (Updatable) Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) The description of the news report.
- Mapping[str, str]
- (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 state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- locale str
- (Updatable) Language of the news report.
- name str
- (Updatable) The news report name.
- news_
frequency str - (Updatable) News report frequency.
- ons_
topic_ strid - (Updatable) The OCID of the ONS topic.
- state str
- The current state of the news report.
- status str
(Updatable) Defines if the news report will be enabled or disabled.
** 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
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time the the news report was first enabled. An RFC3339 formatted datetime string.
- time_
updated str - The time the news report was updated. An RFC3339 formatted datetime string.
- are
Child BooleanCompartments Included - (Updatable) A flag to consider the resources within a given compartment and all sub-compartments.
- compartment
Id String - (Updatable) Compartment Identifier where the news report will be created.
- content
Types Property Map - (Updatable) Content types that the news report can handle.
- day
Of StringWeek - (Updatable) Day of the week in which the news report will be sent if the frequency is set to WEEKLY.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) The description of the news report.
- Map<String>
- (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 state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- locale String
- (Updatable) Language of the news report.
- name String
- (Updatable) The news report name.
- news
Frequency String - (Updatable) News report frequency.
- ons
Topic StringId - (Updatable) The OCID of the ONS topic.
- state String
- The current state of the news report.
- status String
(Updatable) Defines if the news report will be enabled or disabled.
** 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
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time the the news report was first enabled. An RFC3339 formatted datetime string.
- time
Updated String - The time the news report was updated. An RFC3339 formatted datetime string.
Supporting Types
NewsReportContentTypes, NewsReportContentTypesArgs
- Capacity
Planning List<string>Resources - (Updatable) Supported resources for capacity planning content type.
- Sql
Insights List<string>Fleet Analysis Resources - (Updatable) Supported resources for SQL insights - fleet analysis content type.
- Sql
Insights List<string>Performance Degradation Resources - (Updatable) Supported resources for SQL insights - performance degradation content type.
- Sql
Insights List<string>Plan Changes Resources - (Updatable) Supported resources for SQL insights - plan changes content type.
- Sql
Insights List<string>Top Databases Resources - (Updatable) Supported resources for SQL insights - top databases content type.
- Sql
Insights List<string>Top Sql By Insights Resources - (Updatable) Supported resources for SQL insights - top SQL by insights content type.
- Sql
Insights List<string>Top Sql Resources - (Updatable) Supported resources for SQL insights - top SQL content type.
- Capacity
Planning []stringResources - (Updatable) Supported resources for capacity planning content type.
- Sql
Insights []stringFleet Analysis Resources - (Updatable) Supported resources for SQL insights - fleet analysis content type.
- Sql
Insights []stringPerformance Degradation Resources - (Updatable) Supported resources for SQL insights - performance degradation content type.
- Sql
Insights []stringPlan Changes Resources - (Updatable) Supported resources for SQL insights - plan changes content type.
- Sql
Insights []stringTop Databases Resources - (Updatable) Supported resources for SQL insights - top databases content type.
- Sql
Insights []stringTop Sql By Insights Resources - (Updatable) Supported resources for SQL insights - top SQL by insights content type.
- Sql
Insights []stringTop Sql Resources - (Updatable) Supported resources for SQL insights - top SQL content type.
- capacity
Planning List<String>Resources - (Updatable) Supported resources for capacity planning content type.
- sql
Insights List<String>Fleet Analysis Resources - (Updatable) Supported resources for SQL insights - fleet analysis content type.
- sql
Insights List<String>Performance Degradation Resources - (Updatable) Supported resources for SQL insights - performance degradation content type.
- sql
Insights List<String>Plan Changes Resources - (Updatable) Supported resources for SQL insights - plan changes content type.
- sql
Insights List<String>Top Databases Resources - (Updatable) Supported resources for SQL insights - top databases content type.
- sql
Insights List<String>Top Sql By Insights Resources - (Updatable) Supported resources for SQL insights - top SQL by insights content type.
- sql
Insights List<String>Top Sql Resources - (Updatable) Supported resources for SQL insights - top SQL content type.
- capacity
Planning string[]Resources - (Updatable) Supported resources for capacity planning content type.
- sql
Insights string[]Fleet Analysis Resources - (Updatable) Supported resources for SQL insights - fleet analysis content type.
- sql
Insights string[]Performance Degradation Resources - (Updatable) Supported resources for SQL insights - performance degradation content type.
- sql
Insights string[]Plan Changes Resources - (Updatable) Supported resources for SQL insights - plan changes content type.
- sql
Insights string[]Top Databases Resources - (Updatable) Supported resources for SQL insights - top databases content type.
- sql
Insights string[]Top Sql By Insights Resources - (Updatable) Supported resources for SQL insights - top SQL by insights content type.
- sql
Insights string[]Top Sql Resources - (Updatable) Supported resources for SQL insights - top SQL content type.
- capacity_
planning_ Sequence[str]resources - (Updatable) Supported resources for capacity planning content type.
- sql_
insights_ Sequence[str]fleet_ analysis_ resources - (Updatable) Supported resources for SQL insights - fleet analysis content type.
- sql_
insights_ Sequence[str]performance_ degradation_ resources - (Updatable) Supported resources for SQL insights - performance degradation content type.
- sql_
insights_ Sequence[str]plan_ changes_ resources - (Updatable) Supported resources for SQL insights - plan changes content type.
- sql_
insights_ Sequence[str]top_ databases_ resources - (Updatable) Supported resources for SQL insights - top databases content type.
- sql_
insights_ Sequence[str]top_ sql_ by_ insights_ resources - (Updatable) Supported resources for SQL insights - top SQL by insights content type.
- sql_
insights_ Sequence[str]top_ sql_ resources - (Updatable) Supported resources for SQL insights - top SQL content type.
- capacity
Planning List<String>Resources - (Updatable) Supported resources for capacity planning content type.
- sql
Insights List<String>Fleet Analysis Resources - (Updatable) Supported resources for SQL insights - fleet analysis content type.
- sql
Insights List<String>Performance Degradation Resources - (Updatable) Supported resources for SQL insights - performance degradation content type.
- sql
Insights List<String>Plan Changes Resources - (Updatable) Supported resources for SQL insights - plan changes content type.
- sql
Insights List<String>Top Databases Resources - (Updatable) Supported resources for SQL insights - top databases content type.
- sql
Insights List<String>Top Sql By Insights Resources - (Updatable) Supported resources for SQL insights - top SQL by insights content type.
- sql
Insights List<String>Top Sql Resources - (Updatable) Supported resources for SQL insights - top SQL content type.
Import
NewsReports can be imported using the id
, e.g.
$ pulumi import oci:Opsi/newsReport:NewsReport test_news_report "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.