oci.DataSafe.getSensitiveTypeGroups
Explore with Pulumi AI
This data source provides the list of Sensitive Type Groups in Oracle Cloud Infrastructure Data Safe service.
Gets a list of sensitive type groups based on the specified query parameters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSensitiveTypeGroups = oci.DataSafe.getSensitiveTypeGroups({
    compartmentId: compartmentId,
    accessLevel: sensitiveTypeGroupAccessLevel,
    compartmentIdInSubtree: sensitiveTypeGroupCompartmentIdInSubtree,
    displayName: sensitiveTypeGroupDisplayName,
    sensitiveTypeGroupId: testSensitiveTypeGroup.id,
    state: sensitiveTypeGroupState,
    timeCreatedGreaterThanOrEqualTo: sensitiveTypeGroupTimeCreatedGreaterThanOrEqualTo,
    timeCreatedLessThan: sensitiveTypeGroupTimeCreatedLessThan,
});
import pulumi
import pulumi_oci as oci
test_sensitive_type_groups = oci.DataSafe.get_sensitive_type_groups(compartment_id=compartment_id,
    access_level=sensitive_type_group_access_level,
    compartment_id_in_subtree=sensitive_type_group_compartment_id_in_subtree,
    display_name=sensitive_type_group_display_name,
    sensitive_type_group_id=test_sensitive_type_group["id"],
    state=sensitive_type_group_state,
    time_created_greater_than_or_equal_to=sensitive_type_group_time_created_greater_than_or_equal_to,
    time_created_less_than=sensitive_type_group_time_created_less_than)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datasafe"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datasafe.GetSensitiveTypeGroups(ctx, &datasafe.GetSensitiveTypeGroupsArgs{
			CompartmentId:                   compartmentId,
			AccessLevel:                     pulumi.StringRef(sensitiveTypeGroupAccessLevel),
			CompartmentIdInSubtree:          pulumi.BoolRef(sensitiveTypeGroupCompartmentIdInSubtree),
			DisplayName:                     pulumi.StringRef(sensitiveTypeGroupDisplayName),
			SensitiveTypeGroupId:            pulumi.StringRef(testSensitiveTypeGroup.Id),
			State:                           pulumi.StringRef(sensitiveTypeGroupState),
			TimeCreatedGreaterThanOrEqualTo: pulumi.StringRef(sensitiveTypeGroupTimeCreatedGreaterThanOrEqualTo),
			TimeCreatedLessThan:             pulumi.StringRef(sensitiveTypeGroupTimeCreatedLessThan),
		}, 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 testSensitiveTypeGroups = Oci.DataSafe.GetSensitiveTypeGroups.Invoke(new()
    {
        CompartmentId = compartmentId,
        AccessLevel = sensitiveTypeGroupAccessLevel,
        CompartmentIdInSubtree = sensitiveTypeGroupCompartmentIdInSubtree,
        DisplayName = sensitiveTypeGroupDisplayName,
        SensitiveTypeGroupId = testSensitiveTypeGroup.Id,
        State = sensitiveTypeGroupState,
        TimeCreatedGreaterThanOrEqualTo = sensitiveTypeGroupTimeCreatedGreaterThanOrEqualTo,
        TimeCreatedLessThan = sensitiveTypeGroupTimeCreatedLessThan,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.DataSafeFunctions;
import com.pulumi.oci.DataSafe.inputs.GetSensitiveTypeGroupsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var testSensitiveTypeGroups = DataSafeFunctions.getSensitiveTypeGroups(GetSensitiveTypeGroupsArgs.builder()
            .compartmentId(compartmentId)
            .accessLevel(sensitiveTypeGroupAccessLevel)
            .compartmentIdInSubtree(sensitiveTypeGroupCompartmentIdInSubtree)
            .displayName(sensitiveTypeGroupDisplayName)
            .sensitiveTypeGroupId(testSensitiveTypeGroup.id())
            .state(sensitiveTypeGroupState)
            .timeCreatedGreaterThanOrEqualTo(sensitiveTypeGroupTimeCreatedGreaterThanOrEqualTo)
            .timeCreatedLessThan(sensitiveTypeGroupTimeCreatedLessThan)
            .build());
    }
}
variables:
  testSensitiveTypeGroups:
    fn::invoke:
      function: oci:DataSafe:getSensitiveTypeGroups
      arguments:
        compartmentId: ${compartmentId}
        accessLevel: ${sensitiveTypeGroupAccessLevel}
        compartmentIdInSubtree: ${sensitiveTypeGroupCompartmentIdInSubtree}
        displayName: ${sensitiveTypeGroupDisplayName}
        sensitiveTypeGroupId: ${testSensitiveTypeGroup.id}
        state: ${sensitiveTypeGroupState}
        timeCreatedGreaterThanOrEqualTo: ${sensitiveTypeGroupTimeCreatedGreaterThanOrEqualTo}
        timeCreatedLessThan: ${sensitiveTypeGroupTimeCreatedLessThan}
