oci.Database.SchedulingPolicySchedulingWindow
Explore with Pulumi AI
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:
- Scheduling
Policy stringId - The Scheduling Policy OCID.
- Window
Preference SchedulingPolicy Scheduling Window Window Preference - (Updatable) The Single Scheduling Window details.
- Compartment
Id string - The OCID of the compartment.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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"}
- Scheduling
Policy stringId - The Scheduling Policy OCID.
- Window
Preference SchedulingPolicy Scheduling Window Window Preference Args - (Updatable) The Single Scheduling Window details.
- Compartment
Id string - The OCID of the compartment.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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"}
- scheduling
Policy StringId - The Scheduling Policy OCID.
- window
Preference SchedulingPolicy Scheduling Window Window Preference - (Updatable) The Single Scheduling Window details.
- compartment
Id String - The OCID of the compartment.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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"}
- scheduling
Policy stringId - The Scheduling Policy OCID.
- window
Preference SchedulingPolicy Scheduling Window Window Preference - (Updatable) The Single Scheduling Window details.
- compartment
Id string - The OCID of the compartment.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- {[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_ strid - The Scheduling Policy OCID.
- window_
preference database.Scheduling Policy Scheduling Window Window Preference Args - (Updatable) The Single Scheduling Window details.
- compartment_
id str - The OCID of the compartment.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource 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"}
- scheduling
Policy StringId - The Scheduling Policy OCID.
- window
Preference Property Map - (Updatable) The Single Scheduling Window details.
- compartment
Id String - The OCID of the compartment.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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:
- Display
Name 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.
- Lifecycle
Details 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.
- Time
Created string - The date and time the Scheduling Window was created.
- Time
Next stringScheduling Window Starts - The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
- Time
Updated string - The last date and time that the Scheduling Window was updated.
- Display
Name 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.
- Lifecycle
Details 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.
- Time
Created string - The date and time the Scheduling Window was created.
- Time
Next stringScheduling Window Starts - The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
- Time
Updated string - The last date and time that the Scheduling Window was updated.
- display
Name 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.
- lifecycle
Details 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.
- time
Created String - The date and time the Scheduling Window was created.
- time
Next StringScheduling Window Starts - The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
- time
Updated String - The last date and time that the Scheduling Window was updated.
- display
Name 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.
- lifecycle
Details 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.
- time
Created string - The date and time the Scheduling Window was created.
- time
Next stringScheduling Window Starts - The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
- time
Updated 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_ strscheduling_ window_ starts - 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.
- display
Name 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.
- lifecycle
Details 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.
- time
Created String - The date and time the Scheduling Window was created.
- time
Next StringScheduling Window Starts - The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
- time
Updated 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.
- Compartment
Id string - The OCID of the compartment.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - The user-friendly name for the Scheduling Window. The name does not need to be unique.
- 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"}
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Scheduling
Policy stringId - The Scheduling Policy OCID.
- State string
- The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
- Time
Created string - The date and time the Scheduling Window was created.
- Time
Next stringScheduling Window Starts - The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
- Time
Updated string - The last date and time that the Scheduling Window was updated.
- Window
Preference SchedulingPolicy Scheduling Window Window Preference - (Updatable) The Single Scheduling Window details.
- Compartment
Id string - The OCID of the compartment.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - The user-friendly name for the Scheduling Window. The name does not need to be unique.
- 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"}
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Scheduling
Policy stringId - The Scheduling Policy OCID.
- State string
- The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
- Time
Created string - The date and time the Scheduling Window was created.
- Time
Next stringScheduling Window Starts - The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
- Time
Updated string - The last date and time that the Scheduling Window was updated.
- Window
Preference SchedulingPolicy Scheduling Window Window Preference Args - (Updatable) The Single Scheduling Window details.
- compartment
Id String - The OCID of the compartment.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - The user-friendly name for the Scheduling Window. The name does not need to be unique.
- 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"}
- lifecycle
Details String - Additional information about the current lifecycle state.
- scheduling
Policy StringId - The Scheduling Policy OCID.
- state String
- The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
- time
Created String - The date and time the Scheduling Window was created.
- time
Next StringScheduling Window Starts - The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
- time
Updated String - The last date and time that the Scheduling Window was updated.
- window
Preference SchedulingPolicy Scheduling Window Window Preference - (Updatable) The Single Scheduling Window details.
- compartment
Id string - The OCID of the compartment.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name string - The user-friendly name for the Scheduling Window. The name does not need to be unique.
- {[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"}
- lifecycle
Details string - Additional information about the current lifecycle state.
- scheduling
Policy stringId - The Scheduling Policy OCID.
- state string
- The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
- time
Created string - The date and time the Scheduling Window was created.
- time
Next stringScheduling Window Starts - The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
- time
Updated string - The last date and time that the Scheduling Window was updated.
- window
Preference SchedulingPolicy Scheduling Window Window Preference - (Updatable) The Single Scheduling Window details.
- compartment_
id str - The OCID of the compartment.
- 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.
- 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_ strid - 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_ strscheduling_ window_ starts - 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.Scheduling Policy Scheduling Window Window Preference Args - (Updatable) The Single Scheduling Window details.
- compartment
Id String - The OCID of the compartment.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - The user-friendly name for the Scheduling Window. The name does not need to be unique.
- 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"}
- lifecycle
Details String - Additional information about the current lifecycle state.
- scheduling
Policy StringId - The Scheduling Policy OCID.
- state String
- The current state of the Scheduling Window. Valid states are CREATING, ACTIVE, UPDATING, FAILED, DELETING and DELETED.
- time
Created String - The date and time the Scheduling Window was created.
- time
Next StringScheduling Window Starts - The date and time of the next upcoming window associated within the schedulingWindow is planned to start.
- time
Updated String - The last date and time that the Scheduling Window was updated.
- window
Preference Property Map - (Updatable) The Single Scheduling Window details.
Supporting Types
SchedulingPolicySchedulingWindowWindowPreference, SchedulingPolicySchedulingWindowWindowPreferenceArgs
- Days
Of List<SchedulingWeeks Policy Scheduling Window Window Preference Days Of Week> - (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 boolDuration - (Updatable) Indicates if duration the user plans to allocate for scheduling window is strictly enforced. The default value is
FALSE
. - Months
List<Scheduling
Policy Scheduling Window Window Preference Month> - (Updatable) Months during the year when scheduled window should be performed.
- Start
Time string - (Updatable) The scheduling window start time. The value must use the ISO-8601 format "hh:mm".
- Weeks
Of List<int>Months (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 []SchedulingWeeks Policy Scheduling Window Window Preference Days Of Week - (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 boolDuration - (Updatable) Indicates if duration the user plans to allocate for scheduling window is strictly enforced. The default value is
FALSE
. - Months
[]Scheduling
Policy Scheduling Window Window Preference Month - (Updatable) Months during the year when scheduled window should be performed.
- Start
Time string - (Updatable) The scheduling window start time. The value must use the ISO-8601 format "hh:mm".
- Weeks
Of []intMonths (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 List<SchedulingWeeks Policy Scheduling Window Window Preference Days Of Week> - (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.
- is
Enforced BooleanDuration - (Updatable) Indicates if duration the user plans to allocate for scheduling window is strictly enforced. The default value is
FALSE
. - months
List<Scheduling
Policy Scheduling Window Window Preference Month> - (Updatable) Months during the year when scheduled window should be performed.
- start
Time String - (Updatable) The scheduling window start time. The value must use the ISO-8601 format "hh:mm".
- weeks
Of List<Integer>Months (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 SchedulingWeeks Policy Scheduling Window Window Preference Days Of Week[] - (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.
- is
Enforced booleanDuration - (Updatable) Indicates if duration the user plans to allocate for scheduling window is strictly enforced. The default value is
FALSE
. - months
Scheduling
Policy Scheduling Window Window Preference Month[] - (Updatable) Months during the year when scheduled window should be performed.
- start
Time string - (Updatable) The scheduling window start time. The value must use the ISO-8601 format "hh:mm".
- weeks
Of number[]Months (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_ Sequence[database.weeks Scheduling Policy Scheduling Window Window Preference Days Of Week] - (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_ boolduration - (Updatable) Indicates if duration the user plans to allocate for scheduling window is strictly enforced. The default value is
FALSE
. - months
Sequence[database.
Scheduling Policy Scheduling Window Window Preference Month] - (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_ Sequence[int]months (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 List<Property Map>Weeks - (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.
- is
Enforced BooleanDuration - (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.
- start
Time String - (Updatable) The scheduling window start time. The value must use the ISO-8601 format "hh:mm".
- weeks
Of List<Number>Months (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.