Viewing docs for Oracle Cloud Infrastructure v4.15.0
published on Thursday, Jun 11, 2026 by Pulumi
published on Thursday, Jun 11, 2026 by Pulumi
Viewing docs for Oracle Cloud Infrastructure v4.15.0
published on Thursday, Jun 11, 2026 by Pulumi
published on Thursday, Jun 11, 2026 by Pulumi
This Data Source is currently in preview.
This data source provides the list of Multicloudalerts in Oracle Cloud Infrastructure Multicloud service.
Gets a list of Multicloud Alerts for a given root compartment. Optional query parameters can be used to filter alerts by resource, subscription, severity, lifecycle state, and alert status.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testMulticloudalerts = oci.oci.getMulticloudMulticloudalerts({
compartmentId: compartmentId,
alertFunctionName: testFunction.name,
alertStatus: multicloudalertAlertStatus,
alertType: multicloudalertAlertType,
displayName: multicloudalertDisplayName,
resourceId: testResource.id,
resourceType: multicloudalertResourceType,
severity: multicloudalertSeverity,
subscriptionId: testSubscription.id,
subscriptionServiceName: testService.name,
});
import pulumi
import pulumi_oci as oci
test_multicloudalerts = oci.oci.get_multicloud_multicloudalerts(compartment_id=compartment_id,
alert_function_name=test_function["name"],
alert_status=multicloudalert_alert_status,
alert_type=multicloudalert_alert_type,
display_name=multicloudalert_display_name,
resource_id=test_resource["id"],
resource_type=multicloudalert_resource_type,
severity=multicloudalert_severity,
subscription_id=test_subscription["id"],
subscription_service_name=test_service["name"])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/oci"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := oci.GetMulticloudMulticloudalerts(ctx, &oci.GetMulticloudMulticloudalertsArgs{
CompartmentId: compartmentId,
AlertFunctionName: pulumi.StringRef(testFunction.Name),
AlertStatus: pulumi.StringRef(multicloudalertAlertStatus),
AlertType: pulumi.StringRef(multicloudalertAlertType),
DisplayName: pulumi.StringRef(multicloudalertDisplayName),
ResourceId: pulumi.StringRef(testResource.Id),
ResourceType: pulumi.StringRef(multicloudalertResourceType),
Severity: pulumi.StringRef(multicloudalertSeverity),
SubscriptionId: pulumi.StringRef(testSubscription.Id),
SubscriptionServiceName: pulumi.StringRef(testService.Name),
}, nil)
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 testMulticloudalerts = Oci.Oci.GetMulticloudMulticloudalerts.Invoke(new()
{
CompartmentId = compartmentId,
AlertFunctionName = testFunction.Name,
AlertStatus = multicloudalertAlertStatus,
AlertType = multicloudalertAlertType,
DisplayName = multicloudalertDisplayName,
ResourceId = testResource.Id,
ResourceType = multicloudalertResourceType,
Severity = multicloudalertSeverity,
SubscriptionId = testSubscription.Id,
SubscriptionServiceName = testService.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.oci.OciFunctions;
import com.pulumi.oci.oci.inputs.GetMulticloudMulticloudalertsArgs;
import java.util.ArrayList;
import java.util.Arrays;
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) {
final var testMulticloudalerts = OciFunctions.getMulticloudMulticloudalerts(GetMulticloudMulticloudalertsArgs.builder()
.compartmentId(compartmentId)
.alertFunctionName(testFunction.name())
.alertStatus(multicloudalertAlertStatus)
.alertType(multicloudalertAlertType)
.displayName(multicloudalertDisplayName)
.resourceId(testResource.id())
.resourceType(multicloudalertResourceType)
.severity(multicloudalertSeverity)
.subscriptionId(testSubscription.id())
.subscriptionServiceName(testService.name())
.build());
}
}
variables:
testMulticloudalerts:
fn::invoke:
function: oci:oci:getMulticloudMulticloudalerts
arguments:
compartmentId: ${compartmentId}
alertFunctionName: ${testFunction.name}
alertStatus: ${multicloudalertAlertStatus}
alertType: ${multicloudalertAlertType}
displayName: ${multicloudalertDisplayName}
resourceId: ${testResource.id}
resourceType: ${multicloudalertResourceType}
severity: ${multicloudalertSeverity}
subscriptionId: ${testSubscription.id}
subscriptionServiceName: ${testService.name}
pulumi {
required_providers {
oci = {
source = "pulumi/oci"
}
}
}
data "oci_oci_getmulticloudmulticloudalerts" "testMulticloudalerts" {
compartment_id = compartmentId
alert_function_name = testFunction.name
alert_status = multicloudalertAlertStatus
alert_type = multicloudalertAlertType
display_name = multicloudalertDisplayName
resource_id = testResource.id
resource_type = multicloudalertResourceType
severity = multicloudalertSeverity
subscription_id = testSubscription.id
subscription_service_name = testService.name
}
Using getMulticloudMulticloudalerts
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getMulticloudMulticloudalerts(args: GetMulticloudMulticloudalertsArgs, opts?: InvokeOptions): Promise<GetMulticloudMulticloudalertsResult>
function getMulticloudMulticloudalertsOutput(args: GetMulticloudMulticloudalertsOutputArgs, opts?: InvokeOptions): Output<GetMulticloudMulticloudalertsResult>def get_multicloud_multicloudalerts(alert_function_name: Optional[str] = None,
alert_status: Optional[str] = None,
alert_type: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetMulticloudMulticloudalertsFilter]] = None,
limit: Optional[int] = None,
resource_id: Optional[str] = None,
resource_type: Optional[str] = None,
severity: Optional[str] = None,
subscription_id: Optional[str] = None,
subscription_service_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetMulticloudMulticloudalertsResult
def get_multicloud_multicloudalerts_output(alert_function_name: pulumi.Input[Optional[str]] = None,
alert_status: pulumi.Input[Optional[str]] = None,
alert_type: pulumi.Input[Optional[str]] = None,
compartment_id: pulumi.Input[Optional[str]] = None,
display_name: pulumi.Input[Optional[str]] = None,
filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetMulticloudMulticloudalertsFilterArgs]]]] = None,
limit: pulumi.Input[Optional[int]] = None,
resource_id: pulumi.Input[Optional[str]] = None,
resource_type: pulumi.Input[Optional[str]] = None,
severity: pulumi.Input[Optional[str]] = None,
subscription_id: pulumi.Input[Optional[str]] = None,
subscription_service_name: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetMulticloudMulticloudalertsResult]func GetMulticloudMulticloudalerts(ctx *Context, args *GetMulticloudMulticloudalertsArgs, opts ...InvokeOption) (*GetMulticloudMulticloudalertsResult, error)
func GetMulticloudMulticloudalertsOutput(ctx *Context, args *GetMulticloudMulticloudalertsOutputArgs, opts ...InvokeOption) GetMulticloudMulticloudalertsResultOutput> Note: This function is named GetMulticloudMulticloudalerts in the Go SDK.
public static class GetMulticloudMulticloudalerts
{
public static Task<GetMulticloudMulticloudalertsResult> InvokeAsync(GetMulticloudMulticloudalertsArgs args, InvokeOptions? opts = null)
public static Output<GetMulticloudMulticloudalertsResult> Invoke(GetMulticloudMulticloudalertsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetMulticloudMulticloudalertsResult> getMulticloudMulticloudalerts(GetMulticloudMulticloudalertsArgs args, InvokeOptions options)
public static Output<GetMulticloudMulticloudalertsResult> getMulticloudMulticloudalerts(GetMulticloudMulticloudalertsArgs args, InvokeOptions options)
fn::invoke:
function: oci:oci/getMulticloudMulticloudalerts:getMulticloudMulticloudalerts
arguments:
# arguments dictionarydata "oci_oci_getmulticloudmulticloudalerts" "name" {
# arguments
}The following arguments are supported:
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Alert
Function stringName - Filter alerts generated by a specific internal component (e.g. MCL, BILLING, ORP).
- Alert
Status string - Filter alerts by alert status. User interaction: ACKNOWLEDGED, UNACKNOWLEDGED System lifecycle: RESOLVED
- Alert
Type string - Filter alerts by alert type (e.g. IAM_POLICY_GAP).
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Filters
List<Get
Multicloud Multicloudalerts Filter> - Limit int
- Resource
Id string - Filter alerts associated with a specific resource OCID.
- Resource
Type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- Severity string
- Filter alerts by severity.
- Subscription
Id string - The OCID of the Multicloud subscription in which to list resources.
- Subscription
Service stringName - The cloud service provider.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Alert
Function stringName - Filter alerts generated by a specific internal component (e.g. MCL, BILLING, ORP).
- Alert
Status string - Filter alerts by alert status. User interaction: ACKNOWLEDGED, UNACKNOWLEDGED System lifecycle: RESOLVED
- Alert
Type string - Filter alerts by alert type (e.g. IAM_POLICY_GAP).
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Filters
[]Get
Multicloud Multicloudalerts Filter - Limit int
- Resource
Id string - Filter alerts associated with a specific resource OCID.
- Resource
Type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- Severity string
- Filter alerts by severity.
- Subscription
Id string - The OCID of the Multicloud subscription in which to list resources.
- Subscription
Service stringName - The cloud service provider.
- compartment_
id string - The OCID of the compartment in which to list resources.
- alert_
function_ stringname - Filter alerts generated by a specific internal component (e.g. MCL, BILLING, ORP).
- alert_
status string - Filter alerts by alert status. User interaction: ACKNOWLEDGED, UNACKNOWLEDGED System lifecycle: RESOLVED
- alert_
type string - Filter alerts by alert type (e.g. IAM_POLICY_GAP).
- display_
name string - A filter to return only resources that match the given display name exactly.
- filters list(object)
- limit number
- resource_
id string - Filter alerts associated with a specific resource OCID.
- resource_
type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- severity string
- Filter alerts by severity.
- subscription_
id string - The OCID of the Multicloud subscription in which to list resources.
- subscription_
service_ stringname - The cloud service provider.
- compartment
Id String - The OCID of the compartment in which to list resources.
- alert
Function StringName - Filter alerts generated by a specific internal component (e.g. MCL, BILLING, ORP).
- alert
Status String - Filter alerts by alert status. User interaction: ACKNOWLEDGED, UNACKNOWLEDGED System lifecycle: RESOLVED
- alert
Type String - Filter alerts by alert type (e.g. IAM_POLICY_GAP).
- display
Name String - A filter to return only resources that match the given display name exactly.
- filters
List<Get
Multicloud Multicloudalerts Filter> - limit Integer
- resource
Id String - Filter alerts associated with a specific resource OCID.
- resource
Type String - Filter alerts by resource type (e.g. ADBD, VMCluster).
- severity String
- Filter alerts by severity.
- subscription
Id String - The OCID of the Multicloud subscription in which to list resources.
- subscription
Service StringName - The cloud service provider.
- compartment
Id string - The OCID of the compartment in which to list resources.
- alert
Function stringName - Filter alerts generated by a specific internal component (e.g. MCL, BILLING, ORP).
- alert
Status string - Filter alerts by alert status. User interaction: ACKNOWLEDGED, UNACKNOWLEDGED System lifecycle: RESOLVED
- alert
Type string - Filter alerts by alert type (e.g. IAM_POLICY_GAP).
- display
Name string - A filter to return only resources that match the given display name exactly.
- filters
Get
Multicloud Multicloudalerts Filter[] - limit number
- resource
Id string - Filter alerts associated with a specific resource OCID.
- resource
Type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- severity string
- Filter alerts by severity.
- subscription
Id string - The OCID of the Multicloud subscription in which to list resources.
- subscription
Service stringName - The cloud service provider.
- compartment_
id str - The OCID of the compartment in which to list resources.
- alert_
function_ strname - Filter alerts generated by a specific internal component (e.g. MCL, BILLING, ORP).
- alert_
status str - Filter alerts by alert status. User interaction: ACKNOWLEDGED, UNACKNOWLEDGED System lifecycle: RESOLVED
- alert_
type str - Filter alerts by alert type (e.g. IAM_POLICY_GAP).
- display_
name str - A filter to return only resources that match the given display name exactly.
- filters
Sequence[Get
Multicloud Multicloudalerts Filter] - limit int
- resource_
id str - Filter alerts associated with a specific resource OCID.
- resource_
type str - Filter alerts by resource type (e.g. ADBD, VMCluster).
- severity str
- Filter alerts by severity.
- subscription_
id str - The OCID of the Multicloud subscription in which to list resources.
- subscription_
service_ strname - The cloud service provider.
- compartment
Id String - The OCID of the compartment in which to list resources.
- alert
Function StringName - Filter alerts generated by a specific internal component (e.g. MCL, BILLING, ORP).
- alert
Status String - Filter alerts by alert status. User interaction: ACKNOWLEDGED, UNACKNOWLEDGED System lifecycle: RESOLVED
- alert
Type String - Filter alerts by alert type (e.g. IAM_POLICY_GAP).
- display
Name String - A filter to return only resources that match the given display name exactly.
- filters List<Property Map>
- limit Number
- resource
Id String - Filter alerts associated with a specific resource OCID.
- resource
Type String - Filter alerts by resource type (e.g. ADBD, VMCluster).
- severity String
- Filter alerts by severity.
- subscription
Id String - The OCID of the Multicloud subscription in which to list resources.
- subscription
Service StringName - The cloud service provider.
getMulticloudMulticloudalerts Result
The following output properties are available:
- Compartment
Id string - Root Compartment The OCID (TenantId) associated with the alert.
- Id string
- The provider-assigned unique ID for this managed resource.
- Multicloud
Alert List<GetCollections Multicloud Multicloudalerts Multicloud Alert Collection> - The list of multicloud_alert_collection.
- Alert
Function stringName - Alert
Status string - Current acknowledgment status of the alert.
- Alert
Type string - Type/category of the alert (e.g. IAM_POLICY_GAP, TAG_INCONSISTENCY).
- Display
Name string - Human-readable name of the alert.
- Filters
List<Get
Multicloud Multicloudalerts Filter> - Limit int
- Resource
Id string - The OCID of the affected resource.
- Resource
Type string - Type of the affected resource (e.g. ADBD).
- Severity string
- Severity of the alert.
- Subscription
Id string - The OCID of the multicloud subscription.
- Subscription
Service stringName
- Compartment
Id string - Root Compartment The OCID (TenantId) associated with the alert.
- Id string
- The provider-assigned unique ID for this managed resource.
- Multicloud
Alert []GetCollections Multicloud Multicloudalerts Multicloud Alert Collection - The list of multicloud_alert_collection.
- Alert
Function stringName - Alert
Status string - Current acknowledgment status of the alert.
- Alert
Type string - Type/category of the alert (e.g. IAM_POLICY_GAP, TAG_INCONSISTENCY).
- Display
Name string - Human-readable name of the alert.
- Filters
[]Get
Multicloud Multicloudalerts Filter - Limit int
- Resource
Id string - The OCID of the affected resource.
- Resource
Type string - Type of the affected resource (e.g. ADBD).
- Severity string
- Severity of the alert.
- Subscription
Id string - The OCID of the multicloud subscription.
- Subscription
Service stringName
- compartment_
id string - Root Compartment The OCID (TenantId) associated with the alert.
- id string
- The provider-assigned unique ID for this managed resource.
- multicloud_
alert_ list(object)collections - The list of multicloud_alert_collection.
- alert_
function_ stringname - alert_
status string - Current acknowledgment status of the alert.
- alert_
type string - Type/category of the alert (e.g. IAM_POLICY_GAP, TAG_INCONSISTENCY).
- display_
name string - Human-readable name of the alert.
- filters list(object)
- limit number
- resource_
id string - The OCID of the affected resource.
- resource_
type string - Type of the affected resource (e.g. ADBD).
- severity string
- Severity of the alert.
- subscription_
id string - The OCID of the multicloud subscription.
- subscription_
service_ stringname
- compartment
Id String - Root Compartment The OCID (TenantId) associated with the alert.
- id String
- The provider-assigned unique ID for this managed resource.
- multicloud
Alert List<GetCollections Multicloud Multicloudalerts Multicloud Alert Collection> - The list of multicloud_alert_collection.
- alert
Function StringName - alert
Status String - Current acknowledgment status of the alert.
- alert
Type String - Type/category of the alert (e.g. IAM_POLICY_GAP, TAG_INCONSISTENCY).
- display
Name String - Human-readable name of the alert.
- filters
List<Get
Multicloud Multicloudalerts Filter> - limit Integer
- resource
Id String - The OCID of the affected resource.
- resource
Type String - Type of the affected resource (e.g. ADBD).
- severity String
- Severity of the alert.
- subscription
Id String - The OCID of the multicloud subscription.
- subscription
Service StringName
- compartment
Id string - Root Compartment The OCID (TenantId) associated with the alert.
- id string
- The provider-assigned unique ID for this managed resource.
- multicloud
Alert GetCollections Multicloud Multicloudalerts Multicloud Alert Collection[] - The list of multicloud_alert_collection.
- alert
Function stringName - alert
Status string - Current acknowledgment status of the alert.
- alert
Type string - Type/category of the alert (e.g. IAM_POLICY_GAP, TAG_INCONSISTENCY).
- display
Name string - Human-readable name of the alert.
- filters
Get
Multicloud Multicloudalerts Filter[] - limit number
- resource
Id string - The OCID of the affected resource.
- resource
Type string - Type of the affected resource (e.g. ADBD).
- severity string
- Severity of the alert.
- subscription
Id string - The OCID of the multicloud subscription.
- subscription
Service stringName
- compartment_
id str - Root Compartment The OCID (TenantId) associated with the alert.
- id str
- The provider-assigned unique ID for this managed resource.
- multicloud_
alert_ Sequence[Getcollections Multicloud Multicloudalerts Multicloud Alert Collection] - The list of multicloud_alert_collection.
- alert_
function_ strname - alert_
status str - Current acknowledgment status of the alert.
- alert_
type str - Type/category of the alert (e.g. IAM_POLICY_GAP, TAG_INCONSISTENCY).
- display_
name str - Human-readable name of the alert.
- filters
Sequence[Get
Multicloud Multicloudalerts Filter] - limit int
- resource_
id str - The OCID of the affected resource.
- resource_
type str - Type of the affected resource (e.g. ADBD).
- severity str
- Severity of the alert.
- subscription_
id str - The OCID of the multicloud subscription.
- subscription_
service_ strname
- compartment
Id String - Root Compartment The OCID (TenantId) associated with the alert.
- id String
- The provider-assigned unique ID for this managed resource.
- multicloud
Alert List<Property Map>Collections - The list of multicloud_alert_collection.
- alert
Function StringName - alert
Status String - Current acknowledgment status of the alert.
- alert
Type String - Type/category of the alert (e.g. IAM_POLICY_GAP, TAG_INCONSISTENCY).
- display
Name String - Human-readable name of the alert.
- filters List<Property Map>
- limit Number
- resource
Id String - The OCID of the affected resource.
- resource
Type String - Type of the affected resource (e.g. ADBD).
- severity String
- Severity of the alert.
- subscription
Id String - The OCID of the multicloud subscription.
- subscription
Service StringName
Supporting Types
GetMulticloudMulticloudalertsFilter
GetMulticloudMulticloudalertsMulticloudAlertCollection
- Items
List<Get
Multicloud Multicloudalerts Multicloud Alert Collection Item> - List of MulticloudAlertSummary.
- Items
[]Get
Multicloud Multicloudalerts Multicloud Alert Collection Item - List of MulticloudAlertSummary.
- items list(object)
- List of MulticloudAlertSummary.
- items
List<Get
Multicloud Multicloudalerts Multicloud Alert Collection Item> - List of MulticloudAlertSummary.
- items
Get
Multicloud Multicloudalerts Multicloud Alert Collection Item[] - List of MulticloudAlertSummary.
- items
Sequence[Get
Multicloud Multicloudalerts Multicloud Alert Collection Item] - List of MulticloudAlertSummary.
- items List<Property Map>
- List of MulticloudAlertSummary.
GetMulticloudMulticloudalertsMulticloudAlertCollectionItem
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Lifecycle
State string - The current state of the Multicloud Network Alert.
- Multicloud
Alerts List<GetMulticloud Multicloudalerts Multicloud Alert Collection Item Multicloud Alert> - List of Multicloud Alerts.
- Multicloudalert
Count int - Total number of alerts
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Lifecycle
State string - The current state of the Multicloud Network Alert.
- Multicloud
Alerts []GetMulticloud Multicloudalerts Multicloud Alert Collection Item Multicloud Alert - List of Multicloud Alerts.
- Multicloudalert
Count int - Total number of alerts
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- map(string)
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - map(string)
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - lifecycle_
state string - The current state of the Multicloud Network Alert.
- multicloud_
alerts list(object) - List of Multicloud Alerts.
- multicloudalert_
count number - Total number of alerts
- map(string)
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - lifecycle
State String - The current state of the Multicloud Network Alert.
- multicloud
Alerts List<GetMulticloud Multicloudalerts Multicloud Alert Collection Item Multicloud Alert> - List of Multicloud Alerts.
- multicloudalert
Count Integer - Total number of alerts
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - lifecycle
State string - The current state of the Multicloud Network Alert.
- multicloud
Alerts GetMulticloud Multicloudalerts Multicloud Alert Collection Item Multicloud Alert[] - List of Multicloud Alerts.
- multicloudalert
Count number - Total number of alerts
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - lifecycle_
state str - The current state of the Multicloud Network Alert.
- multicloud_
alerts Sequence[GetMulticloud Multicloudalerts Multicloud Alert Collection Item Multicloud Alert] - List of Multicloud Alerts.
- multicloudalert_
count int - Total number of alerts
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - lifecycle
State String - The current state of the Multicloud Network Alert.
- multicloud
Alerts List<Property Map> - List of Multicloud Alerts.
- multicloudalert
Count Number - Total number of alerts
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
GetMulticloudMulticloudalertsMulticloudAlertCollectionItemMulticloudAlert
- Additional
Parameters Dictionary<string, string> - Alert-specific contextual parameters.
- Alert
Id string - External or human-friendly alert identifier.
- Alert
Status string - Filter alerts by alert status. User interaction: ACKNOWLEDGED, UNACKNOWLEDGED System lifecycle: RESOLVED
- Alert
Type string - Filter alerts by alert type (e.g. IAM_POLICY_GAP).
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Description string
- Description of the alert and its purpose.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Function
Type string - Internal service or function type generating the alert (e.g. ORP, ODBG_NETWORK, BILLING, OBSERVABILITY).
- Id string
- The OCID of the multicloud alert.
- Lifecycle
State string - The current state of the Multicloud Network Alert.
- Resource
Id string - Filter alerts associated with a specific resource OCID.
- Resource
Type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- Severity string
- Filter alerts by severity.
- Source string
- Source subsystem that generated the alert. (Azure Tag Validation)
- Source
Region string - Oracle Cloud Infrastructure region where the alert originated (e.g. us-phoenix-1)
- Subscription
Id string - The OCID of the Multicloud subscription in which to list resources.
- Subscription
Type string - Oracle Cloud Infrastructure Subscription Type.
- 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 - Timestamp when the alert was created.
- Time
Updated string - Timestamp when the alert was last updated.
- Additional
Parameters map[string]string - Alert-specific contextual parameters.
- Alert
Id string - External or human-friendly alert identifier.
- Alert
Status string - Filter alerts by alert status. User interaction: ACKNOWLEDGED, UNACKNOWLEDGED System lifecycle: RESOLVED
- Alert
Type string - Filter alerts by alert type (e.g. IAM_POLICY_GAP).
- Compartment
Id string - The OCID of the compartment in which to list resources.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Description string
- Description of the alert and its purpose.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - Function
Type string - Internal service or function type generating the alert (e.g. ORP, ODBG_NETWORK, BILLING, OBSERVABILITY).
- Id string
- The OCID of the multicloud alert.
- Lifecycle
State string - The current state of the Multicloud Network Alert.
- Resource
Id string - Filter alerts associated with a specific resource OCID.
- Resource
Type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- Severity string
- Filter alerts by severity.
- Source string
- Source subsystem that generated the alert. (Azure Tag Validation)
- Source
Region string - Oracle Cloud Infrastructure region where the alert originated (e.g. us-phoenix-1)
- Subscription
Id string - The OCID of the Multicloud subscription in which to list resources.
- Subscription
Type string - Oracle Cloud Infrastructure Subscription Type.
- 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 - Timestamp when the alert was created.
- Time
Updated string - Timestamp when the alert was last updated.
- additional_
parameters map(string) - Alert-specific contextual parameters.
- alert_
id string - External or human-friendly alert identifier.
- alert_
status string - Filter alerts by alert status. User interaction: ACKNOWLEDGED, UNACKNOWLEDGED System lifecycle: RESOLVED
- alert_
type string - Filter alerts by alert type (e.g. IAM_POLICY_GAP).
- compartment_
id string - The OCID of the compartment in which to list resources.
- map(string)
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description string
- Description of the alert and its purpose.
- display_
name string - A filter to return only resources that match the given display name exactly.
- map(string)
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - function_
type string - Internal service or function type generating the alert (e.g. ORP, ODBG_NETWORK, BILLING, OBSERVABILITY).
- id string
- The OCID of the multicloud alert.
- lifecycle_
state string - The current state of the Multicloud Network Alert.
- resource_
id string - Filter alerts associated with a specific resource OCID.
- resource_
type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- severity string
- Filter alerts by severity.
- source string
- Source subsystem that generated the alert. (Azure Tag Validation)
- source_
region string - Oracle Cloud Infrastructure region where the alert originated (e.g. us-phoenix-1)
- subscription_
id string - The OCID of the Multicloud subscription in which to list resources.
- subscription_
type string - Oracle Cloud Infrastructure Subscription Type.
- 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 - Timestamp when the alert was created.
- time_
updated string - Timestamp when the alert was last updated.
- additional
Parameters Map<String,String> - Alert-specific contextual parameters.
- alert
Id String - External or human-friendly alert identifier.
- alert
Status String - Filter alerts by alert status. User interaction: ACKNOWLEDGED, UNACKNOWLEDGED System lifecycle: RESOLVED
- alert
Type String - Filter alerts by alert type (e.g. IAM_POLICY_GAP).
- compartment
Id String - The OCID of the compartment in which to list resources.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description String
- Description of the alert and its purpose.
- display
Name String - A filter to return only resources that match the given display name exactly.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - function
Type String - Internal service or function type generating the alert (e.g. ORP, ODBG_NETWORK, BILLING, OBSERVABILITY).
- id String
- The OCID of the multicloud alert.
- lifecycle
State String - The current state of the Multicloud Network Alert.
- resource
Id String - Filter alerts associated with a specific resource OCID.
- resource
Type String - Filter alerts by resource type (e.g. ADBD, VMCluster).
- severity String
- Filter alerts by severity.
- source String
- Source subsystem that generated the alert. (Azure Tag Validation)
- source
Region String - Oracle Cloud Infrastructure region where the alert originated (e.g. us-phoenix-1)
- subscription
Id String - The OCID of the Multicloud subscription in which to list resources.
- subscription
Type String - Oracle Cloud Infrastructure Subscription Type.
- 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 - Timestamp when the alert was created.
- time
Updated String - Timestamp when the alert was last updated.
- additional
Parameters {[key: string]: string} - Alert-specific contextual parameters.
- alert
Id string - External or human-friendly alert identifier.
- alert
Status string - Filter alerts by alert status. User interaction: ACKNOWLEDGED, UNACKNOWLEDGED System lifecycle: RESOLVED
- alert
Type string - Filter alerts by alert type (e.g. IAM_POLICY_GAP).
- compartment
Id string - The OCID of the compartment in which to list resources.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description string
- Description of the alert and its purpose.
- display
Name string - A filter to return only resources that match the given display name exactly.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - function
Type string - Internal service or function type generating the alert (e.g. ORP, ODBG_NETWORK, BILLING, OBSERVABILITY).
- id string
- The OCID of the multicloud alert.
- lifecycle
State string - The current state of the Multicloud Network Alert.
- resource
Id string - Filter alerts associated with a specific resource OCID.
- resource
Type string - Filter alerts by resource type (e.g. ADBD, VMCluster).
- severity string
- Filter alerts by severity.
- source string
- Source subsystem that generated the alert. (Azure Tag Validation)
- source
Region string - Oracle Cloud Infrastructure region where the alert originated (e.g. us-phoenix-1)
- subscription
Id string - The OCID of the Multicloud subscription in which to list resources.
- subscription
Type string - Oracle Cloud Infrastructure Subscription Type.
- {[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 - Timestamp when the alert was created.
- time
Updated string - Timestamp when the alert was last updated.
- additional_
parameters Mapping[str, str] - Alert-specific contextual parameters.
- alert_
id str - External or human-friendly alert identifier.
- alert_
status str - Filter alerts by alert status. User interaction: ACKNOWLEDGED, UNACKNOWLEDGED System lifecycle: RESOLVED
- alert_
type str - Filter alerts by alert type (e.g. IAM_POLICY_GAP).
- compartment_
id str - The OCID of the compartment in which to list resources.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description str
- Description of the alert and its purpose.
- display_
name str - A filter to return only resources that match the given display name exactly.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - function_
type str - Internal service or function type generating the alert (e.g. ORP, ODBG_NETWORK, BILLING, OBSERVABILITY).
- id str
- The OCID of the multicloud alert.
- lifecycle_
state str - The current state of the Multicloud Network Alert.
- resource_
id str - Filter alerts associated with a specific resource OCID.
- resource_
type str - Filter alerts by resource type (e.g. ADBD, VMCluster).
- severity str
- Filter alerts by severity.
- source str
- Source subsystem that generated the alert. (Azure Tag Validation)
- source_
region str - Oracle Cloud Infrastructure region where the alert originated (e.g. us-phoenix-1)
- subscription_
id str - The OCID of the Multicloud subscription in which to list resources.
- subscription_
type str - Oracle Cloud Infrastructure Subscription Type.
- 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 - Timestamp when the alert was created.
- time_
updated str - Timestamp when the alert was last updated.
- additional
Parameters Map<String> - Alert-specific contextual parameters.
- alert
Id String - External or human-friendly alert identifier.
- alert
Status String - Filter alerts by alert status. User interaction: ACKNOWLEDGED, UNACKNOWLEDGED System lifecycle: RESOLVED
- alert
Type String - Filter alerts by alert type (e.g. IAM_POLICY_GAP).
- compartment
Id String - The OCID of the compartment in which to list resources.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - description String
- Description of the alert and its purpose.
- display
Name String - A filter to return only resources that match the given display name exactly.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"} - function
Type String - Internal service or function type generating the alert (e.g. ORP, ODBG_NETWORK, BILLING, OBSERVABILITY).
- id String
- The OCID of the multicloud alert.
- lifecycle
State String - The current state of the Multicloud Network Alert.
- resource
Id String - Filter alerts associated with a specific resource OCID.
- resource
Type String - Filter alerts by resource type (e.g. ADBD, VMCluster).
- severity String
- Filter alerts by severity.
- source String
- Source subsystem that generated the alert. (Azure Tag Validation)
- source
Region String - Oracle Cloud Infrastructure region where the alert originated (e.g. us-phoenix-1)
- subscription
Id String - The OCID of the Multicloud subscription in which to list resources.
- subscription
Type String - Oracle Cloud Infrastructure Subscription Type.
- 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 - Timestamp when the alert was created.
- time
Updated String - Timestamp when the alert was last updated.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Viewing docs for Oracle Cloud Infrastructure v4.15.0
published on Thursday, Jun 11, 2026 by Pulumi
published on Thursday, Jun 11, 2026 by Pulumi