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.
Files changed (170) hide show
  1. pulumi_oci/__init__.py +145 -0
  2. pulumi_oci/analytics/analytics_instance.py +54 -5
  3. pulumi_oci/analytics/get_analytics_instance.py +18 -4
  4. pulumi_oci/analytics/outputs.py +12 -1
  5. pulumi_oci/core/_inputs.py +648 -159
  6. pulumi_oci/core/cluster_network.py +7 -7
  7. pulumi_oci/core/get_instance.py +29 -1
  8. pulumi_oci/core/get_vcn.py +15 -1
  9. pulumi_oci/core/get_vnic.py +15 -1
  10. pulumi_oci/core/instance.py +87 -0
  11. pulumi_oci/core/instance_configuration.py +12 -0
  12. pulumi_oci/core/ipsec.py +183 -23
  13. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  14. pulumi_oci/core/outputs.py +709 -107
  15. pulumi_oci/core/service_gateway.py +13 -7
  16. pulumi_oci/core/vcn.py +65 -23
  17. pulumi_oci/core/virtual_network.py +35 -1
  18. pulumi_oci/core/vnic_attachment.py +2 -0
  19. pulumi_oci/database/_inputs.py +905 -27
  20. pulumi_oci/database/autonomous_database.py +48 -28
  21. pulumi_oci/database/autonomous_database_backup.py +12 -12
  22. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  23. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  24. pulumi_oci/database/backup.py +12 -12
  25. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  26. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  27. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  28. pulumi_oci/database/database.py +15 -15
  29. pulumi_oci/database/database_upgrade.py +12 -12
  30. pulumi_oci/database/db_system.py +9 -9
  31. pulumi_oci/database/exadata_infrastructure.py +2 -0
  32. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  33. pulumi_oci/database/get_autonomous_database.py +18 -4
  34. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  35. pulumi_oci/database/get_autonomous_databases.py +88 -5
  36. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  37. pulumi_oci/database/get_database.py +3 -3
  38. pulumi_oci/database/get_pluggable_database.py +12 -1
  39. pulumi_oci/database/get_vm_cluster.py +15 -1
  40. pulumi_oci/database/outputs.py +1431 -74
  41. pulumi_oci/database/pluggable_database.py +34 -0
  42. pulumi_oci/database/vm_cluster.py +71 -0
  43. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  44. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  45. pulumi_oci/datasafe/__init__.py +12 -0
  46. pulumi_oci/datasafe/_inputs.py +441 -0
  47. pulumi_oci/datasafe/get_reports.py +23 -1
  48. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  49. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  50. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  51. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  52. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  53. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  54. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  55. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  56. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  57. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  58. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  59. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  60. pulumi_oci/datasafe/outputs.py +1808 -2
  61. pulumi_oci/desktops/_inputs.py +223 -7
  62. pulumi_oci/desktops/desktop_pool.py +186 -21
  63. pulumi_oci/desktops/get_desktop_pool.py +47 -5
  64. pulumi_oci/desktops/outputs.py +480 -19
  65. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  66. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  67. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  68. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  69. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  70. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  71. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  72. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  73. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  74. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  75. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  76. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  77. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  78. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  79. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  80. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  81. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  82. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  83. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  84. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  85. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  86. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  87. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  88. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  89. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  90. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  91. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  92. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  93. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  94. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  95. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  96. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  97. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  98. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  99. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  100. pulumi_oci/fleetappsmanagement/property.py +697 -0
  101. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  102. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  103. pulumi_oci/functions/outputs.py +11 -0
  104. pulumi_oci/fusionapps/_inputs.py +21 -20
  105. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  106. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  107. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  108. pulumi_oci/fusionapps/outputs.py +11 -10
  109. pulumi_oci/integration/__init__.py +1 -0
  110. pulumi_oci/integration/_inputs.py +289 -2
  111. pulumi_oci/integration/get_integration_instance.py +65 -1
  112. pulumi_oci/integration/integration_instance.py +172 -0
  113. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  114. pulumi_oci/integration/outputs.py +587 -19
  115. pulumi_oci/loadbalancer/_inputs.py +20 -0
  116. pulumi_oci/loadbalancer/listener.py +4 -2
  117. pulumi_oci/loadbalancer/outputs.py +16 -2
  118. pulumi_oci/monitoring/_inputs.py +137 -16
  119. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  120. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  121. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  122. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  123. pulumi_oci/monitoring/outputs.py +291 -18
  124. pulumi_oci/mysql/mysql_db_system.py +7 -7
  125. pulumi_oci/objectstorage/__init__.py +3 -0
  126. pulumi_oci/objectstorage/_inputs.py +97 -0
  127. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  128. pulumi_oci/objectstorage/get_objects.py +6 -6
  129. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  130. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  131. pulumi_oci/objectstorage/outputs.py +258 -0
  132. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  133. pulumi_oci/objectstorage/storage_object.py +7 -7
  134. pulumi_oci/opsi/_inputs.py +268 -114
  135. pulumi_oci/opsi/database_insight.py +162 -21
  136. pulumi_oci/opsi/exadata_insight.py +44 -0
  137. pulumi_oci/opsi/get_database_insight.py +40 -1
  138. pulumi_oci/opsi/get_host_insights.py +2 -2
  139. pulumi_oci/opsi/host_insight.py +0 -48
  140. pulumi_oci/opsi/outputs.py +405 -109
  141. pulumi_oci/pulumi-plugin.json +1 -1
  142. pulumi_oci/securityattribute/__init__.py +15 -0
  143. pulumi_oci/securityattribute/_inputs.py +209 -0
  144. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  145. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  146. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  147. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  148. pulumi_oci/securityattribute/outputs.py +466 -0
  149. pulumi_oci/securityattribute/security_attribute.py +588 -0
  150. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  151. pulumi_oci/stackmonitoring/__init__.py +5 -0
  152. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  153. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  154. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  155. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  156. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  157. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  158. pulumi_oci/stackmonitoring/outputs.py +603 -0
  159. pulumi_oci/zpr/__init__.py +14 -0
  160. pulumi_oci/zpr/_inputs.py +79 -0
  161. pulumi_oci/zpr/configuration.py +516 -0
  162. pulumi_oci/zpr/get_configuration.py +230 -0
  163. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  164. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  165. pulumi_oci/zpr/outputs.py +203 -0
  166. pulumi_oci/zpr/zpr_policy.py +614 -0
  167. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
  168. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
  169. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
  170. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,2057 @@
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
+
17
+ __all__ = [
18
+ 'FleetCredentialEntitySpecificsArgs',
19
+ 'FleetCredentialEntitySpecificsArgsDict',
20
+ 'FleetCredentialPasswordArgs',
21
+ 'FleetCredentialPasswordArgsDict',
22
+ 'FleetCredentialUserArgs',
23
+ 'FleetCredentialUserArgsDict',
24
+ 'FleetNotificationPreferencesArgs',
25
+ 'FleetNotificationPreferencesArgsDict',
26
+ 'FleetNotificationPreferencesPreferencesArgs',
27
+ 'FleetNotificationPreferencesPreferencesArgsDict',
28
+ 'FleetRuleSelectionCriteriaArgs',
29
+ 'FleetRuleSelectionCriteriaArgsDict',
30
+ 'FleetRuleSelectionCriteriaRuleArgs',
31
+ 'FleetRuleSelectionCriteriaRuleArgsDict',
32
+ 'FleetRuleSelectionCriteriaRuleConditionArgs',
33
+ 'FleetRuleSelectionCriteriaRuleConditionArgsDict',
34
+ 'SchedulerDefinitionActionGroupArgs',
35
+ 'SchedulerDefinitionActionGroupArgsDict',
36
+ 'SchedulerDefinitionRunBookArgs',
37
+ 'SchedulerDefinitionRunBookArgsDict',
38
+ 'SchedulerDefinitionRunBookInputParameterArgs',
39
+ 'SchedulerDefinitionRunBookInputParameterArgsDict',
40
+ 'SchedulerDefinitionRunBookInputParameterArgumentArgs',
41
+ 'SchedulerDefinitionRunBookInputParameterArgumentArgsDict',
42
+ 'SchedulerDefinitionScheduleArgs',
43
+ 'SchedulerDefinitionScheduleArgsDict',
44
+ 'GetAnnouncementsFilterArgs',
45
+ 'GetAnnouncementsFilterArgsDict',
46
+ 'GetFleetCredentialsFilterArgs',
47
+ 'GetFleetCredentialsFilterArgsDict',
48
+ 'GetFleetProductsFilterArgs',
49
+ 'GetFleetProductsFilterArgsDict',
50
+ 'GetFleetPropertiesFilterArgs',
51
+ 'GetFleetPropertiesFilterArgsDict',
52
+ 'GetFleetResourcesFilterArgs',
53
+ 'GetFleetResourcesFilterArgsDict',
54
+ 'GetFleetTargetsFilterArgs',
55
+ 'GetFleetTargetsFilterArgsDict',
56
+ 'GetFleetsFilterArgs',
57
+ 'GetFleetsFilterArgsDict',
58
+ 'GetInventoryResourcesFilterArgs',
59
+ 'GetInventoryResourcesFilterArgsDict',
60
+ 'GetMaintenanceWindowsFilterArgs',
61
+ 'GetMaintenanceWindowsFilterArgsDict',
62
+ 'GetOnboardingPoliciesFilterArgs',
63
+ 'GetOnboardingPoliciesFilterArgsDict',
64
+ 'GetOnboardingsFilterArgs',
65
+ 'GetOnboardingsFilterArgsDict',
66
+ 'GetPropertiesFilterArgs',
67
+ 'GetPropertiesFilterArgsDict',
68
+ 'GetRunbooksFilterArgs',
69
+ 'GetRunbooksFilterArgsDict',
70
+ 'GetSchedulerDefinitionScheduledFleetsFilterArgs',
71
+ 'GetSchedulerDefinitionScheduledFleetsFilterArgsDict',
72
+ 'GetSchedulerDefinitionsFilterArgs',
73
+ 'GetSchedulerDefinitionsFilterArgsDict',
74
+ 'GetTaskRecordsFilterArgs',
75
+ 'GetTaskRecordsFilterArgsDict',
76
+ ]
77
+
78
+ MYPY = False
79
+
80
+ if not MYPY:
81
+ class FleetCredentialEntitySpecificsArgsDict(TypedDict):
82
+ credential_level: pulumi.Input[str]
83
+ """
84
+ (Updatable) Credential Level.
85
+ """
86
+ resource_id: pulumi.Input[str]
87
+ """
88
+ (Updatable) OCID of the resource associated with the target for which credential is created
89
+ """
90
+ target: pulumi.Input[str]
91
+ """
92
+ (Updatable) Target associated with the Credential
93
+ """
94
+ elif False:
95
+ FleetCredentialEntitySpecificsArgsDict: TypeAlias = Mapping[str, Any]
96
+
97
+ @pulumi.input_type
98
+ class FleetCredentialEntitySpecificsArgs:
99
+ def __init__(__self__, *,
100
+ credential_level: pulumi.Input[str],
101
+ resource_id: pulumi.Input[str],
102
+ target: pulumi.Input[str]):
103
+ """
104
+ :param pulumi.Input[str] credential_level: (Updatable) Credential Level.
105
+ :param pulumi.Input[str] resource_id: (Updatable) OCID of the resource associated with the target for which credential is created
106
+ :param pulumi.Input[str] target: (Updatable) Target associated with the Credential
107
+ """
108
+ pulumi.set(__self__, "credential_level", credential_level)
109
+ pulumi.set(__self__, "resource_id", resource_id)
110
+ pulumi.set(__self__, "target", target)
111
+
112
+ @property
113
+ @pulumi.getter(name="credentialLevel")
114
+ def credential_level(self) -> pulumi.Input[str]:
115
+ """
116
+ (Updatable) Credential Level.
117
+ """
118
+ return pulumi.get(self, "credential_level")
119
+
120
+ @credential_level.setter
121
+ def credential_level(self, value: pulumi.Input[str]):
122
+ pulumi.set(self, "credential_level", value)
123
+
124
+ @property
125
+ @pulumi.getter(name="resourceId")
126
+ def resource_id(self) -> pulumi.Input[str]:
127
+ """
128
+ (Updatable) OCID of the resource associated with the target for which credential is created
129
+ """
130
+ return pulumi.get(self, "resource_id")
131
+
132
+ @resource_id.setter
133
+ def resource_id(self, value: pulumi.Input[str]):
134
+ pulumi.set(self, "resource_id", value)
135
+
136
+ @property
137
+ @pulumi.getter
138
+ def target(self) -> pulumi.Input[str]:
139
+ """
140
+ (Updatable) Target associated with the Credential
141
+ """
142
+ return pulumi.get(self, "target")
143
+
144
+ @target.setter
145
+ def target(self, value: pulumi.Input[str]):
146
+ pulumi.set(self, "target", value)
147
+
148
+
149
+ if not MYPY:
150
+ class FleetCredentialPasswordArgsDict(TypedDict):
151
+ credential_type: pulumi.Input[str]
152
+ """
153
+ (Updatable) Credential Type
154
+ """
155
+ key_id: NotRequired[pulumi.Input[str]]
156
+ """
157
+ (Updatable) OCID for the Vault Key that will be used to encrypt/decrypt the value given.
158
+ """
159
+ key_version: NotRequired[pulumi.Input[str]]
160
+ """
161
+ (Updatable) The Vault Key version.
162
+ """
163
+ secret_id: NotRequired[pulumi.Input[str]]
164
+ """
165
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret.
166
+ """
167
+ secret_version: NotRequired[pulumi.Input[str]]
168
+ """
169
+ (Updatable) The secret version.
170
+ """
171
+ value: NotRequired[pulumi.Input[str]]
172
+ """
173
+ (Updatable) The value corresponding to the credential
174
+ """
175
+ vault_id: NotRequired[pulumi.Input[str]]
176
+ """
177
+ (Updatable) OCID for the Vault that will be used to fetch key to encrypt/decrypt the value given.
178
+ """
179
+ elif False:
180
+ FleetCredentialPasswordArgsDict: TypeAlias = Mapping[str, Any]
181
+
182
+ @pulumi.input_type
183
+ class FleetCredentialPasswordArgs:
184
+ def __init__(__self__, *,
185
+ credential_type: pulumi.Input[str],
186
+ key_id: Optional[pulumi.Input[str]] = None,
187
+ key_version: Optional[pulumi.Input[str]] = None,
188
+ secret_id: Optional[pulumi.Input[str]] = None,
189
+ secret_version: Optional[pulumi.Input[str]] = None,
190
+ value: Optional[pulumi.Input[str]] = None,
191
+ vault_id: Optional[pulumi.Input[str]] = None):
192
+ """
193
+ :param pulumi.Input[str] credential_type: (Updatable) Credential Type
194
+ :param pulumi.Input[str] key_id: (Updatable) OCID for the Vault Key that will be used to encrypt/decrypt the value given.
195
+ :param pulumi.Input[str] key_version: (Updatable) The Vault Key version.
196
+ :param pulumi.Input[str] secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret.
197
+ :param pulumi.Input[str] secret_version: (Updatable) The secret version.
198
+ :param pulumi.Input[str] value: (Updatable) The value corresponding to the credential
199
+ :param pulumi.Input[str] vault_id: (Updatable) OCID for the Vault that will be used to fetch key to encrypt/decrypt the value given.
200
+ """
201
+ pulumi.set(__self__, "credential_type", credential_type)
202
+ if key_id is not None:
203
+ pulumi.set(__self__, "key_id", key_id)
204
+ if key_version is not None:
205
+ pulumi.set(__self__, "key_version", key_version)
206
+ if secret_id is not None:
207
+ pulumi.set(__self__, "secret_id", secret_id)
208
+ if secret_version is not None:
209
+ pulumi.set(__self__, "secret_version", secret_version)
210
+ if value is not None:
211
+ pulumi.set(__self__, "value", value)
212
+ if vault_id is not None:
213
+ pulumi.set(__self__, "vault_id", vault_id)
214
+
215
+ @property
216
+ @pulumi.getter(name="credentialType")
217
+ def credential_type(self) -> pulumi.Input[str]:
218
+ """
219
+ (Updatable) Credential Type
220
+ """
221
+ return pulumi.get(self, "credential_type")
222
+
223
+ @credential_type.setter
224
+ def credential_type(self, value: pulumi.Input[str]):
225
+ pulumi.set(self, "credential_type", value)
226
+
227
+ @property
228
+ @pulumi.getter(name="keyId")
229
+ def key_id(self) -> Optional[pulumi.Input[str]]:
230
+ """
231
+ (Updatable) OCID for the Vault Key that will be used to encrypt/decrypt the value given.
232
+ """
233
+ return pulumi.get(self, "key_id")
234
+
235
+ @key_id.setter
236
+ def key_id(self, value: Optional[pulumi.Input[str]]):
237
+ pulumi.set(self, "key_id", value)
238
+
239
+ @property
240
+ @pulumi.getter(name="keyVersion")
241
+ def key_version(self) -> Optional[pulumi.Input[str]]:
242
+ """
243
+ (Updatable) The Vault Key version.
244
+ """
245
+ return pulumi.get(self, "key_version")
246
+
247
+ @key_version.setter
248
+ def key_version(self, value: Optional[pulumi.Input[str]]):
249
+ pulumi.set(self, "key_version", value)
250
+
251
+ @property
252
+ @pulumi.getter(name="secretId")
253
+ def secret_id(self) -> Optional[pulumi.Input[str]]:
254
+ """
255
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret.
256
+ """
257
+ return pulumi.get(self, "secret_id")
258
+
259
+ @secret_id.setter
260
+ def secret_id(self, value: Optional[pulumi.Input[str]]):
261
+ pulumi.set(self, "secret_id", value)
262
+
263
+ @property
264
+ @pulumi.getter(name="secretVersion")
265
+ def secret_version(self) -> Optional[pulumi.Input[str]]:
266
+ """
267
+ (Updatable) The secret version.
268
+ """
269
+ return pulumi.get(self, "secret_version")
270
+
271
+ @secret_version.setter
272
+ def secret_version(self, value: Optional[pulumi.Input[str]]):
273
+ pulumi.set(self, "secret_version", value)
274
+
275
+ @property
276
+ @pulumi.getter
277
+ def value(self) -> Optional[pulumi.Input[str]]:
278
+ """
279
+ (Updatable) The value corresponding to the credential
280
+ """
281
+ return pulumi.get(self, "value")
282
+
283
+ @value.setter
284
+ def value(self, value: Optional[pulumi.Input[str]]):
285
+ pulumi.set(self, "value", value)
286
+
287
+ @property
288
+ @pulumi.getter(name="vaultId")
289
+ def vault_id(self) -> Optional[pulumi.Input[str]]:
290
+ """
291
+ (Updatable) OCID for the Vault that will be used to fetch key to encrypt/decrypt the value given.
292
+ """
293
+ return pulumi.get(self, "vault_id")
294
+
295
+ @vault_id.setter
296
+ def vault_id(self, value: Optional[pulumi.Input[str]]):
297
+ pulumi.set(self, "vault_id", value)
298
+
299
+
300
+ if not MYPY:
301
+ class FleetCredentialUserArgsDict(TypedDict):
302
+ credential_type: pulumi.Input[str]
303
+ """
304
+ (Updatable) Credential Type
305
+ """
306
+ key_id: NotRequired[pulumi.Input[str]]
307
+ """
308
+ (Updatable) OCID for the Vault Key that will be used to encrypt/decrypt the value given.
309
+ """
310
+ key_version: NotRequired[pulumi.Input[str]]
311
+ """
312
+ (Updatable) The Vault Key version.
313
+ """
314
+ secret_id: NotRequired[pulumi.Input[str]]
315
+ """
316
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret.
317
+ """
318
+ secret_version: NotRequired[pulumi.Input[str]]
319
+ """
320
+ (Updatable) The secret version.
321
+ """
322
+ value: NotRequired[pulumi.Input[str]]
323
+ """
324
+ (Updatable) The value corresponding to the credential
325
+ """
326
+ vault_id: NotRequired[pulumi.Input[str]]
327
+ """
328
+ (Updatable) OCID for the Vault that will be used to fetch key to encrypt/decrypt the value given.
329
+
330
+
331
+ ** IMPORTANT **
332
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
333
+ """
334
+ elif False:
335
+ FleetCredentialUserArgsDict: TypeAlias = Mapping[str, Any]
336
+
337
+ @pulumi.input_type
338
+ class FleetCredentialUserArgs:
339
+ def __init__(__self__, *,
340
+ credential_type: pulumi.Input[str],
341
+ key_id: Optional[pulumi.Input[str]] = None,
342
+ key_version: Optional[pulumi.Input[str]] = None,
343
+ secret_id: Optional[pulumi.Input[str]] = None,
344
+ secret_version: Optional[pulumi.Input[str]] = None,
345
+ value: Optional[pulumi.Input[str]] = None,
346
+ vault_id: Optional[pulumi.Input[str]] = None):
347
+ """
348
+ :param pulumi.Input[str] credential_type: (Updatable) Credential Type
349
+ :param pulumi.Input[str] key_id: (Updatable) OCID for the Vault Key that will be used to encrypt/decrypt the value given.
350
+ :param pulumi.Input[str] key_version: (Updatable) The Vault Key version.
351
+ :param pulumi.Input[str] secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret.
352
+ :param pulumi.Input[str] secret_version: (Updatable) The secret version.
353
+ :param pulumi.Input[str] value: (Updatable) The value corresponding to the credential
354
+ :param pulumi.Input[str] vault_id: (Updatable) OCID for the Vault that will be used to fetch key to encrypt/decrypt the value given.
355
+
356
+
357
+ ** IMPORTANT **
358
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
359
+ """
360
+ pulumi.set(__self__, "credential_type", credential_type)
361
+ if key_id is not None:
362
+ pulumi.set(__self__, "key_id", key_id)
363
+ if key_version is not None:
364
+ pulumi.set(__self__, "key_version", key_version)
365
+ if secret_id is not None:
366
+ pulumi.set(__self__, "secret_id", secret_id)
367
+ if secret_version is not None:
368
+ pulumi.set(__self__, "secret_version", secret_version)
369
+ if value is not None:
370
+ pulumi.set(__self__, "value", value)
371
+ if vault_id is not None:
372
+ pulumi.set(__self__, "vault_id", vault_id)
373
+
374
+ @property
375
+ @pulumi.getter(name="credentialType")
376
+ def credential_type(self) -> pulumi.Input[str]:
377
+ """
378
+ (Updatable) Credential Type
379
+ """
380
+ return pulumi.get(self, "credential_type")
381
+
382
+ @credential_type.setter
383
+ def credential_type(self, value: pulumi.Input[str]):
384
+ pulumi.set(self, "credential_type", value)
385
+
386
+ @property
387
+ @pulumi.getter(name="keyId")
388
+ def key_id(self) -> Optional[pulumi.Input[str]]:
389
+ """
390
+ (Updatable) OCID for the Vault Key that will be used to encrypt/decrypt the value given.
391
+ """
392
+ return pulumi.get(self, "key_id")
393
+
394
+ @key_id.setter
395
+ def key_id(self, value: Optional[pulumi.Input[str]]):
396
+ pulumi.set(self, "key_id", value)
397
+
398
+ @property
399
+ @pulumi.getter(name="keyVersion")
400
+ def key_version(self) -> Optional[pulumi.Input[str]]:
401
+ """
402
+ (Updatable) The Vault Key version.
403
+ """
404
+ return pulumi.get(self, "key_version")
405
+
406
+ @key_version.setter
407
+ def key_version(self, value: Optional[pulumi.Input[str]]):
408
+ pulumi.set(self, "key_version", value)
409
+
410
+ @property
411
+ @pulumi.getter(name="secretId")
412
+ def secret_id(self) -> Optional[pulumi.Input[str]]:
413
+ """
414
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret.
415
+ """
416
+ return pulumi.get(self, "secret_id")
417
+
418
+ @secret_id.setter
419
+ def secret_id(self, value: Optional[pulumi.Input[str]]):
420
+ pulumi.set(self, "secret_id", value)
421
+
422
+ @property
423
+ @pulumi.getter(name="secretVersion")
424
+ def secret_version(self) -> Optional[pulumi.Input[str]]:
425
+ """
426
+ (Updatable) The secret version.
427
+ """
428
+ return pulumi.get(self, "secret_version")
429
+
430
+ @secret_version.setter
431
+ def secret_version(self, value: Optional[pulumi.Input[str]]):
432
+ pulumi.set(self, "secret_version", value)
433
+
434
+ @property
435
+ @pulumi.getter
436
+ def value(self) -> Optional[pulumi.Input[str]]:
437
+ """
438
+ (Updatable) The value corresponding to the credential
439
+ """
440
+ return pulumi.get(self, "value")
441
+
442
+ @value.setter
443
+ def value(self, value: Optional[pulumi.Input[str]]):
444
+ pulumi.set(self, "value", value)
445
+
446
+ @property
447
+ @pulumi.getter(name="vaultId")
448
+ def vault_id(self) -> Optional[pulumi.Input[str]]:
449
+ """
450
+ (Updatable) OCID for the Vault that will be used to fetch key to encrypt/decrypt the value given.
451
+
452
+
453
+ ** IMPORTANT **
454
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
455
+ """
456
+ return pulumi.get(self, "vault_id")
457
+
458
+ @vault_id.setter
459
+ def vault_id(self, value: Optional[pulumi.Input[str]]):
460
+ pulumi.set(self, "vault_id", value)
461
+
462
+
463
+ if not MYPY:
464
+ class FleetNotificationPreferencesArgsDict(TypedDict):
465
+ compartment_id: pulumi.Input[str]
466
+ """
467
+ (Updatable) Copartment Id of the topic where the notifications will be directed
468
+ """
469
+ topic_id: pulumi.Input[str]
470
+ """
471
+ (Updatable) Topic Id where the notifications will be directed
472
+ """
473
+ preferences: NotRequired[pulumi.Input['FleetNotificationPreferencesPreferencesArgsDict']]
474
+ """
475
+ (Updatable) Preferences to send notifications on the fleet activities
476
+ """
477
+ elif False:
478
+ FleetNotificationPreferencesArgsDict: TypeAlias = Mapping[str, Any]
479
+
480
+ @pulumi.input_type
481
+ class FleetNotificationPreferencesArgs:
482
+ def __init__(__self__, *,
483
+ compartment_id: pulumi.Input[str],
484
+ topic_id: pulumi.Input[str],
485
+ preferences: Optional[pulumi.Input['FleetNotificationPreferencesPreferencesArgs']] = None):
486
+ """
487
+ :param pulumi.Input[str] compartment_id: (Updatable) Copartment Id of the topic where the notifications will be directed
488
+ :param pulumi.Input[str] topic_id: (Updatable) Topic Id where the notifications will be directed
489
+ :param pulumi.Input['FleetNotificationPreferencesPreferencesArgs'] preferences: (Updatable) Preferences to send notifications on the fleet activities
490
+ """
491
+ pulumi.set(__self__, "compartment_id", compartment_id)
492
+ pulumi.set(__self__, "topic_id", topic_id)
493
+ if preferences is not None:
494
+ pulumi.set(__self__, "preferences", preferences)
495
+
496
+ @property
497
+ @pulumi.getter(name="compartmentId")
498
+ def compartment_id(self) -> pulumi.Input[str]:
499
+ """
500
+ (Updatable) Copartment Id of the topic where the notifications will be directed
501
+ """
502
+ return pulumi.get(self, "compartment_id")
503
+
504
+ @compartment_id.setter
505
+ def compartment_id(self, value: pulumi.Input[str]):
506
+ pulumi.set(self, "compartment_id", value)
507
+
508
+ @property
509
+ @pulumi.getter(name="topicId")
510
+ def topic_id(self) -> pulumi.Input[str]:
511
+ """
512
+ (Updatable) Topic Id where the notifications will be directed
513
+ """
514
+ return pulumi.get(self, "topic_id")
515
+
516
+ @topic_id.setter
517
+ def topic_id(self, value: pulumi.Input[str]):
518
+ pulumi.set(self, "topic_id", value)
519
+
520
+ @property
521
+ @pulumi.getter
522
+ def preferences(self) -> Optional[pulumi.Input['FleetNotificationPreferencesPreferencesArgs']]:
523
+ """
524
+ (Updatable) Preferences to send notifications on the fleet activities
525
+ """
526
+ return pulumi.get(self, "preferences")
527
+
528
+ @preferences.setter
529
+ def preferences(self, value: Optional[pulumi.Input['FleetNotificationPreferencesPreferencesArgs']]):
530
+ pulumi.set(self, "preferences", value)
531
+
532
+
533
+ if not MYPY:
534
+ class FleetNotificationPreferencesPreferencesArgsDict(TypedDict):
535
+ on_job_failure: NotRequired[pulumi.Input[bool]]
536
+ """
537
+ (Updatable) Enables or disables notification on Job Failures.'
538
+ """
539
+ on_topology_modification: NotRequired[pulumi.Input[bool]]
540
+ """
541
+ (Updatable) Enables or disables notification on Environment Fleet Topology Modification.
542
+ """
543
+ on_upcoming_schedule: NotRequired[pulumi.Input[bool]]
544
+ """
545
+ (Updatable) Enables notification on upcoming schedule.
546
+ """
547
+ elif False:
548
+ FleetNotificationPreferencesPreferencesArgsDict: TypeAlias = Mapping[str, Any]
549
+
550
+ @pulumi.input_type
551
+ class FleetNotificationPreferencesPreferencesArgs:
552
+ def __init__(__self__, *,
553
+ on_job_failure: Optional[pulumi.Input[bool]] = None,
554
+ on_topology_modification: Optional[pulumi.Input[bool]] = None,
555
+ on_upcoming_schedule: Optional[pulumi.Input[bool]] = None):
556
+ """
557
+ :param pulumi.Input[bool] on_job_failure: (Updatable) Enables or disables notification on Job Failures.'
558
+ :param pulumi.Input[bool] on_topology_modification: (Updatable) Enables or disables notification on Environment Fleet Topology Modification.
559
+ :param pulumi.Input[bool] on_upcoming_schedule: (Updatable) Enables notification on upcoming schedule.
560
+ """
561
+ if on_job_failure is not None:
562
+ pulumi.set(__self__, "on_job_failure", on_job_failure)
563
+ if on_topology_modification is not None:
564
+ pulumi.set(__self__, "on_topology_modification", on_topology_modification)
565
+ if on_upcoming_schedule is not None:
566
+ pulumi.set(__self__, "on_upcoming_schedule", on_upcoming_schedule)
567
+
568
+ @property
569
+ @pulumi.getter(name="onJobFailure")
570
+ def on_job_failure(self) -> Optional[pulumi.Input[bool]]:
571
+ """
572
+ (Updatable) Enables or disables notification on Job Failures.'
573
+ """
574
+ return pulumi.get(self, "on_job_failure")
575
+
576
+ @on_job_failure.setter
577
+ def on_job_failure(self, value: Optional[pulumi.Input[bool]]):
578
+ pulumi.set(self, "on_job_failure", value)
579
+
580
+ @property
581
+ @pulumi.getter(name="onTopologyModification")
582
+ def on_topology_modification(self) -> Optional[pulumi.Input[bool]]:
583
+ """
584
+ (Updatable) Enables or disables notification on Environment Fleet Topology Modification.
585
+ """
586
+ return pulumi.get(self, "on_topology_modification")
587
+
588
+ @on_topology_modification.setter
589
+ def on_topology_modification(self, value: Optional[pulumi.Input[bool]]):
590
+ pulumi.set(self, "on_topology_modification", value)
591
+
592
+ @property
593
+ @pulumi.getter(name="onUpcomingSchedule")
594
+ def on_upcoming_schedule(self) -> Optional[pulumi.Input[bool]]:
595
+ """
596
+ (Updatable) Enables notification on upcoming schedule.
597
+ """
598
+ return pulumi.get(self, "on_upcoming_schedule")
599
+
600
+ @on_upcoming_schedule.setter
601
+ def on_upcoming_schedule(self, value: Optional[pulumi.Input[bool]]):
602
+ pulumi.set(self, "on_upcoming_schedule", value)
603
+
604
+
605
+ if not MYPY:
606
+ class FleetRuleSelectionCriteriaArgsDict(TypedDict):
607
+ match_condition: pulumi.Input[str]
608
+ """
609
+ (Updatable) Rule selection match condition.
610
+ """
611
+ rules: pulumi.Input[Sequence[pulumi.Input['FleetRuleSelectionCriteriaRuleArgsDict']]]
612
+ """
613
+ (Updatable) Rules.
614
+ """
615
+ elif False:
616
+ FleetRuleSelectionCriteriaArgsDict: TypeAlias = Mapping[str, Any]
617
+
618
+ @pulumi.input_type
619
+ class FleetRuleSelectionCriteriaArgs:
620
+ def __init__(__self__, *,
621
+ match_condition: pulumi.Input[str],
622
+ rules: pulumi.Input[Sequence[pulumi.Input['FleetRuleSelectionCriteriaRuleArgs']]]):
623
+ """
624
+ :param pulumi.Input[str] match_condition: (Updatable) Rule selection match condition.
625
+ :param pulumi.Input[Sequence[pulumi.Input['FleetRuleSelectionCriteriaRuleArgs']]] rules: (Updatable) Rules.
626
+ """
627
+ pulumi.set(__self__, "match_condition", match_condition)
628
+ pulumi.set(__self__, "rules", rules)
629
+
630
+ @property
631
+ @pulumi.getter(name="matchCondition")
632
+ def match_condition(self) -> pulumi.Input[str]:
633
+ """
634
+ (Updatable) Rule selection match condition.
635
+ """
636
+ return pulumi.get(self, "match_condition")
637
+
638
+ @match_condition.setter
639
+ def match_condition(self, value: pulumi.Input[str]):
640
+ pulumi.set(self, "match_condition", value)
641
+
642
+ @property
643
+ @pulumi.getter
644
+ def rules(self) -> pulumi.Input[Sequence[pulumi.Input['FleetRuleSelectionCriteriaRuleArgs']]]:
645
+ """
646
+ (Updatable) Rules.
647
+ """
648
+ return pulumi.get(self, "rules")
649
+
650
+ @rules.setter
651
+ def rules(self, value: pulumi.Input[Sequence[pulumi.Input['FleetRuleSelectionCriteriaRuleArgs']]]):
652
+ pulumi.set(self, "rules", value)
653
+
654
+
655
+ if not MYPY:
656
+ class FleetRuleSelectionCriteriaRuleArgsDict(TypedDict):
657
+ compartment_id: pulumi.Input[str]
658
+ """
659
+ (Updatable) Please provide the root compartmentId (TenancyId).
660
+ """
661
+ conditions: pulumi.Input[Sequence[pulumi.Input['FleetRuleSelectionCriteriaRuleConditionArgsDict']]]
662
+ """
663
+ (Updatable) Rule Conditions
664
+ """
665
+ resource_compartment_id: pulumi.Input[str]
666
+ """
667
+ (Updatable) Resource Compartment Id.Provide the compartmentId the resource belongs to.
668
+
669
+
670
+ ** IMPORTANT **
671
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
672
+ """
673
+ basis: NotRequired[pulumi.Input[str]]
674
+ """
675
+ (Updatable) Rule to be be applied on.
676
+ """
677
+ elif False:
678
+ FleetRuleSelectionCriteriaRuleArgsDict: TypeAlias = Mapping[str, Any]
679
+
680
+ @pulumi.input_type
681
+ class FleetRuleSelectionCriteriaRuleArgs:
682
+ def __init__(__self__, *,
683
+ compartment_id: pulumi.Input[str],
684
+ conditions: pulumi.Input[Sequence[pulumi.Input['FleetRuleSelectionCriteriaRuleConditionArgs']]],
685
+ resource_compartment_id: pulumi.Input[str],
686
+ basis: Optional[pulumi.Input[str]] = None):
687
+ """
688
+ :param pulumi.Input[str] compartment_id: (Updatable) Please provide the root compartmentId (TenancyId).
689
+ :param pulumi.Input[Sequence[pulumi.Input['FleetRuleSelectionCriteriaRuleConditionArgs']]] conditions: (Updatable) Rule Conditions
690
+ :param pulumi.Input[str] resource_compartment_id: (Updatable) Resource Compartment Id.Provide the compartmentId the resource belongs to.
691
+
692
+
693
+ ** IMPORTANT **
694
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
695
+ :param pulumi.Input[str] basis: (Updatable) Rule to be be applied on.
696
+ """
697
+ pulumi.set(__self__, "compartment_id", compartment_id)
698
+ pulumi.set(__self__, "conditions", conditions)
699
+ pulumi.set(__self__, "resource_compartment_id", resource_compartment_id)
700
+ if basis is not None:
701
+ pulumi.set(__self__, "basis", basis)
702
+
703
+ @property
704
+ @pulumi.getter(name="compartmentId")
705
+ def compartment_id(self) -> pulumi.Input[str]:
706
+ """
707
+ (Updatable) Please provide the root compartmentId (TenancyId).
708
+ """
709
+ return pulumi.get(self, "compartment_id")
710
+
711
+ @compartment_id.setter
712
+ def compartment_id(self, value: pulumi.Input[str]):
713
+ pulumi.set(self, "compartment_id", value)
714
+
715
+ @property
716
+ @pulumi.getter
717
+ def conditions(self) -> pulumi.Input[Sequence[pulumi.Input['FleetRuleSelectionCriteriaRuleConditionArgs']]]:
718
+ """
719
+ (Updatable) Rule Conditions
720
+ """
721
+ return pulumi.get(self, "conditions")
722
+
723
+ @conditions.setter
724
+ def conditions(self, value: pulumi.Input[Sequence[pulumi.Input['FleetRuleSelectionCriteriaRuleConditionArgs']]]):
725
+ pulumi.set(self, "conditions", value)
726
+
727
+ @property
728
+ @pulumi.getter(name="resourceCompartmentId")
729
+ def resource_compartment_id(self) -> pulumi.Input[str]:
730
+ """
731
+ (Updatable) Resource Compartment Id.Provide the compartmentId the resource belongs to.
732
+
733
+
734
+ ** IMPORTANT **
735
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
736
+ """
737
+ return pulumi.get(self, "resource_compartment_id")
738
+
739
+ @resource_compartment_id.setter
740
+ def resource_compartment_id(self, value: pulumi.Input[str]):
741
+ pulumi.set(self, "resource_compartment_id", value)
742
+
743
+ @property
744
+ @pulumi.getter
745
+ def basis(self) -> Optional[pulumi.Input[str]]:
746
+ """
747
+ (Updatable) Rule to be be applied on.
748
+ """
749
+ return pulumi.get(self, "basis")
750
+
751
+ @basis.setter
752
+ def basis(self, value: Optional[pulumi.Input[str]]):
753
+ pulumi.set(self, "basis", value)
754
+
755
+
756
+ if not MYPY:
757
+ class FleetRuleSelectionCriteriaRuleConditionArgsDict(TypedDict):
758
+ attr_group: pulumi.Input[str]
759
+ """
760
+ (Updatable) Attribute Group.
761
+ """
762
+ attr_key: pulumi.Input[str]
763
+ """
764
+ (Updatable) Attribute Key.
765
+ """
766
+ attr_value: pulumi.Input[str]
767
+ """
768
+ (Updatable) Attribute Value.
769
+ """
770
+ elif False:
771
+ FleetRuleSelectionCriteriaRuleConditionArgsDict: TypeAlias = Mapping[str, Any]
772
+
773
+ @pulumi.input_type
774
+ class FleetRuleSelectionCriteriaRuleConditionArgs:
775
+ def __init__(__self__, *,
776
+ attr_group: pulumi.Input[str],
777
+ attr_key: pulumi.Input[str],
778
+ attr_value: pulumi.Input[str]):
779
+ """
780
+ :param pulumi.Input[str] attr_group: (Updatable) Attribute Group.
781
+ :param pulumi.Input[str] attr_key: (Updatable) Attribute Key.
782
+ :param pulumi.Input[str] attr_value: (Updatable) Attribute Value.
783
+ """
784
+ pulumi.set(__self__, "attr_group", attr_group)
785
+ pulumi.set(__self__, "attr_key", attr_key)
786
+ pulumi.set(__self__, "attr_value", attr_value)
787
+
788
+ @property
789
+ @pulumi.getter(name="attrGroup")
790
+ def attr_group(self) -> pulumi.Input[str]:
791
+ """
792
+ (Updatable) Attribute Group.
793
+ """
794
+ return pulumi.get(self, "attr_group")
795
+
796
+ @attr_group.setter
797
+ def attr_group(self, value: pulumi.Input[str]):
798
+ pulumi.set(self, "attr_group", value)
799
+
800
+ @property
801
+ @pulumi.getter(name="attrKey")
802
+ def attr_key(self) -> pulumi.Input[str]:
803
+ """
804
+ (Updatable) Attribute Key.
805
+ """
806
+ return pulumi.get(self, "attr_key")
807
+
808
+ @attr_key.setter
809
+ def attr_key(self, value: pulumi.Input[str]):
810
+ pulumi.set(self, "attr_key", value)
811
+
812
+ @property
813
+ @pulumi.getter(name="attrValue")
814
+ def attr_value(self) -> pulumi.Input[str]:
815
+ """
816
+ (Updatable) Attribute Value.
817
+ """
818
+ return pulumi.get(self, "attr_value")
819
+
820
+ @attr_value.setter
821
+ def attr_value(self, value: pulumi.Input[str]):
822
+ pulumi.set(self, "attr_value", value)
823
+
824
+
825
+ if not MYPY:
826
+ class SchedulerDefinitionActionGroupArgsDict(TypedDict):
827
+ resource_id: pulumi.Input[str]
828
+ """
829
+ (Updatable) Provide the ID of the resource; Ex- fleetId.
830
+ """
831
+ runbook_id: pulumi.Input[str]
832
+ """
833
+ (Updatable) ID of the runbook
834
+ """
835
+ application_type: NotRequired[pulumi.Input[str]]
836
+ """
837
+ (Updatable) Application Type associated. Only applicable if type is ENVIRONMENT.
838
+ """
839
+ lifecycle_operation: NotRequired[pulumi.Input[str]]
840
+ """
841
+ (Updatable) LifeCycle Operation
842
+ """
843
+ product: NotRequired[pulumi.Input[str]]
844
+ """
845
+ (Updatable) Product associated. Only applicable if type is PRODUCT.
846
+ """
847
+ subjects: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
848
+ """
849
+ (Updatable) Provide subjects that need to be considered for the schedule.
850
+ """
851
+ target_id: NotRequired[pulumi.Input[str]]
852
+ """
853
+ (Updatable) Provide the target if schedule is created against the target
854
+ """
855
+ type: NotRequired[pulumi.Input[str]]
856
+ """
857
+ (Updatable) ActionGroup Type associated.
858
+ """
859
+ elif False:
860
+ SchedulerDefinitionActionGroupArgsDict: TypeAlias = Mapping[str, Any]
861
+
862
+ @pulumi.input_type
863
+ class SchedulerDefinitionActionGroupArgs:
864
+ def __init__(__self__, *,
865
+ resource_id: pulumi.Input[str],
866
+ runbook_id: pulumi.Input[str],
867
+ application_type: Optional[pulumi.Input[str]] = None,
868
+ lifecycle_operation: Optional[pulumi.Input[str]] = None,
869
+ product: Optional[pulumi.Input[str]] = None,
870
+ subjects: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
871
+ target_id: Optional[pulumi.Input[str]] = None,
872
+ type: Optional[pulumi.Input[str]] = None):
873
+ """
874
+ :param pulumi.Input[str] resource_id: (Updatable) Provide the ID of the resource; Ex- fleetId.
875
+ :param pulumi.Input[str] runbook_id: (Updatable) ID of the runbook
876
+ :param pulumi.Input[str] application_type: (Updatable) Application Type associated. Only applicable if type is ENVIRONMENT.
877
+ :param pulumi.Input[str] lifecycle_operation: (Updatable) LifeCycle Operation
878
+ :param pulumi.Input[str] product: (Updatable) Product associated. Only applicable if type is PRODUCT.
879
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] subjects: (Updatable) Provide subjects that need to be considered for the schedule.
880
+ :param pulumi.Input[str] target_id: (Updatable) Provide the target if schedule is created against the target
881
+ :param pulumi.Input[str] type: (Updatable) ActionGroup Type associated.
882
+ """
883
+ pulumi.set(__self__, "resource_id", resource_id)
884
+ pulumi.set(__self__, "runbook_id", runbook_id)
885
+ if application_type is not None:
886
+ pulumi.set(__self__, "application_type", application_type)
887
+ if lifecycle_operation is not None:
888
+ pulumi.set(__self__, "lifecycle_operation", lifecycle_operation)
889
+ if product is not None:
890
+ pulumi.set(__self__, "product", product)
891
+ if subjects is not None:
892
+ pulumi.set(__self__, "subjects", subjects)
893
+ if target_id is not None:
894
+ pulumi.set(__self__, "target_id", target_id)
895
+ if type is not None:
896
+ pulumi.set(__self__, "type", type)
897
+
898
+ @property
899
+ @pulumi.getter(name="resourceId")
900
+ def resource_id(self) -> pulumi.Input[str]:
901
+ """
902
+ (Updatable) Provide the ID of the resource; Ex- fleetId.
903
+ """
904
+ return pulumi.get(self, "resource_id")
905
+
906
+ @resource_id.setter
907
+ def resource_id(self, value: pulumi.Input[str]):
908
+ pulumi.set(self, "resource_id", value)
909
+
910
+ @property
911
+ @pulumi.getter(name="runbookId")
912
+ def runbook_id(self) -> pulumi.Input[str]:
913
+ """
914
+ (Updatable) ID of the runbook
915
+ """
916
+ return pulumi.get(self, "runbook_id")
917
+
918
+ @runbook_id.setter
919
+ def runbook_id(self, value: pulumi.Input[str]):
920
+ pulumi.set(self, "runbook_id", value)
921
+
922
+ @property
923
+ @pulumi.getter(name="applicationType")
924
+ def application_type(self) -> Optional[pulumi.Input[str]]:
925
+ """
926
+ (Updatable) Application Type associated. Only applicable if type is ENVIRONMENT.
927
+ """
928
+ return pulumi.get(self, "application_type")
929
+
930
+ @application_type.setter
931
+ def application_type(self, value: Optional[pulumi.Input[str]]):
932
+ pulumi.set(self, "application_type", value)
933
+
934
+ @property
935
+ @pulumi.getter(name="lifecycleOperation")
936
+ def lifecycle_operation(self) -> Optional[pulumi.Input[str]]:
937
+ """
938
+ (Updatable) LifeCycle Operation
939
+ """
940
+ return pulumi.get(self, "lifecycle_operation")
941
+
942
+ @lifecycle_operation.setter
943
+ def lifecycle_operation(self, value: Optional[pulumi.Input[str]]):
944
+ pulumi.set(self, "lifecycle_operation", value)
945
+
946
+ @property
947
+ @pulumi.getter
948
+ def product(self) -> Optional[pulumi.Input[str]]:
949
+ """
950
+ (Updatable) Product associated. Only applicable if type is PRODUCT.
951
+ """
952
+ return pulumi.get(self, "product")
953
+
954
+ @product.setter
955
+ def product(self, value: Optional[pulumi.Input[str]]):
956
+ pulumi.set(self, "product", value)
957
+
958
+ @property
959
+ @pulumi.getter
960
+ def subjects(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
961
+ """
962
+ (Updatable) Provide subjects that need to be considered for the schedule.
963
+ """
964
+ return pulumi.get(self, "subjects")
965
+
966
+ @subjects.setter
967
+ def subjects(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
968
+ pulumi.set(self, "subjects", value)
969
+
970
+ @property
971
+ @pulumi.getter(name="targetId")
972
+ def target_id(self) -> Optional[pulumi.Input[str]]:
973
+ """
974
+ (Updatable) Provide the target if schedule is created against the target
975
+ """
976
+ return pulumi.get(self, "target_id")
977
+
978
+ @target_id.setter
979
+ def target_id(self, value: Optional[pulumi.Input[str]]):
980
+ pulumi.set(self, "target_id", value)
981
+
982
+ @property
983
+ @pulumi.getter
984
+ def type(self) -> Optional[pulumi.Input[str]]:
985
+ """
986
+ (Updatable) ActionGroup Type associated.
987
+ """
988
+ return pulumi.get(self, "type")
989
+
990
+ @type.setter
991
+ def type(self, value: Optional[pulumi.Input[str]]):
992
+ pulumi.set(self, "type", value)
993
+
994
+
995
+ if not MYPY:
996
+ class SchedulerDefinitionRunBookArgsDict(TypedDict):
997
+ id: pulumi.Input[str]
998
+ """
999
+ (Updatable) The ID of the Runbook
1000
+ """
1001
+ input_parameters: NotRequired[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookInputParameterArgsDict']]]]
1002
+ """
1003
+ (Updatable) Input Parameters for the Task
1004
+ """
1005
+ elif False:
1006
+ SchedulerDefinitionRunBookArgsDict: TypeAlias = Mapping[str, Any]
1007
+
1008
+ @pulumi.input_type
1009
+ class SchedulerDefinitionRunBookArgs:
1010
+ def __init__(__self__, *,
1011
+ id: pulumi.Input[str],
1012
+ input_parameters: Optional[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookInputParameterArgs']]]] = None):
1013
+ """
1014
+ :param pulumi.Input[str] id: (Updatable) The ID of the Runbook
1015
+ :param pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookInputParameterArgs']]] input_parameters: (Updatable) Input Parameters for the Task
1016
+ """
1017
+ pulumi.set(__self__, "id", id)
1018
+ if input_parameters is not None:
1019
+ pulumi.set(__self__, "input_parameters", input_parameters)
1020
+
1021
+ @property
1022
+ @pulumi.getter
1023
+ def id(self) -> pulumi.Input[str]:
1024
+ """
1025
+ (Updatable) The ID of the Runbook
1026
+ """
1027
+ return pulumi.get(self, "id")
1028
+
1029
+ @id.setter
1030
+ def id(self, value: pulumi.Input[str]):
1031
+ pulumi.set(self, "id", value)
1032
+
1033
+ @property
1034
+ @pulumi.getter(name="inputParameters")
1035
+ def input_parameters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookInputParameterArgs']]]]:
1036
+ """
1037
+ (Updatable) Input Parameters for the Task
1038
+ """
1039
+ return pulumi.get(self, "input_parameters")
1040
+
1041
+ @input_parameters.setter
1042
+ def input_parameters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookInputParameterArgs']]]]):
1043
+ pulumi.set(self, "input_parameters", value)
1044
+
1045
+
1046
+ if not MYPY:
1047
+ class SchedulerDefinitionRunBookInputParameterArgsDict(TypedDict):
1048
+ step_name: pulumi.Input[str]
1049
+ """
1050
+ (Updatable) stepName for which the input parameters are provided
1051
+ """
1052
+ arguments: NotRequired[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookInputParameterArgumentArgsDict']]]]
1053
+ """
1054
+ (Updatable) Arguments for the Task
1055
+ """
1056
+ elif False:
1057
+ SchedulerDefinitionRunBookInputParameterArgsDict: TypeAlias = Mapping[str, Any]
1058
+
1059
+ @pulumi.input_type
1060
+ class SchedulerDefinitionRunBookInputParameterArgs:
1061
+ def __init__(__self__, *,
1062
+ step_name: pulumi.Input[str],
1063
+ arguments: Optional[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookInputParameterArgumentArgs']]]] = None):
1064
+ """
1065
+ :param pulumi.Input[str] step_name: (Updatable) stepName for which the input parameters are provided
1066
+ :param pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookInputParameterArgumentArgs']]] arguments: (Updatable) Arguments for the Task
1067
+ """
1068
+ pulumi.set(__self__, "step_name", step_name)
1069
+ if arguments is not None:
1070
+ pulumi.set(__self__, "arguments", arguments)
1071
+
1072
+ @property
1073
+ @pulumi.getter(name="stepName")
1074
+ def step_name(self) -> pulumi.Input[str]:
1075
+ """
1076
+ (Updatable) stepName for which the input parameters are provided
1077
+ """
1078
+ return pulumi.get(self, "step_name")
1079
+
1080
+ @step_name.setter
1081
+ def step_name(self, value: pulumi.Input[str]):
1082
+ pulumi.set(self, "step_name", value)
1083
+
1084
+ @property
1085
+ @pulumi.getter
1086
+ def arguments(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookInputParameterArgumentArgs']]]]:
1087
+ """
1088
+ (Updatable) Arguments for the Task
1089
+ """
1090
+ return pulumi.get(self, "arguments")
1091
+
1092
+ @arguments.setter
1093
+ def arguments(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SchedulerDefinitionRunBookInputParameterArgumentArgs']]]]):
1094
+ pulumi.set(self, "arguments", value)
1095
+
1096
+
1097
+ if not MYPY:
1098
+ class SchedulerDefinitionRunBookInputParameterArgumentArgsDict(TypedDict):
1099
+ name: pulumi.Input[str]
1100
+ """
1101
+ (Updatable) Name of the output variable
1102
+ """
1103
+ value: NotRequired[pulumi.Input[str]]
1104
+ """
1105
+ (Updatable) The task output
1106
+ """
1107
+ elif False:
1108
+ SchedulerDefinitionRunBookInputParameterArgumentArgsDict: TypeAlias = Mapping[str, Any]
1109
+
1110
+ @pulumi.input_type
1111
+ class SchedulerDefinitionRunBookInputParameterArgumentArgs:
1112
+ def __init__(__self__, *,
1113
+ name: pulumi.Input[str],
1114
+ value: Optional[pulumi.Input[str]] = None):
1115
+ """
1116
+ :param pulumi.Input[str] name: (Updatable) Name of the output variable
1117
+ :param pulumi.Input[str] value: (Updatable) The task output
1118
+ """
1119
+ pulumi.set(__self__, "name", name)
1120
+ if value is not None:
1121
+ pulumi.set(__self__, "value", value)
1122
+
1123
+ @property
1124
+ @pulumi.getter
1125
+ def name(self) -> pulumi.Input[str]:
1126
+ """
1127
+ (Updatable) Name of the output variable
1128
+ """
1129
+ return pulumi.get(self, "name")
1130
+
1131
+ @name.setter
1132
+ def name(self, value: pulumi.Input[str]):
1133
+ pulumi.set(self, "name", value)
1134
+
1135
+ @property
1136
+ @pulumi.getter
1137
+ def value(self) -> Optional[pulumi.Input[str]]:
1138
+ """
1139
+ (Updatable) The task output
1140
+ """
1141
+ return pulumi.get(self, "value")
1142
+
1143
+ @value.setter
1144
+ def value(self, value: Optional[pulumi.Input[str]]):
1145
+ pulumi.set(self, "value", value)
1146
+
1147
+
1148
+ if not MYPY:
1149
+ class SchedulerDefinitionScheduleArgsDict(TypedDict):
1150
+ execution_startdate: pulumi.Input[str]
1151
+ """
1152
+ (Updatable) Start Date for the schedule. An RFC3339 formatted datetime string
1153
+ """
1154
+ type: pulumi.Input[str]
1155
+ """
1156
+ (Updatable) Schedule Type
1157
+
1158
+
1159
+ ** IMPORTANT **
1160
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1161
+ """
1162
+ duration: NotRequired[pulumi.Input[str]]
1163
+ """
1164
+ (Updatable) Duration if schedule type is Custom
1165
+ """
1166
+ maintenance_window_id: NotRequired[pulumi.Input[str]]
1167
+ """
1168
+ (Updatable) Provide MaintenanceWindowId if Schedule Type is Maintenance Window
1169
+ """
1170
+ recurrences: NotRequired[pulumi.Input[str]]
1171
+ """
1172
+ (Updatable) Recurrence rule specification if Schedule Type is Custom and Recurring
1173
+ """
1174
+ elif False:
1175
+ SchedulerDefinitionScheduleArgsDict: TypeAlias = Mapping[str, Any]
1176
+
1177
+ @pulumi.input_type
1178
+ class SchedulerDefinitionScheduleArgs:
1179
+ def __init__(__self__, *,
1180
+ execution_startdate: pulumi.Input[str],
1181
+ type: pulumi.Input[str],
1182
+ duration: Optional[pulumi.Input[str]] = None,
1183
+ maintenance_window_id: Optional[pulumi.Input[str]] = None,
1184
+ recurrences: Optional[pulumi.Input[str]] = None):
1185
+ """
1186
+ :param pulumi.Input[str] execution_startdate: (Updatable) Start Date for the schedule. An RFC3339 formatted datetime string
1187
+ :param pulumi.Input[str] type: (Updatable) Schedule Type
1188
+
1189
+
1190
+ ** IMPORTANT **
1191
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1192
+ :param pulumi.Input[str] duration: (Updatable) Duration if schedule type is Custom
1193
+ :param pulumi.Input[str] maintenance_window_id: (Updatable) Provide MaintenanceWindowId if Schedule Type is Maintenance Window
1194
+ :param pulumi.Input[str] recurrences: (Updatable) Recurrence rule specification if Schedule Type is Custom and Recurring
1195
+ """
1196
+ pulumi.set(__self__, "execution_startdate", execution_startdate)
1197
+ pulumi.set(__self__, "type", type)
1198
+ if duration is not None:
1199
+ pulumi.set(__self__, "duration", duration)
1200
+ if maintenance_window_id is not None:
1201
+ pulumi.set(__self__, "maintenance_window_id", maintenance_window_id)
1202
+ if recurrences is not None:
1203
+ pulumi.set(__self__, "recurrences", recurrences)
1204
+
1205
+ @property
1206
+ @pulumi.getter(name="executionStartdate")
1207
+ def execution_startdate(self) -> pulumi.Input[str]:
1208
+ """
1209
+ (Updatable) Start Date for the schedule. An RFC3339 formatted datetime string
1210
+ """
1211
+ return pulumi.get(self, "execution_startdate")
1212
+
1213
+ @execution_startdate.setter
1214
+ def execution_startdate(self, value: pulumi.Input[str]):
1215
+ pulumi.set(self, "execution_startdate", value)
1216
+
1217
+ @property
1218
+ @pulumi.getter
1219
+ def type(self) -> pulumi.Input[str]:
1220
+ """
1221
+ (Updatable) Schedule Type
1222
+
1223
+
1224
+ ** IMPORTANT **
1225
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1226
+ """
1227
+ return pulumi.get(self, "type")
1228
+
1229
+ @type.setter
1230
+ def type(self, value: pulumi.Input[str]):
1231
+ pulumi.set(self, "type", value)
1232
+
1233
+ @property
1234
+ @pulumi.getter
1235
+ def duration(self) -> Optional[pulumi.Input[str]]:
1236
+ """
1237
+ (Updatable) Duration if schedule type is Custom
1238
+ """
1239
+ return pulumi.get(self, "duration")
1240
+
1241
+ @duration.setter
1242
+ def duration(self, value: Optional[pulumi.Input[str]]):
1243
+ pulumi.set(self, "duration", value)
1244
+
1245
+ @property
1246
+ @pulumi.getter(name="maintenanceWindowId")
1247
+ def maintenance_window_id(self) -> Optional[pulumi.Input[str]]:
1248
+ """
1249
+ (Updatable) Provide MaintenanceWindowId if Schedule Type is Maintenance Window
1250
+ """
1251
+ return pulumi.get(self, "maintenance_window_id")
1252
+
1253
+ @maintenance_window_id.setter
1254
+ def maintenance_window_id(self, value: Optional[pulumi.Input[str]]):
1255
+ pulumi.set(self, "maintenance_window_id", value)
1256
+
1257
+ @property
1258
+ @pulumi.getter
1259
+ def recurrences(self) -> Optional[pulumi.Input[str]]:
1260
+ """
1261
+ (Updatable) Recurrence rule specification if Schedule Type is Custom and Recurring
1262
+ """
1263
+ return pulumi.get(self, "recurrences")
1264
+
1265
+ @recurrences.setter
1266
+ def recurrences(self, value: Optional[pulumi.Input[str]]):
1267
+ pulumi.set(self, "recurrences", value)
1268
+
1269
+
1270
+ if not MYPY:
1271
+ class GetAnnouncementsFilterArgsDict(TypedDict):
1272
+ name: str
1273
+ values: Sequence[str]
1274
+ regex: NotRequired[bool]
1275
+ elif False:
1276
+ GetAnnouncementsFilterArgsDict: TypeAlias = Mapping[str, Any]
1277
+
1278
+ @pulumi.input_type
1279
+ class GetAnnouncementsFilterArgs:
1280
+ def __init__(__self__, *,
1281
+ name: str,
1282
+ values: Sequence[str],
1283
+ regex: Optional[bool] = None):
1284
+ pulumi.set(__self__, "name", name)
1285
+ pulumi.set(__self__, "values", values)
1286
+ if regex is not None:
1287
+ pulumi.set(__self__, "regex", regex)
1288
+
1289
+ @property
1290
+ @pulumi.getter
1291
+ def name(self) -> str:
1292
+ return pulumi.get(self, "name")
1293
+
1294
+ @name.setter
1295
+ def name(self, value: str):
1296
+ pulumi.set(self, "name", value)
1297
+
1298
+ @property
1299
+ @pulumi.getter
1300
+ def values(self) -> Sequence[str]:
1301
+ return pulumi.get(self, "values")
1302
+
1303
+ @values.setter
1304
+ def values(self, value: Sequence[str]):
1305
+ pulumi.set(self, "values", value)
1306
+
1307
+ @property
1308
+ @pulumi.getter
1309
+ def regex(self) -> Optional[bool]:
1310
+ return pulumi.get(self, "regex")
1311
+
1312
+ @regex.setter
1313
+ def regex(self, value: Optional[bool]):
1314
+ pulumi.set(self, "regex", value)
1315
+
1316
+
1317
+ if not MYPY:
1318
+ class GetFleetCredentialsFilterArgsDict(TypedDict):
1319
+ name: str
1320
+ values: Sequence[str]
1321
+ regex: NotRequired[bool]
1322
+ elif False:
1323
+ GetFleetCredentialsFilterArgsDict: TypeAlias = Mapping[str, Any]
1324
+
1325
+ @pulumi.input_type
1326
+ class GetFleetCredentialsFilterArgs:
1327
+ def __init__(__self__, *,
1328
+ name: str,
1329
+ values: Sequence[str],
1330
+ regex: Optional[bool] = None):
1331
+ pulumi.set(__self__, "name", name)
1332
+ pulumi.set(__self__, "values", values)
1333
+ if regex is not None:
1334
+ pulumi.set(__self__, "regex", regex)
1335
+
1336
+ @property
1337
+ @pulumi.getter
1338
+ def name(self) -> str:
1339
+ return pulumi.get(self, "name")
1340
+
1341
+ @name.setter
1342
+ def name(self, value: str):
1343
+ pulumi.set(self, "name", value)
1344
+
1345
+ @property
1346
+ @pulumi.getter
1347
+ def values(self) -> Sequence[str]:
1348
+ return pulumi.get(self, "values")
1349
+
1350
+ @values.setter
1351
+ def values(self, value: Sequence[str]):
1352
+ pulumi.set(self, "values", value)
1353
+
1354
+ @property
1355
+ @pulumi.getter
1356
+ def regex(self) -> Optional[bool]:
1357
+ return pulumi.get(self, "regex")
1358
+
1359
+ @regex.setter
1360
+ def regex(self, value: Optional[bool]):
1361
+ pulumi.set(self, "regex", value)
1362
+
1363
+
1364
+ if not MYPY:
1365
+ class GetFleetProductsFilterArgsDict(TypedDict):
1366
+ name: str
1367
+ values: Sequence[str]
1368
+ regex: NotRequired[bool]
1369
+ elif False:
1370
+ GetFleetProductsFilterArgsDict: TypeAlias = Mapping[str, Any]
1371
+
1372
+ @pulumi.input_type
1373
+ class GetFleetProductsFilterArgs:
1374
+ def __init__(__self__, *,
1375
+ name: str,
1376
+ values: Sequence[str],
1377
+ regex: Optional[bool] = None):
1378
+ pulumi.set(__self__, "name", name)
1379
+ pulumi.set(__self__, "values", values)
1380
+ if regex is not None:
1381
+ pulumi.set(__self__, "regex", regex)
1382
+
1383
+ @property
1384
+ @pulumi.getter
1385
+ def name(self) -> str:
1386
+ return pulumi.get(self, "name")
1387
+
1388
+ @name.setter
1389
+ def name(self, value: str):
1390
+ pulumi.set(self, "name", value)
1391
+
1392
+ @property
1393
+ @pulumi.getter
1394
+ def values(self) -> Sequence[str]:
1395
+ return pulumi.get(self, "values")
1396
+
1397
+ @values.setter
1398
+ def values(self, value: Sequence[str]):
1399
+ pulumi.set(self, "values", value)
1400
+
1401
+ @property
1402
+ @pulumi.getter
1403
+ def regex(self) -> Optional[bool]:
1404
+ return pulumi.get(self, "regex")
1405
+
1406
+ @regex.setter
1407
+ def regex(self, value: Optional[bool]):
1408
+ pulumi.set(self, "regex", value)
1409
+
1410
+
1411
+ if not MYPY:
1412
+ class GetFleetPropertiesFilterArgsDict(TypedDict):
1413
+ name: str
1414
+ values: Sequence[str]
1415
+ regex: NotRequired[bool]
1416
+ elif False:
1417
+ GetFleetPropertiesFilterArgsDict: TypeAlias = Mapping[str, Any]
1418
+
1419
+ @pulumi.input_type
1420
+ class GetFleetPropertiesFilterArgs:
1421
+ def __init__(__self__, *,
1422
+ name: str,
1423
+ values: Sequence[str],
1424
+ regex: Optional[bool] = None):
1425
+ pulumi.set(__self__, "name", name)
1426
+ pulumi.set(__self__, "values", values)
1427
+ if regex is not None:
1428
+ pulumi.set(__self__, "regex", regex)
1429
+
1430
+ @property
1431
+ @pulumi.getter
1432
+ def name(self) -> str:
1433
+ return pulumi.get(self, "name")
1434
+
1435
+ @name.setter
1436
+ def name(self, value: str):
1437
+ pulumi.set(self, "name", value)
1438
+
1439
+ @property
1440
+ @pulumi.getter
1441
+ def values(self) -> Sequence[str]:
1442
+ return pulumi.get(self, "values")
1443
+
1444
+ @values.setter
1445
+ def values(self, value: Sequence[str]):
1446
+ pulumi.set(self, "values", value)
1447
+
1448
+ @property
1449
+ @pulumi.getter
1450
+ def regex(self) -> Optional[bool]:
1451
+ return pulumi.get(self, "regex")
1452
+
1453
+ @regex.setter
1454
+ def regex(self, value: Optional[bool]):
1455
+ pulumi.set(self, "regex", value)
1456
+
1457
+
1458
+ if not MYPY:
1459
+ class GetFleetResourcesFilterArgsDict(TypedDict):
1460
+ name: str
1461
+ values: Sequence[str]
1462
+ regex: NotRequired[bool]
1463
+ elif False:
1464
+ GetFleetResourcesFilterArgsDict: TypeAlias = Mapping[str, Any]
1465
+
1466
+ @pulumi.input_type
1467
+ class GetFleetResourcesFilterArgs:
1468
+ def __init__(__self__, *,
1469
+ name: str,
1470
+ values: Sequence[str],
1471
+ regex: Optional[bool] = None):
1472
+ pulumi.set(__self__, "name", name)
1473
+ pulumi.set(__self__, "values", values)
1474
+ if regex is not None:
1475
+ pulumi.set(__self__, "regex", regex)
1476
+
1477
+ @property
1478
+ @pulumi.getter
1479
+ def name(self) -> str:
1480
+ return pulumi.get(self, "name")
1481
+
1482
+ @name.setter
1483
+ def name(self, value: str):
1484
+ pulumi.set(self, "name", value)
1485
+
1486
+ @property
1487
+ @pulumi.getter
1488
+ def values(self) -> Sequence[str]:
1489
+ return pulumi.get(self, "values")
1490
+
1491
+ @values.setter
1492
+ def values(self, value: Sequence[str]):
1493
+ pulumi.set(self, "values", value)
1494
+
1495
+ @property
1496
+ @pulumi.getter
1497
+ def regex(self) -> Optional[bool]:
1498
+ return pulumi.get(self, "regex")
1499
+
1500
+ @regex.setter
1501
+ def regex(self, value: Optional[bool]):
1502
+ pulumi.set(self, "regex", value)
1503
+
1504
+
1505
+ if not MYPY:
1506
+ class GetFleetTargetsFilterArgsDict(TypedDict):
1507
+ name: str
1508
+ values: Sequence[str]
1509
+ regex: NotRequired[bool]
1510
+ elif False:
1511
+ GetFleetTargetsFilterArgsDict: TypeAlias = Mapping[str, Any]
1512
+
1513
+ @pulumi.input_type
1514
+ class GetFleetTargetsFilterArgs:
1515
+ def __init__(__self__, *,
1516
+ name: str,
1517
+ values: Sequence[str],
1518
+ regex: Optional[bool] = None):
1519
+ pulumi.set(__self__, "name", name)
1520
+ pulumi.set(__self__, "values", values)
1521
+ if regex is not None:
1522
+ pulumi.set(__self__, "regex", regex)
1523
+
1524
+ @property
1525
+ @pulumi.getter
1526
+ def name(self) -> str:
1527
+ return pulumi.get(self, "name")
1528
+
1529
+ @name.setter
1530
+ def name(self, value: str):
1531
+ pulumi.set(self, "name", value)
1532
+
1533
+ @property
1534
+ @pulumi.getter
1535
+ def values(self) -> Sequence[str]:
1536
+ return pulumi.get(self, "values")
1537
+
1538
+ @values.setter
1539
+ def values(self, value: Sequence[str]):
1540
+ pulumi.set(self, "values", value)
1541
+
1542
+ @property
1543
+ @pulumi.getter
1544
+ def regex(self) -> Optional[bool]:
1545
+ return pulumi.get(self, "regex")
1546
+
1547
+ @regex.setter
1548
+ def regex(self, value: Optional[bool]):
1549
+ pulumi.set(self, "regex", value)
1550
+
1551
+
1552
+ if not MYPY:
1553
+ class GetFleetsFilterArgsDict(TypedDict):
1554
+ name: str
1555
+ values: Sequence[str]
1556
+ regex: NotRequired[bool]
1557
+ elif False:
1558
+ GetFleetsFilterArgsDict: TypeAlias = Mapping[str, Any]
1559
+
1560
+ @pulumi.input_type
1561
+ class GetFleetsFilterArgs:
1562
+ def __init__(__self__, *,
1563
+ name: str,
1564
+ values: Sequence[str],
1565
+ regex: Optional[bool] = None):
1566
+ pulumi.set(__self__, "name", name)
1567
+ pulumi.set(__self__, "values", values)
1568
+ if regex is not None:
1569
+ pulumi.set(__self__, "regex", regex)
1570
+
1571
+ @property
1572
+ @pulumi.getter
1573
+ def name(self) -> str:
1574
+ return pulumi.get(self, "name")
1575
+
1576
+ @name.setter
1577
+ def name(self, value: str):
1578
+ pulumi.set(self, "name", value)
1579
+
1580
+ @property
1581
+ @pulumi.getter
1582
+ def values(self) -> Sequence[str]:
1583
+ return pulumi.get(self, "values")
1584
+
1585
+ @values.setter
1586
+ def values(self, value: Sequence[str]):
1587
+ pulumi.set(self, "values", value)
1588
+
1589
+ @property
1590
+ @pulumi.getter
1591
+ def regex(self) -> Optional[bool]:
1592
+ return pulumi.get(self, "regex")
1593
+
1594
+ @regex.setter
1595
+ def regex(self, value: Optional[bool]):
1596
+ pulumi.set(self, "regex", value)
1597
+
1598
+
1599
+ if not MYPY:
1600
+ class GetInventoryResourcesFilterArgsDict(TypedDict):
1601
+ name: str
1602
+ values: Sequence[str]
1603
+ regex: NotRequired[bool]
1604
+ elif False:
1605
+ GetInventoryResourcesFilterArgsDict: TypeAlias = Mapping[str, Any]
1606
+
1607
+ @pulumi.input_type
1608
+ class GetInventoryResourcesFilterArgs:
1609
+ def __init__(__self__, *,
1610
+ name: str,
1611
+ values: Sequence[str],
1612
+ regex: Optional[bool] = None):
1613
+ pulumi.set(__self__, "name", name)
1614
+ pulumi.set(__self__, "values", values)
1615
+ if regex is not None:
1616
+ pulumi.set(__self__, "regex", regex)
1617
+
1618
+ @property
1619
+ @pulumi.getter
1620
+ def name(self) -> str:
1621
+ return pulumi.get(self, "name")
1622
+
1623
+ @name.setter
1624
+ def name(self, value: str):
1625
+ pulumi.set(self, "name", value)
1626
+
1627
+ @property
1628
+ @pulumi.getter
1629
+ def values(self) -> Sequence[str]:
1630
+ return pulumi.get(self, "values")
1631
+
1632
+ @values.setter
1633
+ def values(self, value: Sequence[str]):
1634
+ pulumi.set(self, "values", value)
1635
+
1636
+ @property
1637
+ @pulumi.getter
1638
+ def regex(self) -> Optional[bool]:
1639
+ return pulumi.get(self, "regex")
1640
+
1641
+ @regex.setter
1642
+ def regex(self, value: Optional[bool]):
1643
+ pulumi.set(self, "regex", value)
1644
+
1645
+
1646
+ if not MYPY:
1647
+ class GetMaintenanceWindowsFilterArgsDict(TypedDict):
1648
+ name: str
1649
+ values: Sequence[str]
1650
+ regex: NotRequired[bool]
1651
+ elif False:
1652
+ GetMaintenanceWindowsFilterArgsDict: TypeAlias = Mapping[str, Any]
1653
+
1654
+ @pulumi.input_type
1655
+ class GetMaintenanceWindowsFilterArgs:
1656
+ def __init__(__self__, *,
1657
+ name: str,
1658
+ values: Sequence[str],
1659
+ regex: Optional[bool] = None):
1660
+ pulumi.set(__self__, "name", name)
1661
+ pulumi.set(__self__, "values", values)
1662
+ if regex is not None:
1663
+ pulumi.set(__self__, "regex", regex)
1664
+
1665
+ @property
1666
+ @pulumi.getter
1667
+ def name(self) -> str:
1668
+ return pulumi.get(self, "name")
1669
+
1670
+ @name.setter
1671
+ def name(self, value: str):
1672
+ pulumi.set(self, "name", value)
1673
+
1674
+ @property
1675
+ @pulumi.getter
1676
+ def values(self) -> Sequence[str]:
1677
+ return pulumi.get(self, "values")
1678
+
1679
+ @values.setter
1680
+ def values(self, value: Sequence[str]):
1681
+ pulumi.set(self, "values", value)
1682
+
1683
+ @property
1684
+ @pulumi.getter
1685
+ def regex(self) -> Optional[bool]:
1686
+ return pulumi.get(self, "regex")
1687
+
1688
+ @regex.setter
1689
+ def regex(self, value: Optional[bool]):
1690
+ pulumi.set(self, "regex", value)
1691
+
1692
+
1693
+ if not MYPY:
1694
+ class GetOnboardingPoliciesFilterArgsDict(TypedDict):
1695
+ name: str
1696
+ values: Sequence[str]
1697
+ regex: NotRequired[bool]
1698
+ elif False:
1699
+ GetOnboardingPoliciesFilterArgsDict: TypeAlias = Mapping[str, Any]
1700
+
1701
+ @pulumi.input_type
1702
+ class GetOnboardingPoliciesFilterArgs:
1703
+ def __init__(__self__, *,
1704
+ name: str,
1705
+ values: Sequence[str],
1706
+ regex: Optional[bool] = None):
1707
+ pulumi.set(__self__, "name", name)
1708
+ pulumi.set(__self__, "values", values)
1709
+ if regex is not None:
1710
+ pulumi.set(__self__, "regex", regex)
1711
+
1712
+ @property
1713
+ @pulumi.getter
1714
+ def name(self) -> str:
1715
+ return pulumi.get(self, "name")
1716
+
1717
+ @name.setter
1718
+ def name(self, value: str):
1719
+ pulumi.set(self, "name", value)
1720
+
1721
+ @property
1722
+ @pulumi.getter
1723
+ def values(self) -> Sequence[str]:
1724
+ return pulumi.get(self, "values")
1725
+
1726
+ @values.setter
1727
+ def values(self, value: Sequence[str]):
1728
+ pulumi.set(self, "values", value)
1729
+
1730
+ @property
1731
+ @pulumi.getter
1732
+ def regex(self) -> Optional[bool]:
1733
+ return pulumi.get(self, "regex")
1734
+
1735
+ @regex.setter
1736
+ def regex(self, value: Optional[bool]):
1737
+ pulumi.set(self, "regex", value)
1738
+
1739
+
1740
+ if not MYPY:
1741
+ class GetOnboardingsFilterArgsDict(TypedDict):
1742
+ name: str
1743
+ values: Sequence[str]
1744
+ regex: NotRequired[bool]
1745
+ elif False:
1746
+ GetOnboardingsFilterArgsDict: TypeAlias = Mapping[str, Any]
1747
+
1748
+ @pulumi.input_type
1749
+ class GetOnboardingsFilterArgs:
1750
+ def __init__(__self__, *,
1751
+ name: str,
1752
+ values: Sequence[str],
1753
+ regex: Optional[bool] = None):
1754
+ pulumi.set(__self__, "name", name)
1755
+ pulumi.set(__self__, "values", values)
1756
+ if regex is not None:
1757
+ pulumi.set(__self__, "regex", regex)
1758
+
1759
+ @property
1760
+ @pulumi.getter
1761
+ def name(self) -> str:
1762
+ return pulumi.get(self, "name")
1763
+
1764
+ @name.setter
1765
+ def name(self, value: str):
1766
+ pulumi.set(self, "name", value)
1767
+
1768
+ @property
1769
+ @pulumi.getter
1770
+ def values(self) -> Sequence[str]:
1771
+ return pulumi.get(self, "values")
1772
+
1773
+ @values.setter
1774
+ def values(self, value: Sequence[str]):
1775
+ pulumi.set(self, "values", value)
1776
+
1777
+ @property
1778
+ @pulumi.getter
1779
+ def regex(self) -> Optional[bool]:
1780
+ return pulumi.get(self, "regex")
1781
+
1782
+ @regex.setter
1783
+ def regex(self, value: Optional[bool]):
1784
+ pulumi.set(self, "regex", value)
1785
+
1786
+
1787
+ if not MYPY:
1788
+ class GetPropertiesFilterArgsDict(TypedDict):
1789
+ name: str
1790
+ values: Sequence[str]
1791
+ """
1792
+ Values of the property (must be a single value if selection = 'single choice')
1793
+ """
1794
+ regex: NotRequired[bool]
1795
+ elif False:
1796
+ GetPropertiesFilterArgsDict: TypeAlias = Mapping[str, Any]
1797
+
1798
+ @pulumi.input_type
1799
+ class GetPropertiesFilterArgs:
1800
+ def __init__(__self__, *,
1801
+ name: str,
1802
+ values: Sequence[str],
1803
+ regex: Optional[bool] = None):
1804
+ """
1805
+ :param Sequence[str] values: Values of the property (must be a single value if selection = 'single choice')
1806
+ """
1807
+ pulumi.set(__self__, "name", name)
1808
+ pulumi.set(__self__, "values", values)
1809
+ if regex is not None:
1810
+ pulumi.set(__self__, "regex", regex)
1811
+
1812
+ @property
1813
+ @pulumi.getter
1814
+ def name(self) -> str:
1815
+ return pulumi.get(self, "name")
1816
+
1817
+ @name.setter
1818
+ def name(self, value: str):
1819
+ pulumi.set(self, "name", value)
1820
+
1821
+ @property
1822
+ @pulumi.getter
1823
+ def values(self) -> Sequence[str]:
1824
+ """
1825
+ Values of the property (must be a single value if selection = 'single choice')
1826
+ """
1827
+ return pulumi.get(self, "values")
1828
+
1829
+ @values.setter
1830
+ def values(self, value: Sequence[str]):
1831
+ pulumi.set(self, "values", value)
1832
+
1833
+ @property
1834
+ @pulumi.getter
1835
+ def regex(self) -> Optional[bool]:
1836
+ return pulumi.get(self, "regex")
1837
+
1838
+ @regex.setter
1839
+ def regex(self, value: Optional[bool]):
1840
+ pulumi.set(self, "regex", value)
1841
+
1842
+
1843
+ if not MYPY:
1844
+ class GetRunbooksFilterArgsDict(TypedDict):
1845
+ name: str
1846
+ """
1847
+ The name of the task
1848
+ """
1849
+ values: Sequence[str]
1850
+ regex: NotRequired[bool]
1851
+ elif False:
1852
+ GetRunbooksFilterArgsDict: TypeAlias = Mapping[str, Any]
1853
+
1854
+ @pulumi.input_type
1855
+ class GetRunbooksFilterArgs:
1856
+ def __init__(__self__, *,
1857
+ name: str,
1858
+ values: Sequence[str],
1859
+ regex: Optional[bool] = None):
1860
+ """
1861
+ :param str name: The name of the task
1862
+ """
1863
+ pulumi.set(__self__, "name", name)
1864
+ pulumi.set(__self__, "values", values)
1865
+ if regex is not None:
1866
+ pulumi.set(__self__, "regex", regex)
1867
+
1868
+ @property
1869
+ @pulumi.getter
1870
+ def name(self) -> str:
1871
+ """
1872
+ The name of the task
1873
+ """
1874
+ return pulumi.get(self, "name")
1875
+
1876
+ @name.setter
1877
+ def name(self, value: str):
1878
+ pulumi.set(self, "name", value)
1879
+
1880
+ @property
1881
+ @pulumi.getter
1882
+ def values(self) -> Sequence[str]:
1883
+ return pulumi.get(self, "values")
1884
+
1885
+ @values.setter
1886
+ def values(self, value: Sequence[str]):
1887
+ pulumi.set(self, "values", value)
1888
+
1889
+ @property
1890
+ @pulumi.getter
1891
+ def regex(self) -> Optional[bool]:
1892
+ return pulumi.get(self, "regex")
1893
+
1894
+ @regex.setter
1895
+ def regex(self, value: Optional[bool]):
1896
+ pulumi.set(self, "regex", value)
1897
+
1898
+
1899
+ if not MYPY:
1900
+ class GetSchedulerDefinitionScheduledFleetsFilterArgsDict(TypedDict):
1901
+ name: str
1902
+ values: Sequence[str]
1903
+ regex: NotRequired[bool]
1904
+ elif False:
1905
+ GetSchedulerDefinitionScheduledFleetsFilterArgsDict: TypeAlias = Mapping[str, Any]
1906
+
1907
+ @pulumi.input_type
1908
+ class GetSchedulerDefinitionScheduledFleetsFilterArgs:
1909
+ def __init__(__self__, *,
1910
+ name: str,
1911
+ values: Sequence[str],
1912
+ regex: Optional[bool] = None):
1913
+ pulumi.set(__self__, "name", name)
1914
+ pulumi.set(__self__, "values", values)
1915
+ if regex is not None:
1916
+ pulumi.set(__self__, "regex", regex)
1917
+
1918
+ @property
1919
+ @pulumi.getter
1920
+ def name(self) -> str:
1921
+ return pulumi.get(self, "name")
1922
+
1923
+ @name.setter
1924
+ def name(self, value: str):
1925
+ pulumi.set(self, "name", value)
1926
+
1927
+ @property
1928
+ @pulumi.getter
1929
+ def values(self) -> Sequence[str]:
1930
+ return pulumi.get(self, "values")
1931
+
1932
+ @values.setter
1933
+ def values(self, value: Sequence[str]):
1934
+ pulumi.set(self, "values", value)
1935
+
1936
+ @property
1937
+ @pulumi.getter
1938
+ def regex(self) -> Optional[bool]:
1939
+ return pulumi.get(self, "regex")
1940
+
1941
+ @regex.setter
1942
+ def regex(self, value: Optional[bool]):
1943
+ pulumi.set(self, "regex", value)
1944
+
1945
+
1946
+ if not MYPY:
1947
+ class GetSchedulerDefinitionsFilterArgsDict(TypedDict):
1948
+ name: str
1949
+ """
1950
+ Name of the output variable
1951
+ """
1952
+ values: Sequence[str]
1953
+ regex: NotRequired[bool]
1954
+ elif False:
1955
+ GetSchedulerDefinitionsFilterArgsDict: TypeAlias = Mapping[str, Any]
1956
+
1957
+ @pulumi.input_type
1958
+ class GetSchedulerDefinitionsFilterArgs:
1959
+ def __init__(__self__, *,
1960
+ name: str,
1961
+ values: Sequence[str],
1962
+ regex: Optional[bool] = None):
1963
+ """
1964
+ :param str name: Name of the output variable
1965
+ """
1966
+ pulumi.set(__self__, "name", name)
1967
+ pulumi.set(__self__, "values", values)
1968
+ if regex is not None:
1969
+ pulumi.set(__self__, "regex", regex)
1970
+
1971
+ @property
1972
+ @pulumi.getter
1973
+ def name(self) -> str:
1974
+ """
1975
+ Name of the output variable
1976
+ """
1977
+ return pulumi.get(self, "name")
1978
+
1979
+ @name.setter
1980
+ def name(self, value: str):
1981
+ pulumi.set(self, "name", value)
1982
+
1983
+ @property
1984
+ @pulumi.getter
1985
+ def values(self) -> Sequence[str]:
1986
+ return pulumi.get(self, "values")
1987
+
1988
+ @values.setter
1989
+ def values(self, value: Sequence[str]):
1990
+ pulumi.set(self, "values", value)
1991
+
1992
+ @property
1993
+ @pulumi.getter
1994
+ def regex(self) -> Optional[bool]:
1995
+ return pulumi.get(self, "regex")
1996
+
1997
+ @regex.setter
1998
+ def regex(self, value: Optional[bool]):
1999
+ pulumi.set(self, "regex", value)
2000
+
2001
+
2002
+ if not MYPY:
2003
+ class GetTaskRecordsFilterArgsDict(TypedDict):
2004
+ name: str
2005
+ """
2006
+ The name of the argument
2007
+ """
2008
+ values: Sequence[str]
2009
+ regex: NotRequired[bool]
2010
+ elif False:
2011
+ GetTaskRecordsFilterArgsDict: TypeAlias = Mapping[str, Any]
2012
+
2013
+ @pulumi.input_type
2014
+ class GetTaskRecordsFilterArgs:
2015
+ def __init__(__self__, *,
2016
+ name: str,
2017
+ values: Sequence[str],
2018
+ regex: Optional[bool] = None):
2019
+ """
2020
+ :param str name: The name of the argument
2021
+ """
2022
+ pulumi.set(__self__, "name", name)
2023
+ pulumi.set(__self__, "values", values)
2024
+ if regex is not None:
2025
+ pulumi.set(__self__, "regex", regex)
2026
+
2027
+ @property
2028
+ @pulumi.getter
2029
+ def name(self) -> str:
2030
+ """
2031
+ The name of the argument
2032
+ """
2033
+ return pulumi.get(self, "name")
2034
+
2035
+ @name.setter
2036
+ def name(self, value: str):
2037
+ pulumi.set(self, "name", value)
2038
+
2039
+ @property
2040
+ @pulumi.getter
2041
+ def values(self) -> Sequence[str]:
2042
+ return pulumi.get(self, "values")
2043
+
2044
+ @values.setter
2045
+ def values(self, value: Sequence[str]):
2046
+ pulumi.set(self, "values", value)
2047
+
2048
+ @property
2049
+ @pulumi.getter
2050
+ def regex(self) -> Optional[bool]:
2051
+ return pulumi.get(self, "regex")
2052
+
2053
+ @regex.setter
2054
+ def regex(self, value: Optional[bool]):
2055
+ pulumi.set(self, "regex", value)
2056
+
2057
+