Using getSensitiveTypeGroups
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 getSensitiveTypeGroups(args: GetSensitiveTypeGroupsArgs, opts?: InvokeOptions): Promise<GetSensitiveTypeGroupsResult>
function getSensitiveTypeGroupsOutput(args: GetSensitiveTypeGroupsOutputArgs, opts?: InvokeOptions): Output<GetSensitiveTypeGroupsResult>def get_sensitive_type_groups(access_level: Optional[str] = None,
                              compartment_id: Optional[str] = None,
                              compartment_id_in_subtree: Optional[bool] = None,
                              display_name: Optional[str] = None,
                              filters: Optional[Sequence[GetSensitiveTypeGroupsFilter]] = None,
                              sensitive_type_group_id: Optional[str] = None,
                              state: Optional[str] = None,
                              time_created_greater_than_or_equal_to: Optional[str] = None,
                              time_created_less_than: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetSensitiveTypeGroupsResult
def get_sensitive_type_groups_output(access_level: Optional[pulumi.Input[str]] = None,
                              compartment_id: Optional[pulumi.Input[str]] = None,
                              compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                              display_name: Optional[pulumi.Input[str]] = None,
                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetSensitiveTypeGroupsFilterArgs]]]] = None,
                              sensitive_type_group_id: Optional[pulumi.Input[str]] = None,
                              state: Optional[pulumi.Input[str]] = None,
                              time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                              time_created_less_than: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetSensitiveTypeGroupsResult]func GetSensitiveTypeGroups(ctx *Context, args *GetSensitiveTypeGroupsArgs, opts ...InvokeOption) (*GetSensitiveTypeGroupsResult, error)
