oci.Adm.RemediationRun
Explore with Pulumi AI
This resource provides the Remediation Run resource in Oracle Cloud Infrastructure Adm service.
Creates a new remediation run.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testRemediationRun = new oci.adm.RemediationRun("test_remediation_run", {
remediationRecipeId: testRemediationRecipe.id,
definedTags: {
"foo-namespace.bar-key": "value",
},
displayName: remediationRunDisplayName,
freeformTags: {
"bar-key": "value",
},
});
import pulumi
import pulumi_oci as oci
test_remediation_run = oci.adm.RemediationRun("test_remediation_run",
remediation_recipe_id=test_remediation_recipe["id"],
defined_tags={
"foo-namespace.bar-key": "value",
},
display_name=remediation_run_display_name,
freeform_tags={
"bar-key": "value",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/Adm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Adm.NewRemediationRun(ctx, "test_remediation_run", &Adm.RemediationRunArgs{
RemediationRecipeId: pulumi.Any(testRemediationRecipe.Id),
DefinedTags: pulumi.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
DisplayName: pulumi.Any(remediationRunDisplayName),
FreeformTags: pulumi.Map{
"bar-key": pulumi.Any("value"),
},
})
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 testRemediationRun = new Oci.Adm.RemediationRun("test_remediation_run", new()
{
RemediationRecipeId = testRemediationRecipe.Id,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
DisplayName = remediationRunDisplayName,
FreeformTags =
{
{ "bar-key", "value" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Adm.RemediationRun;
import com.pulumi.oci.Adm.RemediationRunArgs;
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 testRemediationRun = new RemediationRun("testRemediationRun", RemediationRunArgs.builder()
.remediationRecipeId(testRemediationRecipe.id())
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.displayName(remediationRunDisplayName)
.freeformTags(Map.of("bar-key", "value"))
.build());
}
}
resources:
testRemediationRun:
type: oci:Adm:RemediationRun
name: test_remediation_run
properties:
remediationRecipeId: ${testRemediationRecipe.id}
definedTags:
foo-namespace.bar-key: value
displayName: ${remediationRunDisplayName}
freeformTags:
bar-key: value
Create RemediationRun Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RemediationRun(name: string, args: RemediationRunArgs, opts?: CustomResourceOptions);
@overload
def RemediationRun(resource_name: str,
args: RemediationRunArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RemediationRun(resource_name: str,
opts: Optional[ResourceOptions] = None,
remediation_recipe_id: Optional[str] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None)
func NewRemediationRun(ctx *Context, name string, args RemediationRunArgs, opts ...ResourceOption) (*RemediationRun, error)
public RemediationRun(string name, RemediationRunArgs args, CustomResourceOptions? opts = null)
public RemediationRun(String name, RemediationRunArgs args)
public RemediationRun(String name, RemediationRunArgs args, CustomResourceOptions options)
type: oci:Adm:RemediationRun
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 RemediationRunArgs
- 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 RemediationRunArgs
- 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 RemediationRunArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RemediationRunArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RemediationRunArgs
- 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 remediationRunResource = new Oci.Adm.RemediationRun("remediationRunResource", new()
{
RemediationRecipeId = "string",
CompartmentId = "string",
DefinedTags =
{
{ "string", "any" },
},
DisplayName = "string",
FreeformTags =
{
{ "string", "any" },
},
});
example, err := Adm.NewRemediationRun(ctx, "remediationRunResource", &Adm.RemediationRunArgs{
RemediationRecipeId: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
})
var remediationRunResource = new RemediationRun("remediationRunResource", RemediationRunArgs.builder()
.remediationRecipeId("string")
.compartmentId("string")
.definedTags(Map.of("string", "any"))
.displayName("string")
.freeformTags(Map.of("string", "any"))
.build());
remediation_run_resource = oci.adm.RemediationRun("remediationRunResource",
remediation_recipe_id="string",
compartment_id="string",
defined_tags={
"string": "any",
},
display_name="string",
freeform_tags={
"string": "any",
})
const remediationRunResource = new oci.adm.RemediationRun("remediationRunResource", {
remediationRecipeId: "string",
compartmentId: "string",
definedTags: {
string: "any",
},
displayName: "string",
freeformTags: {
string: "any",
},
});
type: oci:Adm:RemediationRun
properties:
compartmentId: string
definedTags:
string: any
displayName: string
freeformTags:
string: any
remediationRecipeId: string
RemediationRun 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 RemediationRun resource accepts the following input properties:
- Remediation
Recipe stringId The Oracle Cloud identifier (OCID) of the Remediation Recipe.
** 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
- Compartment
Id string - (Updatable) The compartment Oracle Cloud Identifier (OCID) of the remediation run.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) The name of the remediation run.
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Remediation
Recipe stringId The Oracle Cloud identifier (OCID) of the Remediation Recipe.
** 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
- Compartment
Id string - (Updatable) The compartment Oracle Cloud Identifier (OCID) of the remediation run.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) The name of the remediation run.
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- remediation
Recipe StringId The Oracle Cloud identifier (OCID) of the Remediation Recipe.
** 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
- compartment
Id String - (Updatable) The compartment Oracle Cloud Identifier (OCID) of the remediation run.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) The name of the remediation run.
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- remediation
Recipe stringId The Oracle Cloud identifier (OCID) of the Remediation Recipe.
** 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
- compartment
Id string - (Updatable) The compartment Oracle Cloud Identifier (OCID) of the remediation run.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string - (Updatable) The name of the remediation run.
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- remediation_
recipe_ strid The Oracle Cloud identifier (OCID) of the Remediation Recipe.
** 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
- compartment_
id str - (Updatable) The compartment Oracle Cloud Identifier (OCID) of the remediation run.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display_
name str - (Updatable) The name of the remediation run.
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- remediation
Recipe StringId The Oracle Cloud identifier (OCID) of the Remediation Recipe.
** 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
- compartment
Id String - (Updatable) The compartment Oracle Cloud Identifier (OCID) of the remediation run.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) The name of the remediation run.
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
Outputs
All input properties are implicitly available as output properties. Additionally, the RemediationRun resource produces the following output properties:
- Current
Stage stringType - The type of the current stage of the remediation run.
- Id string
- The provider-assigned unique ID for this managed resource.
- Remediation
Run stringSource - The source that triggered the Remediation Recipe.
- Stages
List<Remediation
Run Stage> - The list of remediation run stage summaries.
- State string
- The current lifecycle state of the remediation run.
- Dictionary<string, object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The creation date and time of the remediation run (formatted according to RFC3339).
- Time
Finished string - The date and time of the finish of the remediation run (formatted according to RFC3339).
- Time
Started string - The date and time of the start of the remediation run (formatted according to RFC3339).
- Time
Updated string - The date and time the remediation run was last updated (formatted according to RFC3339).
- Current
Stage stringType - The type of the current stage of the remediation run.
- Id string
- The provider-assigned unique ID for this managed resource.
- Remediation
Run stringSource - The source that triggered the Remediation Recipe.
- Stages
[]Remediation
Run Stage - The list of remediation run stage summaries.
- State string
- The current lifecycle state of the remediation run.
- map[string]interface{}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The creation date and time of the remediation run (formatted according to RFC3339).
- Time
Finished string - The date and time of the finish of the remediation run (formatted according to RFC3339).
- Time
Started string - The date and time of the start of the remediation run (formatted according to RFC3339).
- Time
Updated string - The date and time the remediation run was last updated (formatted according to RFC3339).
- current
Stage StringType - The type of the current stage of the remediation run.
- id String
- The provider-assigned unique ID for this managed resource.
- remediation
Run StringSource - The source that triggered the Remediation Recipe.
- stages
List<Remediation
Run Stage> - The list of remediation run stage summaries.
- state String
- The current lifecycle state of the remediation run.
- Map<String,Object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The creation date and time of the remediation run (formatted according to RFC3339).
- time
Finished String - The date and time of the finish of the remediation run (formatted according to RFC3339).
- time
Started String - The date and time of the start of the remediation run (formatted according to RFC3339).
- time
Updated String - The date and time the remediation run was last updated (formatted according to RFC3339).
- current
Stage stringType - The type of the current stage of the remediation run.
- id string
- The provider-assigned unique ID for this managed resource.
- remediation
Run stringSource - The source that triggered the Remediation Recipe.
- stages
Remediation
Run Stage[] - The list of remediation run stage summaries.
- state string
- The current lifecycle state of the remediation run.
- {[key: string]: any}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The creation date and time of the remediation run (formatted according to RFC3339).
- time
Finished string - The date and time of the finish of the remediation run (formatted according to RFC3339).
- time
Started string - The date and time of the start of the remediation run (formatted according to RFC3339).
- time
Updated string - The date and time the remediation run was last updated (formatted according to RFC3339).
- current_
stage_ strtype - The type of the current stage of the remediation run.
- id str
- The provider-assigned unique ID for this managed resource.
- remediation_
run_ strsource - The source that triggered the Remediation Recipe.
- stages
Sequence[adm.
Remediation Run Stage] - The list of remediation run stage summaries.
- state str
- The current lifecycle state of the remediation run.
- Mapping[str, Any]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The creation date and time of the remediation run (formatted according to RFC3339).
- time_
finished str - The date and time of the finish of the remediation run (formatted according to RFC3339).
- time_
started str - The date and time of the start of the remediation run (formatted according to RFC3339).
- time_
updated str - The date and time the remediation run was last updated (formatted according to RFC3339).
- current
Stage StringType - The type of the current stage of the remediation run.
- id String
- The provider-assigned unique ID for this managed resource.
- remediation
Run StringSource - The source that triggered the Remediation Recipe.
- stages List<Property Map>
- The list of remediation run stage summaries.
- state String
- The current lifecycle state of the remediation run.
- Map<Any>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The creation date and time of the remediation run (formatted according to RFC3339).
- time
Finished String - The date and time of the finish of the remediation run (formatted according to RFC3339).
- time
Started String - The date and time of the start of the remediation run (formatted according to RFC3339).
- time
Updated String - The date and time the remediation run was last updated (formatted according to RFC3339).
Look up Existing RemediationRun Resource
Get an existing RemediationRun 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?: RemediationRunState, opts?: CustomResourceOptions): RemediationRun
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
current_stage_type: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
remediation_recipe_id: Optional[str] = None,
remediation_run_source: Optional[str] = None,
stages: Optional[Sequence[_adm.RemediationRunStageArgs]] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, Any]] = None,
time_created: Optional[str] = None,
time_finished: Optional[str] = None,
time_started: Optional[str] = None,
time_updated: Optional[str] = None) -> RemediationRun
func GetRemediationRun(ctx *Context, name string, id IDInput, state *RemediationRunState, opts ...ResourceOption) (*RemediationRun, error)
public static RemediationRun Get(string name, Input<string> id, RemediationRunState? state, CustomResourceOptions? opts = null)
public static RemediationRun get(String name, Output<String> id, RemediationRunState 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.
- Compartment
Id string - (Updatable) The compartment Oracle Cloud Identifier (OCID) of the remediation run.
- Current
Stage stringType - The type of the current stage of the remediation run.
- Dictionary<string, object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) The name of the remediation run.
- Dictionary<string, object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Remediation
Recipe stringId The Oracle Cloud identifier (OCID) of the Remediation Recipe.
** 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
- Remediation
Run stringSource - The source that triggered the Remediation Recipe.
- Stages
List<Remediation
Run Stage> - The list of remediation run stage summaries.
- State string
- The current lifecycle state of the remediation run.
- Dictionary<string, object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The creation date and time of the remediation run (formatted according to RFC3339).
- Time
Finished string - The date and time of the finish of the remediation run (formatted according to RFC3339).
- Time
Started string - The date and time of the start of the remediation run (formatted according to RFC3339).
- Time
Updated string - The date and time the remediation run was last updated (formatted according to RFC3339).
- Compartment
Id string - (Updatable) The compartment Oracle Cloud Identifier (OCID) of the remediation run.
- Current
Stage stringType - The type of the current stage of the remediation run.
- map[string]interface{}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - (Updatable) The name of the remediation run.
- map[string]interface{}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Remediation
Recipe stringId The Oracle Cloud identifier (OCID) of the Remediation Recipe.
** 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
- Remediation
Run stringSource - The source that triggered the Remediation Recipe.
- Stages
[]Remediation
Run Stage Args - The list of remediation run stage summaries.
- State string
- The current lifecycle state of the remediation run.
- map[string]interface{}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The creation date and time of the remediation run (formatted according to RFC3339).
- Time
Finished string - The date and time of the finish of the remediation run (formatted according to RFC3339).
- Time
Started string - The date and time of the start of the remediation run (formatted according to RFC3339).
- Time
Updated string - The date and time the remediation run was last updated (formatted according to RFC3339).
- compartment
Id String - (Updatable) The compartment Oracle Cloud Identifier (OCID) of the remediation run.
- current
Stage StringType - The type of the current stage of the remediation run.
- Map<String,Object>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) The name of the remediation run.
- Map<String,Object>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- remediation
Recipe StringId The Oracle Cloud identifier (OCID) of the Remediation Recipe.
** 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
- remediation
Run StringSource - The source that triggered the Remediation Recipe.
- stages
List<Remediation
Run Stage> - The list of remediation run stage summaries.
- state String
- The current lifecycle state of the remediation run.
- Map<String,Object>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The creation date and time of the remediation run (formatted according to RFC3339).
- time
Finished String - The date and time of the finish of the remediation run (formatted according to RFC3339).
- time
Started String - The date and time of the start of the remediation run (formatted according to RFC3339).
- time
Updated String - The date and time the remediation run was last updated (formatted according to RFC3339).
- compartment
Id string - (Updatable) The compartment Oracle Cloud Identifier (OCID) of the remediation run.
- current
Stage stringType - The type of the current stage of the remediation run.
- {[key: string]: any}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string - (Updatable) The name of the remediation run.
- {[key: string]: any}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- remediation
Recipe stringId The Oracle Cloud identifier (OCID) of the Remediation Recipe.
** 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
- remediation
Run stringSource - The source that triggered the Remediation Recipe.
- stages
Remediation
Run Stage[] - The list of remediation run stage summaries.
- state string
- The current lifecycle state of the remediation run.
- {[key: string]: any}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The creation date and time of the remediation run (formatted according to RFC3339).
- time
Finished string - The date and time of the finish of the remediation run (formatted according to RFC3339).
- time
Started string - The date and time of the start of the remediation run (formatted according to RFC3339).
- time
Updated string - The date and time the remediation run was last updated (formatted according to RFC3339).
- compartment_
id str - (Updatable) The compartment Oracle Cloud Identifier (OCID) of the remediation run.
- current_
stage_ strtype - The type of the current stage of the remediation run.
- Mapping[str, Any]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display_
name str - (Updatable) The name of the remediation run.
- Mapping[str, Any]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- remediation_
recipe_ strid The Oracle Cloud identifier (OCID) of the Remediation Recipe.
** 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
- remediation_
run_ strsource - The source that triggered the Remediation Recipe.
- stages
Sequence[adm.
Remediation Run Stage Args] - The list of remediation run stage summaries.
- state str
- The current lifecycle state of the remediation run.
- Mapping[str, Any]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The creation date and time of the remediation run (formatted according to RFC3339).
- time_
finished str - The date and time of the finish of the remediation run (formatted according to RFC3339).
- time_
started str - The date and time of the start of the remediation run (formatted according to RFC3339).
- time_
updated str - The date and time the remediation run was last updated (formatted according to RFC3339).
- compartment
Id String - (Updatable) The compartment Oracle Cloud Identifier (OCID) of the remediation run.
- current
Stage StringType - The type of the current stage of the remediation run.
- Map<Any>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - (Updatable) The name of the remediation run.
- Map<Any>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- remediation
Recipe StringId The Oracle Cloud identifier (OCID) of the Remediation Recipe.
** 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
- remediation
Run StringSource - The source that triggered the Remediation Recipe.
- stages List<Property Map>
- The list of remediation run stage summaries.
- state String
- The current lifecycle state of the remediation run.
- Map<Any>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The creation date and time of the remediation run (formatted according to RFC3339).
- time
Finished String - The date and time of the finish of the remediation run (formatted according to RFC3339).
- time
Started String - The date and time of the start of the remediation run (formatted according to RFC3339).
- time
Updated String - The date and time the remediation run was last updated (formatted according to RFC3339).
Supporting Types
RemediationRunStage, RemediationRunStageArgs
- Summary string
- Information about the current step within the given stage.
- Time
Created string - The creation date and time of the remediation run (formatted according to RFC3339).
- Time
Finished string - The date and time of the finish of the remediation run (formatted according to RFC3339).
- Time
Started string - The date and time of the start of the remediation run (formatted according to RFC3339).
- Type string
- The type of stage.
- Summary string
- Information about the current step within the given stage.
- Time
Created string - The creation date and time of the remediation run (formatted according to RFC3339).
- Time
Finished string - The date and time of the finish of the remediation run (formatted according to RFC3339).
- Time
Started string - The date and time of the start of the remediation run (formatted according to RFC3339).
- Type string
- The type of stage.
- summary String
- Information about the current step within the given stage.
- time
Created String - The creation date and time of the remediation run (formatted according to RFC3339).
- time
Finished String - The date and time of the finish of the remediation run (formatted according to RFC3339).
- time
Started String - The date and time of the start of the remediation run (formatted according to RFC3339).
- type String
- The type of stage.
- summary string
- Information about the current step within the given stage.
- time
Created string - The creation date and time of the remediation run (formatted according to RFC3339).
- time
Finished string - The date and time of the finish of the remediation run (formatted according to RFC3339).
- time
Started string - The date and time of the start of the remediation run (formatted according to RFC3339).
- type string
- The type of stage.
- summary str
- Information about the current step within the given stage.
- time_
created str - The creation date and time of the remediation run (formatted according to RFC3339).
- time_
finished str - The date and time of the finish of the remediation run (formatted according to RFC3339).
- time_
started str - The date and time of the start of the remediation run (formatted according to RFC3339).
- type str
- The type of stage.
- summary String
- Information about the current step within the given stage.
- time
Created String - The creation date and time of the remediation run (formatted according to RFC3339).
- time
Finished String - The date and time of the finish of the remediation run (formatted according to RFC3339).
- time
Started String - The date and time of the start of the remediation run (formatted according to RFC3339).
- type String
- The type of stage.
Import
RemediationRuns can be imported using the id
, e.g.
$ pulumi import oci:Adm/remediationRun:RemediationRun test_remediation_run "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.