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,436 @@
|
|
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
|
+
|
18
|
+
__all__ = [
|
19
|
+
'GetSchedulerDefinitionResult',
|
20
|
+
'AwaitableGetSchedulerDefinitionResult',
|
21
|
+
'get_scheduler_definition',
|
22
|
+
'get_scheduler_definition_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetSchedulerDefinitionResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getSchedulerDefinition.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, action_group_types=None, action_groups=None, activity_initiation_cut_off=None, application_types=None, compartment_id=None, count_of_affected_action_groups=None, count_of_affected_resources=None, count_of_affected_targets=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, lifecycle_details=None, lifecycle_operations=None, products=None, resource_region=None, run_books=None, scheduler_definition_id=None, schedules=None, state=None, system_tags=None, time_created=None, time_of_next_run=None, time_updated=None):
|
31
|
+
if action_group_types and not isinstance(action_group_types, list):
|
32
|
+
raise TypeError("Expected argument 'action_group_types' to be a list")
|
33
|
+
pulumi.set(__self__, "action_group_types", action_group_types)
|
34
|
+
if action_groups and not isinstance(action_groups, list):
|
35
|
+
raise TypeError("Expected argument 'action_groups' to be a list")
|
36
|
+
pulumi.set(__self__, "action_groups", action_groups)
|
37
|
+
if activity_initiation_cut_off and not isinstance(activity_initiation_cut_off, int):
|
38
|
+
raise TypeError("Expected argument 'activity_initiation_cut_off' to be a int")
|
39
|
+
pulumi.set(__self__, "activity_initiation_cut_off", activity_initiation_cut_off)
|
40
|
+
if application_types and not isinstance(application_types, list):
|
41
|
+
raise TypeError("Expected argument 'application_types' to be a list")
|
42
|
+
pulumi.set(__self__, "application_types", application_types)
|
43
|
+
if compartment_id and not isinstance(compartment_id, str):
|
44
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
45
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
46
|
+
if count_of_affected_action_groups and not isinstance(count_of_affected_action_groups, int):
|
47
|
+
raise TypeError("Expected argument 'count_of_affected_action_groups' to be a int")
|
48
|
+
pulumi.set(__self__, "count_of_affected_action_groups", count_of_affected_action_groups)
|
49
|
+
if count_of_affected_resources and not isinstance(count_of_affected_resources, int):
|
50
|
+
raise TypeError("Expected argument 'count_of_affected_resources' to be a int")
|
51
|
+
pulumi.set(__self__, "count_of_affected_resources", count_of_affected_resources)
|
52
|
+
if count_of_affected_targets and not isinstance(count_of_affected_targets, int):
|
53
|
+
raise TypeError("Expected argument 'count_of_affected_targets' to be a int")
|
54
|
+
pulumi.set(__self__, "count_of_affected_targets", count_of_affected_targets)
|
55
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
56
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
57
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
58
|
+
if description and not isinstance(description, str):
|
59
|
+
raise TypeError("Expected argument 'description' to be a str")
|
60
|
+
pulumi.set(__self__, "description", description)
|
61
|
+
if display_name and not isinstance(display_name, str):
|
62
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
63
|
+
pulumi.set(__self__, "display_name", display_name)
|
64
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
65
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
66
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
67
|
+
if id and not isinstance(id, str):
|
68
|
+
raise TypeError("Expected argument 'id' to be a str")
|
69
|
+
pulumi.set(__self__, "id", id)
|
70
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
71
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
72
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
73
|
+
if lifecycle_operations and not isinstance(lifecycle_operations, list):
|
74
|
+
raise TypeError("Expected argument 'lifecycle_operations' to be a list")
|
75
|
+
pulumi.set(__self__, "lifecycle_operations", lifecycle_operations)
|
76
|
+
if products and not isinstance(products, list):
|
77
|
+
raise TypeError("Expected argument 'products' to be a list")
|
78
|
+
pulumi.set(__self__, "products", products)
|
79
|
+
if resource_region and not isinstance(resource_region, str):
|
80
|
+
raise TypeError("Expected argument 'resource_region' to be a str")
|
81
|
+
pulumi.set(__self__, "resource_region", resource_region)
|
82
|
+
if run_books and not isinstance(run_books, list):
|
83
|
+
raise TypeError("Expected argument 'run_books' to be a list")
|
84
|
+
pulumi.set(__self__, "run_books", run_books)
|
85
|
+
if scheduler_definition_id and not isinstance(scheduler_definition_id, str):
|
86
|
+
raise TypeError("Expected argument 'scheduler_definition_id' to be a str")
|
87
|
+
pulumi.set(__self__, "scheduler_definition_id", scheduler_definition_id)
|
88
|
+
if schedules and not isinstance(schedules, list):
|
89
|
+
raise TypeError("Expected argument 'schedules' to be a list")
|
90
|
+
pulumi.set(__self__, "schedules", schedules)
|
91
|
+
if state and not isinstance(state, str):
|
92
|
+
raise TypeError("Expected argument 'state' to be a str")
|
93
|
+
pulumi.set(__self__, "state", state)
|
94
|
+
if system_tags and not isinstance(system_tags, dict):
|
95
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
96
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
97
|
+
if time_created and not isinstance(time_created, str):
|
98
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
99
|
+
pulumi.set(__self__, "time_created", time_created)
|
100
|
+
if time_of_next_run and not isinstance(time_of_next_run, str):
|
101
|
+
raise TypeError("Expected argument 'time_of_next_run' to be a str")
|
102
|
+
pulumi.set(__self__, "time_of_next_run", time_of_next_run)
|
103
|
+
if time_updated and not isinstance(time_updated, str):
|
104
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
105
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
106
|
+
|
107
|
+
@property
|
108
|
+
@pulumi.getter(name="actionGroupTypes")
|
109
|
+
def action_group_types(self) -> Sequence[str]:
|
110
|
+
"""
|
111
|
+
All ActionGroup Types part of the schedule.
|
112
|
+
"""
|
113
|
+
return pulumi.get(self, "action_group_types")
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="actionGroups")
|
117
|
+
def action_groups(self) -> Sequence['outputs.GetSchedulerDefinitionActionGroupResult']:
|
118
|
+
"""
|
119
|
+
Action Groups associated with the Schedule.
|
120
|
+
"""
|
121
|
+
return pulumi.get(self, "action_groups")
|
122
|
+
|
123
|
+
@property
|
124
|
+
@pulumi.getter(name="activityInitiationCutOff")
|
125
|
+
def activity_initiation_cut_off(self) -> int:
|
126
|
+
"""
|
127
|
+
Activity Initiation Cut Off
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "activity_initiation_cut_off")
|
130
|
+
|
131
|
+
@property
|
132
|
+
@pulumi.getter(name="applicationTypes")
|
133
|
+
def application_types(self) -> Sequence[str]:
|
134
|
+
"""
|
135
|
+
All application types part of the schedule for ENVIRONMENT ActionGroup Type.
|
136
|
+
"""
|
137
|
+
return pulumi.get(self, "application_types")
|
138
|
+
|
139
|
+
@property
|
140
|
+
@pulumi.getter(name="compartmentId")
|
141
|
+
def compartment_id(self) -> str:
|
142
|
+
"""
|
143
|
+
Tenancy OCID
|
144
|
+
"""
|
145
|
+
return pulumi.get(self, "compartment_id")
|
146
|
+
|
147
|
+
@property
|
148
|
+
@pulumi.getter(name="countOfAffectedActionGroups")
|
149
|
+
def count_of_affected_action_groups(self) -> int:
|
150
|
+
"""
|
151
|
+
Count of Action Groups affected by the Schedule.
|
152
|
+
"""
|
153
|
+
return pulumi.get(self, "count_of_affected_action_groups")
|
154
|
+
|
155
|
+
@property
|
156
|
+
@pulumi.getter(name="countOfAffectedResources")
|
157
|
+
def count_of_affected_resources(self) -> int:
|
158
|
+
"""
|
159
|
+
Count of Resources affected by the Schedule
|
160
|
+
"""
|
161
|
+
return pulumi.get(self, "count_of_affected_resources")
|
162
|
+
|
163
|
+
@property
|
164
|
+
@pulumi.getter(name="countOfAffectedTargets")
|
165
|
+
def count_of_affected_targets(self) -> int:
|
166
|
+
"""
|
167
|
+
Count of Targets affected by the Schedule
|
168
|
+
"""
|
169
|
+
return pulumi.get(self, "count_of_affected_targets")
|
170
|
+
|
171
|
+
@property
|
172
|
+
@pulumi.getter(name="definedTags")
|
173
|
+
def defined_tags(self) -> Mapping[str, str]:
|
174
|
+
"""
|
175
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
176
|
+
"""
|
177
|
+
return pulumi.get(self, "defined_tags")
|
178
|
+
|
179
|
+
@property
|
180
|
+
@pulumi.getter
|
181
|
+
def description(self) -> str:
|
182
|
+
"""
|
183
|
+
A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
184
|
+
"""
|
185
|
+
return pulumi.get(self, "description")
|
186
|
+
|
187
|
+
@property
|
188
|
+
@pulumi.getter(name="displayName")
|
189
|
+
def display_name(self) -> str:
|
190
|
+
"""
|
191
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
192
|
+
"""
|
193
|
+
return pulumi.get(self, "display_name")
|
194
|
+
|
195
|
+
@property
|
196
|
+
@pulumi.getter(name="freeformTags")
|
197
|
+
def freeform_tags(self) -> Mapping[str, str]:
|
198
|
+
"""
|
199
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
200
|
+
"""
|
201
|
+
return pulumi.get(self, "freeform_tags")
|
202
|
+
|
203
|
+
@property
|
204
|
+
@pulumi.getter
|
205
|
+
def id(self) -> str:
|
206
|
+
"""
|
207
|
+
The ID of the Runbook
|
208
|
+
"""
|
209
|
+
return pulumi.get(self, "id")
|
210
|
+
|
211
|
+
@property
|
212
|
+
@pulumi.getter(name="lifecycleDetails")
|
213
|
+
def lifecycle_details(self) -> str:
|
214
|
+
"""
|
215
|
+
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
216
|
+
"""
|
217
|
+
return pulumi.get(self, "lifecycle_details")
|
218
|
+
|
219
|
+
@property
|
220
|
+
@pulumi.getter(name="lifecycleOperations")
|
221
|
+
def lifecycle_operations(self) -> Sequence[str]:
|
222
|
+
"""
|
223
|
+
All LifeCycle Operations part of the schedule
|
224
|
+
"""
|
225
|
+
return pulumi.get(self, "lifecycle_operations")
|
226
|
+
|
227
|
+
@property
|
228
|
+
@pulumi.getter
|
229
|
+
def products(self) -> Sequence[str]:
|
230
|
+
"""
|
231
|
+
All products part of the schedule for PRODUCT ActionGroup Type.
|
232
|
+
"""
|
233
|
+
return pulumi.get(self, "products")
|
234
|
+
|
235
|
+
@property
|
236
|
+
@pulumi.getter(name="resourceRegion")
|
237
|
+
def resource_region(self) -> str:
|
238
|
+
"""
|
239
|
+
Associated region
|
240
|
+
"""
|
241
|
+
return pulumi.get(self, "resource_region")
|
242
|
+
|
243
|
+
@property
|
244
|
+
@pulumi.getter(name="runBooks")
|
245
|
+
def run_books(self) -> Sequence['outputs.GetSchedulerDefinitionRunBookResult']:
|
246
|
+
"""
|
247
|
+
Runbooks.
|
248
|
+
"""
|
249
|
+
return pulumi.get(self, "run_books")
|
250
|
+
|
251
|
+
@property
|
252
|
+
@pulumi.getter(name="schedulerDefinitionId")
|
253
|
+
def scheduler_definition_id(self) -> str:
|
254
|
+
return pulumi.get(self, "scheduler_definition_id")
|
255
|
+
|
256
|
+
@property
|
257
|
+
@pulumi.getter
|
258
|
+
def schedules(self) -> Sequence['outputs.GetSchedulerDefinitionScheduleResult']:
|
259
|
+
"""
|
260
|
+
Schedule Information.
|
261
|
+
"""
|
262
|
+
return pulumi.get(self, "schedules")
|
263
|
+
|
264
|
+
@property
|
265
|
+
@pulumi.getter
|
266
|
+
def state(self) -> str:
|
267
|
+
"""
|
268
|
+
The current state of the SchedulerDefinition.
|
269
|
+
"""
|
270
|
+
return pulumi.get(self, "state")
|
271
|
+
|
272
|
+
@property
|
273
|
+
@pulumi.getter(name="systemTags")
|
274
|
+
def system_tags(self) -> Mapping[str, str]:
|
275
|
+
"""
|
276
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
277
|
+
"""
|
278
|
+
return pulumi.get(self, "system_tags")
|
279
|
+
|
280
|
+
@property
|
281
|
+
@pulumi.getter(name="timeCreated")
|
282
|
+
def time_created(self) -> str:
|
283
|
+
"""
|
284
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
285
|
+
"""
|
286
|
+
return pulumi.get(self, "time_created")
|
287
|
+
|
288
|
+
@property
|
289
|
+
@pulumi.getter(name="timeOfNextRun")
|
290
|
+
def time_of_next_run(self) -> str:
|
291
|
+
"""
|
292
|
+
Scheduled date for the next run of the Job.
|
293
|
+
"""
|
294
|
+
return pulumi.get(self, "time_of_next_run")
|
295
|
+
|
296
|
+
@property
|
297
|
+
@pulumi.getter(name="timeUpdated")
|
298
|
+
def time_updated(self) -> str:
|
299
|
+
"""
|
300
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
301
|
+
"""
|
302
|
+
return pulumi.get(self, "time_updated")
|
303
|
+
|
304
|
+
|
305
|
+
class AwaitableGetSchedulerDefinitionResult(GetSchedulerDefinitionResult):
|
306
|
+
# pylint: disable=using-constant-test
|
307
|
+
def __await__(self):
|
308
|
+
if False:
|
309
|
+
yield self
|
310
|
+
return GetSchedulerDefinitionResult(
|
311
|
+
action_group_types=self.action_group_types,
|
312
|
+
action_groups=self.action_groups,
|
313
|
+
activity_initiation_cut_off=self.activity_initiation_cut_off,
|
314
|
+
application_types=self.application_types,
|
315
|
+
compartment_id=self.compartment_id,
|
316
|
+
count_of_affected_action_groups=self.count_of_affected_action_groups,
|
317
|
+
count_of_affected_resources=self.count_of_affected_resources,
|
318
|
+
count_of_affected_targets=self.count_of_affected_targets,
|
319
|
+
defined_tags=self.defined_tags,
|
320
|
+
description=self.description,
|
321
|
+
display_name=self.display_name,
|
322
|
+
freeform_tags=self.freeform_tags,
|
323
|
+
id=self.id,
|
324
|
+
lifecycle_details=self.lifecycle_details,
|
325
|
+
lifecycle_operations=self.lifecycle_operations,
|
326
|
+
products=self.products,
|
327
|
+
resource_region=self.resource_region,
|
328
|
+
run_books=self.run_books,
|
329
|
+
scheduler_definition_id=self.scheduler_definition_id,
|
330
|
+
schedules=self.schedules,
|
331
|
+
state=self.state,
|
332
|
+
system_tags=self.system_tags,
|
333
|
+
time_created=self.time_created,
|
334
|
+
time_of_next_run=self.time_of_next_run,
|
335
|
+
time_updated=self.time_updated)
|
336
|
+
|
337
|
+
|
338
|
+
def get_scheduler_definition(scheduler_definition_id: Optional[str] = None,
|
339
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSchedulerDefinitionResult:
|
340
|
+
"""
|
341
|
+
This data source provides details about a specific Scheduler Definition resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
342
|
+
|
343
|
+
Gets a SchedulerDefinition by identifier
|
344
|
+
|
345
|
+
## Example Usage
|
346
|
+
|
347
|
+
```python
|
348
|
+
import pulumi
|
349
|
+
import pulumi_oci as oci
|
350
|
+
|
351
|
+
test_scheduler_definition = oci.FleetAppsManagement.get_scheduler_definition(scheduler_definition_id=test_scheduler_definition_oci_fleet_apps_management_scheduler_definition["id"])
|
352
|
+
```
|
353
|
+
|
354
|
+
|
355
|
+
:param str scheduler_definition_id: unique SchedulerDefinition identifier
|
356
|
+
"""
|
357
|
+
__args__ = dict()
|
358
|
+
__args__['schedulerDefinitionId'] = scheduler_definition_id
|
359
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
360
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getSchedulerDefinition:getSchedulerDefinition', __args__, opts=opts, typ=GetSchedulerDefinitionResult).value
|
361
|
+
|
362
|
+
return AwaitableGetSchedulerDefinitionResult(
|
363
|
+
action_group_types=pulumi.get(__ret__, 'action_group_types'),
|
364
|
+
action_groups=pulumi.get(__ret__, 'action_groups'),
|
365
|
+
activity_initiation_cut_off=pulumi.get(__ret__, 'activity_initiation_cut_off'),
|
366
|
+
application_types=pulumi.get(__ret__, 'application_types'),
|
367
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
368
|
+
count_of_affected_action_groups=pulumi.get(__ret__, 'count_of_affected_action_groups'),
|
369
|
+
count_of_affected_resources=pulumi.get(__ret__, 'count_of_affected_resources'),
|
370
|
+
count_of_affected_targets=pulumi.get(__ret__, 'count_of_affected_targets'),
|
371
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
372
|
+
description=pulumi.get(__ret__, 'description'),
|
373
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
374
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
375
|
+
id=pulumi.get(__ret__, 'id'),
|
376
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
377
|
+
lifecycle_operations=pulumi.get(__ret__, 'lifecycle_operations'),
|
378
|
+
products=pulumi.get(__ret__, 'products'),
|
379
|
+
resource_region=pulumi.get(__ret__, 'resource_region'),
|
380
|
+
run_books=pulumi.get(__ret__, 'run_books'),
|
381
|
+
scheduler_definition_id=pulumi.get(__ret__, 'scheduler_definition_id'),
|
382
|
+
schedules=pulumi.get(__ret__, 'schedules'),
|
383
|
+
state=pulumi.get(__ret__, 'state'),
|
384
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
385
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
386
|
+
time_of_next_run=pulumi.get(__ret__, 'time_of_next_run'),
|
387
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
388
|
+
def get_scheduler_definition_output(scheduler_definition_id: Optional[pulumi.Input[str]] = None,
|
389
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSchedulerDefinitionResult]:
|
390
|
+
"""
|
391
|
+
This data source provides details about a specific Scheduler Definition resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
392
|
+
|
393
|
+
Gets a SchedulerDefinition by identifier
|
394
|
+
|
395
|
+
## Example Usage
|
396
|
+
|
397
|
+
```python
|
398
|
+
import pulumi
|
399
|
+
import pulumi_oci as oci
|
400
|
+
|
401
|
+
test_scheduler_definition = oci.FleetAppsManagement.get_scheduler_definition(scheduler_definition_id=test_scheduler_definition_oci_fleet_apps_management_scheduler_definition["id"])
|
402
|
+
```
|
403
|
+
|
404
|
+
|
405
|
+
:param str scheduler_definition_id: unique SchedulerDefinition identifier
|
406
|
+
"""
|
407
|
+
__args__ = dict()
|
408
|
+
__args__['schedulerDefinitionId'] = scheduler_definition_id
|
409
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
410
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getSchedulerDefinition:getSchedulerDefinition', __args__, opts=opts, typ=GetSchedulerDefinitionResult)
|
411
|
+
return __ret__.apply(lambda __response__: GetSchedulerDefinitionResult(
|
412
|
+
action_group_types=pulumi.get(__response__, 'action_group_types'),
|
413
|
+
action_groups=pulumi.get(__response__, 'action_groups'),
|
414
|
+
activity_initiation_cut_off=pulumi.get(__response__, 'activity_initiation_cut_off'),
|
415
|
+
application_types=pulumi.get(__response__, 'application_types'),
|
416
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
417
|
+
count_of_affected_action_groups=pulumi.get(__response__, 'count_of_affected_action_groups'),
|
418
|
+
count_of_affected_resources=pulumi.get(__response__, 'count_of_affected_resources'),
|
419
|
+
count_of_affected_targets=pulumi.get(__response__, 'count_of_affected_targets'),
|
420
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
421
|
+
description=pulumi.get(__response__, 'description'),
|
422
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
423
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
424
|
+
id=pulumi.get(__response__, 'id'),
|
425
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
426
|
+
lifecycle_operations=pulumi.get(__response__, 'lifecycle_operations'),
|
427
|
+
products=pulumi.get(__response__, 'products'),
|
428
|
+
resource_region=pulumi.get(__response__, 'resource_region'),
|
429
|
+
run_books=pulumi.get(__response__, 'run_books'),
|
430
|
+
scheduler_definition_id=pulumi.get(__response__, 'scheduler_definition_id'),
|
431
|
+
schedules=pulumi.get(__response__, 'schedules'),
|
432
|
+
state=pulumi.get(__response__, 'state'),
|
433
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
434
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
435
|
+
time_of_next_run=pulumi.get(__response__, 'time_of_next_run'),
|
436
|
+
time_updated=pulumi.get(__response__, 'time_updated')))
|
@@ -0,0 +1,185 @@
|
|
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__ = [
|
20
|
+
'GetSchedulerDefinitionScheduledFleetsResult',
|
21
|
+
'AwaitableGetSchedulerDefinitionScheduledFleetsResult',
|
22
|
+
'get_scheduler_definition_scheduled_fleets',
|
23
|
+
'get_scheduler_definition_scheduled_fleets_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetSchedulerDefinitionScheduledFleetsResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getSchedulerDefinitionScheduledFleets.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, scheduled_fleet_collections=None, scheduler_definition_id=None):
|
32
|
+
if compartment_id and not isinstance(compartment_id, str):
|
33
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
35
|
+
if display_name and not isinstance(display_name, str):
|
36
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
37
|
+
pulumi.set(__self__, "display_name", display_name)
|
38
|
+
if filters and not isinstance(filters, list):
|
39
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
40
|
+
pulumi.set(__self__, "filters", filters)
|
41
|
+
if id and not isinstance(id, str):
|
42
|
+
raise TypeError("Expected argument 'id' to be a str")
|
43
|
+
pulumi.set(__self__, "id", id)
|
44
|
+
if scheduled_fleet_collections and not isinstance(scheduled_fleet_collections, list):
|
45
|
+
raise TypeError("Expected argument 'scheduled_fleet_collections' to be a list")
|
46
|
+
pulumi.set(__self__, "scheduled_fleet_collections", scheduled_fleet_collections)
|
47
|
+
if scheduler_definition_id and not isinstance(scheduler_definition_id, str):
|
48
|
+
raise TypeError("Expected argument 'scheduler_definition_id' to be a str")
|
49
|
+
pulumi.set(__self__, "scheduler_definition_id", scheduler_definition_id)
|
50
|
+
|
51
|
+
@property
|
52
|
+
@pulumi.getter(name="compartmentId")
|
53
|
+
def compartment_id(self) -> Optional[str]:
|
54
|
+
return pulumi.get(self, "compartment_id")
|
55
|
+
|
56
|
+
@property
|
57
|
+
@pulumi.getter(name="displayName")
|
58
|
+
def display_name(self) -> Optional[str]:
|
59
|
+
"""
|
60
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
61
|
+
"""
|
62
|
+
return pulumi.get(self, "display_name")
|
63
|
+
|
64
|
+
@property
|
65
|
+
@pulumi.getter
|
66
|
+
def filters(self) -> Optional[Sequence['outputs.GetSchedulerDefinitionScheduledFleetsFilterResult']]:
|
67
|
+
return pulumi.get(self, "filters")
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter
|
71
|
+
def id(self) -> str:
|
72
|
+
"""
|
73
|
+
The provider-assigned unique ID for this managed resource.
|
74
|
+
"""
|
75
|
+
return pulumi.get(self, "id")
|
76
|
+
|
77
|
+
@property
|
78
|
+
@pulumi.getter(name="scheduledFleetCollections")
|
79
|
+
def scheduled_fleet_collections(self) -> Sequence['outputs.GetSchedulerDefinitionScheduledFleetsScheduledFleetCollectionResult']:
|
80
|
+
"""
|
81
|
+
The list of scheduled_fleet_collection.
|
82
|
+
"""
|
83
|
+
return pulumi.get(self, "scheduled_fleet_collections")
|
84
|
+
|
85
|
+
@property
|
86
|
+
@pulumi.getter(name="schedulerDefinitionId")
|
87
|
+
def scheduler_definition_id(self) -> str:
|
88
|
+
return pulumi.get(self, "scheduler_definition_id")
|
89
|
+
|
90
|
+
|
91
|
+
class AwaitableGetSchedulerDefinitionScheduledFleetsResult(GetSchedulerDefinitionScheduledFleetsResult):
|
92
|
+
# pylint: disable=using-constant-test
|
93
|
+
def __await__(self):
|
94
|
+
if False:
|
95
|
+
yield self
|
96
|
+
return GetSchedulerDefinitionScheduledFleetsResult(
|
97
|
+
compartment_id=self.compartment_id,
|
98
|
+
display_name=self.display_name,
|
99
|
+
filters=self.filters,
|
100
|
+
id=self.id,
|
101
|
+
scheduled_fleet_collections=self.scheduled_fleet_collections,
|
102
|
+
scheduler_definition_id=self.scheduler_definition_id)
|
103
|
+
|
104
|
+
|
105
|
+
def get_scheduler_definition_scheduled_fleets(compartment_id: Optional[str] = None,
|
106
|
+
display_name: Optional[str] = None,
|
107
|
+
filters: Optional[Sequence[Union['GetSchedulerDefinitionScheduledFleetsFilterArgs', 'GetSchedulerDefinitionScheduledFleetsFilterArgsDict']]] = None,
|
108
|
+
scheduler_definition_id: Optional[str] = None,
|
109
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSchedulerDefinitionScheduledFleetsResult:
|
110
|
+
"""
|
111
|
+
This data source provides the list of Scheduler Definition Scheduled Fleets in Oracle Cloud Infrastructure Fleet Apps Management service.
|
112
|
+
|
113
|
+
Returns a list of ScheduledFleets
|
114
|
+
|
115
|
+
## Example Usage
|
116
|
+
|
117
|
+
```python
|
118
|
+
import pulumi
|
119
|
+
import pulumi_oci as oci
|
120
|
+
|
121
|
+
test_scheduler_definition_scheduled_fleets = oci.FleetAppsManagement.get_scheduler_definition_scheduled_fleets(scheduler_definition_id=test_scheduler_definition["id"],
|
122
|
+
compartment_id=compartment_id,
|
123
|
+
display_name=scheduler_definition_scheduled_fleet_display_name)
|
124
|
+
```
|
125
|
+
|
126
|
+
|
127
|
+
:param str compartment_id: The ID of the compartment in which to list resources.
|
128
|
+
:param str display_name: A filter to return only resources that match the entire display name given.
|
129
|
+
:param str scheduler_definition_id: unique SchedulerDefinition identifier
|
130
|
+
"""
|
131
|
+
__args__ = dict()
|
132
|
+
__args__['compartmentId'] = compartment_id
|
133
|
+
__args__['displayName'] = display_name
|
134
|
+
__args__['filters'] = filters
|
135
|
+
__args__['schedulerDefinitionId'] = scheduler_definition_id
|
136
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
137
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getSchedulerDefinitionScheduledFleets:getSchedulerDefinitionScheduledFleets', __args__, opts=opts, typ=GetSchedulerDefinitionScheduledFleetsResult).value
|
138
|
+
|
139
|
+
return AwaitableGetSchedulerDefinitionScheduledFleetsResult(
|
140
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
141
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
142
|
+
filters=pulumi.get(__ret__, 'filters'),
|
143
|
+
id=pulumi.get(__ret__, 'id'),
|
144
|
+
scheduled_fleet_collections=pulumi.get(__ret__, 'scheduled_fleet_collections'),
|
145
|
+
scheduler_definition_id=pulumi.get(__ret__, 'scheduler_definition_id'))
|
146
|
+
def get_scheduler_definition_scheduled_fleets_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
|
147
|
+
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
148
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetSchedulerDefinitionScheduledFleetsFilterArgs', 'GetSchedulerDefinitionScheduledFleetsFilterArgsDict']]]]] = None,
|
149
|
+
scheduler_definition_id: Optional[pulumi.Input[str]] = None,
|
150
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSchedulerDefinitionScheduledFleetsResult]:
|
151
|
+
"""
|
152
|
+
This data source provides the list of Scheduler Definition Scheduled Fleets in Oracle Cloud Infrastructure Fleet Apps Management service.
|
153
|
+
|
154
|
+
Returns a list of ScheduledFleets
|
155
|
+
|
156
|
+
## Example Usage
|
157
|
+
|
158
|
+
```python
|
159
|
+
import pulumi
|
160
|
+
import pulumi_oci as oci
|
161
|
+
|
162
|
+
test_scheduler_definition_scheduled_fleets = oci.FleetAppsManagement.get_scheduler_definition_scheduled_fleets(scheduler_definition_id=test_scheduler_definition["id"],
|
163
|
+
compartment_id=compartment_id,
|
164
|
+
display_name=scheduler_definition_scheduled_fleet_display_name)
|
165
|
+
```
|
166
|
+
|
167
|
+
|
168
|
+
:param str compartment_id: The ID of the compartment in which to list resources.
|
169
|
+
:param str display_name: A filter to return only resources that match the entire display name given.
|
170
|
+
:param str scheduler_definition_id: unique SchedulerDefinition identifier
|
171
|
+
"""
|
172
|
+
__args__ = dict()
|
173
|
+
__args__['compartmentId'] = compartment_id
|
174
|
+
__args__['displayName'] = display_name
|
175
|
+
__args__['filters'] = filters
|
176
|
+
__args__['schedulerDefinitionId'] = scheduler_definition_id
|
177
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
178
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getSchedulerDefinitionScheduledFleets:getSchedulerDefinitionScheduledFleets', __args__, opts=opts, typ=GetSchedulerDefinitionScheduledFleetsResult)
|
179
|
+
return __ret__.apply(lambda __response__: GetSchedulerDefinitionScheduledFleetsResult(
|
180
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
181
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
182
|
+
filters=pulumi.get(__response__, 'filters'),
|
183
|
+
id=pulumi.get(__response__, 'id'),
|
184
|
+
scheduled_fleet_collections=pulumi.get(__response__, 'scheduled_fleet_collections'),
|
185
|
+
scheduler_definition_id=pulumi.get(__response__, 'scheduler_definition_id')))
|