func GetSensitiveTypeGroupsOutput(ctx *Context, args *GetSensitiveTypeGroupsOutputArgs, opts ...InvokeOption) GetSensitiveTypeGroupsResultOutput> Note: This function is named GetSensitiveTypeGroups in the Go SDK.
public static class GetSensitiveTypeGroups 
{
    public static Task<GetSensitiveTypeGroupsResult> InvokeAsync(GetSensitiveTypeGroupsArgs args, InvokeOptions? opts = null)
    public static Output<GetSensitiveTypeGroupsResult> Invoke(GetSensitiveTypeGroupsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetSensitiveTypeGroupsResult> getSensitiveTypeGroups(GetSensitiveTypeGroupsArgs args, InvokeOptions options)
public static Output<GetSensitiveTypeGroupsResult> getSensitiveTypeGroups(GetSensitiveTypeGroupsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataSafe/getSensitiveTypeGroups:getSensitiveTypeGroups
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- AccessLevel string
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- CompartmentId boolIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- DisplayName string
- A filter to return only resources that match the specified display name.
- Filters
List<GetSensitive Type Groups Filter> 
- SensitiveType stringGroup Id 
- An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
- State string
- A filter to return only the resources that match the specified lifecycle state.
- TimeCreated stringGreater Than Or Equal To 
- A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date. - Example: 2016-12-19T16:39:57.600Z 
- TimeCreated stringLess Than 
- Search for resources that were created before a specific date. Specifying this parameter corresponding - timeCreatedLessThanparameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.- Example: 2016-12-19T16:39:57.600Z 
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- AccessLevel string
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- CompartmentId boolIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- DisplayName string
- A filter to return only resources that match the specified display name.
- Filters
[]GetSensitive Type Groups Filter 
- SensitiveType stringGroup Id 
- An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
- State string
- A filter to return only the resources that match the specified lifecycle state.
- TimeCreated stringGreater Than Or Equal To 
- A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date. - Example: 2016-12-19T16:39:57.600Z 
- TimeCreated stringLess Than 
- Search for resources that were created before a specific date. Specifying this parameter corresponding - timeCreatedLessThanparameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.- Example: 2016-12-19T16:39:57.600Z 
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- accessLevel String
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- compartmentId BooleanIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- displayName String
- A filter to return only resources that match the specified display name.
- filters
List<GetSensitive Type Groups Filter> 
- sensitiveType StringGroup Id 
- An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
- state String
- A filter to return only the resources that match the specified lifecycle state.
- timeCreated StringGreater Than Or Equal To 
- A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date. - Example: 2016-12-19T16:39:57.600Z 
- timeCreated StringLess Than 
- Search for resources that were created before a specific date. Specifying this parameter corresponding - timeCreatedLessThanparameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.- Example: 2016-12-19T16:39:57.600Z 
- compartmentId string
- A filter to return only resources that match the specified compartment OCID.
- accessLevel string
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- compartmentId booleanIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- displayName string
- A filter to return only resources that match the specified display name.
- filters
GetSensitive Type Groups Filter[] 
- sensitiveType stringGroup Id 
- An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
- state string
- A filter to return only the resources that match the specified lifecycle state.
- timeCreated stringGreater Than Or Equal To 
- A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date. - Example: 2016-12-19T16:39:57.600Z 
- timeCreated stringLess Than 
- Search for resources that were created before a specific date. Specifying this parameter corresponding - timeCreatedLessThanparameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.- Example: 2016-12-19T16:39:57.600Z 
- compartment_id str
- A filter to return only resources that match the specified compartment OCID.
- access_level str
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- compartment_id_ boolin_ subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- display_name str
- A filter to return only resources that match the specified display name.
- filters
Sequence[GetSensitive Type Groups Filter] 
- sensitive_type_ strgroup_ id 
- An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
- state str
- A filter to return only the resources that match the specified lifecycle state.
- time_created_ strgreater_ than_ or_ equal_ to 
- A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date. - Example: 2016-12-19T16:39:57.600Z 
- time_created_ strless_ than 
- Search for resources that were created before a specific date. Specifying this parameter corresponding - timeCreatedLessThanparameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.- Example: 2016-12-19T16:39:57.600Z 
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- accessLevel String
- Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- compartmentId BooleanIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- displayName String
- A filter to return only resources that match the specified display name.
- filters List<Property Map>
- sensitiveType StringGroup Id 
- An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
- state String
- A filter to return only the resources that match the specified lifecycle state.
- timeCreated StringGreater Than Or Equal To 
- A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date. - Example: 2016-12-19T16:39:57.600Z 
- timeCreated StringLess Than 
- Search for resources that were created before a specific date. Specifying this parameter corresponding - timeCreatedLessThanparameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.- Example: 2016-12-19T16:39:57.600Z 
getSensitiveTypeGroups Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment that contains the sensitive type group.
- Id string
- The provider-assigned unique ID for this managed resource.
- SensitiveType List<GetGroup Collections Sensitive Type Groups Sensitive Type Group Collection> 
- The list of sensitive_type_group_collection.
- AccessLevel string
- CompartmentId boolIn Subtree 
- DisplayName string
- The display name of the sensitive type group.
- Filters
List<GetSensitive Type Groups Filter> 
- SensitiveType stringGroup Id 
- State string
- The current state of the sensitive type group.
- TimeCreated stringGreater Than Or Equal To 
- TimeCreated stringLess Than 
- CompartmentId string
- The OCID of the compartment that contains the sensitive type group.
- Id string
- The provider-assigned unique ID for this managed resource.
- SensitiveType []GetGroup Collections Sensitive Type Groups Sensitive Type Group Collection 
- The list of sensitive_type_group_collection.
- AccessLevel string
- CompartmentId boolIn Subtree 
- DisplayName string
- The display name of the sensitive type group.
- Filters
[]GetSensitive Type Groups Filter 
- SensitiveType stringGroup Id 
- State string
- The current state of the sensitive type group.
- TimeCreated stringGreater Than Or Equal To 
- TimeCreated stringLess Than 
- compartmentId String
- The OCID of the compartment that contains the sensitive type group.
- id String
- The provider-assigned unique ID for this managed resource.
- sensitiveType List<GetGroup Collections Sensitive Type Groups Sensitive Type Group Collection> 
- The list of sensitive_type_group_collection.
- accessLevel String
- compartmentId BooleanIn Subtree 
- displayName String
- The display name of the sensitive type group.
- filters
List<GetSensitive Type Groups Filter> 
- sensitiveType StringGroup Id 
- state String
- The current state of the sensitive type group.
- timeCreated StringGreater Than Or Equal To 
- timeCreated StringLess Than 
- compartmentId string
- The OCID of the compartment that contains the sensitive type group.
- id string
- The provider-assigned unique ID for this managed resource.
- sensitiveType GetGroup Collections Sensitive Type Groups Sensitive Type Group Collection[] 
- The list of sensitive_type_group_collection.
- accessLevel string
- compartmentId booleanIn Subtree 
- displayName string
- The display name of the sensitive type group.
- filters
GetSensitive Type Groups Filter[] 
- sensitiveType stringGroup Id 
- state string
- The current state of the sensitive type group.
- timeCreated stringGreater Than Or Equal To 
- timeCreated stringLess Than 
- compartment_id str
- The OCID of the compartment that contains the sensitive type group.
- id str
- The provider-assigned unique ID for this managed resource.
- sensitive_type_ Sequence[Getgroup_ collections Sensitive Type Groups Sensitive Type Group Collection] 
- The list of sensitive_type_group_collection.
- access_level str
- compartment_id_ boolin_ subtree 
- display_name str
- The display name of the sensitive type group.
- filters
Sequence[GetSensitive Type Groups Filter] 
- sensitive_type_ strgroup_ id 
- state str
- The current state of the sensitive type group.
- time_created_ strgreater_ than_ or_ equal_ to 
- time_created_ strless_ than 
- compartmentId String
- The OCID of the compartment that contains the sensitive type group.
- id String
- The provider-assigned unique ID for this managed resource.
- sensitiveType List<Property Map>Group Collections 
- The list of sensitive_type_group_collection.
- accessLevel String
- compartmentId BooleanIn Subtree 
- displayName String
- The display name of the sensitive type group.
- filters List<Property Map>
- sensitiveType StringGroup Id 
- state String
- The current state of the sensitive type group.
- timeCreated StringGreater Than Or Equal To 
- timeCreated StringLess Than 
Supporting Types
GetSensitiveTypeGroupsFilter    
GetSensitiveTypeGroupsSensitiveTypeGroupCollection       
GetSensitiveTypeGroupsSensitiveTypeGroupCollectionItem        
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- 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
- The description of the sensitive type group.
- DisplayName string
- A filter to return only resources that match the specified display name.
- 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"}
- Id string
- The OCID of the sensitive type group.
- SensitiveType intCount 
- The number of sensitive types in the specified sensitive type group.
- State string
- A filter to return only the resources that match the specified lifecycle state.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the sensitive type group was created, in the format defined by RFC3339.
- TimeUpdated string
- The date and time the sensitive type group was last updated, in the format defined by RFC3339.
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- 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
- The description of the sensitive type group.
- DisplayName string
- A filter to return only resources that match the specified display name.
- 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"}
- Id string
- The OCID of the sensitive type group.
- SensitiveType intCount 
- The number of sensitive types in the specified sensitive type group.
- State string
- A filter to return only the resources that match the specified lifecycle state.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the sensitive type group was created, in the format defined by RFC3339.
- TimeUpdated string
- The date and time the sensitive type group was last updated, in the format defined by RFC3339.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- 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
- The description of the sensitive type group.
- displayName String
- A filter to return only resources that match the specified display name.
- 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"}
- id String
- The OCID of the sensitive type group.
- sensitiveType IntegerCount 
- The number of sensitive types in the specified sensitive type group.
- state String
- A filter to return only the resources that match the specified lifecycle state.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the sensitive type group was created, in the format defined by RFC3339.
- timeUpdated String
- The date and time the sensitive type group was last updated, in the format defined by RFC3339.
- compartmentId string
- A filter to return only resources that match the specified compartment OCID.
- {[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
- The description of the sensitive type group.
- displayName string
- A filter to return only resources that match the specified display name.
- {[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"}
- id string
- The OCID of the sensitive type group.
- sensitiveType numberCount 
- The number of sensitive types in the specified sensitive type group.
- state string
- A filter to return only the resources that match the specified lifecycle state.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The date and time the sensitive type group was created, in the format defined by RFC3339.
- timeUpdated string
- The date and time the sensitive type group was last updated, in the format defined by RFC3339.
- compartment_id str
- A filter to return only resources that match the specified compartment OCID.
- 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
- The description of the sensitive type group.
- display_name str
- A filter to return only resources that match the specified display name.
- 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"}
- id str
- The OCID of the sensitive type group.
- sensitive_type_ intcount 
- The number of sensitive types in the specified sensitive type group.
- state str
- A filter to return only the resources that match the specified lifecycle state.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The date and time the sensitive type group was created, in the format defined by RFC3339.
- time_updated str
- The date and time the sensitive type group was last updated, in the format defined by RFC3339.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- 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
- The description of the sensitive type group.
- displayName String
- A filter to return only resources that match the specified display name.
- 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"}
- id String
- The OCID of the sensitive type group.
- sensitiveType NumberCount 
- The number of sensitive types in the specified sensitive type group.
- state String
- A filter to return only the resources that match the specified lifecycle state.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the sensitive type group was created, in the format defined by RFC3339.
- timeUpdated String
- The date and time the sensitive type group was last updated, in the format defined by RFC3339.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.