1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. SchedulingPolicySchedulingWindow
Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi

oci.Database.SchedulingPolicySchedulingWindow

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi

    This resource provides the Scheduling Policy Scheduling Window resource in Oracle Cloud Infrastructure Database service.

    Creates a Scheduling Window resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSchedulingPolicySchedulingWindow = new oci.database.SchedulingPolicySchedulingWindow("test_scheduling_policy_scheduling_window", {
        schedulingPolicyId: testSchedulingPolicy.id,
        windowPreference: {
            daysOfWeeks: [{
                name: schedulingPolicySchedulingWindowWindowPreferenceDaysOfWeekName,
            }],
            duration: schedulingPolicySchedulingWindowWindowPreferenceDuration,
            isEnforcedDuration: schedulingPolicySchedulingWindowWindowPreferenceIsEnforcedDuration,
            startTime: schedulingPolicySchedulingWindowWindowPreferenceStartTime,
            weeksOfMonths: schedulingPolicySchedulingWindowWindowPreferenceWeeksOfMonth,
            months: [{
                name: schedulingPolicySchedulingWindowWindowPreferenceMonthsName,
            }],
        },
        compartmentId: compartmentId,
        definedTags: schedulingPolicySchedulingWindowDefinedTags,
        freeformTags: {
            Department: "Finance",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_scheduling_policy_scheduling_window = oci.database.SchedulingPolicySchedulingWindow("test_scheduling_policy_scheduling_window",
        scheduling_policy_id=test_scheduling_policy["id"],
        window_preference={
            "days_of_weeks": [{
                "name": scheduling_policy_scheduling_window_window_preference_days_of_week_name,
            }],
            "duration": scheduling_policy_scheduling_window_window_preference_duration,
            "is_enforced_duration": scheduling_policy_scheduling_window_window_preference_is_enforced_duration,
            "start_time": scheduling_policy_scheduling_window_window_preference_start_time,
            "weeks_of_months": scheduling_policy_scheduling_window_window_preference_weeks_of_month,
            "months": [{
                "name": scheduling_policy_scheduling_window_window_preference_months_name,
            }],
        },
        compartment_id=compartment_id,
        defined_tags=scheduling_policy_scheduling_window_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.NewSchedulingPolicySchedulingWindow(ctx, "test_scheduling_policy_scheduling_window", &database.SchedulingPolicySchedulingWindowArgs{
    			SchedulingPolicyId: pulumi.Any(testSchedulingPolicy.Id),
    			WindowPreference: &database.SchedulingPolicySchedulingWindowWindowPreferenceArgs{
    				DaysOfWeeks: database.SchedulingPolicySchedulingWindowWindowPreferenceDaysOfWeekArray{
    					&database.SchedulingPolicySchedulingWindowWindowPreferenceDaysOfWeekArgs{
    						Name: pulumi.Any(schedulingPolicySchedulingWindowWindowPreferenceDaysOfWeekName),
    					},
    				},
    				Duration:           pulumi.Any(schedulingPolicySchedulingWindowWindowPreferenceDuration),
    				IsEnforcedDuration: pulumi.Any(schedulingPolicySchedulingWindowWindowPreferenceIsEnforcedDuration),
    				StartTime:          pulumi.Any(schedulingPolicySchedulingWindowWindowPreferenceStartTime),
    				WeeksOfMonths:      pulumi.Any(schedulingPolicySchedulingWindowWindowPreferenceWeeksOfMonth),
    				Months: database.SchedulingPolicySchedulingWindowWindowPreferenceMonthArray{
    					&database.SchedulingPolicySchedulingWindowWindowPreferenceMonthArgs{
    						Name: pulumi.Any(schedulingPolicySchedulingWindowWindowPreferenceMonthsName),
    					},
    				},
    			},
    			CompartmentId: pulumi.Any(compartmentId),
    			DefinedTags:   pulumi.Any(schedulingPolicySchedulingWindowDefinedTags),
    			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 testSchedulingPolicySchedulingWindow = new Oci.Database.SchedulingPolicySchedulingWindow("test_scheduling_policy_scheduling_window", new()
        {
            SchedulingPolicyId = testSchedulingPolicy.Id,
            WindowPreference = new Oci.Database.Inputs.SchedulingPolicySchedulingWindowWindowPreferenceArgs
            {
                DaysOfWeeks = new[]
                {
                    new Oci.Database.Inputs.SchedulingPolicySchedulingWindowWindowPreferenceDaysOfWeekArgs
                    {
                        Name = schedulingPolicySchedulingWindowWindowPreferenceDaysOfWeekName,
                    },
                },
                Duration = schedulingPolicySchedulingWindowWindowPreferenceDuration,
                IsEnforcedDuration = schedulingPolicySchedulingWindowWindowPreferenceIsEnforcedDuration,
                StartTime = schedulingPolicySchedulingWindowWindowPreferenceStartTime,
                WeeksOfMonths = schedulingPolicySchedulingWindowWindowPreferenceWeeksOfMonth,
                Months = new[]
                {
                    new Oci.Database.Inputs.SchedulingPolicySchedulingWindowWindowPreferenceMonthArgs
                    {
                        Name = schedulingPolicySchedulingWindowWindowPreferenceMonthsName,
                    },
                },
            },
            CompartmentId = compartmentId,
            DefinedTags = schedulingPolicySchedulingWindowDefinedTags,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Database.SchedulingPolicySchedulingWindow;
    import com.pulumi.oci.Database.SchedulingPolicySchedulingWindowArgs;
    import com.pulumi.oci.Database.inputs.SchedulingPolicySchedulingWindowWindowPreferenceArgs;
    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 testSchedulingPolicySchedulingWindow = new SchedulingPolicySchedulingWindow("testSchedulingPolicySchedulingWindow", SchedulingPolicySchedulingWindowArgs.builder()
                .schedulingPolicyId(testSchedulingPolicy.id())
                .windowPreference(SchedulingPolicySchedulingWindowWindowPreferenceArgs.builder()
                    .daysOfWeeks(SchedulingPolicySchedulingWindowWindowPreferenceDaysOfWeekArgs.builder()
                        .name(schedulingPolicySchedulingWindowWindowPreferenceDaysOfWeekName)
                        .build())
                    .duration(schedulingPolicySchedulingWindowWindowPreferenceDuration)
                    .isEnforcedDuration(schedulingPolicySchedulingWindowWindowPreferenceIsEnforcedDuration)
                    .startTime(schedulingPolicySchedulingWindowWindowPreferenceStartTime)
                    .weeksOfMonths(schedulingPolicySchedulingWindowWindowPreferenceWeeksOfMonth)
                    .months(SchedulingPolicySchedulingWindowWindowPreferenceMonthArgs.builder()
                        .name(schedulingPolicySchedulingWindowWindowPreferenceMonthsName)
                        .build())
                    .build())
                .compartmentId(compartmentId)
                .definedTags(schedulingPolicySchedulingWindowDefinedTags)
                .freeformTags(Map.of("Department", "Finance"))
                .build());
    
        }
    }
    
    resources:
      testSchedulingPolicySchedulingWindow:
        type: oci:Database:SchedulingPolicySchedulingWindow
        name: test_scheduling_policy_scheduling_window
        properties:
          schedulingPolicyId: ${testSchedulingPolicy.id}
          windowPreference:
            daysOfWeeks:
              - name: ${schedulingPolicySchedulingWindowWindowPreferenceDaysOfWeekName}
            duration: ${schedulingPolicySchedulingWindowWindowPreferenceDuration}
            isEnforcedDuration: ${schedulingPolicySchedulingWindowWindowPreferenceIsEnforcedDuration}
            startTime: ${schedulingPolicySchedulingWindowWindowPreferenceStartTime}
            weeksOfMonths: ${schedulingPolicySchedulingWindowWindowPreferenceWeeksOfMonth}
            months:
              - name: ${schedulingPolicySchedulingWindowWindowPreferenceMonthsName}
          compartmentId: ${compartmentId}
          definedTags: ${schedulingPolicySchedulingWindowDefinedTags}
          freeformTags:
            Department: Finance
    

    Create SchedulingPolicySchedulingWindow Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SchedulingPolicySchedulingWindow(name: string, args: SchedulingPolicySchedulingWindowArgs, opts?: CustomResourceOptions);
    @overload
    def SchedulingPolicySchedulingWindow(resource_name: str,
                                         args: SchedulingPolicySchedulingWindowArgs,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def SchedulingPolicySchedulingWindow(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         scheduling_policy_id: Optional[str] = None,
                                         window_preference: Optional[_database.SchedulingPolicySchedulingWindowWindowPreferenceArgs] = None,
                                         compartment_id: Optional[str] = None,
                                         defined_tags: Optional[Mapping[str, str]] = None,
                                         freeform_tags: Optional[Mapping[str, str]] = None)
    func NewSchedulingPolicySchedulingWindow(ctx *Context, name string, args SchedulingPolicySchedulingWindowArgs, opts ...ResourceOption) (*SchedulingPolicySchedulingWindow, error)
    public SchedulingPolicySchedulingWindow(string name, SchedulingPolicySchedulingWindowArgs args, CustomResourceOptions? opts = null)
    public SchedulingPolicySchedulingWindow(String name, SchedulingPolicySchedulingWindowArgs args)
    public SchedulingPolicySchedulingWindow(String name, SchedulingPolicySchedulingWindowArgs args, CustomResourceOptions options)
    
    type: oci:Database:SchedulingPolicySchedulingWindow
    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 SchedulingPolicySchedulingWindowArgs
    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 SchedulingPolicySchedulingWindowArgs
    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 SchedulingPolicySchedulingWindowArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SchedulingPolicySchedulingWindowArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SchedulingPolicySchedulingWindowArgs
    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 schedulingPolicySchedulingWindowResource = new Oci.Database.SchedulingPolicySchedulingWindow("schedulingPolicySchedulingWindowResource", new()
    {
        SchedulingPolicyId = "string",
        WindowPreference = new Oci.Database.Inputs.SchedulingPolicySchedulingWindowWindowPreferenceArgs
        {
            DaysOfWeeks = new[]
            {
                new Oci.Database.Inputs.SchedulingPolicySchedulingWindowWindowPreferenceDaysOfWeekArgs
                {
                    Name = "string",
                },
            },
            Duration = 0,
            IsEnforcedDuration = false,
            Months = new[]
            {
                new Oci.Database.Inputs.SchedulingPolicySchedulingWindowWindowPreferenceMonthArgs
                {
                    Name = "string",
                },
            },
            StartTime = "string",
            WeeksOfMonths = new[]
            {
                0,
            },
        },
        CompartmentId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        FreeformTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := Database.NewSchedulingPolicySchedulingWindow(ctx, "schedulingPolicySchedulingWindowResource", &Database.SchedulingPolicySchedulingWindowArgs{
    	SchedulingPolicyId: pulumi.String("string"),
    	WindowPreference: &database.SchedulingPolicySchedulingWindowWindowPreferenceArgs{
    		DaysOfWeeks: database.SchedulingPolicySchedulingWindowWindowPreferenceDaysOfWeekArray{
    			&database.SchedulingPolicySchedulingWindowWindowPreferenceDaysOfWeekArgs{
    				Name: pulumi.String("string"),
    			},
    		},
    		Duration:           pulumi.Int(0),
    		IsEnforcedDuration: pulumi.Bool(false),
    		Months: database.SchedulingPolicySchedulingWindowWindowPreferenceMonthArray{
    			&database.SchedulingPolicySchedulingWindowWindowPreferenceMonthArgs{
    				Name: pulumi.String("string"),
    			},
    		},
    		StartTime: pulumi.String("string"),
    		WeeksOfMonths: pulumi.IntArray{
    			pulumi.Int(0),
    		},
    	},
    	CompartmentId: pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var schedulingPolicySchedulingWindowResource = new SchedulingPolicySchedulingWindow("schedulingPolicySchedulingWindowResource", SchedulingPolicySchedulingWindowArgs.builder()
        .schedulingPolicyId("string")
        .windowPreference(SchedulingPolicySchedulingWindowWindowPreferenceArgs.builder()
            .daysOfWeeks(SchedulingPolicySchedulingWindowWindowPreferenceDaysOfWeekArgs.builder()
                .name("string")
                .build())
            .duration(0)
            .isEnforcedDuration(false)
            .months(SchedulingPolicySchedulingWindowWindowPreferenceMonthArgs.builder()
                .name("string")
                .build())
            .startTime("string")
            .weeksOfMonths(0)
            .build())
        .compartmentId("string")
        .definedTags(Map.of("string", "string"))
        .freeformTags(Map.of("string", "string"))
        .build());
    
    scheduling_policy_scheduling_window_resource = oci.database.SchedulingPolicySchedulingWindow("schedulingPolicySchedulingWindowResource",
        scheduling_policy_id="string",
        window_preference={
            "days_of_weeks": [{
                "name": "string",
            }],
            "duration": 0,
            "is_enforced_duration": False,
            "months": [{
                "name": "string",
            }],
            "start_time": "string",
            "weeks_of_months": [0],
        },
        compartment_id="string",
        defined_tags={
            "string": "string",
        },
        freeform_tags={
            "string": "string",
        })
    
    const schedulingPolicySchedulingWindowResource = new oci.database.SchedulingPolicySchedulingWindow("schedulingPolicySchedulingWindowResource", {
        schedulingPolicyId: "string",
        windowPreference: {
            daysOfWeeks: [{
                name: "string",
            }],
            duration: 0,
            isEnforcedDuration: false,
            months: [{
                name: "string",
            }],
            startTime: "string",
            weeksOfMonths: [0],
        },
        compartmentId: "string",
        definedTags: {
            string: "string",
        },
        freeformTags: {
            string: "string",
        },
    });
    
    type: oci:Database:SchedulingPolicySchedulingWindow
    properties:
        compartmentId: string
        definedTags:
            string: string
        freeformTags:
            string: string
        schedulingPolicyId: string
        windowPreference:
            daysOfWeeks:
                - name: string
            duration: 0
            isEnforcedDuration: false
            months:
                - name: string
            startTime: string
            weeksOfMonths:
                - 0
    

    SchedulingPolicySchedulingWindow 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 SchedulingPolicySchedulingWindow resource accepts the following input properties:

    SchedulingPolicyId string
    The Scheduling Policy OCID.
    WindowPreference SchedulingPolicySchedulingWindowWindowPreference
    (Updatable) The Single Scheduling Window details.
    CompartmentId string
    The OCID of the compartment.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    FreeformTags Dictionary<string, string>
    (Updatable) 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"}
    SchedulingPolicyId string
    The Scheduling Policy OCID.
    WindowPreference SchedulingPolicySchedulingWindowWindowPreferenceArgs
    (Updatable) The Single Scheduling Window details.
    CompartmentId string
    The OCID of the compartment.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    FreeformTags map[string]string
    (Updatable) 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"}
    schedulingPolicyId String
    The Scheduling Policy OCID.
    windowPreference SchedulingPolicySchedulingWindowWindowPreference
    (Updatable) The Single Scheduling Window details.
    compartmentId String
    The OCID of the compartment.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags Map<String,String>
    (Updatable) 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"}
    schedulingPolicyId string
    The Scheduling Policy OCID.
    windowPreference SchedulingPolicySchedulingWindowWindowPreference
    (Updatable) The Single Scheduling Window details.
    compartmentId string
    The OCID of the compartment.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags {[key: string]: string}
    (Updatable) 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_policy_id str
    The Scheduling Policy OCID.
    window_preference database.SchedulingPolicySchedulingWindowWindowPreferenceArgs
    (Updatable) The Single Scheduling Window details.
    compartment_id str
    The OCID of the compartment.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeform_tags Mapping[str, str]
    (Updatable) 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"}
    schedulingPolicyId String
    The Scheduling Policy OCID.
    windowPreference Property Map
    (Updatable) The Single Scheduling Window details.
    compartmentId String
    The OCID of the compartment.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags Map<String>
    (Updatable) 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 SchedulingPolicySchedulingWindow resource produces the following output properties:

    DisplayName string
    The user-friendly name for the Scheduling Window. The name does not need to be unique.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    State string
    The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
    TimeCreated string
    The date and time the Scheduling Window was created.
    TimeNextSchedulingWindowStarts string
    The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
    TimeUpdated string
    The last date and time that the Scheduling Window was updated.
    DisplayName string
    The user-friendly name for the Scheduling Window. The name does not need to be unique.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    State string
    The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
    TimeCreated string
    The date and time the Scheduling Window was created.
    TimeNextSchedulingWindowStarts string
    The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
    TimeUpdated string
    The last date and time that the Scheduling Window was updated.
    displayName String
    The user-friendly name for the Scheduling Window. The name does not need to be unique.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    state String
    The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
    timeCreated String
    The date and time the Scheduling Window was created.
    timeNextSchedulingWindowStarts String
    The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
    timeUpdated String
    The last date and time that the Scheduling Window was updated.
    displayName string
    The user-friendly name for the Scheduling Window. The name does not need to be unique.
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    state string
    The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
    timeCreated string
    The date and time the Scheduling Window was created.
    timeNextSchedulingWindowStarts string
    The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
    timeUpdated string
    The last date and time that the Scheduling Window was updated.
    display_name str
    The user-friendly name for the Scheduling Window. The name does not need to be unique.
    id str
    The provider-assigned unique ID for this managed resource.
    lifecycle_details str
    Additional information about the current lifecycle state.
    state str
    The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
    time_created str
    The date and time the Scheduling Window was created.
    time_next_scheduling_window_starts str
    The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
    time_updated str
    The last date and time that the Scheduling Window was updated.
    displayName String
    The user-friendly name for the Scheduling Window. The name does not need to be unique.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    state String
    The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
    timeCreated String
    The date and time the Scheduling Window was created.
    timeNextSchedulingWindowStarts String
    The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
    timeUpdated String
    The last date and time that the Scheduling Window was updated.

    Look up Existing SchedulingPolicySchedulingWindow Resource

    Get an existing SchedulingPolicySchedulingWindow 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?: SchedulingPolicySchedulingWindowState, opts?: CustomResourceOptions): SchedulingPolicySchedulingWindow
    @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,
            lifecycle_details: Optional[str] = None,
            scheduling_policy_id: Optional[str] = None,
            state: Optional[str] = None,
            time_created: Optional[str] = None,
            time_next_scheduling_window_starts: Optional[str] = None,
            time_updated: Optional[str] = None,
            window_preference: Optional[_database.SchedulingPolicySchedulingWindowWindowPreferenceArgs] = None) -> SchedulingPolicySchedulingWindow
    func GetSchedulingPolicySchedulingWindow(ctx *Context, name string, id IDInput, state *SchedulingPolicySchedulingWindowState, opts ...ResourceOption) (*SchedulingPolicySchedulingWindow, error)
    public static SchedulingPolicySchedulingWindow Get(string name, Input<string> id, SchedulingPolicySchedulingWindowState? state, CustomResourceOptions? opts = null)
    public static SchedulingPolicySchedulingWindow get(String name, Output<String> id, SchedulingPolicySchedulingWindowState state, CustomResourceOptions options)
    resources:  _:    type: oci:Database:SchedulingPolicySchedulingWindow    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.
    The following state arguments are supported:
    CompartmentId string
    The OCID of the compartment.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    The user-friendly name for the Scheduling Window. The name does not need to be unique.
    FreeformTags Dictionary<string, string>
    (Updatable) 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"}
    LifecycleDetails string
    Additional information about the current lifecycle state.
    SchedulingPolicyId string
    The Scheduling Policy OCID.
    State string
    The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
    TimeCreated string
    The date and time the Scheduling Window was created.
    TimeNextSchedulingWindowStarts string
    The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
    TimeUpdated string
    The last date and time that the Scheduling Window was updated.
    WindowPreference SchedulingPolicySchedulingWindowWindowPreference
    (Updatable) The Single Scheduling Window details.
    CompartmentId string
    The OCID of the compartment.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    The user-friendly name for the Scheduling Window. The name does not need to be unique.
    FreeformTags map[string]string
    (Updatable) 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"}
    LifecycleDetails string
    Additional information about the current lifecycle state.
    SchedulingPolicyId string
    The Scheduling Policy OCID.
    State string
    The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
    TimeCreated string
    The date and time the Scheduling Window was created.
    TimeNextSchedulingWindowStarts string
    The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
    TimeUpdated string
    The last date and time that the Scheduling Window was updated.
    WindowPreference SchedulingPolicySchedulingWindowWindowPreferenceArgs
    (Updatable) The Single Scheduling Window details.
    compartmentId String
    The OCID of the compartment.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    The user-friendly name for the Scheduling Window. The name does not need to be unique.
    freeformTags Map<String,String>
    (Updatable) 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"}
    lifecycleDetails String
    Additional information about the current lifecycle state.
    schedulingPolicyId String
    The Scheduling Policy OCID.
    state String
    The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
    timeCreated String
    The date and time the Scheduling Window was created.
    timeNextSchedulingWindowStarts String
    The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
    timeUpdated String
    The last date and time that the Scheduling Window was updated.
    windowPreference SchedulingPolicySchedulingWindowWindowPreference
    (Updatable) The Single Scheduling Window details.
    compartmentId string
    The OCID of the compartment.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName string
    The user-friendly name for the Scheduling Window. The name does not need to be unique.
    freeformTags {[key: string]: string}
    (Updatable) 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"}
    lifecycleDetails string
    Additional information about the current lifecycle state.
    schedulingPolicyId string
    The Scheduling Policy OCID.
    state string
    The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
    timeCreated string
    The date and time the Scheduling Window was created.
    timeNextSchedulingWindowStarts string
    The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
    timeUpdated string
    The last date and time that the Scheduling Window was updated.
    windowPreference SchedulingPolicySchedulingWindowWindowPreference
    (Updatable) The Single Scheduling Window details.
    compartment_id str
    The OCID of the compartment.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    display_name str
    The user-friendly name for the Scheduling Window. The name does not need to be unique.
    freeform_tags Mapping[str, str]
    (Updatable) 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"}
    lifecycle_details str
    Additional information about the current lifecycle state.
    scheduling_policy_id str
    The Scheduling Policy OCID.
    state str
    The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
    time_created str
    The date and time the Scheduling Window was created.
    time_next_scheduling_window_starts str
    The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
    time_updated str
    The last date and time that the Scheduling Window was updated.
    window_preference database.SchedulingPolicySchedulingWindowWindowPreferenceArgs
    (Updatable) The Single Scheduling Window details.
    compartmentId String
    The OCID of the compartment.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    The user-friendly name for the Scheduling Window. The name does not need to be unique.
    freeformTags Map<String>
    (Updatable) 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"}
    lifecycleDetails String
    Additional information about the current lifecycle state.
    schedulingPolicyId String
    The Scheduling Policy OCID.
    state String
    The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
    timeCreated String
    The date and time the Scheduling Window was created.
    timeNextSchedulingWindowStarts String
    The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
    timeUpdated String
    The last date and time that the Scheduling Window was updated.
    windowPreference Property Map
    (Updatable) The Single Scheduling Window details.

    Supporting Types

    SchedulingPolicySchedulingWindowWindowPreference, SchedulingPolicySchedulingWindowWindowPreferenceArgs

    DaysOfWeeks List<SchedulingPolicySchedulingWindowWindowPreferenceDaysOfWeek>
    (Updatable) Days during the week when scheduling window should be performed.
    Duration int
    (Updatable) Duration window allows user to set a duration they plan to allocate for Scheduling window. The duration is in minutes.
    IsEnforcedDuration bool
    (Updatable) Indicates if duration the user plans to allocate for scheduling window is strictly enforced. The default value is FALSE.
    Months List<SchedulingPolicySchedulingWindowWindowPreferenceMonth>
    (Updatable) Months during the year when scheduled window should be performed.
    StartTime string
    (Updatable) The scheduling window start time. The value must use the ISO-8601 format "hh:mm".
    WeeksOfMonths List<int>

    (Updatable) Weeks during the month when scheduled window should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow scheduling window during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Scheduling window cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and startTime parameters to allow you to specify specific days of the week and hours that scheduled window will be performed.

    ** 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

    DaysOfWeeks []SchedulingPolicySchedulingWindowWindowPreferenceDaysOfWeek
    (Updatable) Days during the week when scheduling window should be performed.
    Duration int
    (Updatable) Duration window allows user to set a duration they plan to allocate for Scheduling window. The duration is in minutes.
    IsEnforcedDuration bool
    (Updatable) Indicates if duration the user plans to allocate for scheduling window is strictly enforced. The default value is FALSE.
    Months []SchedulingPolicySchedulingWindowWindowPreferenceMonth
    (Updatable) Months during the year when scheduled window should be performed.
    StartTime string
    (Updatable) The scheduling window start time. The value must use the ISO-8601 format "hh:mm".
    WeeksOfMonths []int

    (Updatable) Weeks during the month when scheduled window should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow scheduling window during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Scheduling window cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and startTime parameters to allow you to specify specific days of the week and hours that scheduled window will be performed.

    ** 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

    daysOfWeeks List<SchedulingPolicySchedulingWindowWindowPreferenceDaysOfWeek>
    (Updatable) Days during the week when scheduling window should be performed.
    duration Integer
    (Updatable) Duration window allows user to set a duration they plan to allocate for Scheduling window. The duration is in minutes.
    isEnforcedDuration Boolean
    (Updatable) Indicates if duration the user plans to allocate for scheduling window is strictly enforced. The default value is FALSE.
    months List<SchedulingPolicySchedulingWindowWindowPreferenceMonth>
    (Updatable) Months during the year when scheduled window should be performed.
    startTime String
    (Updatable) The scheduling window start time. The value must use the ISO-8601 format "hh:mm".
    weeksOfMonths List<Integer>

    (Updatable) Weeks during the month when scheduled window should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow scheduling window during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Scheduling window cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and startTime parameters to allow you to specify specific days of the week and hours that scheduled window will be performed.

    ** 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

    daysOfWeeks SchedulingPolicySchedulingWindowWindowPreferenceDaysOfWeek[]
    (Updatable) Days during the week when scheduling window should be performed.
    duration number
    (Updatable) Duration window allows user to set a duration they plan to allocate for Scheduling window. The duration is in minutes.
    isEnforcedDuration boolean
    (Updatable) Indicates if duration the user plans to allocate for scheduling window is strictly enforced. The default value is FALSE.
    months SchedulingPolicySchedulingWindowWindowPreferenceMonth[]
    (Updatable) Months during the year when scheduled window should be performed.
    startTime string
    (Updatable) The scheduling window start time. The value must use the ISO-8601 format "hh:mm".
    weeksOfMonths number[]

    (Updatable) Weeks during the month when scheduled window should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow scheduling window during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Scheduling window cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and startTime parameters to allow you to specify specific days of the week and hours that scheduled window will be performed.

    ** 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

    days_of_weeks Sequence[database.SchedulingPolicySchedulingWindowWindowPreferenceDaysOfWeek]
    (Updatable) Days during the week when scheduling window should be performed.
    duration int
    (Updatable) Duration window allows user to set a duration they plan to allocate for Scheduling window. The duration is in minutes.
    is_enforced_duration bool
    (Updatable) Indicates if duration the user plans to allocate for scheduling window is strictly enforced. The default value is FALSE.
    months Sequence[database.SchedulingPolicySchedulingWindowWindowPreferenceMonth]
    (Updatable) Months during the year when scheduled window should be performed.
    start_time str
    (Updatable) The scheduling window start time. The value must use the ISO-8601 format "hh:mm".
    weeks_of_months Sequence[int]

    (Updatable) Weeks during the month when scheduled window should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow scheduling window during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Scheduling window cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and startTime parameters to allow you to specify specific days of the week and hours that scheduled window will be performed.

    ** 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

    daysOfWeeks List<Property Map>
    (Updatable) Days during the week when scheduling window should be performed.
    duration Number
    (Updatable) Duration window allows user to set a duration they plan to allocate for Scheduling window. The duration is in minutes.
    isEnforcedDuration Boolean
    (Updatable) Indicates if duration the user plans to allocate for scheduling window is strictly enforced. The default value is FALSE.
    months List<Property Map>
    (Updatable) Months during the year when scheduled window should be performed.
    startTime String
    (Updatable) The scheduling window start time. The value must use the ISO-8601 format "hh:mm".
    weeksOfMonths List<Number>

    (Updatable) Weeks during the month when scheduled window should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow scheduling window during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Scheduling window cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and startTime parameters to allow you to specify specific days of the week and hours that scheduled window will be performed.

    ** 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

    SchedulingPolicySchedulingWindowWindowPreferenceDaysOfWeek, SchedulingPolicySchedulingWindowWindowPreferenceDaysOfWeekArgs

    Name string
    (Updatable) Name of the day of the week.
    Name string
    (Updatable) Name of the day of the week.
    name String
    (Updatable) Name of the day of the week.
    name string
    (Updatable) Name of the day of the week.
    name str
    (Updatable) Name of the day of the week.
    name String
    (Updatable) Name of the day of the week.

    SchedulingPolicySchedulingWindowWindowPreferenceMonth, SchedulingPolicySchedulingWindowWindowPreferenceMonthArgs

    Name string
    (Updatable) Name of the month of the year.
    Name string
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.
    name string
    (Updatable) Name of the month of the year.
    name str
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.

    Import

    SchedulingPolicySchedulingWindows can be imported using the id, e.g.

    $ pulumi import oci:Database/schedulingPolicySchedulingWindow:SchedulingPolicySchedulingWindow test_scheduling_policy_scheduling_window "schedulingPolicies/{schedulingPolicyId}/schedulingWindows/{schedulingWindowId}"
    

    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.
    oci logo
    Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi