1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getSchedulingPolicyRecommendedScheduledActions
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.Database.getSchedulingPolicyRecommendedScheduledActions

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

    This data source provides the list of Scheduling Policy Recommended Scheduled Actions in Oracle Cloud Infrastructure Database service.

    Returns a recommended Scheduled Actions configuration for a given resource, plan intent and scheduling policy.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSchedulingPolicyRecommendedScheduledActions = oci.Database.getSchedulingPolicyRecommendedScheduledActions({
        planIntent: schedulingPolicyRecommendedScheduledActionPlanIntent,
        schedulingPolicyId: testSchedulingPolicy.id,
        schedulingPolicyTargetResourceId: testResource.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_scheduling_policy_recommended_scheduled_actions = oci.Database.get_scheduling_policy_recommended_scheduled_actions(plan_intent=scheduling_policy_recommended_scheduled_action_plan_intent,
        scheduling_policy_id=test_scheduling_policy["id"],
        scheduling_policy_target_resource_id=test_resource["id"])
    
    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.GetSchedulingPolicyRecommendedScheduledActions(ctx, &database.GetSchedulingPolicyRecommendedScheduledActionsArgs{
    			PlanIntent:                       schedulingPolicyRecommendedScheduledActionPlanIntent,
    			SchedulingPolicyId:               testSchedulingPolicy.Id,
    			SchedulingPolicyTargetResourceId: testResource.Id,
    		}, nil)
    		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 testSchedulingPolicyRecommendedScheduledActions = Oci.Database.GetSchedulingPolicyRecommendedScheduledActions.Invoke(new()
        {
            PlanIntent = schedulingPolicyRecommendedScheduledActionPlanIntent,
            SchedulingPolicyId = testSchedulingPolicy.Id,
            SchedulingPolicyTargetResourceId = testResource.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Database.DatabaseFunctions;
    import com.pulumi.oci.Database.inputs.GetSchedulingPolicyRecommendedScheduledActionsArgs;
    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) {
            final var testSchedulingPolicyRecommendedScheduledActions = DatabaseFunctions.getSchedulingPolicyRecommendedScheduledActions(GetSchedulingPolicyRecommendedScheduledActionsArgs.builder()
                .planIntent(schedulingPolicyRecommendedScheduledActionPlanIntent)
                .schedulingPolicyId(testSchedulingPolicy.id())
                .schedulingPolicyTargetResourceId(testResource.id())
                .build());
    
        }
    }
    
    variables:
      testSchedulingPolicyRecommendedScheduledActions:
        fn::invoke:
          function: oci:Database:getSchedulingPolicyRecommendedScheduledActions
          arguments:
            planIntent: ${schedulingPolicyRecommendedScheduledActionPlanIntent}
            schedulingPolicyId: ${testSchedulingPolicy.id}
            schedulingPolicyTargetResourceId: ${testResource.id}
    

    Using getSchedulingPolicyRecommendedScheduledActions

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getSchedulingPolicyRecommendedScheduledActions(args: GetSchedulingPolicyRecommendedScheduledActionsArgs, opts?: InvokeOptions): Promise<GetSchedulingPolicyRecommendedScheduledActionsResult>
    function getSchedulingPolicyRecommendedScheduledActionsOutput(args: GetSchedulingPolicyRecommendedScheduledActionsOutputArgs, opts?: InvokeOptions): Output<GetSchedulingPolicyRecommendedScheduledActionsResult>
    def get_scheduling_policy_recommended_scheduled_actions(filters: Optional[Sequence[_database.GetSchedulingPolicyRecommendedScheduledActionsFilter]] = None,
                                                            plan_intent: Optional[str] = None,
                                                            scheduling_policy_id: Optional[str] = None,
                                                            scheduling_policy_target_resource_id: Optional[str] = None,
                                                            opts: Optional[InvokeOptions] = None) -> GetSchedulingPolicyRecommendedScheduledActionsResult
    def get_scheduling_policy_recommended_scheduled_actions_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[_database.GetSchedulingPolicyRecommendedScheduledActionsFilterArgs]]]] = None,
                                                            plan_intent: Optional[pulumi.Input[str]] = None,
                                                            scheduling_policy_id: Optional[pulumi.Input[str]] = None,
                                                            scheduling_policy_target_resource_id: Optional[pulumi.Input[str]] = None,
                                                            opts: Optional[InvokeOptions] = None) -> Output[GetSchedulingPolicyRecommendedScheduledActionsResult]
    func GetSchedulingPolicyRecommendedScheduledActions(ctx *Context, args *GetSchedulingPolicyRecommendedScheduledActionsArgs, opts ...InvokeOption) (*GetSchedulingPolicyRecommendedScheduledActionsResult, error)
    func GetSchedulingPolicyRecommendedScheduledActionsOutput(ctx *Context, args *GetSchedulingPolicyRecommendedScheduledActionsOutputArgs, opts ...InvokeOption) GetSchedulingPolicyRecommendedScheduledActionsResultOutput

    > Note: This function is named GetSchedulingPolicyRecommendedScheduledActions in the Go SDK.

    public static class GetSchedulingPolicyRecommendedScheduledActions 
    {
        public static Task<GetSchedulingPolicyRecommendedScheduledActionsResult> InvokeAsync(GetSchedulingPolicyRecommendedScheduledActionsArgs args, InvokeOptions? opts = null)
        public static Output<GetSchedulingPolicyRecommendedScheduledActionsResult> Invoke(GetSchedulingPolicyRecommendedScheduledActionsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSchedulingPolicyRecommendedScheduledActionsResult> getSchedulingPolicyRecommendedScheduledActions(GetSchedulingPolicyRecommendedScheduledActionsArgs args, InvokeOptions options)
    public static Output<GetSchedulingPolicyRecommendedScheduledActionsResult> getSchedulingPolicyRecommendedScheduledActions(GetSchedulingPolicyRecommendedScheduledActionsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:Database/getSchedulingPolicyRecommendedScheduledActions:getSchedulingPolicyRecommendedScheduledActions
      arguments:
        # arguments dictionary

    The following arguments are supported:

    PlanIntent string
    The scheduling plan intent the scheduled actions will be for.
    SchedulingPolicyId string
    The Scheduling Policy OCID.
    SchedulingPolicyTargetResourceId string
    The target resource OCID the scheduled actions will be for.
    Filters List<GetSchedulingPolicyRecommendedScheduledActionsFilter>
    PlanIntent string
    The scheduling plan intent the scheduled actions will be for.
    SchedulingPolicyId string
    The Scheduling Policy OCID.
    SchedulingPolicyTargetResourceId string
    The target resource OCID the scheduled actions will be for.
    Filters []GetSchedulingPolicyRecommendedScheduledActionsFilter
    planIntent String
    The scheduling plan intent the scheduled actions will be for.
    schedulingPolicyId String
    The Scheduling Policy OCID.
    schedulingPolicyTargetResourceId String
    The target resource OCID the scheduled actions will be for.
    filters List<GetSchedulingPolicyRecommendedScheduledActionsFilter>
    planIntent string
    The scheduling plan intent the scheduled actions will be for.
    schedulingPolicyId string
    The Scheduling Policy OCID.
    schedulingPolicyTargetResourceId string
    The target resource OCID the scheduled actions will be for.
    filters GetSchedulingPolicyRecommendedScheduledActionsFilter[]
    plan_intent str
    The scheduling plan intent the scheduled actions will be for.
    scheduling_policy_id str
    The Scheduling Policy OCID.
    scheduling_policy_target_resource_id str
    The target resource OCID the scheduled actions will be for.
    filters Sequence[database.GetSchedulingPolicyRecommendedScheduledActionsFilter]
    planIntent String
    The scheduling plan intent the scheduled actions will be for.
    schedulingPolicyId String
    The Scheduling Policy OCID.
    schedulingPolicyTargetResourceId String
    The target resource OCID the scheduled actions will be for.
    filters List<Property Map>

    getSchedulingPolicyRecommendedScheduledActions Result

    The following output properties are available:

    id String
    The provider-assigned unique ID for this managed resource.
    planIntent String
    recommendedScheduledActionsCollections List<Property Map>
    The list of recommended_scheduled_actions_collection.
    schedulingPolicyId String
    schedulingPolicyTargetResourceId String
    filters List<Property Map>

    Supporting Types

    GetSchedulingPolicyRecommendedScheduledActionsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetSchedulingPolicyRecommendedScheduledActionsRecommendedScheduledActionsCollection

    items List<Property Map>
    List of scheduled actions.

    GetSchedulingPolicyRecommendedScheduledActionsRecommendedScheduledActionsCollectionItem

    ActionMembers List<GetSchedulingPolicyRecommendedScheduledActionsRecommendedScheduledActionsCollectionItemActionMember>
    The list of action members in a scheduled action.
    ActionOrder int
    The order of the scheduled action.
    ActionParams Dictionary<string, string>
    Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example: {"count": "3"}
    ActionType string
    The type of the scheduled action being performed
    DisplayName string
    Description of the scheduled action being performed, i.e. apply full update to DB Servers 1,2,3,4.
    EstimatedTimeInMins int
    The estimated patching time in minutes for the entire scheduled action.
    SchedulingWindowId string
    The id of the scheduling window this scheduled action belongs to.
    ActionMembers []GetSchedulingPolicyRecommendedScheduledActionsRecommendedScheduledActionsCollectionItemActionMember
    The list of action members in a scheduled action.
    ActionOrder int
    The order of the scheduled action.
    ActionParams map[string]string
    Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example: {"count": "3"}
    ActionType string
    The type of the scheduled action being performed
    DisplayName string
    Description of the scheduled action being performed, i.e. apply full update to DB Servers 1,2,3,4.
    EstimatedTimeInMins int
    The estimated patching time in minutes for the entire scheduled action.
    SchedulingWindowId string
    The id of the scheduling window this scheduled action belongs to.
    actionMembers List<GetSchedulingPolicyRecommendedScheduledActionsRecommendedScheduledActionsCollectionItemActionMember>
    The list of action members in a scheduled action.
    actionOrder Integer
    The order of the scheduled action.
    actionParams Map<String,String>
    Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example: {"count": "3"}
    actionType String
    The type of the scheduled action being performed
    displayName String
    Description of the scheduled action being performed, i.e. apply full update to DB Servers 1,2,3,4.
    estimatedTimeInMins Integer
    The estimated patching time in minutes for the entire scheduled action.
    schedulingWindowId String
    The id of the scheduling window this scheduled action belongs to.
    actionMembers GetSchedulingPolicyRecommendedScheduledActionsRecommendedScheduledActionsCollectionItemActionMember[]
    The list of action members in a scheduled action.
    actionOrder number
    The order of the scheduled action.
    actionParams {[key: string]: string}
    Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example: {"count": "3"}
    actionType string
    The type of the scheduled action being performed
    displayName string
    Description of the scheduled action being performed, i.e. apply full update to DB Servers 1,2,3,4.
    estimatedTimeInMins number
    The estimated patching time in minutes for the entire scheduled action.
    schedulingWindowId string
    The id of the scheduling window this scheduled action belongs to.
    action_members Sequence[database.GetSchedulingPolicyRecommendedScheduledActionsRecommendedScheduledActionsCollectionItemActionMember]
    The list of action members in a scheduled action.
    action_order int
    The order of the scheduled action.
    action_params Mapping[str, str]
    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
    display_name str
    Description of the scheduled action being performed, i.e. apply full update to DB Servers 1,2,3,4.
    estimated_time_in_mins int
    The estimated patching time in minutes for the entire scheduled action.
    scheduling_window_id str
    The id of the scheduling window this scheduled action belongs to.
    actionMembers List<Property Map>
    The list of action members in a scheduled action.
    actionOrder Number
    The order of the scheduled action.
    actionParams Map<String>
    Map<ParamName, ParamValue> where a key value pair describes the specific action parameter. Example: {"count": "3"}
    actionType String
    The type of the scheduled action being performed
    displayName String
    Description of the scheduled action being performed, i.e. apply full update to DB Servers 1,2,3,4.
    estimatedTimeInMins Number
    The estimated patching time in minutes for the entire scheduled action.
    schedulingWindowId String
    The id of the scheduling window this scheduled action belongs to.

    GetSchedulingPolicyRecommendedScheduledActionsRecommendedScheduledActionsCollectionItemActionMember

    EstimatedTimeInMins int
    The estimated patching time in minutes for the entire scheduled action.
    MemberId string
    The ocid of the action member.
    MemberOrder int
    The order of the action member in a scheduled action.
    EstimatedTimeInMins int
    The estimated patching time in minutes for the entire scheduled action.
    MemberId string
    The ocid of the action member.
    MemberOrder int
    The order of the action member in a scheduled action.
    estimatedTimeInMins Integer
    The estimated patching time in minutes for the entire scheduled action.
    memberId String
    The ocid of the action member.
    memberOrder Integer
    The order of the action member in a scheduled action.
    estimatedTimeInMins number
    The estimated patching time in minutes for the entire scheduled action.
    memberId string
    The ocid of the action member.
    memberOrder number
    The order of the action member in a scheduled action.
    estimated_time_in_mins int
    The estimated patching time in minutes for the entire scheduled action.
    member_id str
    The ocid of the action member.
    member_order int
    The order of the action member in a scheduled action.
    estimatedTimeInMins Number
    The estimated patching time in minutes for the entire scheduled action.
    memberId String
    The ocid of the action member.
    memberOrder Number
    The order of the action member in a scheduled action.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi