pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +145 -0
- pulumi_oci/analytics/analytics_instance.py +54 -5
- pulumi_oci/analytics/get_analytics_instance.py +18 -4
- pulumi_oci/analytics/outputs.py +12 -1
- pulumi_oci/core/_inputs.py +648 -159
- pulumi_oci/core/cluster_network.py +7 -7
- pulumi_oci/core/get_instance.py +29 -1
- pulumi_oci/core/get_vcn.py +15 -1
- pulumi_oci/core/get_vnic.py +15 -1
- pulumi_oci/core/instance.py +87 -0
- pulumi_oci/core/instance_configuration.py +12 -0
- pulumi_oci/core/ipsec.py +183 -23
- pulumi_oci/core/network_security_group_security_rule.py +2 -2
- pulumi_oci/core/outputs.py +709 -107
- pulumi_oci/core/service_gateway.py +13 -7
- pulumi_oci/core/vcn.py +65 -23
- pulumi_oci/core/virtual_network.py +35 -1
- pulumi_oci/core/vnic_attachment.py +2 -0
- pulumi_oci/database/_inputs.py +905 -27
- pulumi_oci/database/autonomous_database.py +48 -28
- pulumi_oci/database/autonomous_database_backup.py +12 -12
- pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
- pulumi_oci/database/autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/backup.py +12 -12
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
- pulumi_oci/database/cloud_vm_cluster.py +71 -0
- pulumi_oci/database/database.py +15 -15
- pulumi_oci/database/database_upgrade.py +12 -12
- pulumi_oci/database/db_system.py +9 -9
- pulumi_oci/database/exadata_infrastructure.py +2 -0
- pulumi_oci/database/get_autonomous_container_database.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +18 -4
- pulumi_oci/database/get_autonomous_database_backup.py +3 -3
- pulumi_oci/database/get_autonomous_databases.py +88 -5
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_database.py +3 -3
- pulumi_oci/database/get_pluggable_database.py +12 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/outputs.py +1431 -74
- pulumi_oci/database/pluggable_database.py +34 -0
- pulumi_oci/database/vm_cluster.py +71 -0
- pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
- pulumi_oci/datasafe/__init__.py +12 -0
- pulumi_oci/datasafe/_inputs.py +441 -0
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_sql_collection.py +392 -0
- pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
- pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
- pulumi_oci/datasafe/get_sql_collections.py +364 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
- pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
- pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
- pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
- pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
- pulumi_oci/datasafe/outputs.py +1808 -2
- pulumi_oci/desktops/_inputs.py +223 -7
- pulumi_oci/desktops/desktop_pool.py +186 -21
- pulumi_oci/desktops/get_desktop_pool.py +47 -5
- pulumi_oci/desktops/outputs.py +480 -19
- pulumi_oci/fleetappsmanagement/__init__.py +43 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
- pulumi_oci/fleetappsmanagement/fleet.py +955 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
- pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
- pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
- pulumi_oci/fleetappsmanagement/get_property.py +323 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
- pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
- pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
- pulumi_oci/fleetappsmanagement/property.py +697 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
- pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
- pulumi_oci/functions/outputs.py +11 -0
- pulumi_oci/fusionapps/_inputs.py +21 -20
- pulumi_oci/fusionapps/fusion_environment.py +2 -2
- pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
- pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
- pulumi_oci/fusionapps/outputs.py +11 -10
- pulumi_oci/integration/__init__.py +1 -0
- pulumi_oci/integration/_inputs.py +289 -2
- pulumi_oci/integration/get_integration_instance.py +65 -1
- pulumi_oci/integration/integration_instance.py +172 -0
- pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
- pulumi_oci/integration/outputs.py +587 -19
- pulumi_oci/loadbalancer/_inputs.py +20 -0
- pulumi_oci/loadbalancer/listener.py +4 -2
- pulumi_oci/loadbalancer/outputs.py +16 -2
- pulumi_oci/monitoring/_inputs.py +137 -16
- pulumi_oci/monitoring/alarm_suppression.py +164 -35
- pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
- pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
- pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
- pulumi_oci/monitoring/outputs.py +291 -18
- pulumi_oci/mysql/mysql_db_system.py +7 -7
- pulumi_oci/objectstorage/__init__.py +3 -0
- pulumi_oci/objectstorage/_inputs.py +97 -0
- pulumi_oci/objectstorage/get_object_versions.py +6 -6
- pulumi_oci/objectstorage/get_objects.py +6 -6
- pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
- pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
- pulumi_oci/objectstorage/outputs.py +258 -0
- pulumi_oci/objectstorage/private_endpoint.py +630 -0
- pulumi_oci/objectstorage/storage_object.py +7 -7
- pulumi_oci/opsi/_inputs.py +268 -114
- pulumi_oci/opsi/database_insight.py +162 -21
- pulumi_oci/opsi/exadata_insight.py +44 -0
- pulumi_oci/opsi/get_database_insight.py +40 -1
- pulumi_oci/opsi/get_host_insights.py +2 -2
- pulumi_oci/opsi/host_insight.py +0 -48
- pulumi_oci/opsi/outputs.py +405 -109
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/securityattribute/__init__.py +15 -0
- pulumi_oci/securityattribute/_inputs.py +209 -0
- pulumi_oci/securityattribute/get_security_attribute.py +262 -0
- pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
- pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
- pulumi_oci/securityattribute/get_security_attributes.py +169 -0
- pulumi_oci/securityattribute/outputs.py +466 -0
- pulumi_oci/securityattribute/security_attribute.py +588 -0
- pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
- pulumi_oci/stackmonitoring/__init__.py +5 -0
- pulumi_oci/stackmonitoring/_inputs.py +330 -0
- pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
- pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
- pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
- pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
- pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
- pulumi_oci/stackmonitoring/outputs.py +603 -0
- pulumi_oci/zpr/__init__.py +14 -0
- pulumi_oci/zpr/_inputs.py +79 -0
- pulumi_oci/zpr/configuration.py +516 -0
- pulumi_oci/zpr/get_configuration.py +230 -0
- pulumi_oci/zpr/get_zpr_policies.py +191 -0
- pulumi_oci/zpr/get_zpr_policy.py +264 -0
- pulumi_oci/zpr/outputs.py +203 -0
- pulumi_oci/zpr/zpr_policy.py +614 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1035 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
18
|
+
|
19
|
+
__all__ = ['SchedulerDefinitionArgs', 'SchedulerDefinition']
|
20
|
+
|
21
|
+
@pulumi.input_type
|
22
|
+
class SchedulerDefinitionArgs:
|
23
|
+
def __init__(__self__, *,
|
24
|
+
action_groups: pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionActionGroupArgs']]],
|
25
|
+
compartment_id: pulumi.Input[str],
|
26
|
+
schedule: pulumi.Input['SchedulerDefinitionScheduleArgs'],
|
27
|
+
activity_initiation_cut_off: Optional[pulumi.Input[int]] = None,
|
28
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
29
|
+
description: Optional[pulumi.Input[str]] = None,
|
30
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
31
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
32
|
+
run_books: Optional[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookArgs']]]] = None):
|
33
|
+
"""
|
34
|
+
The set of arguments for constructing a SchedulerDefinition resource.
|
35
|
+
:param pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionActionGroupArgs']]] action_groups: (Updatable) Action Groups associated with the Schedule.
|
36
|
+
:param pulumi.Input[str] compartment_id: Tenancy OCID
|
37
|
+
:param pulumi.Input['SchedulerDefinitionScheduleArgs'] schedule: (Updatable) Schedule Information.
|
38
|
+
:param pulumi.Input[int] activity_initiation_cut_off: (Updatable) Activity Initiation Cut Off
|
39
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
40
|
+
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
41
|
+
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
42
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
43
|
+
:param pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookArgs']]] run_books: (Updatable) Runbooks.
|
44
|
+
"""
|
45
|
+
pulumi.set(__self__, "action_groups", action_groups)
|
46
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
47
|
+
pulumi.set(__self__, "schedule", schedule)
|
48
|
+
if activity_initiation_cut_off is not None:
|
49
|
+
pulumi.set(__self__, "activity_initiation_cut_off", activity_initiation_cut_off)
|
50
|
+
if defined_tags is not None:
|
51
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
52
|
+
if description is not None:
|
53
|
+
pulumi.set(__self__, "description", description)
|
54
|
+
if display_name is not None:
|
55
|
+
pulumi.set(__self__, "display_name", display_name)
|
56
|
+
if freeform_tags is not None:
|
57
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
58
|
+
if run_books is not None:
|
59
|
+
pulumi.set(__self__, "run_books", run_books)
|
60
|
+
|
61
|
+
@property
|
62
|
+
@pulumi.getter(name="actionGroups")
|
63
|
+
def action_groups(self) -> pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionActionGroupArgs']]]:
|
64
|
+
"""
|
65
|
+
(Updatable) Action Groups associated with the Schedule.
|
66
|
+
"""
|
67
|
+
return pulumi.get(self, "action_groups")
|
68
|
+
|
69
|
+
@action_groups.setter
|
70
|
+
def action_groups(self, value: pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionActionGroupArgs']]]):
|
71
|
+
pulumi.set(self, "action_groups", value)
|
72
|
+
|
73
|
+
@property
|
74
|
+
@pulumi.getter(name="compartmentId")
|
75
|
+
def compartment_id(self) -> pulumi.Input[str]:
|
76
|
+
"""
|
77
|
+
Tenancy OCID
|
78
|
+
"""
|
79
|
+
return pulumi.get(self, "compartment_id")
|
80
|
+
|
81
|
+
@compartment_id.setter
|
82
|
+
def compartment_id(self, value: pulumi.Input[str]):
|
83
|
+
pulumi.set(self, "compartment_id", value)
|
84
|
+
|
85
|
+
@property
|
86
|
+
@pulumi.getter
|
87
|
+
def schedule(self) -> pulumi.Input['SchedulerDefinitionScheduleArgs']:
|
88
|
+
"""
|
89
|
+
(Updatable) Schedule Information.
|
90
|
+
"""
|
91
|
+
return pulumi.get(self, "schedule")
|
92
|
+
|
93
|
+
@schedule.setter
|
94
|
+
def schedule(self, value: pulumi.Input['SchedulerDefinitionScheduleArgs']):
|
95
|
+
pulumi.set(self, "schedule", value)
|
96
|
+
|
97
|
+
@property
|
98
|
+
@pulumi.getter(name="activityInitiationCutOff")
|
99
|
+
def activity_initiation_cut_off(self) -> Optional[pulumi.Input[int]]:
|
100
|
+
"""
|
101
|
+
(Updatable) Activity Initiation Cut Off
|
102
|
+
"""
|
103
|
+
return pulumi.get(self, "activity_initiation_cut_off")
|
104
|
+
|
105
|
+
@activity_initiation_cut_off.setter
|
106
|
+
def activity_initiation_cut_off(self, value: Optional[pulumi.Input[int]]):
|
107
|
+
pulumi.set(self, "activity_initiation_cut_off", value)
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter(name="definedTags")
|
111
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
112
|
+
"""
|
113
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "defined_tags")
|
116
|
+
|
117
|
+
@defined_tags.setter
|
118
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
119
|
+
pulumi.set(self, "defined_tags", value)
|
120
|
+
|
121
|
+
@property
|
122
|
+
@pulumi.getter
|
123
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
124
|
+
"""
|
125
|
+
(Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
126
|
+
"""
|
127
|
+
return pulumi.get(self, "description")
|
128
|
+
|
129
|
+
@description.setter
|
130
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
131
|
+
pulumi.set(self, "description", value)
|
132
|
+
|
133
|
+
@property
|
134
|
+
@pulumi.getter(name="displayName")
|
135
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
136
|
+
"""
|
137
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "display_name")
|
140
|
+
|
141
|
+
@display_name.setter
|
142
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
143
|
+
pulumi.set(self, "display_name", value)
|
144
|
+
|
145
|
+
@property
|
146
|
+
@pulumi.getter(name="freeformTags")
|
147
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
148
|
+
"""
|
149
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
150
|
+
"""
|
151
|
+
return pulumi.get(self, "freeform_tags")
|
152
|
+
|
153
|
+
@freeform_tags.setter
|
154
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
155
|
+
pulumi.set(self, "freeform_tags", value)
|
156
|
+
|
157
|
+
@property
|
158
|
+
@pulumi.getter(name="runBooks")
|
159
|
+
def run_books(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookArgs']]]]:
|
160
|
+
"""
|
161
|
+
(Updatable) Runbooks.
|
162
|
+
"""
|
163
|
+
return pulumi.get(self, "run_books")
|
164
|
+
|
165
|
+
@run_books.setter
|
166
|
+
def run_books(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookArgs']]]]):
|
167
|
+
pulumi.set(self, "run_books", value)
|
168
|
+
|
169
|
+
|
170
|
+
@pulumi.input_type
|
171
|
+
class _SchedulerDefinitionState:
|
172
|
+
def __init__(__self__, *,
|
173
|
+
action_group_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
174
|
+
action_groups: Optional[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionActionGroupArgs']]]] = None,
|
175
|
+
activity_initiation_cut_off: Optional[pulumi.Input[int]] = None,
|
176
|
+
application_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
177
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
178
|
+
count_of_affected_action_groups: Optional[pulumi.Input[int]] = None,
|
179
|
+
count_of_affected_resources: Optional[pulumi.Input[int]] = None,
|
180
|
+
count_of_affected_targets: Optional[pulumi.Input[int]] = None,
|
181
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
182
|
+
description: Optional[pulumi.Input[str]] = None,
|
183
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
184
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
185
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
186
|
+
lifecycle_operations: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
187
|
+
products: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
188
|
+
resource_region: Optional[pulumi.Input[str]] = None,
|
189
|
+
run_books: Optional[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookArgs']]]] = None,
|
190
|
+
schedule: Optional[pulumi.Input['SchedulerDefinitionScheduleArgs']] = None,
|
191
|
+
state: Optional[pulumi.Input[str]] = None,
|
192
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
193
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
194
|
+
time_of_next_run: Optional[pulumi.Input[str]] = None,
|
195
|
+
time_updated: Optional[pulumi.Input[str]] = None):
|
196
|
+
"""
|
197
|
+
Input properties used for looking up and filtering SchedulerDefinition resources.
|
198
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] action_group_types: All ActionGroup Types part of the schedule.
|
199
|
+
:param pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionActionGroupArgs']]] action_groups: (Updatable) Action Groups associated with the Schedule.
|
200
|
+
:param pulumi.Input[int] activity_initiation_cut_off: (Updatable) Activity Initiation Cut Off
|
201
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] application_types: All application types part of the schedule for ENVIRONMENT ActionGroup Type.
|
202
|
+
:param pulumi.Input[str] compartment_id: Tenancy OCID
|
203
|
+
:param pulumi.Input[int] count_of_affected_action_groups: Count of Action Groups affected by the Schedule.
|
204
|
+
:param pulumi.Input[int] count_of_affected_resources: Count of Resources affected by the Schedule
|
205
|
+
:param pulumi.Input[int] count_of_affected_targets: Count of Targets affected by the Schedule
|
206
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
207
|
+
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
208
|
+
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
209
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
210
|
+
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
211
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] lifecycle_operations: All LifeCycle Operations part of the schedule
|
212
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] products: All products part of the schedule for PRODUCT ActionGroup Type.
|
213
|
+
:param pulumi.Input[str] resource_region: Associated region
|
214
|
+
:param pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookArgs']]] run_books: (Updatable) Runbooks.
|
215
|
+
:param pulumi.Input['SchedulerDefinitionScheduleArgs'] schedule: (Updatable) Schedule Information.
|
216
|
+
:param pulumi.Input[str] state: The current state of the SchedulerDefinition.
|
217
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
218
|
+
:param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
|
219
|
+
:param pulumi.Input[str] time_of_next_run: Scheduled date for the next run of the Job.
|
220
|
+
:param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
|
221
|
+
"""
|
222
|
+
if action_group_types is not None:
|
223
|
+
pulumi.set(__self__, "action_group_types", action_group_types)
|
224
|
+
if action_groups is not None:
|
225
|
+
pulumi.set(__self__, "action_groups", action_groups)
|
226
|
+
if activity_initiation_cut_off is not None:
|
227
|
+
pulumi.set(__self__, "activity_initiation_cut_off", activity_initiation_cut_off)
|
228
|
+
if application_types is not None:
|
229
|
+
pulumi.set(__self__, "application_types", application_types)
|
230
|
+
if compartment_id is not None:
|
231
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
232
|
+
if count_of_affected_action_groups is not None:
|
233
|
+
pulumi.set(__self__, "count_of_affected_action_groups", count_of_affected_action_groups)
|
234
|
+
if count_of_affected_resources is not None:
|
235
|
+
pulumi.set(__self__, "count_of_affected_resources", count_of_affected_resources)
|
236
|
+
if count_of_affected_targets is not None:
|
237
|
+
pulumi.set(__self__, "count_of_affected_targets", count_of_affected_targets)
|
238
|
+
if defined_tags is not None:
|
239
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
240
|
+
if description is not None:
|
241
|
+
pulumi.set(__self__, "description", description)
|
242
|
+
if display_name is not None:
|
243
|
+
pulumi.set(__self__, "display_name", display_name)
|
244
|
+
if freeform_tags is not None:
|
245
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
246
|
+
if lifecycle_details is not None:
|
247
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
248
|
+
if lifecycle_operations is not None:
|
249
|
+
pulumi.set(__self__, "lifecycle_operations", lifecycle_operations)
|
250
|
+
if products is not None:
|
251
|
+
pulumi.set(__self__, "products", products)
|
252
|
+
if resource_region is not None:
|
253
|
+
pulumi.set(__self__, "resource_region", resource_region)
|
254
|
+
if run_books is not None:
|
255
|
+
pulumi.set(__self__, "run_books", run_books)
|
256
|
+
if schedule is not None:
|
257
|
+
pulumi.set(__self__, "schedule", schedule)
|
258
|
+
if state is not None:
|
259
|
+
pulumi.set(__self__, "state", state)
|
260
|
+
if system_tags is not None:
|
261
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
262
|
+
if time_created is not None:
|
263
|
+
pulumi.set(__self__, "time_created", time_created)
|
264
|
+
if time_of_next_run is not None:
|
265
|
+
pulumi.set(__self__, "time_of_next_run", time_of_next_run)
|
266
|
+
if time_updated is not None:
|
267
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
268
|
+
|
269
|
+
@property
|
270
|
+
@pulumi.getter(name="actionGroupTypes")
|
271
|
+
def action_group_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
272
|
+
"""
|
273
|
+
All ActionGroup Types part of the schedule.
|
274
|
+
"""
|
275
|
+
return pulumi.get(self, "action_group_types")
|
276
|
+
|
277
|
+
@action_group_types.setter
|
278
|
+
def action_group_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
279
|
+
pulumi.set(self, "action_group_types", value)
|
280
|
+
|
281
|
+
@property
|
282
|
+
@pulumi.getter(name="actionGroups")
|
283
|
+
def action_groups(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionActionGroupArgs']]]]:
|
284
|
+
"""
|
285
|
+
(Updatable) Action Groups associated with the Schedule.
|
286
|
+
"""
|
287
|
+
return pulumi.get(self, "action_groups")
|
288
|
+
|
289
|
+
@action_groups.setter
|
290
|
+
def action_groups(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionActionGroupArgs']]]]):
|
291
|
+
pulumi.set(self, "action_groups", value)
|
292
|
+
|
293
|
+
@property
|
294
|
+
@pulumi.getter(name="activityInitiationCutOff")
|
295
|
+
def activity_initiation_cut_off(self) -> Optional[pulumi.Input[int]]:
|
296
|
+
"""
|
297
|
+
(Updatable) Activity Initiation Cut Off
|
298
|
+
"""
|
299
|
+
return pulumi.get(self, "activity_initiation_cut_off")
|
300
|
+
|
301
|
+
@activity_initiation_cut_off.setter
|
302
|
+
def activity_initiation_cut_off(self, value: Optional[pulumi.Input[int]]):
|
303
|
+
pulumi.set(self, "activity_initiation_cut_off", value)
|
304
|
+
|
305
|
+
@property
|
306
|
+
@pulumi.getter(name="applicationTypes")
|
307
|
+
def application_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
308
|
+
"""
|
309
|
+
All application types part of the schedule for ENVIRONMENT ActionGroup Type.
|
310
|
+
"""
|
311
|
+
return pulumi.get(self, "application_types")
|
312
|
+
|
313
|
+
@application_types.setter
|
314
|
+
def application_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
315
|
+
pulumi.set(self, "application_types", value)
|
316
|
+
|
317
|
+
@property
|
318
|
+
@pulumi.getter(name="compartmentId")
|
319
|
+
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
320
|
+
"""
|
321
|
+
Tenancy OCID
|
322
|
+
"""
|
323
|
+
return pulumi.get(self, "compartment_id")
|
324
|
+
|
325
|
+
@compartment_id.setter
|
326
|
+
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
327
|
+
pulumi.set(self, "compartment_id", value)
|
328
|
+
|
329
|
+
@property
|
330
|
+
@pulumi.getter(name="countOfAffectedActionGroups")
|
331
|
+
def count_of_affected_action_groups(self) -> Optional[pulumi.Input[int]]:
|
332
|
+
"""
|
333
|
+
Count of Action Groups affected by the Schedule.
|
334
|
+
"""
|
335
|
+
return pulumi.get(self, "count_of_affected_action_groups")
|
336
|
+
|
337
|
+
@count_of_affected_action_groups.setter
|
338
|
+
def count_of_affected_action_groups(self, value: Optional[pulumi.Input[int]]):
|
339
|
+
pulumi.set(self, "count_of_affected_action_groups", value)
|
340
|
+
|
341
|
+
@property
|
342
|
+
@pulumi.getter(name="countOfAffectedResources")
|
343
|
+
def count_of_affected_resources(self) -> Optional[pulumi.Input[int]]:
|
344
|
+
"""
|
345
|
+
Count of Resources affected by the Schedule
|
346
|
+
"""
|
347
|
+
return pulumi.get(self, "count_of_affected_resources")
|
348
|
+
|
349
|
+
@count_of_affected_resources.setter
|
350
|
+
def count_of_affected_resources(self, value: Optional[pulumi.Input[int]]):
|
351
|
+
pulumi.set(self, "count_of_affected_resources", value)
|
352
|
+
|
353
|
+
@property
|
354
|
+
@pulumi.getter(name="countOfAffectedTargets")
|
355
|
+
def count_of_affected_targets(self) -> Optional[pulumi.Input[int]]:
|
356
|
+
"""
|
357
|
+
Count of Targets affected by the Schedule
|
358
|
+
"""
|
359
|
+
return pulumi.get(self, "count_of_affected_targets")
|
360
|
+
|
361
|
+
@count_of_affected_targets.setter
|
362
|
+
def count_of_affected_targets(self, value: Optional[pulumi.Input[int]]):
|
363
|
+
pulumi.set(self, "count_of_affected_targets", value)
|
364
|
+
|
365
|
+
@property
|
366
|
+
@pulumi.getter(name="definedTags")
|
367
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
368
|
+
"""
|
369
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
370
|
+
"""
|
371
|
+
return pulumi.get(self, "defined_tags")
|
372
|
+
|
373
|
+
@defined_tags.setter
|
374
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
375
|
+
pulumi.set(self, "defined_tags", value)
|
376
|
+
|
377
|
+
@property
|
378
|
+
@pulumi.getter
|
379
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
380
|
+
"""
|
381
|
+
(Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
382
|
+
"""
|
383
|
+
return pulumi.get(self, "description")
|
384
|
+
|
385
|
+
@description.setter
|
386
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
387
|
+
pulumi.set(self, "description", value)
|
388
|
+
|
389
|
+
@property
|
390
|
+
@pulumi.getter(name="displayName")
|
391
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
392
|
+
"""
|
393
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
394
|
+
"""
|
395
|
+
return pulumi.get(self, "display_name")
|
396
|
+
|
397
|
+
@display_name.setter
|
398
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
399
|
+
pulumi.set(self, "display_name", value)
|
400
|
+
|
401
|
+
@property
|
402
|
+
@pulumi.getter(name="freeformTags")
|
403
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
404
|
+
"""
|
405
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
406
|
+
"""
|
407
|
+
return pulumi.get(self, "freeform_tags")
|
408
|
+
|
409
|
+
@freeform_tags.setter
|
410
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
411
|
+
pulumi.set(self, "freeform_tags", value)
|
412
|
+
|
413
|
+
@property
|
414
|
+
@pulumi.getter(name="lifecycleDetails")
|
415
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
416
|
+
"""
|
417
|
+
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
418
|
+
"""
|
419
|
+
return pulumi.get(self, "lifecycle_details")
|
420
|
+
|
421
|
+
@lifecycle_details.setter
|
422
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
423
|
+
pulumi.set(self, "lifecycle_details", value)
|
424
|
+
|
425
|
+
@property
|
426
|
+
@pulumi.getter(name="lifecycleOperations")
|
427
|
+
def lifecycle_operations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
428
|
+
"""
|
429
|
+
All LifeCycle Operations part of the schedule
|
430
|
+
"""
|
431
|
+
return pulumi.get(self, "lifecycle_operations")
|
432
|
+
|
433
|
+
@lifecycle_operations.setter
|
434
|
+
def lifecycle_operations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
435
|
+
pulumi.set(self, "lifecycle_operations", value)
|
436
|
+
|
437
|
+
@property
|
438
|
+
@pulumi.getter
|
439
|
+
def products(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
440
|
+
"""
|
441
|
+
All products part of the schedule for PRODUCT ActionGroup Type.
|
442
|
+
"""
|
443
|
+
return pulumi.get(self, "products")
|
444
|
+
|
445
|
+
@products.setter
|
446
|
+
def products(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
447
|
+
pulumi.set(self, "products", value)
|
448
|
+
|
449
|
+
@property
|
450
|
+
@pulumi.getter(name="resourceRegion")
|
451
|
+
def resource_region(self) -> Optional[pulumi.Input[str]]:
|
452
|
+
"""
|
453
|
+
Associated region
|
454
|
+
"""
|
455
|
+
return pulumi.get(self, "resource_region")
|
456
|
+
|
457
|
+
@resource_region.setter
|
458
|
+
def resource_region(self, value: Optional[pulumi.Input[str]]):
|
459
|
+
pulumi.set(self, "resource_region", value)
|
460
|
+
|
461
|
+
@property
|
462
|
+
@pulumi.getter(name="runBooks")
|
463
|
+
def run_books(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookArgs']]]]:
|
464
|
+
"""
|
465
|
+
(Updatable) Runbooks.
|
466
|
+
"""
|
467
|
+
return pulumi.get(self, "run_books")
|
468
|
+
|
469
|
+
@run_books.setter
|
470
|
+
def run_books(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookArgs']]]]):
|
471
|
+
pulumi.set(self, "run_books", value)
|
472
|
+
|
473
|
+
@property
|
474
|
+
@pulumi.getter
|
475
|
+
def schedule(self) -> Optional[pulumi.Input['SchedulerDefinitionScheduleArgs']]:
|
476
|
+
"""
|
477
|
+
(Updatable) Schedule Information.
|
478
|
+
"""
|
479
|
+
return pulumi.get(self, "schedule")
|
480
|
+
|
481
|
+
@schedule.setter
|
482
|
+
def schedule(self, value: Optional[pulumi.Input['SchedulerDefinitionScheduleArgs']]):
|
483
|
+
pulumi.set(self, "schedule", value)
|
484
|
+
|
485
|
+
@property
|
486
|
+
@pulumi.getter
|
487
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
488
|
+
"""
|
489
|
+
The current state of the SchedulerDefinition.
|
490
|
+
"""
|
491
|
+
return pulumi.get(self, "state")
|
492
|
+
|
493
|
+
@state.setter
|
494
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
495
|
+
pulumi.set(self, "state", value)
|
496
|
+
|
497
|
+
@property
|
498
|
+
@pulumi.getter(name="systemTags")
|
499
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
500
|
+
"""
|
501
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
502
|
+
"""
|
503
|
+
return pulumi.get(self, "system_tags")
|
504
|
+
|
505
|
+
@system_tags.setter
|
506
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
507
|
+
pulumi.set(self, "system_tags", value)
|
508
|
+
|
509
|
+
@property
|
510
|
+
@pulumi.getter(name="timeCreated")
|
511
|
+
def time_created(self) -> Optional[pulumi.Input[str]]:
|
512
|
+
"""
|
513
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
514
|
+
"""
|
515
|
+
return pulumi.get(self, "time_created")
|
516
|
+
|
517
|
+
@time_created.setter
|
518
|
+
def time_created(self, value: Optional[pulumi.Input[str]]):
|
519
|
+
pulumi.set(self, "time_created", value)
|
520
|
+
|
521
|
+
@property
|
522
|
+
@pulumi.getter(name="timeOfNextRun")
|
523
|
+
def time_of_next_run(self) -> Optional[pulumi.Input[str]]:
|
524
|
+
"""
|
525
|
+
Scheduled date for the next run of the Job.
|
526
|
+
"""
|
527
|
+
return pulumi.get(self, "time_of_next_run")
|
528
|
+
|
529
|
+
@time_of_next_run.setter
|
530
|
+
def time_of_next_run(self, value: Optional[pulumi.Input[str]]):
|
531
|
+
pulumi.set(self, "time_of_next_run", value)
|
532
|
+
|
533
|
+
@property
|
534
|
+
@pulumi.getter(name="timeUpdated")
|
535
|
+
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
536
|
+
"""
|
537
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
538
|
+
"""
|
539
|
+
return pulumi.get(self, "time_updated")
|
540
|
+
|
541
|
+
@time_updated.setter
|
542
|
+
def time_updated(self, value: Optional[pulumi.Input[str]]):
|
543
|
+
pulumi.set(self, "time_updated", value)
|
544
|
+
|
545
|
+
|
546
|
+
class SchedulerDefinition(pulumi.CustomResource):
|
547
|
+
@overload
|
548
|
+
def __init__(__self__,
|
549
|
+
resource_name: str,
|
550
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
551
|
+
action_groups: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SchedulerDefinitionActionGroupArgs', 'SchedulerDefinitionActionGroupArgsDict']]]]] = None,
|
552
|
+
activity_initiation_cut_off: Optional[pulumi.Input[int]] = None,
|
553
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
554
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
555
|
+
description: Optional[pulumi.Input[str]] = None,
|
556
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
557
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
558
|
+
run_books: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SchedulerDefinitionRunBookArgs', 'SchedulerDefinitionRunBookArgsDict']]]]] = None,
|
559
|
+
schedule: Optional[pulumi.Input[Union['SchedulerDefinitionScheduleArgs', 'SchedulerDefinitionScheduleArgsDict']]] = None,
|
560
|
+
__props__=None):
|
561
|
+
"""
|
562
|
+
This resource provides the Scheduler Definition resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
563
|
+
|
564
|
+
Creates a new SchedulerDefinition.
|
565
|
+
|
566
|
+
## Example Usage
|
567
|
+
|
568
|
+
```python
|
569
|
+
import pulumi
|
570
|
+
import pulumi_oci as oci
|
571
|
+
|
572
|
+
test_scheduler_definition = oci.fleet_apps_management.SchedulerDefinition("test_scheduler_definition",
|
573
|
+
action_groups=[{
|
574
|
+
"resource_id": test_resource["id"],
|
575
|
+
"runbook_id": test_runbook["id"],
|
576
|
+
"application_type": scheduler_definition_action_groups_application_type,
|
577
|
+
"lifecycle_operation": scheduler_definition_action_groups_lifecycle_operation,
|
578
|
+
"product": scheduler_definition_action_groups_product,
|
579
|
+
"subjects": scheduler_definition_action_groups_subjects,
|
580
|
+
"target_id": test_target["id"],
|
581
|
+
"type": scheduler_definition_action_groups_type,
|
582
|
+
}],
|
583
|
+
compartment_id=compartment_id,
|
584
|
+
schedule={
|
585
|
+
"execution_startdate": scheduler_definition_schedule_execution_startdate,
|
586
|
+
"type": scheduler_definition_schedule_type,
|
587
|
+
"duration": scheduler_definition_schedule_duration,
|
588
|
+
"maintenance_window_id": test_maintenance_window["id"],
|
589
|
+
"recurrences": scheduler_definition_schedule_recurrences,
|
590
|
+
},
|
591
|
+
activity_initiation_cut_off=scheduler_definition_activity_initiation_cut_off,
|
592
|
+
defined_tags={
|
593
|
+
"foo-namespace.bar-key": "value",
|
594
|
+
},
|
595
|
+
description=scheduler_definition_description,
|
596
|
+
display_name=scheduler_definition_display_name,
|
597
|
+
freeform_tags={
|
598
|
+
"bar-key": "value",
|
599
|
+
},
|
600
|
+
run_books=[{
|
601
|
+
"id": scheduler_definition_run_books_id,
|
602
|
+
"input_parameters": [{
|
603
|
+
"step_name": scheduler_definition_run_books_input_parameters_step_name,
|
604
|
+
"arguments": [{
|
605
|
+
"name": scheduler_definition_run_books_input_parameters_arguments_name,
|
606
|
+
"value": scheduler_definition_run_books_input_parameters_arguments_value,
|
607
|
+
}],
|
608
|
+
}],
|
609
|
+
}])
|
610
|
+
```
|
611
|
+
|
612
|
+
## Import
|
613
|
+
|
614
|
+
SchedulerDefinitions can be imported using the `id`, e.g.
|
615
|
+
|
616
|
+
```sh
|
617
|
+
$ pulumi import oci:FleetAppsManagement/schedulerDefinition:SchedulerDefinition test_scheduler_definition "id"
|
618
|
+
```
|
619
|
+
|
620
|
+
:param str resource_name: The name of the resource.
|
621
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
622
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['SchedulerDefinitionActionGroupArgs', 'SchedulerDefinitionActionGroupArgsDict']]]] action_groups: (Updatable) Action Groups associated with the Schedule.
|
623
|
+
:param pulumi.Input[int] activity_initiation_cut_off: (Updatable) Activity Initiation Cut Off
|
624
|
+
:param pulumi.Input[str] compartment_id: Tenancy OCID
|
625
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
626
|
+
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
627
|
+
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
628
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
629
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['SchedulerDefinitionRunBookArgs', 'SchedulerDefinitionRunBookArgsDict']]]] run_books: (Updatable) Runbooks.
|
630
|
+
:param pulumi.Input[Union['SchedulerDefinitionScheduleArgs', 'SchedulerDefinitionScheduleArgsDict']] schedule: (Updatable) Schedule Information.
|
631
|
+
"""
|
632
|
+
...
|
633
|
+
@overload
|
634
|
+
def __init__(__self__,
|
635
|
+
resource_name: str,
|
636
|
+
args: SchedulerDefinitionArgs,
|
637
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
638
|
+
"""
|
639
|
+
This resource provides the Scheduler Definition resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
640
|
+
|
641
|
+
Creates a new SchedulerDefinition.
|
642
|
+
|
643
|
+
## Example Usage
|
644
|
+
|
645
|
+
```python
|
646
|
+
import pulumi
|
647
|
+
import pulumi_oci as oci
|
648
|
+
|
649
|
+
test_scheduler_definition = oci.fleet_apps_management.SchedulerDefinition("test_scheduler_definition",
|
650
|
+
action_groups=[{
|
651
|
+
"resource_id": test_resource["id"],
|
652
|
+
"runbook_id": test_runbook["id"],
|
653
|
+
"application_type": scheduler_definition_action_groups_application_type,
|
654
|
+
"lifecycle_operation": scheduler_definition_action_groups_lifecycle_operation,
|
655
|
+
"product": scheduler_definition_action_groups_product,
|
656
|
+
"subjects": scheduler_definition_action_groups_subjects,
|
657
|
+
"target_id": test_target["id"],
|
658
|
+
"type": scheduler_definition_action_groups_type,
|
659
|
+
}],
|
660
|
+
compartment_id=compartment_id,
|
661
|
+
schedule={
|
662
|
+
"execution_startdate": scheduler_definition_schedule_execution_startdate,
|
663
|
+
"type": scheduler_definition_schedule_type,
|
664
|
+
"duration": scheduler_definition_schedule_duration,
|
665
|
+
"maintenance_window_id": test_maintenance_window["id"],
|
666
|
+
"recurrences": scheduler_definition_schedule_recurrences,
|
667
|
+
},
|
668
|
+
activity_initiation_cut_off=scheduler_definition_activity_initiation_cut_off,
|
669
|
+
defined_tags={
|
670
|
+
"foo-namespace.bar-key": "value",
|
671
|
+
},
|
672
|
+
description=scheduler_definition_description,
|
673
|
+
display_name=scheduler_definition_display_name,
|
674
|
+
freeform_tags={
|
675
|
+
"bar-key": "value",
|
676
|
+
},
|
677
|
+
run_books=[{
|
678
|
+
"id": scheduler_definition_run_books_id,
|
679
|
+
"input_parameters": [{
|
680
|
+
"step_name": scheduler_definition_run_books_input_parameters_step_name,
|
681
|
+
"arguments": [{
|
682
|
+
"name": scheduler_definition_run_books_input_parameters_arguments_name,
|
683
|
+
"value": scheduler_definition_run_books_input_parameters_arguments_value,
|
684
|
+
}],
|
685
|
+
}],
|
686
|
+
}])
|
687
|
+
```
|
688
|
+
|
689
|
+
## Import
|
690
|
+
|
691
|
+
SchedulerDefinitions can be imported using the `id`, e.g.
|
692
|
+
|
693
|
+
```sh
|
694
|
+
$ pulumi import oci:FleetAppsManagement/schedulerDefinition:SchedulerDefinition test_scheduler_definition "id"
|
695
|
+
```
|
696
|
+
|
697
|
+
:param str resource_name: The name of the resource.
|
698
|
+
:param SchedulerDefinitionArgs args: The arguments to use to populate this resource's properties.
|
699
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
700
|
+
"""
|
701
|
+
...
|
702
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
703
|
+
resource_args, opts = _utilities.get_resource_args_opts(SchedulerDefinitionArgs, pulumi.ResourceOptions, *args, **kwargs)
|
704
|
+
if resource_args is not None:
|
705
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
706
|
+
else:
|
707
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
708
|
+
|
709
|
+
def _internal_init(__self__,
|
710
|
+
resource_name: str,
|
711
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
712
|
+
action_groups: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SchedulerDefinitionActionGroupArgs', 'SchedulerDefinitionActionGroupArgsDict']]]]] = None,
|
713
|
+
activity_initiation_cut_off: Optional[pulumi.Input[int]] = None,
|
714
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
715
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
716
|
+
description: Optional[pulumi.Input[str]] = None,
|
717
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
718
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
719
|
+
run_books: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SchedulerDefinitionRunBookArgs', 'SchedulerDefinitionRunBookArgsDict']]]]] = None,
|
720
|
+
schedule: Optional[pulumi.Input[Union['SchedulerDefinitionScheduleArgs', 'SchedulerDefinitionScheduleArgsDict']]] = None,
|
721
|
+
__props__=None):
|
722
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
723
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
724
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
725
|
+
if opts.id is None:
|
726
|
+
if __props__ is not None:
|
727
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
728
|
+
__props__ = SchedulerDefinitionArgs.__new__(SchedulerDefinitionArgs)
|
729
|
+
|
730
|
+
if action_groups is None and not opts.urn:
|
731
|
+
raise TypeError("Missing required property 'action_groups'")
|
732
|
+
__props__.__dict__["action_groups"] = action_groups
|
733
|
+
__props__.__dict__["activity_initiation_cut_off"] = activity_initiation_cut_off
|
734
|
+
if compartment_id is None and not opts.urn:
|
735
|
+
raise TypeError("Missing required property 'compartment_id'")
|
736
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
737
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
738
|
+
__props__.__dict__["description"] = description
|
739
|
+
__props__.__dict__["display_name"] = display_name
|
740
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
741
|
+
__props__.__dict__["run_books"] = run_books
|
742
|
+
if schedule is None and not opts.urn:
|
743
|
+
raise TypeError("Missing required property 'schedule'")
|
744
|
+
__props__.__dict__["schedule"] = schedule
|
745
|
+
__props__.__dict__["action_group_types"] = None
|
746
|
+
__props__.__dict__["application_types"] = None
|
747
|
+
__props__.__dict__["count_of_affected_action_groups"] = None
|
748
|
+
__props__.__dict__["count_of_affected_resources"] = None
|
749
|
+
__props__.__dict__["count_of_affected_targets"] = None
|
750
|
+
__props__.__dict__["lifecycle_details"] = None
|
751
|
+
__props__.__dict__["lifecycle_operations"] = None
|
752
|
+
__props__.__dict__["products"] = None
|
753
|
+
__props__.__dict__["resource_region"] = None
|
754
|
+
__props__.__dict__["state"] = None
|
755
|
+
__props__.__dict__["system_tags"] = None
|
756
|
+
__props__.__dict__["time_created"] = None
|
757
|
+
__props__.__dict__["time_of_next_run"] = None
|
758
|
+
__props__.__dict__["time_updated"] = None
|
759
|
+
super(SchedulerDefinition, __self__).__init__(
|
760
|
+
'oci:FleetAppsManagement/schedulerDefinition:SchedulerDefinition',
|
761
|
+
resource_name,
|
762
|
+
__props__,
|
763
|
+
opts)
|
764
|
+
|
765
|
+
@staticmethod
|
766
|
+
def get(resource_name: str,
|
767
|
+
id: pulumi.Input[str],
|
768
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
769
|
+
action_group_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
770
|
+
action_groups: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SchedulerDefinitionActionGroupArgs', 'SchedulerDefinitionActionGroupArgsDict']]]]] = None,
|
771
|
+
activity_initiation_cut_off: Optional[pulumi.Input[int]] = None,
|
772
|
+
application_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
773
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
774
|
+
count_of_affected_action_groups: Optional[pulumi.Input[int]] = None,
|
775
|
+
count_of_affected_resources: Optional[pulumi.Input[int]] = None,
|
776
|
+
count_of_affected_targets: Optional[pulumi.Input[int]] = None,
|
777
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
778
|
+
description: Optional[pulumi.Input[str]] = None,
|
779
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
780
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
781
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
782
|
+
lifecycle_operations: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
783
|
+
products: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
784
|
+
resource_region: Optional[pulumi.Input[str]] = None,
|
785
|
+
run_books: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SchedulerDefinitionRunBookArgs', 'SchedulerDefinitionRunBookArgsDict']]]]] = None,
|
786
|
+
schedule: Optional[pulumi.Input[Union['SchedulerDefinitionScheduleArgs', 'SchedulerDefinitionScheduleArgsDict']]] = None,
|
787
|
+
state: Optional[pulumi.Input[str]] = None,
|
788
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
789
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
790
|
+
time_of_next_run: Optional[pulumi.Input[str]] = None,
|
791
|
+
time_updated: Optional[pulumi.Input[str]] = None) -> 'SchedulerDefinition':
|
792
|
+
"""
|
793
|
+
Get an existing SchedulerDefinition resource's state with the given name, id, and optional extra
|
794
|
+
properties used to qualify the lookup.
|
795
|
+
|
796
|
+
:param str resource_name: The unique name of the resulting resource.
|
797
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
798
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
799
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] action_group_types: All ActionGroup Types part of the schedule.
|
800
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['SchedulerDefinitionActionGroupArgs', 'SchedulerDefinitionActionGroupArgsDict']]]] action_groups: (Updatable) Action Groups associated with the Schedule.
|
801
|
+
:param pulumi.Input[int] activity_initiation_cut_off: (Updatable) Activity Initiation Cut Off
|
802
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] application_types: All application types part of the schedule for ENVIRONMENT ActionGroup Type.
|
803
|
+
:param pulumi.Input[str] compartment_id: Tenancy OCID
|
804
|
+
:param pulumi.Input[int] count_of_affected_action_groups: Count of Action Groups affected by the Schedule.
|
805
|
+
:param pulumi.Input[int] count_of_affected_resources: Count of Resources affected by the Schedule
|
806
|
+
:param pulumi.Input[int] count_of_affected_targets: Count of Targets affected by the Schedule
|
807
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
808
|
+
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
809
|
+
:param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
810
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
811
|
+
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
812
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] lifecycle_operations: All LifeCycle Operations part of the schedule
|
813
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] products: All products part of the schedule for PRODUCT ActionGroup Type.
|
814
|
+
:param pulumi.Input[str] resource_region: Associated region
|
815
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['SchedulerDefinitionRunBookArgs', 'SchedulerDefinitionRunBookArgsDict']]]] run_books: (Updatable) Runbooks.
|
816
|
+
:param pulumi.Input[Union['SchedulerDefinitionScheduleArgs', 'SchedulerDefinitionScheduleArgsDict']] schedule: (Updatable) Schedule Information.
|
817
|
+
:param pulumi.Input[str] state: The current state of the SchedulerDefinition.
|
818
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
819
|
+
:param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
|
820
|
+
:param pulumi.Input[str] time_of_next_run: Scheduled date for the next run of the Job.
|
821
|
+
:param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
|
822
|
+
"""
|
823
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
824
|
+
|
825
|
+
__props__ = _SchedulerDefinitionState.__new__(_SchedulerDefinitionState)
|
826
|
+
|
827
|
+
__props__.__dict__["action_group_types"] = action_group_types
|
828
|
+
__props__.__dict__["action_groups"] = action_groups
|
829
|
+
__props__.__dict__["activity_initiation_cut_off"] = activity_initiation_cut_off
|
830
|
+
__props__.__dict__["application_types"] = application_types
|
831
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
832
|
+
__props__.__dict__["count_of_affected_action_groups"] = count_of_affected_action_groups
|
833
|
+
__props__.__dict__["count_of_affected_resources"] = count_of_affected_resources
|
834
|
+
__props__.__dict__["count_of_affected_targets"] = count_of_affected_targets
|
835
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
836
|
+
__props__.__dict__["description"] = description
|
837
|
+
__props__.__dict__["display_name"] = display_name
|
838
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
839
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
840
|
+
__props__.__dict__["lifecycle_operations"] = lifecycle_operations
|
841
|
+
__props__.__dict__["products"] = products
|
842
|
+
__props__.__dict__["resource_region"] = resource_region
|
843
|
+
__props__.__dict__["run_books"] = run_books
|
844
|
+
__props__.__dict__["schedule"] = schedule
|
845
|
+
__props__.__dict__["state"] = state
|
846
|
+
__props__.__dict__["system_tags"] = system_tags
|
847
|
+
__props__.__dict__["time_created"] = time_created
|
848
|
+
__props__.__dict__["time_of_next_run"] = time_of_next_run
|
849
|
+
__props__.__dict__["time_updated"] = time_updated
|
850
|
+
return SchedulerDefinition(resource_name, opts=opts, __props__=__props__)
|
851
|
+
|
852
|
+
@property
|
853
|
+
@pulumi.getter(name="actionGroupTypes")
|
854
|
+
def action_group_types(self) -> pulumi.Output[Sequence[str]]:
|
855
|
+
"""
|
856
|
+
All ActionGroup Types part of the schedule.
|
857
|
+
"""
|
858
|
+
return pulumi.get(self, "action_group_types")
|
859
|
+
|
860
|
+
@property
|
861
|
+
@pulumi.getter(name="actionGroups")
|
862
|
+
def action_groups(self) -> pulumi.Output[Sequence['outputs.SchedulerDefinitionActionGroup']]:
|
863
|
+
"""
|
864
|
+
(Updatable) Action Groups associated with the Schedule.
|
865
|
+
"""
|
866
|
+
return pulumi.get(self, "action_groups")
|
867
|
+
|
868
|
+
@property
|
869
|
+
@pulumi.getter(name="activityInitiationCutOff")
|
870
|
+
def activity_initiation_cut_off(self) -> pulumi.Output[int]:
|
871
|
+
"""
|
872
|
+
(Updatable) Activity Initiation Cut Off
|
873
|
+
"""
|
874
|
+
return pulumi.get(self, "activity_initiation_cut_off")
|
875
|
+
|
876
|
+
@property
|
877
|
+
@pulumi.getter(name="applicationTypes")
|
878
|
+
def application_types(self) -> pulumi.Output[Sequence[str]]:
|
879
|
+
"""
|
880
|
+
All application types part of the schedule for ENVIRONMENT ActionGroup Type.
|
881
|
+
"""
|
882
|
+
return pulumi.get(self, "application_types")
|
883
|
+
|
884
|
+
@property
|
885
|
+
@pulumi.getter(name="compartmentId")
|
886
|
+
def compartment_id(self) -> pulumi.Output[str]:
|
887
|
+
"""
|
888
|
+
Tenancy OCID
|
889
|
+
"""
|
890
|
+
return pulumi.get(self, "compartment_id")
|
891
|
+
|
892
|
+
@property
|
893
|
+
@pulumi.getter(name="countOfAffectedActionGroups")
|
894
|
+
def count_of_affected_action_groups(self) -> pulumi.Output[int]:
|
895
|
+
"""
|
896
|
+
Count of Action Groups affected by the Schedule.
|
897
|
+
"""
|
898
|
+
return pulumi.get(self, "count_of_affected_action_groups")
|
899
|
+
|
900
|
+
@property
|
901
|
+
@pulumi.getter(name="countOfAffectedResources")
|
902
|
+
def count_of_affected_resources(self) -> pulumi.Output[int]:
|
903
|
+
"""
|
904
|
+
Count of Resources affected by the Schedule
|
905
|
+
"""
|
906
|
+
return pulumi.get(self, "count_of_affected_resources")
|
907
|
+
|
908
|
+
@property
|
909
|
+
@pulumi.getter(name="countOfAffectedTargets")
|
910
|
+
def count_of_affected_targets(self) -> pulumi.Output[int]:
|
911
|
+
"""
|
912
|
+
Count of Targets affected by the Schedule
|
913
|
+
"""
|
914
|
+
return pulumi.get(self, "count_of_affected_targets")
|
915
|
+
|
916
|
+
@property
|
917
|
+
@pulumi.getter(name="definedTags")
|
918
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
919
|
+
"""
|
920
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
921
|
+
"""
|
922
|
+
return pulumi.get(self, "defined_tags")
|
923
|
+
|
924
|
+
@property
|
925
|
+
@pulumi.getter
|
926
|
+
def description(self) -> pulumi.Output[str]:
|
927
|
+
"""
|
928
|
+
(Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
929
|
+
"""
|
930
|
+
return pulumi.get(self, "description")
|
931
|
+
|
932
|
+
@property
|
933
|
+
@pulumi.getter(name="displayName")
|
934
|
+
def display_name(self) -> pulumi.Output[str]:
|
935
|
+
"""
|
936
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
937
|
+
"""
|
938
|
+
return pulumi.get(self, "display_name")
|
939
|
+
|
940
|
+
@property
|
941
|
+
@pulumi.getter(name="freeformTags")
|
942
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
943
|
+
"""
|
944
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
945
|
+
"""
|
946
|
+
return pulumi.get(self, "freeform_tags")
|
947
|
+
|
948
|
+
@property
|
949
|
+
@pulumi.getter(name="lifecycleDetails")
|
950
|
+
def lifecycle_details(self) -> pulumi.Output[str]:
|
951
|
+
"""
|
952
|
+
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
953
|
+
"""
|
954
|
+
return pulumi.get(self, "lifecycle_details")
|
955
|
+
|
956
|
+
@property
|
957
|
+
@pulumi.getter(name="lifecycleOperations")
|
958
|
+
def lifecycle_operations(self) -> pulumi.Output[Sequence[str]]:
|
959
|
+
"""
|
960
|
+
All LifeCycle Operations part of the schedule
|
961
|
+
"""
|
962
|
+
return pulumi.get(self, "lifecycle_operations")
|
963
|
+
|
964
|
+
@property
|
965
|
+
@pulumi.getter
|
966
|
+
def products(self) -> pulumi.Output[Sequence[str]]:
|
967
|
+
"""
|
968
|
+
All products part of the schedule for PRODUCT ActionGroup Type.
|
969
|
+
"""
|
970
|
+
return pulumi.get(self, "products")
|
971
|
+
|
972
|
+
@property
|
973
|
+
@pulumi.getter(name="resourceRegion")
|
974
|
+
def resource_region(self) -> pulumi.Output[str]:
|
975
|
+
"""
|
976
|
+
Associated region
|
977
|
+
"""
|
978
|
+
return pulumi.get(self, "resource_region")
|
979
|
+
|
980
|
+
@property
|
981
|
+
@pulumi.getter(name="runBooks")
|
982
|
+
def run_books(self) -> pulumi.Output[Sequence['outputs.SchedulerDefinitionRunBook']]:
|
983
|
+
"""
|
984
|
+
(Updatable) Runbooks.
|
985
|
+
"""
|
986
|
+
return pulumi.get(self, "run_books")
|
987
|
+
|
988
|
+
@property
|
989
|
+
@pulumi.getter
|
990
|
+
def schedule(self) -> pulumi.Output['outputs.SchedulerDefinitionSchedule']:
|
991
|
+
"""
|
992
|
+
(Updatable) Schedule Information.
|
993
|
+
"""
|
994
|
+
return pulumi.get(self, "schedule")
|
995
|
+
|
996
|
+
@property
|
997
|
+
@pulumi.getter
|
998
|
+
def state(self) -> pulumi.Output[str]:
|
999
|
+
"""
|
1000
|
+
The current state of the SchedulerDefinition.
|
1001
|
+
"""
|
1002
|
+
return pulumi.get(self, "state")
|
1003
|
+
|
1004
|
+
@property
|
1005
|
+
@pulumi.getter(name="systemTags")
|
1006
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
1007
|
+
"""
|
1008
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
1009
|
+
"""
|
1010
|
+
return pulumi.get(self, "system_tags")
|
1011
|
+
|
1012
|
+
@property
|
1013
|
+
@pulumi.getter(name="timeCreated")
|
1014
|
+
def time_created(self) -> pulumi.Output[str]:
|
1015
|
+
"""
|
1016
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
1017
|
+
"""
|
1018
|
+
return pulumi.get(self, "time_created")
|
1019
|
+
|
1020
|
+
@property
|
1021
|
+
@pulumi.getter(name="timeOfNextRun")
|
1022
|
+
def time_of_next_run(self) -> pulumi.Output[str]:
|
1023
|
+
"""
|
1024
|
+
Scheduled date for the next run of the Job.
|
1025
|
+
"""
|
1026
|
+
return pulumi.get(self, "time_of_next_run")
|
1027
|
+
|
1028
|
+
@property
|
1029
|
+
@pulumi.getter(name="timeUpdated")
|
1030
|
+
def time_updated(self) -> pulumi.Output[str]:
|
1031
|
+
"""
|
1032
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
1033
|
+
"""
|
1034
|
+
return pulumi.get(self, "time_updated")
|
1035
|
+
|