oci.DataSafe.UnsetSecurityAssessmentBaseline
Explore with Pulumi AI
This resource provides the Unset Security Assessment Baseline resource in Oracle Cloud Infrastructure Data Safe service.
Removes the baseline setting for the saved security assessment. The saved security assessment is no longer considered a baseline. Sets the if-match parameter to the value of the etag from a previous GET or POST response for that resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testUnsetSecurityAssessmentBaseline = new oci.datasafe.UnsetSecurityAssessmentBaseline("test_unset_security_assessment_baseline", {securityAssessmentId: testSecurityAssessment.id});
import pulumi
import pulumi_oci as oci
test_unset_security_assessment_baseline = oci.data_safe.UnsetSecurityAssessmentBaseline("test_unset_security_assessment_baseline", security_assessment_id=test_security_assessment["id"])
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.NewUnsetSecurityAssessmentBaseline(ctx, "test_unset_security_assessment_baseline", &DataSafe.UnsetSecurityAssessmentBaselineArgs{
SecurityAssessmentId: pulumi.Any(testSecurityAssessment.Id),
})
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 testUnsetSecurityAssessmentBaseline = new Oci.DataSafe.UnsetSecurityAssessmentBaseline("test_unset_security_assessment_baseline", new()
{
SecurityAssessmentId = testSecurityAssessment.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.UnsetSecurityAssessmentBaseline;
import com.pulumi.oci.DataSafe.UnsetSecurityAssessmentBaselineArgs;
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 testUnsetSecurityAssessmentBaseline = new UnsetSecurityAssessmentBaseline("testUnsetSecurityAssessmentBaseline", UnsetSecurityAssessmentBaselineArgs.builder()
.securityAssessmentId(testSecurityAssessment.id())
.build());
}
}
resources:
testUnsetSecurityAssessmentBaseline:
type: oci:DataSafe:UnsetSecurityAssessmentBaseline
name: test_unset_security_assessment_baseline
properties:
securityAssessmentId: ${testSecurityAssessment.id}
Create UnsetSecurityAssessmentBaseline Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new UnsetSecurityAssessmentBaseline(name: string, args: UnsetSecurityAssessmentBaselineArgs, opts?: CustomResourceOptions);
@overload
def UnsetSecurityAssessmentBaseline(resource_name: str,
args: UnsetSecurityAssessmentBaselineArgs,
opts: Optional[ResourceOptions] = None)
@overload
def UnsetSecurityAssessmentBaseline(resource_name: str,
opts: Optional[ResourceOptions] = None,
security_assessment_id: Optional[str] = None)
func NewUnsetSecurityAssessmentBaseline(ctx *Context, name string, args UnsetSecurityAssessmentBaselineArgs, opts ...ResourceOption) (*UnsetSecurityAssessmentBaseline, error)
public UnsetSecurityAssessmentBaseline(string name, UnsetSecurityAssessmentBaselineArgs args, CustomResourceOptions? opts = null)
public UnsetSecurityAssessmentBaseline(String name, UnsetSecurityAssessmentBaselineArgs args)
public UnsetSecurityAssessmentBaseline(String name, UnsetSecurityAssessmentBaselineArgs args, CustomResourceOptions options)
type: oci:DataSafe:UnsetSecurityAssessmentBaseline
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args UnsetSecurityAssessmentBaselineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args UnsetSecurityAssessmentBaselineArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args UnsetSecurityAssessmentBaselineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UnsetSecurityAssessmentBaselineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UnsetSecurityAssessmentBaselineArgs
- 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 unsetSecurityAssessmentBaselineResource = new Oci.DataSafe.UnsetSecurityAssessmentBaseline("unsetSecurityAssessmentBaselineResource", new()
{
SecurityAssessmentId = "string",
});
example, err := DataSafe.NewUnsetSecurityAssessmentBaseline(ctx, "unsetSecurityAssessmentBaselineResource", &DataSafe.UnsetSecurityAssessmentBaselineArgs{
SecurityAssessmentId: pulumi.String("string"),
})
var unsetSecurityAssessmentBaselineResource = new UnsetSecurityAssessmentBaseline("unsetSecurityAssessmentBaselineResource", UnsetSecurityAssessmentBaselineArgs.builder()
.securityAssessmentId("string")
.build());
unset_security_assessment_baseline_resource = oci.data_safe.UnsetSecurityAssessmentBaseline("unsetSecurityAssessmentBaselineResource", security_assessment_id="string")
const unsetSecurityAssessmentBaselineResource = new oci.datasafe.UnsetSecurityAssessmentBaseline("unsetSecurityAssessmentBaselineResource", {securityAssessmentId: "string"});
type: oci:DataSafe:UnsetSecurityAssessmentBaseline
properties:
securityAssessmentId: string
UnsetSecurityAssessmentBaseline Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The UnsetSecurityAssessmentBaseline resource accepts the following input properties:
- Security
Assessment stringId 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
- Security
Assessment stringId 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
- security
Assessment StringId 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
- security
Assessment stringId 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
- security_
assessment_ strid 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
- security
Assessment StringId 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 UnsetSecurityAssessmentBaseline 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 UnsetSecurityAssessmentBaseline Resource
Get an existing UnsetSecurityAssessmentBaseline 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?: UnsetSecurityAssessmentBaselineState, opts?: CustomResourceOptions): UnsetSecurityAssessmentBaseline
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
security_assessment_id: Optional[str] = None) -> UnsetSecurityAssessmentBaseline
func GetUnsetSecurityAssessmentBaseline(ctx *Context, name string, id IDInput, state *UnsetSecurityAssessmentBaselineState, opts ...ResourceOption) (*UnsetSecurityAssessmentBaseline, error)
public static UnsetSecurityAssessmentBaseline Get(string name, Input<string> id, UnsetSecurityAssessmentBaselineState? state, CustomResourceOptions? opts = null)
public static UnsetSecurityAssessmentBaseline get(String name, Output<String> id, UnsetSecurityAssessmentBaselineState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Security
Assessment stringId 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
- Security
Assessment stringId 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
- security
Assessment StringId 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
- security
Assessment stringId 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
- security_
assessment_ strid 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
- security
Assessment StringId 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
UnsetSecurityAssessmentBaseline can be imported using the id
, e.g.
$ pulumi import oci:DataSafe/unsetSecurityAssessmentBaseline:UnsetSecurityAssessmentBaseline test_unset_security_assessment_baseline "id"
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.