1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. oci
  6. getMulticloudMulticloudpolicies
Viewing docs for Oracle Cloud Infrastructure v4.16.0
published on Wednesday, Jun 17, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.16.0
published on Wednesday, Jun 17, 2026 by Pulumi

    This data source provides the list of Multicloudpolicies in Oracle Cloud Infrastructure Multicloud service.

    Gets a list of Multicloud IAM Policies.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testMulticloudpolicies = oci.oci.getMulticloudMulticloudpolicies({
        compartmentId: compartmentId,
        displayName: multicloudpolicyDisplayName,
        isForceRefresh: multicloudpolicyIsForceRefresh === "true",
        subscriptionId: testSubscription.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_multicloudpolicies = oci.oci.get_multicloud_multicloudpolicies(compartment_id=compartment_id,
        display_name=multicloudpolicy_display_name,
        is_force_refresh=multicloudpolicy_is_force_refresh == "true",
        subscription_id=test_subscription["id"])
    
    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.GetMulticloudMulticloudpolicies(ctx, &oci.GetMulticloudMulticloudpoliciesArgs{
    			CompartmentId:  compartmentId,
    			DisplayName:    pulumi.StringRef(multicloudpolicyDisplayName),
    			IsForceRefresh: pulumi.BoolRef(multicloudpolicyIsForceRefresh),
    			SubscriptionId: pulumi.StringRef(testSubscription.Id),
    		}, 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 testMulticloudpolicies = Oci.Oci.GetMulticloudMulticloudpolicies.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = multicloudpolicyDisplayName,
            IsForceRefresh = multicloudpolicyIsForceRefresh,
            SubscriptionId = testSubscription.Id,
        });
    
    });
    
    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.GetMulticloudMulticloudpoliciesArgs;
    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 testMulticloudpolicies = OciFunctions.getMulticloudMulticloudpolicies(GetMulticloudMulticloudpoliciesArgs.builder()
                .compartmentId(compartmentId)
                .displayName(multicloudpolicyDisplayName)
                .isForceRefresh(multicloudpolicyIsForceRefresh)
                .subscriptionId(testSubscription.id())
                .build());
    
        }
    }
    
    variables:
      testMulticloudpolicies:
        fn::invoke:
          function: oci:oci:getMulticloudMulticloudpolicies
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${multicloudpolicyDisplayName}
            isForceRefresh: ${multicloudpolicyIsForceRefresh}
            subscriptionId: ${testSubscription.id}
    
    pulumi {
      required_providers {
        oci = {
          source = "pulumi/oci"
        }
      }
    }
    
    data "oci_oci_getmulticloudmulticloudpolicies" "testMulticloudpolicies" {
      compartment_id   = compartmentId
      display_name     = multicloudpolicyDisplayName
      is_force_refresh = multicloudpolicyIsForceRefresh
      subscription_id  = testSubscription.id
    }
    

    Using getMulticloudMulticloudpolicies

    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 getMulticloudMulticloudpolicies(args: GetMulticloudMulticloudpoliciesArgs, opts?: InvokeOptions): Promise<GetMulticloudMulticloudpoliciesResult>
    function getMulticloudMulticloudpoliciesOutput(args: GetMulticloudMulticloudpoliciesOutputArgs, opts?: InvokeOptions): Output<GetMulticloudMulticloudpoliciesResult>
    def get_multicloud_multicloudpolicies(compartment_id: Optional[str] = None,
                                          display_name: Optional[str] = None,
                                          filters: Optional[Sequence[GetMulticloudMulticloudpoliciesFilter]] = None,
                                          is_force_refresh: Optional[bool] = None,
                                          limit: Optional[int] = None,
                                          subscription_id: Optional[str] = None,
                                          opts: Optional[InvokeOptions] = None) -> GetMulticloudMulticloudpoliciesResult
    def get_multicloud_multicloudpolicies_output(compartment_id: pulumi.Input[Optional[str]] = None,
                                          display_name: pulumi.Input[Optional[str]] = None,
                                          filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetMulticloudMulticloudpoliciesFilterArgs]]]] = None,
                                          is_force_refresh: pulumi.Input[Optional[bool]] = None,
                                          limit: pulumi.Input[Optional[int]] = None,
                                          subscription_id: pulumi.Input[Optional[str]] = None,
                                          opts: Optional[InvokeOptions] = None) -> Output[GetMulticloudMulticloudpoliciesResult]
    func GetMulticloudMulticloudpolicies(ctx *Context, args *GetMulticloudMulticloudpoliciesArgs, opts ...InvokeOption) (*GetMulticloudMulticloudpoliciesResult, error)
    func GetMulticloudMulticloudpoliciesOutput(ctx *Context, args *GetMulticloudMulticloudpoliciesOutputArgs, opts ...InvokeOption) GetMulticloudMulticloudpoliciesResultOutput

    > Note: This function is named GetMulticloudMulticloudpolicies in the Go SDK.

    public static class GetMulticloudMulticloudpolicies 
    {
        public static Task<GetMulticloudMulticloudpoliciesResult> InvokeAsync(GetMulticloudMulticloudpoliciesArgs args, InvokeOptions? opts = null)
        public static Output<GetMulticloudMulticloudpoliciesResult> Invoke(GetMulticloudMulticloudpoliciesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetMulticloudMulticloudpoliciesResult> getMulticloudMulticloudpolicies(GetMulticloudMulticloudpoliciesArgs args, InvokeOptions options)
    public static Output<GetMulticloudMulticloudpoliciesResult> getMulticloudMulticloudpolicies(GetMulticloudMulticloudpoliciesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getMulticloudMulticloudpolicies:getMulticloudMulticloudpolicies
      arguments:
        # arguments dictionary
    data "oci_oci_getmulticloudmulticloudpolicies" "name" {
        # arguments
    }

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters List<GetMulticloudMulticloudpoliciesFilter>
    IsForceRefresh bool
    Refresh the policies.
    Limit int
    SubscriptionId string
    The OCID of the Multicloud subscription in which to list resources.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters []GetMulticloudMulticloudpoliciesFilter
    IsForceRefresh bool
    Refresh the policies.
    Limit int
    SubscriptionId string
    The OCID of the Multicloud subscription in which to list resources.
    compartment_id string
    The OCID of the compartment in which to list resources.
    display_name string
    A filter to return only resources that match the given display name exactly.
    filters list(object)
    is_force_refresh bool
    Refresh the policies.
    limit number
    subscription_id string
    The OCID of the Multicloud subscription in which to list resources.
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<GetMulticloudMulticloudpoliciesFilter>
    isForceRefresh Boolean
    Refresh the policies.
    limit Integer
    subscriptionId String
    The OCID of the Multicloud subscription in which to list resources.
    compartmentId string
    The OCID of the compartment in which to list resources.
    displayName string
    A filter to return only resources that match the given display name exactly.
    filters GetMulticloudMulticloudpoliciesFilter[]
    isForceRefresh boolean
    Refresh the policies.
    limit number
    subscriptionId string
    The OCID of the Multicloud subscription in which to list resources.
    compartment_id str
    The OCID of the compartment in which to list resources.
    display_name str
    A filter to return only resources that match the given display name exactly.
    filters Sequence[GetMulticloudMulticloudpoliciesFilter]
    is_force_refresh bool
    Refresh the policies.
    limit int
    subscription_id str
    The OCID of the Multicloud subscription in which to list resources.
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<Property Map>
    isForceRefresh Boolean
    Refresh the policies.
    limit Number
    subscriptionId String
    The OCID of the Multicloud subscription in which to list resources.

    getMulticloudMulticloudpolicies Result

    The following output properties are available:

    CompartmentId string
    Compartment The OCID where the policy is configured.
    Id string
    The provider-assigned unique ID for this managed resource.
    MulticloudPolicyCollections List<GetMulticloudMulticloudpoliciesMulticloudPolicyCollection>
    The list of multicloud_policy_collection.
    DisplayName string
    Filters List<GetMulticloudMulticloudpoliciesFilter>
    IsForceRefresh bool
    Limit int
    SubscriptionId string
    Compartment The OCID of the Oracle Subscription
    CompartmentId string
    Compartment The OCID where the policy is configured.
    Id string
    The provider-assigned unique ID for this managed resource.
    MulticloudPolicyCollections []GetMulticloudMulticloudpoliciesMulticloudPolicyCollection
    The list of multicloud_policy_collection.
    DisplayName string
    Filters []GetMulticloudMulticloudpoliciesFilter
    IsForceRefresh bool
    Limit int
    SubscriptionId string
    Compartment The OCID of the Oracle Subscription
    compartment_id string
    Compartment The OCID where the policy is configured.
    id string
    The provider-assigned unique ID for this managed resource.
    multicloud_policy_collections list(object)
    The list of multicloud_policy_collection.
    display_name string
    filters list(object)
    is_force_refresh bool
    limit number
    subscription_id string
    Compartment The OCID of the Oracle Subscription
    compartmentId String
    Compartment The OCID where the policy is configured.
    id String
    The provider-assigned unique ID for this managed resource.
    multicloudPolicyCollections List<GetMulticloudMulticloudpoliciesMulticloudPolicyCollection>
    The list of multicloud_policy_collection.
    displayName String
    filters List<GetMulticloudMulticloudpoliciesFilter>
    isForceRefresh Boolean
    limit Integer
    subscriptionId String
    Compartment The OCID of the Oracle Subscription
    compartmentId string
    Compartment The OCID where the policy is configured.
    id string
    The provider-assigned unique ID for this managed resource.
    multicloudPolicyCollections GetMulticloudMulticloudpoliciesMulticloudPolicyCollection[]
    The list of multicloud_policy_collection.
    displayName string
    filters GetMulticloudMulticloudpoliciesFilter[]
    isForceRefresh boolean
    limit number
    subscriptionId string
    Compartment The OCID of the Oracle Subscription
    compartment_id str
    Compartment The OCID where the policy is configured.
    id str
    The provider-assigned unique ID for this managed resource.
    multicloud_policy_collections Sequence[GetMulticloudMulticloudpoliciesMulticloudPolicyCollection]
    The list of multicloud_policy_collection.
    display_name str
    filters Sequence[GetMulticloudMulticloudpoliciesFilter]
    is_force_refresh bool
    limit int
    subscription_id str
    Compartment The OCID of the Oracle Subscription
    compartmentId String
    Compartment The OCID where the policy is configured.
    id String
    The provider-assigned unique ID for this managed resource.
    multicloudPolicyCollections List<Property Map>
    The list of multicloud_policy_collection.
    displayName String
    filters List<Property Map>
    isForceRefresh Boolean
    limit Number
    subscriptionId String
    Compartment The OCID of the Oracle Subscription

    Supporting Types

    GetMulticloudMulticloudpoliciesFilter

    Name string
    Name of the missing policy.
    Values List<string>
    Regex bool
    Name string
    Name of the missing policy.
    Values []string
    Regex bool
    name string
    Name of the missing policy.
    values list(string)
    regex bool
    name String
    Name of the missing policy.
    values List<String>
    regex Boolean
    name string
    Name of the missing policy.
    values string[]
    regex boolean
    name str
    Name of the missing policy.
    values Sequence[str]
    regex bool
    name String
    Name of the missing policy.
    values List<String>
    regex Boolean

    GetMulticloudMulticloudpoliciesMulticloudPolicyCollection

    CompartmentId string
    The OCID of the compartment in which to list resources.
    Items List<GetMulticloudMulticloudpoliciesMulticloudPolicyCollectionItem>
    List of MulticloudPolicySummary.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    Items []GetMulticloudMulticloudpoliciesMulticloudPolicyCollectionItem
    List of MulticloudPolicySummary.
    compartment_id string
    The OCID of the compartment in which to list resources.
    items list(object)
    List of MulticloudPolicySummary.
    compartmentId String
    The OCID of the compartment in which to list resources.
    items List<GetMulticloudMulticloudpoliciesMulticloudPolicyCollectionItem>
    List of MulticloudPolicySummary.
    compartmentId string
    The OCID of the compartment in which to list resources.
    items GetMulticloudMulticloudpoliciesMulticloudPolicyCollectionItem[]
    List of MulticloudPolicySummary.
    compartment_id str
    The OCID of the compartment in which to list resources.
    items Sequence[GetMulticloudMulticloudpoliciesMulticloudPolicyCollectionItem]
    List of MulticloudPolicySummary.
    compartmentId String
    The OCID of the compartment in which to list resources.
    items List<Property Map>
    List of MulticloudPolicySummary.

    GetMulticloudMulticloudpoliciesMulticloudPolicyCollectionItem

    DefinedTags 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"}
    FreeformTags 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"}
    Groups List<string>
    groups required for the particular subscriptionType IAM policy statements required.
    LifecycleState string
    The current state of the Multicloud Network Alert.
    Policies List<GetMulticloudMulticloudpoliciesMulticloudPolicyCollectionItemPolicy>
    Missing policy definitions.
    SubscriptionId string
    The OCID of the Multicloud subscription in which to list resources.
    SubscriptionType string
    Oracle Cloud Infrastructure Subscription Type.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    DefinedTags 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"}
    FreeformTags 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"}
    Groups []string
    groups required for the particular subscriptionType IAM policy statements required.
    LifecycleState string
    The current state of the Multicloud Network Alert.
    Policies []GetMulticloudMulticloudpoliciesMulticloudPolicyCollectionItemPolicy
    Missing policy definitions.
    SubscriptionId string
    The OCID of the Multicloud subscription in which to list resources.
    SubscriptionType string
    Oracle Cloud Infrastructure Subscription Type.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    defined_tags 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"}
    freeform_tags 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"}
    groups list(string)
    groups required for the particular subscriptionType IAM policy statements required.
    lifecycle_state string
    The current state of the Multicloud Network Alert.
    policies list(object)
    Missing policy definitions.
    subscription_id string
    The OCID of the Multicloud subscription in which to list resources.
    subscription_type string
    Oracle Cloud Infrastructure Subscription Type.
    system_tags map(string)
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    definedTags 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"}
    freeformTags 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"}
    groups List<String>
    groups required for the particular subscriptionType IAM policy statements required.
    lifecycleState String
    The current state of the Multicloud Network Alert.
    policies List<GetMulticloudMulticloudpoliciesMulticloudPolicyCollectionItemPolicy>
    Missing policy definitions.
    subscriptionId String
    The OCID of the Multicloud subscription in which to list resources.
    subscriptionType String
    Oracle Cloud Infrastructure Subscription Type.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    definedTags {[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"}
    freeformTags {[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"}
    groups string[]
    groups required for the particular subscriptionType IAM policy statements required.
    lifecycleState string
    The current state of the Multicloud Network Alert.
    policies GetMulticloudMulticloudpoliciesMulticloudPolicyCollectionItemPolicy[]
    Missing policy definitions.
    subscriptionId string
    The OCID of the Multicloud subscription in which to list resources.
    subscriptionType string
    Oracle Cloud Infrastructure Subscription Type.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    defined_tags 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"}
    freeform_tags 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"}
    groups Sequence[str]
    groups required for the particular subscriptionType IAM policy statements required.
    lifecycle_state str
    The current state of the Multicloud Network Alert.
    policies Sequence[GetMulticloudMulticloudpoliciesMulticloudPolicyCollectionItemPolicy]
    Missing policy definitions.
    subscription_id str
    The OCID of the Multicloud subscription in which to list resources.
    subscription_type str
    Oracle Cloud Infrastructure Subscription Type.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    definedTags 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"}
    freeformTags 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"}
    groups List<String>
    groups required for the particular subscriptionType IAM policy statements required.
    lifecycleState String
    The current state of the Multicloud Network Alert.
    policies List<Property Map>
    Missing policy definitions.
    subscriptionId String
    The OCID of the Multicloud subscription in which to list resources.
    subscriptionType String
    Oracle Cloud Infrastructure Subscription Type.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    GetMulticloudMulticloudpoliciesMulticloudPolicyCollectionItemPolicy

    CompartmentId string
    The OCID of the compartment in which to list resources.
    CompartmentName string
    Description of the compartment e.g. Base Compartment, Root Compartment
    DefinedTags 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 policy purpose.
    FreeformTags 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"}
    LifecycleState string
    The current state of the Multicloud Network Alert.
    Name string
    Name of the missing policy.
    Statements List<string>
    IAM policy statements required.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    CompartmentId string
    The OCID of the compartment in which to list resources.
    CompartmentName string
    Description of the compartment e.g. Base Compartment, Root Compartment
    DefinedTags 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 policy purpose.
    FreeformTags 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"}
    LifecycleState string
    The current state of the Multicloud Network Alert.
    Name string
    Name of the missing policy.
    Statements []string
    IAM policy statements required.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    compartment_id string
    The OCID of the compartment in which to list resources.
    compartment_name string
    Description of the compartment e.g. Base Compartment, Root Compartment
    defined_tags 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 policy purpose.
    freeform_tags 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.
    name string
    Name of the missing policy.
    statements list(string)
    IAM policy statements required.
    system_tags map(string)
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    compartmentId String
    The OCID of the compartment in which to list resources.
    compartmentName String
    Description of the compartment e.g. Base Compartment, Root Compartment
    definedTags 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 policy purpose.
    freeformTags 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"}
    lifecycleState String
    The current state of the Multicloud Network Alert.
    name String
    Name of the missing policy.
    statements List<String>
    IAM policy statements required.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    compartmentId string
    The OCID of the compartment in which to list resources.
    compartmentName string
    Description of the compartment e.g. Base Compartment, Root Compartment
    definedTags {[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 policy purpose.
    freeformTags {[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"}
    lifecycleState string
    The current state of the Multicloud Network Alert.
    name string
    Name of the missing policy.
    statements string[]
    IAM policy statements required.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    compartment_id str
    The OCID of the compartment in which to list resources.
    compartment_name str
    Description of the compartment e.g. Base Compartment, Root Compartment
    defined_tags 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 policy purpose.
    freeform_tags 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.
    name str
    Name of the missing policy.
    statements Sequence[str]
    IAM policy statements required.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    compartmentId String
    The OCID of the compartment in which to list resources.
    compartmentName String
    Description of the compartment e.g. Base Compartment, Root Compartment
    definedTags 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 policy purpose.
    freeformTags 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"}
    lifecycleState String
    The current state of the Multicloud Network Alert.
    name String
    Name of the missing policy.
    statements List<String>
    IAM policy statements required.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Viewing docs for Oracle Cloud Infrastructure v4.16.0
    published on Wednesday, Jun 17, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial