1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. CompareSecurityAssessment
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.DataSafe.CompareSecurityAssessment

Explore with Pulumi AI

This resource provides the Compare Security Assessment resource in Oracle Cloud Infrastructure Data Safe service.

Compares two security assessments. For this comparison, a security assessment can be a saved assessment, a latest assessment, or a baseline assessment. For example, you can compare saved assessment or a latest assessment against a baseline.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testCompareSecurityAssessment = new oci.datasafe.CompareSecurityAssessment("test_compare_security_assessment", {
    comparisonSecurityAssessmentId: testSecurityAssessment.id,
    securityAssessmentId: testSecurityAssessment.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_compare_security_assessment = oci.data_safe.CompareSecurityAssessment("test_compare_security_assessment",
    comparison_security_assessment_id=test_security_assessment["id"],
    security_assessment_id=test_security_assessment["id"])
Copy
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.NewCompareSecurityAssessment(ctx, "test_compare_security_assessment", &datasafe.CompareSecurityAssessmentArgs{
			ComparisonSecurityAssessmentId: pulumi.Any(testSecurityAssessment.Id),
			SecurityAssessmentId:           pulumi.Any(testSecurityAssessment.Id),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testCompareSecurityAssessment = new Oci.DataSafe.CompareSecurityAssessment("test_compare_security_assessment", new()
    {
        ComparisonSecurityAssessmentId = testSecurityAssessment.Id,
        SecurityAssessmentId = testSecurityAssessment.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.CompareSecurityAssessment;
import com.pulumi.oci.DataSafe.CompareSecurityAssessmentArgs;
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) {
        var testCompareSecurityAssessment = new CompareSecurityAssessment("testCompareSecurityAssessment", CompareSecurityAssessmentArgs.builder()
            .comparisonSecurityAssessmentId(testSecurityAssessment.id())
            .securityAssessmentId(testSecurityAssessment.id())
            .build());

    }
}
Copy
resources:
  testCompareSecurityAssessment:
    type: oci:DataSafe:CompareSecurityAssessment
    name: test_compare_security_assessment
    properties:
      comparisonSecurityAssessmentId: ${testSecurityAssessment.id}
      securityAssessmentId: ${testSecurityAssessment.id}
Copy

Create CompareSecurityAssessment Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new CompareSecurityAssessment(name: string, args: CompareSecurityAssessmentArgs, opts?: CustomResourceOptions);
@overload
def CompareSecurityAssessment(resource_name: str,
                              args: CompareSecurityAssessmentArgs,
                              opts: Optional[ResourceOptions] = None)

@overload
def CompareSecurityAssessment(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              comparison_security_assessment_id: Optional[str] = None,
                              security_assessment_id: Optional[str] = None)
func NewCompareSecurityAssessment(ctx *Context, name string, args CompareSecurityAssessmentArgs, opts ...ResourceOption) (*CompareSecurityAssessment, error)
public CompareSecurityAssessment(string name, CompareSecurityAssessmentArgs args, CustomResourceOptions? opts = null)
public CompareSecurityAssessment(String name, CompareSecurityAssessmentArgs args)
public CompareSecurityAssessment(String name, CompareSecurityAssessmentArgs args, CustomResourceOptions options)
type: oci:DataSafe:CompareSecurityAssessment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CompareSecurityAssessmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CompareSecurityAssessmentArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CompareSecurityAssessmentArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CompareSecurityAssessmentArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CompareSecurityAssessmentArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var compareSecurityAssessmentResource = new Oci.DataSafe.CompareSecurityAssessment("compareSecurityAssessmentResource", new()
{
    ComparisonSecurityAssessmentId = "string",
    SecurityAssessmentId = "string",
});
Copy
example, err := DataSafe.NewCompareSecurityAssessment(ctx, "compareSecurityAssessmentResource", &DataSafe.CompareSecurityAssessmentArgs{
	ComparisonSecurityAssessmentId: pulumi.String("string"),
	SecurityAssessmentId:           pulumi.String("string"),
})
Copy
var compareSecurityAssessmentResource = new CompareSecurityAssessment("compareSecurityAssessmentResource", CompareSecurityAssessmentArgs.builder()
    .comparisonSecurityAssessmentId("string")
    .securityAssessmentId("string")
    .build());
Copy
compare_security_assessment_resource = oci.data_safe.CompareSecurityAssessment("compareSecurityAssessmentResource",
    comparison_security_assessment_id="string",
    security_assessment_id="string")
Copy
const compareSecurityAssessmentResource = new oci.datasafe.CompareSecurityAssessment("compareSecurityAssessmentResource", {
    comparisonSecurityAssessmentId: "string",
    securityAssessmentId: "string",
});
Copy
type: oci:DataSafe:CompareSecurityAssessment
properties:
    comparisonSecurityAssessmentId: string
    securityAssessmentId: string
Copy

CompareSecurityAssessment Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The CompareSecurityAssessment resource accepts the following input properties:

ComparisonSecurityAssessmentId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the security assessment. In this case a security assessment can be another security assessment, a latest assessment or a baseline.
SecurityAssessmentId
This property is required.
Changes to this property will trigger replacement.
string

The OCID of the security assessment.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

ComparisonSecurityAssessmentId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the security assessment. In this case a security assessment can be another security assessment, a latest assessment or a baseline.
SecurityAssessmentId
This property is required.
Changes to this property will trigger replacement.
string

The OCID of the security assessment.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

comparisonSecurityAssessmentId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the security assessment. In this case a security assessment can be another security assessment, a latest assessment or a baseline.
securityAssessmentId
This property is required.
Changes to this property will trigger replacement.
String

The OCID of the security assessment.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

comparisonSecurityAssessmentId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the security assessment. In this case a security assessment can be another security assessment, a latest assessment or a baseline.
securityAssessmentId
This property is required.
Changes to this property will trigger replacement.
string

The OCID of the security assessment.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

comparison_security_assessment_id
This property is required.
Changes to this property will trigger replacement.
str
The OCID of the security assessment. In this case a security assessment can be another security assessment, a latest assessment or a baseline.
security_assessment_id
This property is required.
Changes to this property will trigger replacement.
str

The OCID of the security assessment.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

comparisonSecurityAssessmentId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the security assessment. In this case a security assessment can be another security assessment, a latest assessment or a baseline.
securityAssessmentId
This property is required.
Changes to this property will trigger replacement.
String

The OCID of the security assessment.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Outputs

All input properties are implicitly available as output properties. Additionally, the CompareSecurityAssessment resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing CompareSecurityAssessment Resource

Get an existing CompareSecurityAssessment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: CompareSecurityAssessmentState, opts?: CustomResourceOptions): CompareSecurityAssessment
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        comparison_security_assessment_id: Optional[str] = None,
        security_assessment_id: Optional[str] = None) -> CompareSecurityAssessment
func GetCompareSecurityAssessment(ctx *Context, name string, id IDInput, state *CompareSecurityAssessmentState, opts ...ResourceOption) (*CompareSecurityAssessment, error)
public static CompareSecurityAssessment Get(string name, Input<string> id, CompareSecurityAssessmentState? state, CustomResourceOptions? opts = null)
public static CompareSecurityAssessment get(String name, Output<String> id, CompareSecurityAssessmentState state, CustomResourceOptions options)
resources:  _:    type: oci:DataSafe:CompareSecurityAssessment    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ComparisonSecurityAssessmentId Changes to this property will trigger replacement. string
The OCID of the security assessment. In this case a security assessment can be another security assessment, a latest assessment or a baseline.
SecurityAssessmentId Changes to this property will trigger replacement. string

The OCID of the security assessment.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

ComparisonSecurityAssessmentId Changes to this property will trigger replacement. string
The OCID of the security assessment. In this case a security assessment can be another security assessment, a latest assessment or a baseline.
SecurityAssessmentId Changes to this property will trigger replacement. string

The OCID of the security assessment.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

comparisonSecurityAssessmentId Changes to this property will trigger replacement. String
The OCID of the security assessment. In this case a security assessment can be another security assessment, a latest assessment or a baseline.
securityAssessmentId Changes to this property will trigger replacement. String

The OCID of the security assessment.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

comparisonSecurityAssessmentId Changes to this property will trigger replacement. string
The OCID of the security assessment. In this case a security assessment can be another security assessment, a latest assessment or a baseline.
securityAssessmentId Changes to this property will trigger replacement. string

The OCID of the security assessment.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

comparison_security_assessment_id Changes to this property will trigger replacement. str
The OCID of the security assessment. In this case a security assessment can be another security assessment, a latest assessment or a baseline.
security_assessment_id Changes to this property will trigger replacement. str

The OCID of the security assessment.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

comparisonSecurityAssessmentId Changes to this property will trigger replacement. String
The OCID of the security assessment. In this case a security assessment can be another security assessment, a latest assessment or a baseline.
securityAssessmentId Changes to this property will trigger replacement. String

The OCID of the security assessment.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Import

CompareSecurityAssessment can be imported using the id, e.g.

$ pulumi import oci:DataSafe/compareSecurityAssessment:CompareSecurityAssessment test_compare_security_assessment "id"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.