oci.Database.ScheduledAction
Explore with Pulumi AI
This resource provides the Scheduled Action resource in Oracle Cloud Infrastructure Database service.
Creates a Scheduled Action resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testScheduledAction = new oci.database.ScheduledAction("test_scheduled_action", {
actionType: scheduledActionActionType,
compartmentId: compartmentId,
schedulingPlanId: testSchedulingPlan.id,
schedulingWindowId: testSchedulingWindow.id,
actionMembers: [{
memberId: testMember.id,
memberOrder: scheduledActionActionMembersMemberOrder,
estimatedTimeInMins: scheduledActionActionMembersEstimatedTimeInMins,
}],
actionParams: scheduledActionActionParams,
definedTags: scheduledActionDefinedTags,
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_scheduled_action = oci.database.ScheduledAction("test_scheduled_action",
action_type=scheduled_action_action_type,
compartment_id=compartment_id,
scheduling_plan_id=test_scheduling_plan["id"],
scheduling_window_id=test_scheduling_window["id"],
action_members=[{
"member_id": test_member["id"],
"member_order": scheduled_action_action_members_member_order,
"estimated_time_in_mins": scheduled_action_action_members_estimated_time_in_mins,
}],
action_params=scheduled_action_action_params,
defined_tags=scheduled_action_defined_tags,
freeform_tags={
"Department": "Finance",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/database"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := database.NewScheduledAction(ctx, "test_scheduled_action", &database.ScheduledActionArgs{
ActionType: pulumi.Any(scheduledActionActionType),
CompartmentId: pulumi.Any(compartmentId),
SchedulingPlanId: pulumi.Any(testSchedulingPlan.Id),
SchedulingWindowId: pulumi.Any(testSchedulingWindow.Id),
ActionMembers: database.ScheduledActionActionMemberArray{
&database.ScheduledActionActionMemberArgs{
MemberId: pulumi.Any(testMember.Id),
MemberOrder: pulumi.Any(scheduledActionActionMembersMemberOrder),
EstimatedTimeInMins: pulumi.Any(scheduledActionActionMembersEstimatedTimeInMins),
},
},
ActionParams: pulumi.Any(scheduledActionActionParams),
DefinedTags: pulumi.Any(scheduledActionDefinedTags),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
})
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 testScheduledAction = new Oci.Database.ScheduledAction("test_scheduled_action", new()
{
ActionType = scheduledActionActionType,
CompartmentId = compartmentId,
SchedulingPlanId = testSchedulingPlan.Id,
SchedulingWindowId = testSchedulingWindow.Id,
ActionMembers = new[]
{
new Oci.Database.Inputs.ScheduledActionActionMemberArgs
{
MemberId = testMember.Id,
MemberOrder = scheduledActionActionMembersMemberOrder,
EstimatedTimeInMins = scheduledActionActionMembersEstimatedTimeInMins,
},
},
ActionParams = scheduledActionActionParams,
DefinedTags = scheduledActionDefinedTags,
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.ScheduledAction;
import com.pulumi.oci.Database.ScheduledActionArgs;
import com.pulumi.oci.Database.inputs.ScheduledActionActionMemberArgs;
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 testScheduledAction = new ScheduledAction("testScheduledAction", ScheduledActionArgs.builder()
.actionType(scheduledActionActionType)
.compartmentId(compartmentId)
.schedulingPlanId(testSchedulingPlan.id())
.schedulingWindowId(testSchedulingWindow.id())
.actionMembers(ScheduledActionActionMemberArgs.builder()
.memberId(testMember.id())
.memberOrder(scheduledActionActionMembersMemberOrder)
.estimatedTimeInMins(scheduledActionActionMembersEstimatedTimeInMins)
.build())
.actionParams(scheduledActionActionParams)
.definedTags(scheduledActionDefinedTags)
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testScheduledAction:
type: oci:Database:ScheduledAction
name: test_scheduled_action
properties:
actionType: ${scheduledActionActionType}
compartmentId: ${compartmentId}
schedulingPlanId: ${testSchedulingPlan.id}
schedulingWindowId: ${testSchedulingWindow.id}
actionMembers:
- memberId: ${testMember.id}
memberOrder: ${scheduledActionActionMembersMemberOrder}
estimatedTimeInMins: ${scheduledActionActionMembersEstimatedTimeInMins}
actionParams: ${scheduledActionActionParams}
definedTags: ${scheduledActionDefinedTags}
freeformTags:
Department: Finance
Create ScheduledAction Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ScheduledAction(name: string, args: ScheduledActionArgs, opts?: CustomResourceOptions);
@overload
def ScheduledAction(resource_name: str,
args: ScheduledActionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ScheduledAction(resource_name: str,
opts: Optional[ResourceOptions] = None,
action_type: Optional[str] = None,
compartment_id: Optional[str] = None,
scheduling_plan_id: Optional[str] = None,
scheduling_window_id: Optional[str] = None,
action_members: Optional[Sequence[_database.ScheduledActionActionMemberArgs]] = None,
action_params: Optional[Mapping[str, str]] = None,
defined_tags: Optional[Mapping[str, str]] = None,
freeform_tags: Optional[Mapping[str, str]] = None)
func NewScheduledAction(ctx *Context, name string, args ScheduledActionArgs, opts ...ResourceOption) (*ScheduledAction, error)
public ScheduledAction(string name, ScheduledActionArgs args, CustomResourceOptions? opts = null)
public ScheduledAction(String name, ScheduledActionArgs args)
public ScheduledAction(String name, ScheduledActionArgs args, CustomResourceOptions options)
type: oci:Database:ScheduledAction
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 ScheduledActionArgs
- 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 ScheduledActionArgs
- 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 ScheduledActionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ScheduledActionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ScheduledActionArgs
- 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 scheduledActionResource = new Oci.Database.ScheduledAction("scheduledActionResource", new()
{
ActionType = "string",
CompartmentId = "string",
SchedulingPlanId = "string",
SchedulingWindowId = "string",
ActionMembers = new[]
{
new Oci.Database.Inputs.ScheduledActionActionMemberArgs
{
MemberId = "string",
MemberOrder = 0,
EstimatedTimeInMins = 0,
},
},
ActionParams =
{
{ "string", "string" },
},
DefinedTags =
{
{ "string", "string" },
},
FreeformTags =
{
{ "string", "string" },
},
});
example, err := Database.NewScheduledAction(ctx, "scheduledActionResource", &Database.ScheduledActionArgs{
ActionType: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
SchedulingPlanId: pulumi.String("string"),
SchedulingWindowId: pulumi.String("string"),
ActionMembers: database.ScheduledActionActionMemberArray{
&database.ScheduledActionActionMemberArgs{
MemberId: pulumi.String("string"),
MemberOrder: pulumi.Int(0),
EstimatedTimeInMins: pulumi.Int(0),
},
},
ActionParams: pulumi.StringMap{
"string": pulumi.String("string"),
},
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var scheduledActionResource = new ScheduledAction("scheduledActionResource", ScheduledActionArgs.builder()
.actionType("string")
.compartmentId("string")
.schedulingPlanId("string")
.schedulingWindowId("string")
.actionMembers(ScheduledActionActionMemberArgs.builder()
.memberId("string")
.memberOrder(0)
.estimatedTimeInMins(0)
.build())
.actionParams(Map.of("string", "string"))
.definedTags(Map.of("string", "string"))
.freeformTags(Map.of("string", "string"))
.build());
scheduled_action_resource = oci.database.ScheduledAction("scheduledActionResource",
action_type="string",
compartment_id="string",
scheduling_plan_id="string",
scheduling_window_id="string",
action_members=[{
"member_id": "string",
"member_order": 0,
"estimated_time_in_mins": 0,
}],
action_params={
"string": "string",
},
defined_tags={
"string": "string",
},
freeform_tags={
"string": "string",
})
const scheduledActionResource = new oci.database.ScheduledAction("scheduledActionResource", {
actionType: "string",
compartmentId: "string",
schedulingPlanId: "string",
schedulingWindowId: "string",
actionMembers: [{
memberId: "string",
memberOrder: 0,
estimatedTimeInMins: 0,
}],
actionParams: {
string: "string",
},
definedTags: {
string: "string",
},
freeformTags: {
string: "string",
},
});
type: oci:Database:ScheduledAction
properties:
actionMembers:
- estimatedTimeInMins: 0
memberId: string
memberOrder: 0
actionParams:
string: string
actionType: string
compartmentId: string
definedTags:
string: string
freeformTags:
string: string
schedulingPlanId: string
schedulingWindowId: string
ScheduledAction 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 ScheduledAction resource accepts the following input properties:
- Action
Type string - The type of the scheduled action being performed
- Compartment
Id string - The OCID of the compartment.
- Scheduling
Plan stringId - The OCID of the Scheduling Plan.
- Scheduling
Window stringId (Updatable) The OCID of the Scheduling Window.
** 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
- Action
Members List<ScheduledAction Action Member> - (Updatable) The list of action members in a scheduled action.
- Action
Params Dictionary<string, string> - (Updatable) Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example:
{"count": "3"}
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Action
Type string - The type of the scheduled action being performed
- Compartment
Id string - The OCID of the compartment.
- Scheduling
Plan stringId - The OCID of the Scheduling Plan.
- Scheduling
Window stringId (Updatable) The OCID of the Scheduling Window.
** 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
- Action
Members []ScheduledAction Action Member Args - (Updatable) The list of action members in a scheduled action.
- Action
Params map[string]string - (Updatable) Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example:
{"count": "3"}
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- action
Type String - The type of the scheduled action being performed
- compartment
Id String - The OCID of the compartment.
- scheduling
Plan StringId - The OCID of the Scheduling Plan.
- scheduling
Window StringId (Updatable) The OCID of the Scheduling Window.
** 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
- action
Members List<ScheduledAction Action Member> - (Updatable) The list of action members in a scheduled action.
- action
Params Map<String,String> - (Updatable) Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example:
{"count": "3"}
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- action
Type string - The type of the scheduled action being performed
- compartment
Id string - The OCID of the compartment.
- scheduling
Plan stringId - The OCID of the Scheduling Plan.
- scheduling
Window stringId (Updatable) The OCID of the Scheduling Window.
** 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
- action
Members ScheduledAction Action Member[] - (Updatable) The list of action members in a scheduled action.
- action
Params {[key: string]: string} - (Updatable) Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example:
{"count": "3"}
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- action_
type str - The type of the scheduled action being performed
- compartment_
id str - The OCID of the compartment.
- scheduling_
plan_ strid - The OCID of the Scheduling Plan.
- scheduling_
window_ strid (Updatable) The OCID of the Scheduling Window.
** 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
- action_
members Sequence[database.Scheduled Action Action Member Args] - (Updatable) The list of action members in a scheduled action.
- action_
params Mapping[str, str] - (Updatable) Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example:
{"count": "3"}
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- action
Type String - The type of the scheduled action being performed
- compartment
Id String - The OCID of the compartment.
- scheduling
Plan StringId - The OCID of the Scheduling Plan.
- scheduling
Window StringId (Updatable) The OCID of the Scheduling Window.
** 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
- action
Members List<Property Map> - (Updatable) The list of action members in a scheduled action.
- action
Params Map<String> - (Updatable) Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example:
{"count": "3"}
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
Outputs
All input properties are implicitly available as output properties. Additionally, the ScheduledAction resource produces the following output properties:
- Action
Order int - The order of the scheduled action.
- Display
Name string - The display name of the Scheduled Action.
- Estimated
Time intIn Mins - The estimated patching time for the scheduled action.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the Scheduled Action. Valid states are CREATING, NEEDS_ATTENTION, AVAILABLE, UPDATING, FAILED, DELETING and DELETED.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time the Scheduled Action Resource was created.
- Time
Updated string - The date and time the Scheduled Action Resource was updated.
- Action
Order int - The order of the scheduled action.
- Display
Name string - The display name of the Scheduled Action.
- Estimated
Time intIn Mins - The estimated patching time for the scheduled action.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the Scheduled Action. Valid states are CREATING, NEEDS_ATTENTION, AVAILABLE, UPDATING, FAILED, DELETING and DELETED.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time the Scheduled Action Resource was created.
- Time
Updated string - The date and time the Scheduled Action Resource was updated.
- action
Order Integer - The order of the scheduled action.
- display
Name String - The display name of the Scheduled Action.
- estimated
Time IntegerIn Mins - The estimated patching time for the scheduled action.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the Scheduled Action. Valid states are CREATING, NEEDS_ATTENTION, AVAILABLE, UPDATING, FAILED, DELETING and DELETED.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time the Scheduled Action Resource was created.
- time
Updated String - The date and time the Scheduled Action Resource was updated.
- action
Order number - The order of the scheduled action.
- display
Name string - The display name of the Scheduled Action.
- estimated
Time numberIn Mins - The estimated patching time for the scheduled action.
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The current state of the Scheduled Action. Valid states are CREATING, NEEDS_ATTENTION, AVAILABLE, UPDATING, FAILED, DELETING and DELETED.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created string - The date and time the Scheduled Action Resource was created.
- time
Updated string - The date and time the Scheduled Action Resource was updated.
- action_
order int - The order of the scheduled action.
- display_
name str - The display name of the Scheduled Action.
- estimated_
time_ intin_ mins - The estimated patching time for the scheduled action.
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The current state of the Scheduled Action. Valid states are CREATING, NEEDS_ATTENTION, AVAILABLE, UPDATING, FAILED, DELETING and DELETED.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time_
created str - The date and time the Scheduled Action Resource was created.
- time_
updated str - The date and time the Scheduled Action Resource was updated.
- action
Order Number - The order of the scheduled action.
- display
Name String - The display name of the Scheduled Action.
- estimated
Time NumberIn Mins - The estimated patching time for the scheduled action.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the Scheduled Action. Valid states are CREATING, NEEDS_ATTENTION, AVAILABLE, UPDATING, FAILED, DELETING and DELETED.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time the Scheduled Action Resource was created.
- time
Updated String - The date and time the Scheduled Action Resource was updated.
Look up Existing ScheduledAction Resource
Get an existing ScheduledAction 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?: ScheduledActionState, opts?: CustomResourceOptions): ScheduledAction
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action_members: Optional[Sequence[_database.ScheduledActionActionMemberArgs]] = None,
action_order: Optional[int] = None,
action_params: Optional[Mapping[str, str]] = None,
action_type: Optional[str] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
estimated_time_in_mins: Optional[int] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
scheduling_plan_id: Optional[str] = None,
scheduling_window_id: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> ScheduledAction
func GetScheduledAction(ctx *Context, name string, id IDInput, state *ScheduledActionState, opts ...ResourceOption) (*ScheduledAction, error)
public static ScheduledAction Get(string name, Input<string> id, ScheduledActionState? state, CustomResourceOptions? opts = null)
public static ScheduledAction get(String name, Output<String> id, ScheduledActionState state, CustomResourceOptions options)
resources: _: type: oci:Database:ScheduledAction 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.
- Action
Members List<ScheduledAction Action Member> - (Updatable) The list of action members in a scheduled action.
- Action
Order int - The order of the scheduled action.
- Action
Params Dictionary<string, string> - (Updatable) Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example:
{"count": "3"}
- Action
Type string - The type of the scheduled action being performed
- Compartment
Id string - The OCID of the compartment.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - The display name of the Scheduled Action.
- Estimated
Time intIn Mins - The estimated patching time for the scheduled action.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Scheduling
Plan stringId - The OCID of the Scheduling Plan.
- Scheduling
Window stringId (Updatable) The OCID of the Scheduling Window.
** 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
- State string
- The current state of the Scheduled Action. Valid states are CREATING, NEEDS_ATTENTION, AVAILABLE, UPDATING, FAILED, DELETING and DELETED.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time the Scheduled Action Resource was created.
- Time
Updated string - The date and time the Scheduled Action Resource was updated.
- Action
Members []ScheduledAction Action Member Args - (Updatable) The list of action members in a scheduled action.
- Action
Order int - The order of the scheduled action.
- Action
Params map[string]string - (Updatable) Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example:
{"count": "3"}
- Action
Type string - The type of the scheduled action being performed
- Compartment
Id string - The OCID of the compartment.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - The display name of the Scheduled Action.
- Estimated
Time intIn Mins - The estimated patching time for the scheduled action.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Scheduling
Plan stringId - The OCID of the Scheduling Plan.
- Scheduling
Window stringId (Updatable) The OCID of the Scheduling Window.
** 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
- State string
- The current state of the Scheduled Action. Valid states are CREATING, NEEDS_ATTENTION, AVAILABLE, UPDATING, FAILED, DELETING and DELETED.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time the Scheduled Action Resource was created.
- Time
Updated string - The date and time the Scheduled Action Resource was updated.
- action
Members List<ScheduledAction Action Member> - (Updatable) The list of action members in a scheduled action.
- action
Order Integer - The order of the scheduled action.
- action
Params Map<String,String> - (Updatable) Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example:
{"count": "3"}
- action
Type String - The type of the scheduled action being performed
- compartment
Id String - The OCID of the compartment.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - The display name of the Scheduled Action.
- estimated
Time IntegerIn Mins - The estimated patching time for the scheduled action.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- scheduling
Plan StringId - The OCID of the Scheduling Plan.
- scheduling
Window StringId (Updatable) The OCID of the Scheduling Window.
** 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
- state String
- The current state of the Scheduled Action. Valid states are CREATING, NEEDS_ATTENTION, AVAILABLE, UPDATING, FAILED, DELETING and DELETED.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time the Scheduled Action Resource was created.
- time
Updated String - The date and time the Scheduled Action Resource was updated.
- action
Members ScheduledAction Action Member[] - (Updatable) The list of action members in a scheduled action.
- action
Order number - The order of the scheduled action.
- action
Params {[key: string]: string} - (Updatable) Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example:
{"count": "3"}
- action
Type string - The type of the scheduled action being performed
- compartment
Id string - The OCID of the compartment.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name string - The display name of the Scheduled Action.
- estimated
Time numberIn Mins - The estimated patching time for the scheduled action.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- scheduling
Plan stringId - The OCID of the Scheduling Plan.
- scheduling
Window stringId (Updatable) The OCID of the Scheduling Window.
** 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
- state string
- The current state of the Scheduled Action. Valid states are CREATING, NEEDS_ATTENTION, AVAILABLE, UPDATING, FAILED, DELETING and DELETED.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created string - The date and time the Scheduled Action Resource was created.
- time
Updated string - The date and time the Scheduled Action Resource was updated.
- action_
members Sequence[database.Scheduled Action Action Member Args] - (Updatable) The list of action members in a scheduled action.
- action_
order int - The order of the scheduled action.
- action_
params Mapping[str, str] - (Updatable) Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example:
{"count": "3"}
- action_
type str - The type of the scheduled action being performed
- compartment_
id str - The OCID of the compartment.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display_
name str - The display name of the Scheduled Action.
- estimated_
time_ intin_ mins - The estimated patching time for the scheduled action.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- scheduling_
plan_ strid - The OCID of the Scheduling Plan.
- scheduling_
window_ strid (Updatable) The OCID of the Scheduling Window.
** 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
- state str
- The current state of the Scheduled Action. Valid states are CREATING, NEEDS_ATTENTION, AVAILABLE, UPDATING, FAILED, DELETING and DELETED.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time_
created str - The date and time the Scheduled Action Resource was created.
- time_
updated str - The date and time the Scheduled Action Resource was updated.
- action
Members List<Property Map> - (Updatable) The list of action members in a scheduled action.
- action
Order Number - The order of the scheduled action.
- action
Params Map<String> - (Updatable) Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example:
{"count": "3"}
- action
Type String - The type of the scheduled action being performed
- compartment
Id String - The OCID of the compartment.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - The display name of the Scheduled Action.
- estimated
Time NumberIn Mins - The estimated patching time for the scheduled action.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- scheduling
Plan StringId - The OCID of the Scheduling Plan.
- scheduling
Window StringId (Updatable) The OCID of the Scheduling Window.
** 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
- state String
- The current state of the Scheduled Action. Valid states are CREATING, NEEDS_ATTENTION, AVAILABLE, UPDATING, FAILED, DELETING and DELETED.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time the Scheduled Action Resource was created.
- time
Updated String - The date and time the Scheduled Action Resource was updated.
Supporting Types
ScheduledActionActionMember, ScheduledActionActionMemberArgs
- Member
Id string - (Updatable) The ocid of the action member.
- Member
Order int - (Updatable) The order of the action member in a scheduled action.
- Estimated
Time intIn Mins - (Updatable) The estimated time for the intended action member.
- Member
Id string - (Updatable) The ocid of the action member.
- Member
Order int - (Updatable) The order of the action member in a scheduled action.
- Estimated
Time intIn Mins - (Updatable) The estimated time for the intended action member.
- member
Id String - (Updatable) The ocid of the action member.
- member
Order Integer - (Updatable) The order of the action member in a scheduled action.
- estimated
Time IntegerIn Mins - (Updatable) The estimated time for the intended action member.
- member
Id string - (Updatable) The ocid of the action member.
- member
Order number - (Updatable) The order of the action member in a scheduled action.
- estimated
Time numberIn Mins - (Updatable) The estimated time for the intended action member.
- member_
id str - (Updatable) The ocid of the action member.
- member_
order int - (Updatable) The order of the action member in a scheduled action.
- estimated_
time_ intin_ mins - (Updatable) The estimated time for the intended action member.
- member
Id String - (Updatable) The ocid of the action member.
- member
Order Number - (Updatable) The order of the action member in a scheduled action.
- estimated
Time NumberIn Mins - (Updatable) The estimated time for the intended action member.
Import
ScheduledActions can be imported using the id
, e.g.
$ pulumi import oci:Database/scheduledAction:ScheduledAction test_scheduled_action "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.