published on Thursday, Mar 26, 2026 by Pulumi
published on Thursday, Mar 26, 2026 by Pulumi
This resource provides the Fsu Readiness Check resource in Oracle Cloud Infrastructure Fleet Software Update service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/edsfu/latest/FsuReadinessCheck
Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/fleetsoftwareupdate
Creates a new Exadata Fleet Update Readiness Check.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testFsuReadinessCheck = new oci.fleetsoftwareupdate.FsuReadinessCheck("test_fsu_readiness_check", {
compartmentId: compartmentId,
type: fsuReadinessCheckType,
definedTags: {
"foo-namespace.bar-key": "value",
},
displayName: fsuReadinessCheckDisplayName,
freeformTags: {
"bar-key": "value",
},
targets: [{
entityId: testEntity.id,
entityType: fsuReadinessCheckTargetsEntityType,
}],
});
import pulumi
import pulumi_oci as oci
test_fsu_readiness_check = oci.fleetsoftwareupdate.FsuReadinessCheck("test_fsu_readiness_check",
compartment_id=compartment_id,
type=fsu_readiness_check_type,
defined_tags={
"foo-namespace.bar-key": "value",
},
display_name=fsu_readiness_check_display_name,
freeform_tags={
"bar-key": "value",
},
targets=[{
"entity_id": test_entity["id"],
"entity_type": fsu_readiness_check_targets_entity_type,
}])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/fleetsoftwareupdate"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fleetsoftwareupdate.NewFsuReadinessCheck(ctx, "test_fsu_readiness_check", &fleetsoftwareupdate.FsuReadinessCheckArgs{
CompartmentId: pulumi.Any(compartmentId),
Type: pulumi.Any(fsuReadinessCheckType),
DefinedTags: pulumi.StringMap{
"foo-namespace.bar-key": pulumi.String("value"),
},
DisplayName: pulumi.Any(fsuReadinessCheckDisplayName),
FreeformTags: pulumi.StringMap{
"bar-key": pulumi.String("value"),
},
Targets: fleetsoftwareupdate.FsuReadinessCheckTargetArray{
&fleetsoftwareupdate.FsuReadinessCheckTargetArgs{
EntityId: pulumi.Any(testEntity.Id),
EntityType: pulumi.Any(fsuReadinessCheckTargetsEntityType),
},
},
})
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 testFsuReadinessCheck = new Oci.FleetSoftwareUpdate.FsuReadinessCheck("test_fsu_readiness_check", new()
{
CompartmentId = compartmentId,
Type = fsuReadinessCheckType,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
DisplayName = fsuReadinessCheckDisplayName,
FreeformTags =
{
{ "bar-key", "value" },
},
Targets = new[]
{
new Oci.FleetSoftwareUpdate.Inputs.FsuReadinessCheckTargetArgs
{
EntityId = testEntity.Id,
EntityType = fsuReadinessCheckTargetsEntityType,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.FleetSoftwareUpdate.FsuReadinessCheck;
import com.pulumi.oci.FleetSoftwareUpdate.FsuReadinessCheckArgs;
import com.pulumi.oci.FleetSoftwareUpdate.inputs.FsuReadinessCheckTargetArgs;
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 testFsuReadinessCheck = new FsuReadinessCheck("testFsuReadinessCheck", FsuReadinessCheckArgs.builder()
.compartmentId(compartmentId)
.type(fsuReadinessCheckType)
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.displayName(fsuReadinessCheckDisplayName)
.freeformTags(Map.of("bar-key", "value"))
.targets(FsuReadinessCheckTargetArgs.builder()
.entityId(testEntity.id())
.entityType(fsuReadinessCheckTargetsEntityType)
.build())
.build());
}
}
resources:
testFsuReadinessCheck:
type: oci:FleetSoftwareUpdate:FsuReadinessCheck
name: test_fsu_readiness_check
properties:
compartmentId: ${compartmentId}
type: ${fsuReadinessCheckType}
definedTags:
foo-namespace.bar-key: value
displayName: ${fsuReadinessCheckDisplayName}
freeformTags:
bar-key: value
targets:
- entityId: ${testEntity.id}
entityType: ${fsuReadinessCheckTargetsEntityType}
Create FsuReadinessCheck Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FsuReadinessCheck(name: string, args: FsuReadinessCheckArgs, opts?: CustomResourceOptions);@overload
def FsuReadinessCheck(resource_name: str,
args: FsuReadinessCheckArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FsuReadinessCheck(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
type: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
targets: Optional[Sequence[FsuReadinessCheckTargetArgs]] = None)func NewFsuReadinessCheck(ctx *Context, name string, args FsuReadinessCheckArgs, opts ...ResourceOption) (*FsuReadinessCheck, error)public FsuReadinessCheck(string name, FsuReadinessCheckArgs args, CustomResourceOptions? opts = null)
public FsuReadinessCheck(String name, FsuReadinessCheckArgs args)
public FsuReadinessCheck(String name, FsuReadinessCheckArgs args, CustomResourceOptions options)
type: oci:FleetSoftwareUpdate:FsuReadinessCheck
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 FsuReadinessCheckArgs
- 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 FsuReadinessCheckArgs
- 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 FsuReadinessCheckArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FsuReadinessCheckArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FsuReadinessCheckArgs
- 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 fsuReadinessCheckResource = new Oci.FleetSoftwareUpdate.FsuReadinessCheck("fsuReadinessCheckResource", new()
{
CompartmentId = "string",
Type = "string",
DefinedTags =
{
{ "string", "string" },
},
DisplayName = "string",
FreeformTags =
{
{ "string", "string" },
},
Targets = new[]
{
new Oci.FleetSoftwareUpdate.Inputs.FsuReadinessCheckTargetArgs
{
EntityId = "string",
EntityType = "string",
},
},
});
example, err := fleetsoftwareupdate.NewFsuReadinessCheck(ctx, "fsuReadinessCheckResource", &fleetsoftwareupdate.FsuReadinessCheckArgs{
CompartmentId: pulumi.String("string"),
Type: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Targets: fleetsoftwareupdate.FsuReadinessCheckTargetArray{
&fleetsoftwareupdate.FsuReadinessCheckTargetArgs{
EntityId: pulumi.String("string"),
EntityType: pulumi.String("string"),
},
},
})
var fsuReadinessCheckResource = new FsuReadinessCheck("fsuReadinessCheckResource", FsuReadinessCheckArgs.builder()
.compartmentId("string")
.type("string")
.definedTags(Map.of("string", "string"))
.displayName("string")
.freeformTags(Map.of("string", "string"))
.targets(FsuReadinessCheckTargetArgs.builder()
.entityId("string")
.entityType("string")
.build())
.build());
fsu_readiness_check_resource = oci.fleetsoftwareupdate.FsuReadinessCheck("fsuReadinessCheckResource",
compartment_id="string",
type="string",
defined_tags={
"string": "string",
},
display_name="string",
freeform_tags={
"string": "string",
},
targets=[{
"entity_id": "string",
"entity_type": "string",
}])
const fsuReadinessCheckResource = new oci.fleetsoftwareupdate.FsuReadinessCheck("fsuReadinessCheckResource", {
compartmentId: "string",
type: "string",
definedTags: {
string: "string",
},
displayName: "string",
freeformTags: {
string: "string",
},
targets: [{
entityId: "string",
entityType: "string",
}],
});
type: oci:FleetSoftwareUpdate:FsuReadinessCheck
properties:
compartmentId: string
definedTags:
string: string
displayName: string
freeformTags:
string: string
targets:
- entityId: string
entityType: string
type: string
FsuReadinessCheck 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 FsuReadinessCheck resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the Compartment.
- Type string
Type of Exadata Fleet Update Readiness Check.
** 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
- Dictionary<string, string>
- (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 user-friendly name for the Exadata Fleet Update Readiness Check resource.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - Targets
List<Fsu
Readiness Check Target> - List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
- Compartment
Id string - (Updatable) The OCID of the Compartment.
- Type string
Type of Exadata Fleet Update Readiness Check.
** 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
- map[string]string
- (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 user-friendly name for the Exadata Fleet Update Readiness Check resource.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - Targets
[]Fsu
Readiness Check Target Args - List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
- compartment
Id String - (Updatable) The OCID of the Compartment.
- type String
Type of Exadata Fleet Update Readiness Check.
** 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
- Map<String,String>
- (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 user-friendly name for the Exadata Fleet Update Readiness Check resource.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - targets
List<Fsu
Readiness Check Target> - List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
- compartment
Id string - (Updatable) The OCID of the Compartment.
- type string
Type of Exadata Fleet Update Readiness Check.
** 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
- {[key: string]: string}
- (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 user-friendly name for the Exadata Fleet Update Readiness Check resource.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - targets
Fsu
Readiness Check Target[] - List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
- compartment_
id str - (Updatable) The OCID of the Compartment.
- type str
Type of Exadata Fleet Update Readiness Check.
** 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
- Mapping[str, str]
- (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 user-friendly name for the Exadata Fleet Update Readiness Check resource.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - targets
Sequence[Fsu
Readiness Check Target Args] - List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
- compartment
Id String - (Updatable) The OCID of the Compartment.
- type String
Type of Exadata Fleet Update Readiness Check.
** 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
- Map<String>
- (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 user-friendly name for the Exadata Fleet Update Readiness Check resource.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - targets List<Property Map>
- List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
Outputs
All input properties are implicitly available as output properties. Additionally, the FsuReadinessCheck resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Issue
Count int - Number of issues found during the Exadata Fleet Update Readiness Check run.
- Issues
List<Fsu
Readiness Check Issue> - Issues found during the Exadata Fleet Update Readiness Check run.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- State string
- Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
- Time
Finished string - The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
- Time
Updated string - The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
- Id string
- The provider-assigned unique ID for this managed resource.
- Issue
Count int - Number of issues found during the Exadata Fleet Update Readiness Check run.
- Issues
[]Fsu
Readiness Check Issue - Issues found during the Exadata Fleet Update Readiness Check run.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- State string
- Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
- Time
Finished string - The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
- Time
Updated string - The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
- id String
- The provider-assigned unique ID for this managed resource.
- issue
Count Integer - Number of issues found during the Exadata Fleet Update Readiness Check run.
- issues
List<Fsu
Readiness Check Issue> - Issues found during the Exadata Fleet Update Readiness Check run.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state String
- Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
- time
Finished String - The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
- time
Updated String - The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
- id string
- The provider-assigned unique ID for this managed resource.
- issue
Count number - Number of issues found during the Exadata Fleet Update Readiness Check run.
- issues
Fsu
Readiness Check Issue[] - Issues found during the Exadata Fleet Update Readiness Check run.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state string
- Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
- time
Finished string - The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
- time
Updated string - The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
- id str
- The provider-assigned unique ID for this managed resource.
- issue_
count int - Number of issues found during the Exadata Fleet Update Readiness Check run.
- issues
Sequence[Fsu
Readiness Check Issue] - Issues found during the Exadata Fleet Update Readiness Check run.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state str
- Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
- time_
finished str - The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
- time_
updated str - The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
- id String
- The provider-assigned unique ID for this managed resource.
- issue
Count Number - Number of issues found during the Exadata Fleet Update Readiness Check run.
- issues List<Property Map>
- Issues found during the Exadata Fleet Update Readiness Check run.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state String
- Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
- time
Finished String - The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
- time
Updated String - The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
Look up Existing FsuReadinessCheck Resource
Get an existing FsuReadinessCheck 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?: FsuReadinessCheckState, opts?: CustomResourceOptions): FsuReadinessCheck@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
issue_count: Optional[int] = None,
issues: Optional[Sequence[FsuReadinessCheckIssueArgs]] = None,
lifecycle_details: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
targets: Optional[Sequence[FsuReadinessCheckTargetArgs]] = None,
time_created: Optional[str] = None,
time_finished: Optional[str] = None,
time_updated: Optional[str] = None,
type: Optional[str] = None) -> FsuReadinessCheckfunc GetFsuReadinessCheck(ctx *Context, name string, id IDInput, state *FsuReadinessCheckState, opts ...ResourceOption) (*FsuReadinessCheck, error)public static FsuReadinessCheck Get(string name, Input<string> id, FsuReadinessCheckState? state, CustomResourceOptions? opts = null)public static FsuReadinessCheck get(String name, Output<String> id, FsuReadinessCheckState state, CustomResourceOptions options)resources: _: type: oci:FleetSoftwareUpdate:FsuReadinessCheck get: id: ${id}- 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 OCID of the Compartment.
- Dictionary<string, string>
- (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 user-friendly name for the Exadata Fleet Update Readiness Check resource.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - Issue
Count int - Number of issues found during the Exadata Fleet Update Readiness Check run.
- Issues
List<Fsu
Readiness Check Issue> - Issues found during the Exadata Fleet Update Readiness Check run.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- State string
- Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Targets
List<Fsu
Readiness Check Target> - List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
- Time
Created string - The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
- Time
Finished string - The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
- Time
Updated string - The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
- Type string
Type of Exadata Fleet Update Readiness Check.
** 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 OCID of the Compartment.
- map[string]string
- (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 user-friendly name for the Exadata Fleet Update Readiness Check resource.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - Issue
Count int - Number of issues found during the Exadata Fleet Update Readiness Check run.
- Issues
[]Fsu
Readiness Check Issue Args - Issues found during the Exadata Fleet Update Readiness Check run.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- State string
- Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - Targets
[]Fsu
Readiness Check Target Args - List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
- Time
Created string - The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
- Time
Finished string - The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
- Time
Updated string - The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
- Type string
Type of Exadata Fleet Update Readiness Check.
** 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 OCID of the Compartment.
- Map<String,String>
- (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 user-friendly name for the Exadata Fleet Update Readiness Check resource.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - issue
Count Integer - Number of issues found during the Exadata Fleet Update Readiness Check run.
- issues
List<Fsu
Readiness Check Issue> - Issues found during the Exadata Fleet Update Readiness Check run.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state String
- Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - targets
List<Fsu
Readiness Check Target> - List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
- time
Created String - The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
- time
Finished String - The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
- time
Updated String - The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
- type String
Type of Exadata Fleet Update Readiness Check.
** 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 OCID of the Compartment.
- {[key: string]: string}
- (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 user-friendly name for the Exadata Fleet Update Readiness Check resource.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - issue
Count number - Number of issues found during the Exadata Fleet Update Readiness Check run.
- issues
Fsu
Readiness Check Issue[] - Issues found during the Exadata Fleet Update Readiness Check run.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state string
- Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - targets
Fsu
Readiness Check Target[] - List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
- time
Created string - The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
- time
Finished string - The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
- time
Updated string - The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
- type string
Type of Exadata Fleet Update Readiness Check.
** 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 OCID of the Compartment.
- Mapping[str, str]
- (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 user-friendly name for the Exadata Fleet Update Readiness Check resource.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - issue_
count int - Number of issues found during the Exadata Fleet Update Readiness Check run.
- issues
Sequence[Fsu
Readiness Check Issue Args] - Issues found during the Exadata Fleet Update Readiness Check run.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state str
- Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - targets
Sequence[Fsu
Readiness Check Target Args] - List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
- time_
created str - The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
- time_
finished str - The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
- time_
updated str - The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
- type str
Type of Exadata Fleet Update Readiness Check.
** 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 OCID of the Compartment.
- Map<String>
- (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 user-friendly name for the Exadata Fleet Update Readiness Check resource.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - issue
Count Number - Number of issues found during the Exadata Fleet Update Readiness Check run.
- issues List<Property Map>
- Issues found during the Exadata Fleet Update Readiness Check run.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- state String
- Possible lifecycle states for the Exadata Fleet Update Readiness Check resource.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"} - targets List<Property Map>
- List of targets that will run the Exadata Fleet Update Readiness Check. The targets have to be of the same entity type.
- time
Created String - The date and time the Exadata Fleet Update Readiness Check was created, as described in RFC 3339, section 14.29.
- time
Finished String - The date and time the Exadata Fleet Update Readiness Check was finished, as described in RFC 3339.
- time
Updated String - The date and time the Exadata Fleet Update Readiness Check was updated, as described in RFC 3339, section 14.29.
- type String
Type of Exadata Fleet Update Readiness Check.
** 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
Supporting Types
FsuReadinessCheckIssue, FsuReadinessCheckIssueArgs
- Description string
- Description of the patching issue.
- Impacted
Resource stringId - The OCID of the resource impacted by the patching issue.
- Name string
- Name of the patching issue.
- Recommended
Action string - Recommended action to perform to address or further triage the patching issue.
- Description string
- Description of the patching issue.
- Impacted
Resource stringId - The OCID of the resource impacted by the patching issue.
- Name string
- Name of the patching issue.
- Recommended
Action string - Recommended action to perform to address or further triage the patching issue.
- description String
- Description of the patching issue.
- impacted
Resource StringId - The OCID of the resource impacted by the patching issue.
- name String
- Name of the patching issue.
- recommended
Action String - Recommended action to perform to address or further triage the patching issue.
- description string
- Description of the patching issue.
- impacted
Resource stringId - The OCID of the resource impacted by the patching issue.
- name string
- Name of the patching issue.
- recommended
Action string - Recommended action to perform to address or further triage the patching issue.
- description str
- Description of the patching issue.
- impacted_
resource_ strid - The OCID of the resource impacted by the patching issue.
- name str
- Name of the patching issue.
- recommended_
action str - Recommended action to perform to address or further triage the patching issue.
- description String
- Description of the patching issue.
- impacted
Resource StringId - The OCID of the resource impacted by the patching issue.
- name String
- Name of the patching issue.
- recommended
Action String - Recommended action to perform to address or further triage the patching issue.
FsuReadinessCheckTarget, FsuReadinessCheckTargetArgs
- Entity
Id string - Resource identifier OCID
- Entity
Type string - Resource entity type
- Entity
Id string - Resource identifier OCID
- Entity
Type string - Resource entity type
- entity
Id String - Resource identifier OCID
- entity
Type String - Resource entity type
- entity
Id string - Resource identifier OCID
- entity
Type string - Resource entity type
- entity_
id str - Resource identifier OCID
- entity_
type str - Resource entity type
- entity
Id String - Resource identifier OCID
- entity
Type String - Resource entity type
Import
FsuReadinessChecks can be imported using the id, e.g.
$ pulumi import oci:FleetSoftwareUpdate/fsuReadinessCheck:FsuReadinessCheck test_fsu_readiness_check "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
ociTerraform Provider.
published on Thursday, Mar 26, 2026 by Pulumi
