1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getDiscoveryJobsResults
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

oci.DataSafe.getDiscoveryJobsResults

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

    This data source provides the list of Discovery Jobs Results in Oracle Cloud Infrastructure Data Safe service.

    Gets a list of discovery results based on the specified query parameters.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDiscoveryJobsResults = oci.DataSafe.getDiscoveryJobsResults({
        discoveryJobId: testDiscoveryJob.id,
        columnNames: discoveryJobsResultColumnName,
        discoveryType: discoveryJobsResultDiscoveryType,
        isResultApplied: discoveryJobsResultIsResultApplied,
        objects: discoveryJobsResultObject,
        plannedAction: discoveryJobsResultPlannedAction,
        schemaNames: discoveryJobsResultSchemaName,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_discovery_jobs_results = oci.DataSafe.get_discovery_jobs_results(discovery_job_id=test_discovery_job["id"],
        column_names=discovery_jobs_result_column_name,
        discovery_type=discovery_jobs_result_discovery_type,
        is_result_applied=discovery_jobs_result_is_result_applied,
        objects=discovery_jobs_result_object,
        planned_action=discovery_jobs_result_planned_action,
        schema_names=discovery_jobs_result_schema_name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DataSafe"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DataSafe.GetDiscoveryJobsResults(ctx, &datasafe.GetDiscoveryJobsResultsArgs{
    			DiscoveryJobId:  testDiscoveryJob.Id,
    			ColumnNames:     discoveryJobsResultColumnName,
    			DiscoveryType:   pulumi.StringRef(discoveryJobsResultDiscoveryType),
    			IsResultApplied: pulumi.BoolRef(discoveryJobsResultIsResultApplied),
    			Objects:         discoveryJobsResultObject,
    			PlannedAction:   pulumi.StringRef(discoveryJobsResultPlannedAction),
    			SchemaNames:     discoveryJobsResultSchemaName,
    		}, 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 testDiscoveryJobsResults = Oci.DataSafe.GetDiscoveryJobsResults.Invoke(new()
        {
            DiscoveryJobId = testDiscoveryJob.Id,
            ColumnNames = discoveryJobsResultColumnName,
            DiscoveryType = discoveryJobsResultDiscoveryType,
            IsResultApplied = discoveryJobsResultIsResultApplied,
            Objects = discoveryJobsResultObject,
            PlannedAction = discoveryJobsResultPlannedAction,
            SchemaNames = discoveryJobsResultSchemaName,
        });
    
    });
    
    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.GetDiscoveryJobsResultsArgs;
    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 testDiscoveryJobsResults = DataSafeFunctions.getDiscoveryJobsResults(GetDiscoveryJobsResultsArgs.builder()
                .discoveryJobId(testDiscoveryJob.id())
                .columnNames(discoveryJobsResultColumnName)
                .discoveryType(discoveryJobsResultDiscoveryType)
                .isResultApplied(discoveryJobsResultIsResultApplied)
                .objects(discoveryJobsResultObject)
                .plannedAction(discoveryJobsResultPlannedAction)
                .schemaNames(discoveryJobsResultSchemaName)
                .build());
    
        }
    }
    
    variables:
      testDiscoveryJobsResults:
        fn::invoke:
          Function: oci:DataSafe:getDiscoveryJobsResults
          Arguments:
            discoveryJobId: ${testDiscoveryJob.id}
            columnNames: ${discoveryJobsResultColumnName}
            discoveryType: ${discoveryJobsResultDiscoveryType}
            isResultApplied: ${discoveryJobsResultIsResultApplied}
            objects: ${discoveryJobsResultObject}
            plannedAction: ${discoveryJobsResultPlannedAction}
            schemaNames: ${discoveryJobsResultSchemaName}
    

    Using getDiscoveryJobsResults

    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 getDiscoveryJobsResults(args: GetDiscoveryJobsResultsArgs, opts?: InvokeOptions): Promise<GetDiscoveryJobsResultsResult>
    function getDiscoveryJobsResultsOutput(args: GetDiscoveryJobsResultsOutputArgs, opts?: InvokeOptions): Output<GetDiscoveryJobsResultsResult>
    def get_discovery_jobs_results(column_names: Optional[Sequence[str]] = None,
                                   discovery_job_id: Optional[str] = None,
                                   discovery_type: Optional[str] = None,
                                   filters: Optional[Sequence[_datasafe.GetDiscoveryJobsResultsFilter]] = None,
                                   is_result_applied: Optional[bool] = None,
                                   objects: Optional[Sequence[str]] = None,
                                   planned_action: Optional[str] = None,
                                   schema_names: Optional[Sequence[str]] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetDiscoveryJobsResultsResult
    def get_discovery_jobs_results_output(column_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                   discovery_job_id: Optional[pulumi.Input[str]] = None,
                                   discovery_type: Optional[pulumi.Input[str]] = None,
                                   filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datasafe.GetDiscoveryJobsResultsFilterArgs]]]] = None,
                                   is_result_applied: Optional[pulumi.Input[bool]] = None,
                                   objects: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                   planned_action: Optional[pulumi.Input[str]] = None,
                                   schema_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                   opts: Optional[InvokeOptions] = None) -> Output[GetDiscoveryJobsResultsResult]
    func GetDiscoveryJobsResults(ctx *Context, args *GetDiscoveryJobsResultsArgs, opts ...InvokeOption) (*GetDiscoveryJobsResultsResult, error)
    func GetDiscoveryJobsResultsOutput(ctx *Context, args *GetDiscoveryJobsResultsOutputArgs, opts ...InvokeOption) GetDiscoveryJobsResultsResultOutput

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

    public static class GetDiscoveryJobsResults 
    {
        public static Task<GetDiscoveryJobsResultsResult> InvokeAsync(GetDiscoveryJobsResultsArgs args, InvokeOptions? opts = null)
        public static Output<GetDiscoveryJobsResultsResult> Invoke(GetDiscoveryJobsResultsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDiscoveryJobsResultsResult> getDiscoveryJobsResults(GetDiscoveryJobsResultsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:DataSafe/getDiscoveryJobsResults:getDiscoveryJobsResults
      arguments:
        # arguments dictionary

    The following arguments are supported:

    DiscoveryJobId string
    The OCID of the discovery job.
    ColumnNames List<string>
    A filter to return only a specific column based on column name.
    DiscoveryType string
    A filter to return only the resources that match the specified discovery type.
    Filters List<GetDiscoveryJobsResultsFilter>
    IsResultApplied bool
    A filter to return the discovery result resources based on the value of their isResultApplied attribute.
    Objects List<string>
    A filter to return only items related to a specific object name.
    PlannedAction string
    A filter to return only the resources that match the specified planned action.
    SchemaNames List<string>
    A filter to return only items related to specific schema name.
    DiscoveryJobId string
    The OCID of the discovery job.
    ColumnNames []string
    A filter to return only a specific column based on column name.
    DiscoveryType string
    A filter to return only the resources that match the specified discovery type.
    Filters []GetDiscoveryJobsResultsFilter
    IsResultApplied bool
    A filter to return the discovery result resources based on the value of their isResultApplied attribute.
    Objects []string
    A filter to return only items related to a specific object name.
    PlannedAction string
    A filter to return only the resources that match the specified planned action.
    SchemaNames []string
    A filter to return only items related to specific schema name.
    discoveryJobId String
    The OCID of the discovery job.
    columnNames List<String>
    A filter to return only a specific column based on column name.
    discoveryType String
    A filter to return only the resources that match the specified discovery type.
    filters List<GetDiscoveryJobsResultsFilter>
    isResultApplied Boolean
    A filter to return the discovery result resources based on the value of their isResultApplied attribute.
    objects List<String>
    A filter to return only items related to a specific object name.
    plannedAction String
    A filter to return only the resources that match the specified planned action.
    schemaNames List<String>
    A filter to return only items related to specific schema name.
    discoveryJobId string
    The OCID of the discovery job.
    columnNames string[]
    A filter to return only a specific column based on column name.
    discoveryType string
    A filter to return only the resources that match the specified discovery type.
    filters GetDiscoveryJobsResultsFilter[]
    isResultApplied boolean
    A filter to return the discovery result resources based on the value of their isResultApplied attribute.
    objects string[]
    A filter to return only items related to a specific object name.
    plannedAction string
    A filter to return only the resources that match the specified planned action.
    schemaNames string[]
    A filter to return only items related to specific schema name.
    discovery_job_id str
    The OCID of the discovery job.
    column_names Sequence[str]
    A filter to return only a specific column based on column name.
    discovery_type str
    A filter to return only the resources that match the specified discovery type.
    filters Sequence[datasafe.GetDiscoveryJobsResultsFilter]
    is_result_applied bool
    A filter to return the discovery result resources based on the value of their isResultApplied attribute.
    objects Sequence[str]
    A filter to return only items related to a specific object name.
    planned_action str
    A filter to return only the resources that match the specified planned action.
    schema_names Sequence[str]
    A filter to return only items related to specific schema name.
    discoveryJobId String
    The OCID of the discovery job.
    columnNames List<String>
    A filter to return only a specific column based on column name.
    discoveryType String
    A filter to return only the resources that match the specified discovery type.
    filters List<Property Map>
    isResultApplied Boolean
    A filter to return the discovery result resources based on the value of their isResultApplied attribute.
    objects List<String>
    A filter to return only items related to a specific object name.
    plannedAction String
    A filter to return only the resources that match the specified planned action.
    schemaNames List<String>
    A filter to return only items related to specific schema name.

    getDiscoveryJobsResults Result

    The following output properties are available:

    DiscoveryJobId string
    The OCID of the discovery job.
    DiscoveryJobResultCollections List<GetDiscoveryJobsResultsDiscoveryJobResultCollection>
    The list of discovery_job_result_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    ColumnNames List<string>
    The name of the sensitive column.
    DiscoveryType string
    The type of the discovery result. It can be one of the following three types: NEW: A new sensitive column in the target database that is not in the sensitive data model. DELETED: A column that is present in the sensitive data model but has been deleted from the target database. MODIFIED: A column that is present in the target database as well as the sensitive data model but some of its attributes have been modified.
    Filters List<GetDiscoveryJobsResultsFilter>
    IsResultApplied bool
    Indicates whether the discovery result has been processed. You can update this attribute using the PatchDiscoveryJobResults operation to track whether the discovery result has already been processed and applied to the sensitive data model.
    Objects List<string>
    The database object that contains the sensitive column.
    PlannedAction string
    Specifies how to process the discovery result. It's set to NONE by default. Use the PatchDiscoveryJobResults operation to update this attribute. You can choose one of the following options: ACCEPT: To accept the discovery result and update the sensitive data model to reflect the changes. REJECT: To reject the discovery result so that it doesn't change the sensitive data model. INVALIDATE: To invalidate a newly discovered column. It adds the column to the sensitive data model but marks it as invalid. It helps track false positives and ensure that they aren't reported by future discovery jobs. After specifying the planned action, you can use the ApplyDiscoveryJobResults operation to automatically process the discovery results.
    SchemaNames List<string>
    The database schema that contains the sensitive column.
    DiscoveryJobId string
    The OCID of the discovery job.
    DiscoveryJobResultCollections []GetDiscoveryJobsResultsDiscoveryJobResultCollection
    The list of discovery_job_result_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    ColumnNames []string
    The name of the sensitive column.
    DiscoveryType string
    The type of the discovery result. It can be one of the following three types: NEW: A new sensitive column in the target database that is not in the sensitive data model. DELETED: A column that is present in the sensitive data model but has been deleted from the target database. MODIFIED: A column that is present in the target database as well as the sensitive data model but some of its attributes have been modified.
    Filters []GetDiscoveryJobsResultsFilter
    IsResultApplied bool
    Indicates whether the discovery result has been processed. You can update this attribute using the PatchDiscoveryJobResults operation to track whether the discovery result has already been processed and applied to the sensitive data model.
    Objects []string
    The database object that contains the sensitive column.
    PlannedAction string
    Specifies how to process the discovery result. It's set to NONE by default. Use the PatchDiscoveryJobResults operation to update this attribute. You can choose one of the following options: ACCEPT: To accept the discovery result and update the sensitive data model to reflect the changes. REJECT: To reject the discovery result so that it doesn't change the sensitive data model. INVALIDATE: To invalidate a newly discovered column. It adds the column to the sensitive data model but marks it as invalid. It helps track false positives and ensure that they aren't reported by future discovery jobs. After specifying the planned action, you can use the ApplyDiscoveryJobResults operation to automatically process the discovery results.
    SchemaNames []string
    The database schema that contains the sensitive column.
    discoveryJobId String
    The OCID of the discovery job.
    discoveryJobResultCollections List<GetDiscoveryJobsResultsDiscoveryJobResultCollection>
    The list of discovery_job_result_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    columnNames List<String>
    The name of the sensitive column.
    discoveryType String
    The type of the discovery result. It can be one of the following three types: NEW: A new sensitive column in the target database that is not in the sensitive data model. DELETED: A column that is present in the sensitive data model but has been deleted from the target database. MODIFIED: A column that is present in the target database as well as the sensitive data model but some of its attributes have been modified.
    filters List<GetDiscoveryJobsResultsFilter>
    isResultApplied Boolean
    Indicates whether the discovery result has been processed. You can update this attribute using the PatchDiscoveryJobResults operation to track whether the discovery result has already been processed and applied to the sensitive data model.
    objects List<String>
    The database object that contains the sensitive column.
    plannedAction String
    Specifies how to process the discovery result. It's set to NONE by default. Use the PatchDiscoveryJobResults operation to update this attribute. You can choose one of the following options: ACCEPT: To accept the discovery result and update the sensitive data model to reflect the changes. REJECT: To reject the discovery result so that it doesn't change the sensitive data model. INVALIDATE: To invalidate a newly discovered column. It adds the column to the sensitive data model but marks it as invalid. It helps track false positives and ensure that they aren't reported by future discovery jobs. After specifying the planned action, you can use the ApplyDiscoveryJobResults operation to automatically process the discovery results.
    schemaNames List<String>
    The database schema that contains the sensitive column.
    discoveryJobId string
    The OCID of the discovery job.
    discoveryJobResultCollections GetDiscoveryJobsResultsDiscoveryJobResultCollection[]
    The list of discovery_job_result_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    columnNames string[]
    The name of the sensitive column.
    discoveryType string
    The type of the discovery result. It can be one of the following three types: NEW: A new sensitive column in the target database that is not in the sensitive data model. DELETED: A column that is present in the sensitive data model but has been deleted from the target database. MODIFIED: A column that is present in the target database as well as the sensitive data model but some of its attributes have been modified.
    filters GetDiscoveryJobsResultsFilter[]
    isResultApplied boolean
    Indicates whether the discovery result has been processed. You can update this attribute using the PatchDiscoveryJobResults operation to track whether the discovery result has already been processed and applied to the sensitive data model.
    objects string[]
    The database object that contains the sensitive column.
    plannedAction string
    Specifies how to process the discovery result. It's set to NONE by default. Use the PatchDiscoveryJobResults operation to update this attribute. You can choose one of the following options: ACCEPT: To accept the discovery result and update the sensitive data model to reflect the changes. REJECT: To reject the discovery result so that it doesn't change the sensitive data model. INVALIDATE: To invalidate a newly discovered column. It adds the column to the sensitive data model but marks it as invalid. It helps track false positives and ensure that they aren't reported by future discovery jobs. After specifying the planned action, you can use the ApplyDiscoveryJobResults operation to automatically process the discovery results.
    schemaNames string[]
    The database schema that contains the sensitive column.
    discovery_job_id str
    The OCID of the discovery job.
    discovery_job_result_collections Sequence[datasafe.GetDiscoveryJobsResultsDiscoveryJobResultCollection]
    The list of discovery_job_result_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    column_names Sequence[str]
    The name of the sensitive column.
    discovery_type str
    The type of the discovery result. It can be one of the following three types: NEW: A new sensitive column in the target database that is not in the sensitive data model. DELETED: A column that is present in the sensitive data model but has been deleted from the target database. MODIFIED: A column that is present in the target database as well as the sensitive data model but some of its attributes have been modified.
    filters Sequence[datasafe.GetDiscoveryJobsResultsFilter]
    is_result_applied bool
    Indicates whether the discovery result has been processed. You can update this attribute using the PatchDiscoveryJobResults operation to track whether the discovery result has already been processed and applied to the sensitive data model.
    objects Sequence[str]
    The database object that contains the sensitive column.
    planned_action str
    Specifies how to process the discovery result. It's set to NONE by default. Use the PatchDiscoveryJobResults operation to update this attribute. You can choose one of the following options: ACCEPT: To accept the discovery result and update the sensitive data model to reflect the changes. REJECT: To reject the discovery result so that it doesn't change the sensitive data model. INVALIDATE: To invalidate a newly discovered column. It adds the column to the sensitive data model but marks it as invalid. It helps track false positives and ensure that they aren't reported by future discovery jobs. After specifying the planned action, you can use the ApplyDiscoveryJobResults operation to automatically process the discovery results.
    schema_names Sequence[str]
    The database schema that contains the sensitive column.
    discoveryJobId String
    The OCID of the discovery job.
    discoveryJobResultCollections List<Property Map>
    The list of discovery_job_result_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    columnNames List<String>
    The name of the sensitive column.
    discoveryType String
    The type of the discovery result. It can be one of the following three types: NEW: A new sensitive column in the target database that is not in the sensitive data model. DELETED: A column that is present in the sensitive data model but has been deleted from the target database. MODIFIED: A column that is present in the target database as well as the sensitive data model but some of its attributes have been modified.
    filters List<Property Map>
    isResultApplied Boolean
    Indicates whether the discovery result has been processed. You can update this attribute using the PatchDiscoveryJobResults operation to track whether the discovery result has already been processed and applied to the sensitive data model.
    objects List<String>
    The database object that contains the sensitive column.
    plannedAction String
    Specifies how to process the discovery result. It's set to NONE by default. Use the PatchDiscoveryJobResults operation to update this attribute. You can choose one of the following options: ACCEPT: To accept the discovery result and update the sensitive data model to reflect the changes. REJECT: To reject the discovery result so that it doesn't change the sensitive data model. INVALIDATE: To invalidate a newly discovered column. It adds the column to the sensitive data model but marks it as invalid. It helps track false positives and ensure that they aren't reported by future discovery jobs. After specifying the planned action, you can use the ApplyDiscoveryJobResults operation to automatically process the discovery results.
    schemaNames List<String>
    The database schema that contains the sensitive column.

    Supporting Types

    GetDiscoveryJobsResultsDiscoveryJobResultCollection

    GetDiscoveryJobsResultsDiscoveryJobResultCollectionItem

    AppDefinedChildColumnKeys List<string>
    Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.
    AppName string
    The name of the application. An application is an entity that is identified by a schema and stores sensitive information for that schema. Its value will be same as schemaName, if no value is passed.
    ColumnName string
    A filter to return only a specific column based on column name.
    DataType string
    The data type of the sensitive column.
    DbDefinedChildColumnKeys List<string>
    Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.
    DiscoveryJobId string
    The OCID of the discovery job.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    DiscoveryType string
    A filter to return only the resources that match the specified discovery type.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    EstimatedDataValueCount string
    The estimated number of data values the column has in the associated database.
    IsResultApplied bool
    A filter to return the discovery result resources based on the value of their isResultApplied attribute.
    Key string
    The unique key that identifies the discovery result.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    ModifiedAttributes List<GetDiscoveryJobsResultsDiscoveryJobResultCollectionItemModifiedAttribute>
    The attributes of a sensitive column that have been modified in the target database. It's populated only in the case of MODIFIED discovery results and shows the new values of the modified attributes.
    Object string
    A filter to return only items related to a specific object name.
    ObjectType string
    The type of the database object that contains the sensitive column.
    ParentColumnKeys List<string>
    Unique keys identifying the columns that are parents of the sensitive column. At present, it tracks a single parent only.
    PlannedAction string
    A filter to return only the resources that match the specified planned action.
    RelationType string
    The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.
    SampleDataValues List<string>
    Original data values collected for the sensitive column from the associated database. Sample data helps review the column and ensure that it actually contains sensitive data. Note that sample data is retrieved by a data discovery job only if the isSampleDataCollectionEnabled attribute is set to true. At present, only one data value is collected per sensitive column.
    SchemaName string
    A filter to return only items related to specific schema name.
    SensitiveColumnkey string
    The unique key that identifies the sensitive column represented by the discovery result.
    SensitiveTypeId string
    The OCID of the sensitive type associated with the sensitive column.
    AppDefinedChildColumnKeys []string
    Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.
    AppName string
    The name of the application. An application is an entity that is identified by a schema and stores sensitive information for that schema. Its value will be same as schemaName, if no value is passed.
    ColumnName string
    A filter to return only a specific column based on column name.
    DataType string
    The data type of the sensitive column.
    DbDefinedChildColumnKeys []string
    Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.
    DiscoveryJobId string
    The OCID of the discovery job.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    DiscoveryType string
    A filter to return only the resources that match the specified discovery type.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    EstimatedDataValueCount string
    The estimated number of data values the column has in the associated database.
    IsResultApplied bool
    A filter to return the discovery result resources based on the value of their isResultApplied attribute.
    Key string
    The unique key that identifies the discovery result.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    ModifiedAttributes []GetDiscoveryJobsResultsDiscoveryJobResultCollectionItemModifiedAttribute
    The attributes of a sensitive column that have been modified in the target database. It's populated only in the case of MODIFIED discovery results and shows the new values of the modified attributes.
    Object string
    A filter to return only items related to a specific object name.
    ObjectType string
    The type of the database object that contains the sensitive column.
    ParentColumnKeys []string
    Unique keys identifying the columns that are parents of the sensitive column. At present, it tracks a single parent only.
    PlannedAction string
    A filter to return only the resources that match the specified planned action.
    RelationType string
    The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.
    SampleDataValues []string
    Original data values collected for the sensitive column from the associated database. Sample data helps review the column and ensure that it actually contains sensitive data. Note that sample data is retrieved by a data discovery job only if the isSampleDataCollectionEnabled attribute is set to true. At present, only one data value is collected per sensitive column.
    SchemaName string
    A filter to return only items related to specific schema name.
    SensitiveColumnkey string
    The unique key that identifies the sensitive column represented by the discovery result.
    SensitiveTypeId string
    The OCID of the sensitive type associated with the sensitive column.
    appDefinedChildColumnKeys List<String>
    Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.
    appName String
    The name of the application. An application is an entity that is identified by a schema and stores sensitive information for that schema. Its value will be same as schemaName, if no value is passed.
    columnName String
    A filter to return only a specific column based on column name.
    dataType String
    The data type of the sensitive column.
    dbDefinedChildColumnKeys List<String>
    Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.
    discoveryJobId String
    The OCID of the discovery job.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    discoveryType String
    A filter to return only the resources that match the specified discovery type.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    estimatedDataValueCount String
    The estimated number of data values the column has in the associated database.
    isResultApplied Boolean
    A filter to return the discovery result resources based on the value of their isResultApplied attribute.
    key String
    The unique key that identifies the discovery result.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    modifiedAttributes List<GetDiscoveryJobsResultsDiscoveryJobResultCollectionItemModifiedAttribute>
    The attributes of a sensitive column that have been modified in the target database. It's populated only in the case of MODIFIED discovery results and shows the new values of the modified attributes.
    object String
    A filter to return only items related to a specific object name.
    objectType String
    The type of the database object that contains the sensitive column.
    parentColumnKeys List<String>
    Unique keys identifying the columns that are parents of the sensitive column. At present, it tracks a single parent only.
    plannedAction String
    A filter to return only the resources that match the specified planned action.
    relationType String
    The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.
    sampleDataValues List<String>
    Original data values collected for the sensitive column from the associated database. Sample data helps review the column and ensure that it actually contains sensitive data. Note that sample data is retrieved by a data discovery job only if the isSampleDataCollectionEnabled attribute is set to true. At present, only one data value is collected per sensitive column.
    schemaName String
    A filter to return only items related to specific schema name.
    sensitiveColumnkey String
    The unique key that identifies the sensitive column represented by the discovery result.
    sensitiveTypeId String
    The OCID of the sensitive type associated with the sensitive column.
    appDefinedChildColumnKeys string[]
    Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.
    appName string
    The name of the application. An application is an entity that is identified by a schema and stores sensitive information for that schema. Its value will be same as schemaName, if no value is passed.
    columnName string
    A filter to return only a specific column based on column name.
    dataType string
    The data type of the sensitive column.
    dbDefinedChildColumnKeys string[]
    Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.
    discoveryJobId string
    The OCID of the discovery job.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    discoveryType string
    A filter to return only the resources that match the specified discovery type.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    estimatedDataValueCount string
    The estimated number of data values the column has in the associated database.
    isResultApplied boolean
    A filter to return the discovery result resources based on the value of their isResultApplied attribute.
    key string
    The unique key that identifies the discovery result.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    modifiedAttributes GetDiscoveryJobsResultsDiscoveryJobResultCollectionItemModifiedAttribute[]
    The attributes of a sensitive column that have been modified in the target database. It's populated only in the case of MODIFIED discovery results and shows the new values of the modified attributes.
    object string
    A filter to return only items related to a specific object name.
    objectType string
    The type of the database object that contains the sensitive column.
    parentColumnKeys string[]
    Unique keys identifying the columns that are parents of the sensitive column. At present, it tracks a single parent only.
    plannedAction string
    A filter to return only the resources that match the specified planned action.
    relationType string
    The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.
    sampleDataValues string[]
    Original data values collected for the sensitive column from the associated database. Sample data helps review the column and ensure that it actually contains sensitive data. Note that sample data is retrieved by a data discovery job only if the isSampleDataCollectionEnabled attribute is set to true. At present, only one data value is collected per sensitive column.
    schemaName string
    A filter to return only items related to specific schema name.
    sensitiveColumnkey string
    The unique key that identifies the sensitive column represented by the discovery result.
    sensitiveTypeId string
    The OCID of the sensitive type associated with the sensitive column.
    app_defined_child_column_keys Sequence[str]
    Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.
    app_name str
    The name of the application. An application is an entity that is identified by a schema and stores sensitive information for that schema. Its value will be same as schemaName, if no value is passed.
    column_name str
    A filter to return only a specific column based on column name.
    data_type str
    The data type of the sensitive column.
    db_defined_child_column_keys Sequence[str]
    Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.
    discovery_job_id str
    The OCID of the discovery job.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    discovery_type str
    A filter to return only the resources that match the specified discovery type.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    estimated_data_value_count str
    The estimated number of data values the column has in the associated database.
    is_result_applied bool
    A filter to return the discovery result resources based on the value of their isResultApplied attribute.
    key str
    The unique key that identifies the discovery result.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    modified_attributes Sequence[datasafe.GetDiscoveryJobsResultsDiscoveryJobResultCollectionItemModifiedAttribute]
    The attributes of a sensitive column that have been modified in the target database. It's populated only in the case of MODIFIED discovery results and shows the new values of the modified attributes.
    object str
    A filter to return only items related to a specific object name.
    object_type str
    The type of the database object that contains the sensitive column.
    parent_column_keys Sequence[str]
    Unique keys identifying the columns that are parents of the sensitive column. At present, it tracks a single parent only.
    planned_action str
    A filter to return only the resources that match the specified planned action.
    relation_type str
    The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.
    sample_data_values Sequence[str]
    Original data values collected for the sensitive column from the associated database. Sample data helps review the column and ensure that it actually contains sensitive data. Note that sample data is retrieved by a data discovery job only if the isSampleDataCollectionEnabled attribute is set to true. At present, only one data value is collected per sensitive column.
    schema_name str
    A filter to return only items related to specific schema name.
    sensitive_columnkey str
    The unique key that identifies the sensitive column represented by the discovery result.
    sensitive_type_id str
    The OCID of the sensitive type associated with the sensitive column.
    appDefinedChildColumnKeys List<String>
    Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.
    appName String
    The name of the application. An application is an entity that is identified by a schema and stores sensitive information for that schema. Its value will be same as schemaName, if no value is passed.
    columnName String
    A filter to return only a specific column based on column name.
    dataType String
    The data type of the sensitive column.
    dbDefinedChildColumnKeys List<String>
    Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.
    discoveryJobId String
    The OCID of the discovery job.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    discoveryType String
    A filter to return only the resources that match the specified discovery type.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    estimatedDataValueCount String
    The estimated number of data values the column has in the associated database.
    isResultApplied Boolean
    A filter to return the discovery result resources based on the value of their isResultApplied attribute.
    key String
    The unique key that identifies the discovery result.

    Deprecated: The 'oci_data_safe_discovery_jobs_result' resource has been deprecated. It is no longer supported.

    modifiedAttributes List<Property Map>
    The attributes of a sensitive column that have been modified in the target database. It's populated only in the case of MODIFIED discovery results and shows the new values of the modified attributes.
    object String
    A filter to return only items related to a specific object name.
    objectType String
    The type of the database object that contains the sensitive column.
    parentColumnKeys List<String>
    Unique keys identifying the columns that are parents of the sensitive column. At present, it tracks a single parent only.
    plannedAction String
    A filter to return only the resources that match the specified planned action.
    relationType String
    The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.
    sampleDataValues List<String>
    Original data values collected for the sensitive column from the associated database. Sample data helps review the column and ensure that it actually contains sensitive data. Note that sample data is retrieved by a data discovery job only if the isSampleDataCollectionEnabled attribute is set to true. At present, only one data value is collected per sensitive column.
    schemaName String
    A filter to return only items related to specific schema name.
    sensitiveColumnkey String
    The unique key that identifies the sensitive column represented by the discovery result.
    sensitiveTypeId String
    The OCID of the sensitive type associated with the sensitive column.

    GetDiscoveryJobsResultsDiscoveryJobResultCollectionItemModifiedAttribute

    AppDefinedChildColumnKeys List<string>
    Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.
    DbDefinedChildColumnKeys List<string>
    Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.
    AppDefinedChildColumnKeys []string
    Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.
    DbDefinedChildColumnKeys []string
    Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.
    appDefinedChildColumnKeys List<String>
    Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.
    dbDefinedChildColumnKeys List<String>
    Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.
    appDefinedChildColumnKeys string[]
    Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.
    dbDefinedChildColumnKeys string[]
    Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.
    app_defined_child_column_keys Sequence[str]
    Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.
    db_defined_child_column_keys Sequence[str]
    Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.
    appDefinedChildColumnKeys List<String>
    Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column.
    dbDefinedChildColumnKeys List<String>
    Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column.

    GetDiscoveryJobsResultsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi