Viewing docs for Oracle Cloud Infrastructure v4.16.0
published on Wednesday, Jun 17, 2026 by Pulumi
published on Wednesday, Jun 17, 2026 by Pulumi
Viewing docs for Oracle Cloud Infrastructure v4.16.0
published on Wednesday, Jun 17, 2026 by Pulumi
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 dictionarydata "oci_oci_getmulticloudmulticloudpolicies" "name" {
# arguments
}The following arguments are supported:
- 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<Get
Multicloud Multicloudpolicies Filter> - Is
Force boolRefresh - Refresh the policies.
- Limit int
- Subscription
Id 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
[]Get
Multicloud Multicloudpolicies Filter - Is
Force boolRefresh - Refresh the policies.
- Limit int
- Subscription
Id 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_ boolrefresh - Refresh the policies.
- limit number
- subscription_
id 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<Get
Multicloud Multicloudpolicies Filter> - is
Force BooleanRefresh - Refresh the policies.
- limit Integer
- subscription
Id 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
Get
Multicloud Multicloudpolicies Filter[] - is
Force booleanRefresh - Refresh the policies.
- limit number
- subscription
Id 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[Get
Multicloud Multicloudpolicies Filter] - is_
force_ boolrefresh - Refresh the policies.
- limit int
- subscription_
id str - 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<Property Map>
- is
Force BooleanRefresh - Refresh the policies.
- limit Number
- subscription
Id String - The OCID of the Multicloud subscription in which to list resources.
getMulticloudMulticloudpolicies Result
The following output properties are available:
- Compartment
Id string - Compartment The OCID where the policy is configured.
- Id string
- The provider-assigned unique ID for this managed resource.
- Multicloud
Policy List<GetCollections Multicloud Multicloudpolicies Multicloud Policy Collection> - The list of multicloud_policy_collection.
- Display
Name string - Filters
List<Get
Multicloud Multicloudpolicies Filter> - Is
Force boolRefresh - Limit int
- Subscription
Id 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 []GetCollections Multicloud Multicloudpolicies Multicloud Policy Collection - The list of multicloud_policy_collection.
- Display
Name string - Filters
[]Get
Multicloud Multicloudpolicies Filter - Is
Force boolRefresh - Limit int
- Subscription
Id 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_ list(object)collections - The list of multicloud_policy_collection.
- display_
name string - filters list(object)
- is_
force_ boolrefresh - limit number
- subscription_
id 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 List<GetCollections Multicloud Multicloudpolicies Multicloud Policy Collection> - The list of multicloud_policy_collection.
- display
Name String - filters
List<Get
Multicloud Multicloudpolicies Filter> - is
Force BooleanRefresh - limit Integer
- subscription
Id 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 GetCollections Multicloud Multicloudpolicies Multicloud Policy Collection[] - The list of multicloud_policy_collection.
- display
Name string - filters
Get
Multicloud Multicloudpolicies Filter[] - is
Force booleanRefresh - limit number
- subscription
Id 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_ Sequence[Getcollections Multicloud Multicloudpolicies Multicloud Policy Collection] - The list of multicloud_policy_collection.
- display_
name str - filters
Sequence[Get
Multicloud Multicloudpolicies Filter] - is_
force_ boolrefresh - limit int
- subscription_
id str - 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 List<Property Map>Collections - The list of multicloud_policy_collection.
- display
Name String - filters List<Property Map>
- is
Force BooleanRefresh - limit Number
- subscription
Id String - Compartment The OCID of the Oracle Subscription
Supporting Types
GetMulticloudMulticloudpoliciesFilter
GetMulticloudMulticloudpoliciesMulticloudPolicyCollection
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Items
List<Get
Multicloud Multicloudpolicies Multicloud Policy Collection Item> - List of MulticloudPolicySummary.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Items
[]Get
Multicloud Multicloudpolicies Multicloud Policy Collection Item - List of MulticloudPolicySummary.
- compartment_
id string - The OCID of the compartment in which to list resources.
- items list(object)
- List of MulticloudPolicySummary.
- compartment
Id String - The OCID of the compartment in which to list resources.
- items
List<Get
Multicloud Multicloudpolicies Multicloud Policy Collection Item> - List of MulticloudPolicySummary.
- compartment
Id string - The OCID of the compartment in which to list resources.
- items
Get
Multicloud Multicloudpolicies Multicloud Policy Collection Item[] - List of MulticloudPolicySummary.
- compartment_
id str - The OCID of the compartment in which to list resources.
- items
Sequence[Get
Multicloud Multicloudpolicies Multicloud Policy Collection Item] - List of MulticloudPolicySummary.
- compartment
Id String - The OCID of the compartment in which to list resources.
- items List<Property Map>
- List of MulticloudPolicySummary.
GetMulticloudMulticloudpoliciesMulticloudPolicyCollectionItem
- 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"} - 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<Get
Multicloud Multicloudpolicies Multicloud Policy Collection Item Policy> - 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.
- 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"} - Groups []string
- groups required for the particular subscriptionType IAM policy statements required.
- Lifecycle
State string - The current state of the Multicloud Network Alert.
- Policies
[]Get
Multicloud Multicloudpolicies Multicloud Policy Collection Item Policy - 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.
- 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"} - 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.
- 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"} - 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<Get
Multicloud Multicloudpolicies Multicloud Policy Collection Item Policy> - 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.
- 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"} - groups string[]
- groups required for the particular subscriptionType IAM policy statements required.
- lifecycle
State string - The current state of the Multicloud Network Alert.
- policies
Get
Multicloud Multicloudpolicies Multicloud Policy Collection Item Policy[] - 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.
- {[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"} - 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[Get
Multicloud Multicloudpolicies Multicloud Policy Collection Item Policy] - 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.
- 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"} - 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<Property Map>
- 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.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
GetMulticloudMulticloudpoliciesMulticloudPolicyCollectionItemPolicy
- 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
- 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.
- 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.
- Name string
- Name of the missing policy.
- Statements List<string>
- IAM policy statements required.
- Dictionary<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
- 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.
- 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.
- Name string
- Name of the missing policy.
- Statements []string
- IAM policy statements required.
- 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
- 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.
- 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.
- map(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
- 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.
- 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.
- name String
- Name of the missing policy.
- statements List<String>
- IAM policy statements required.
- 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
- {[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.
- {[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.
- name string
- Name of the missing policy.
- statements string[]
- IAM policy statements required.
- {[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
- 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.
- 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.
- Mapping[str, str]
- 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
- 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.
- 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.
- 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
ociTerraform Provider.
Viewing docs for Oracle Cloud Infrastructure v4.16.0
published on Wednesday, Jun 17, 2026 by Pulumi
published on Wednesday, Jun 17, 2026 by Pulumi