pulumi-oci 2.19.0a1733984857__py3-none-any.whl → 2.19.0a1734003732__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 (87) hide show
  1. pulumi_oci/__init__.py +40 -0
  2. pulumi_oci/database/autonomous_container_database.py +47 -0
  3. pulumi_oci/database/autonomous_database.py +47 -0
  4. pulumi_oci/database/get_autonomous_container_database.py +15 -1
  5. pulumi_oci/database/get_autonomous_database.py +15 -1
  6. pulumi_oci/database/outputs.py +14 -0
  7. pulumi_oci/dataflow/application.py +75 -33
  8. pulumi_oci/dataflow/get_application.py +15 -1
  9. pulumi_oci/dataflow/outputs.py +7 -0
  10. pulumi_oci/desktops/_inputs.py +9 -9
  11. pulumi_oci/desktops/desktop_pool.py +84 -35
  12. pulumi_oci/desktops/get_desktop_pool.py +12 -1
  13. pulumi_oci/desktops/outputs.py +13 -6
  14. pulumi_oci/disasterrecovery/_inputs.py +46 -30
  15. pulumi_oci/disasterrecovery/dr_plan.py +194 -23
  16. pulumi_oci/disasterrecovery/get_dr_plan.py +54 -4
  17. pulumi_oci/disasterrecovery/get_dr_plans.py +23 -1
  18. pulumi_oci/disasterrecovery/outputs.py +113 -21
  19. pulumi_oci/fleetappsmanagement/__init__.py +19 -0
  20. pulumi_oci/fleetappsmanagement/_inputs.py +5334 -378
  21. pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +830 -0
  22. pulumi_oci/fleetappsmanagement/fleet.py +112 -67
  23. pulumi_oci/fleetappsmanagement/fleet_credential.py +44 -36
  24. pulumi_oci/fleetappsmanagement/fleet_property.py +35 -35
  25. pulumi_oci/fleetappsmanagement/fleet_resource.py +37 -37
  26. pulumi_oci/fleetappsmanagement/get_announcements.py +4 -4
  27. pulumi_oci/fleetappsmanagement/get_compliance_policies.py +199 -0
  28. pulumi_oci/fleetappsmanagement/get_compliance_policy.py +253 -0
  29. pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +324 -0
  30. pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +243 -0
  31. pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +144 -0
  32. pulumi_oci/fleetappsmanagement/get_compliance_records.py +279 -0
  33. pulumi_oci/fleetappsmanagement/get_fleet.py +29 -15
  34. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +8 -8
  35. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +7 -7
  36. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +61 -17
  37. pulumi_oci/fleetappsmanagement/get_fleet_products.py +6 -6
  38. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +8 -8
  39. pulumi_oci/fleetappsmanagement/get_fleet_property.py +11 -11
  40. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +11 -11
  41. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +10 -10
  42. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +8 -8
  43. pulumi_oci/fleetappsmanagement/get_fleets.py +16 -16
  44. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +12 -12
  45. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +8 -8
  46. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +31 -12
  47. pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +144 -0
  48. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +2 -2
  49. pulumi_oci/fleetappsmanagement/get_onboardings.py +2 -2
  50. pulumi_oci/fleetappsmanagement/get_patch.py +363 -0
  51. pulumi_oci/fleetappsmanagement/get_patches.py +335 -0
  52. pulumi_oci/fleetappsmanagement/get_platform_configuration.py +296 -0
  53. pulumi_oci/fleetappsmanagement/get_platform_configurations.py +221 -0
  54. pulumi_oci/fleetappsmanagement/get_properties.py +9 -9
  55. pulumi_oci/fleetappsmanagement/get_property.py +4 -4
  56. pulumi_oci/fleetappsmanagement/get_runbook.py +8 -8
  57. pulumi_oci/fleetappsmanagement/get_runbooks.py +16 -16
  58. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +10 -10
  59. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +2 -2
  60. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +33 -11
  61. pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +144 -0
  62. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_resources.py +245 -0
  63. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +245 -0
  64. pulumi_oci/fleetappsmanagement/get_task_record.py +3 -3
  65. pulumi_oci/fleetappsmanagement/maintenance_window.py +44 -44
  66. pulumi_oci/fleetappsmanagement/onboarding.py +108 -20
  67. pulumi_oci/fleetappsmanagement/outputs.py +11222 -2736
  68. pulumi_oci/fleetappsmanagement/patch.py +978 -0
  69. pulumi_oci/fleetappsmanagement/platform_configuration.py +687 -0
  70. pulumi_oci/fleetappsmanagement/property.py +27 -27
  71. pulumi_oci/fleetappsmanagement/runbook.py +1173 -0
  72. pulumi_oci/fleetappsmanagement/scheduler_definition.py +30 -30
  73. pulumi_oci/fleetappsmanagement/task_record.py +754 -0
  74. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +28 -0
  75. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +56 -0
  76. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +15 -1
  77. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +29 -1
  78. pulumi_oci/fleetsoftwareupdate/outputs.py +33 -0
  79. pulumi_oci/pulumi-plugin.json +1 -1
  80. pulumi_oci/visualbuilder/_inputs.py +57 -202
  81. pulumi_oci/visualbuilder/get_vb_instance.py +15 -29
  82. pulumi_oci/visualbuilder/outputs.py +114 -400
  83. pulumi_oci/visualbuilder/vb_instance.py +62 -59
  84. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/METADATA +1 -1
  85. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/RECORD +87 -68
  86. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/WHEEL +0 -0
  87. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/top_level.txt +0 -0
@@ -30,7 +30,8 @@ class VbInstanceArgs:
30
30
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
31
31
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
32
32
  idcs_open_id: Optional[pulumi.Input[str]] = None,
33
- is_visual_builder_enabled: Optional[pulumi.Input[bool]] = None):
33
+ is_visual_builder_enabled: Optional[pulumi.Input[bool]] = None,
34
+ network_endpoint_details: Optional[pulumi.Input['VbInstanceNetworkEndpointDetailsArgs']] = None):
34
35
  """
35
36
  The set of arguments for constructing a VbInstance resource.
36
37
  :param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier.
@@ -47,6 +48,7 @@ class VbInstanceArgs:
47
48
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
48
49
  :param pulumi.Input[str] idcs_open_id: (Updatable) Encrypted IDCS Open ID token. This is required for pre-UCPIS cloud accounts, but not UCPIS, hence not a required parameter
49
50
  :param pulumi.Input[bool] is_visual_builder_enabled: (Updatable) Visual Builder is enabled or not.
51
+ :param pulumi.Input['VbInstanceNetworkEndpointDetailsArgs'] network_endpoint_details: (Updatable) Base representation of a network endpoint. In input payload to update an Visual Builder instance endpoint details, an empty payload will clear out any existing configuration for Public Visual Builder instance.
50
52
  """
51
53
  pulumi.set(__self__, "compartment_id", compartment_id)
52
54
  pulumi.set(__self__, "display_name", display_name)
@@ -65,6 +67,8 @@ class VbInstanceArgs:
65
67
  pulumi.set(__self__, "idcs_open_id", idcs_open_id)
66
68
  if is_visual_builder_enabled is not None:
67
69
  pulumi.set(__self__, "is_visual_builder_enabled", is_visual_builder_enabled)
70
+ if network_endpoint_details is not None:
71
+ pulumi.set(__self__, "network_endpoint_details", network_endpoint_details)
68
72
 
69
73
  @property
70
74
  @pulumi.getter(name="compartmentId")
@@ -190,24 +194,35 @@ class VbInstanceArgs:
190
194
  def is_visual_builder_enabled(self, value: Optional[pulumi.Input[bool]]):
191
195
  pulumi.set(self, "is_visual_builder_enabled", value)
192
196
 
197
+ @property
198
+ @pulumi.getter(name="networkEndpointDetails")
199
+ def network_endpoint_details(self) -> Optional[pulumi.Input['VbInstanceNetworkEndpointDetailsArgs']]:
200
+ """
201
+ (Updatable) Base representation of a network endpoint. In input payload to update an Visual Builder instance endpoint details, an empty payload will clear out any existing configuration for Public Visual Builder instance.
202
+ """
203
+ return pulumi.get(self, "network_endpoint_details")
204
+
205
+ @network_endpoint_details.setter
206
+ def network_endpoint_details(self, value: Optional[pulumi.Input['VbInstanceNetworkEndpointDetailsArgs']]):
207
+ pulumi.set(self, "network_endpoint_details", value)
208
+
193
209
 
194
210
  @pulumi.input_type
195
211
  class _VbInstanceState:
196
212
  def __init__(__self__, *,
197
213
  alternate_custom_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input['VbInstanceAlternateCustomEndpointArgs']]]] = None,
198
- attachments: Optional[pulumi.Input[Sequence[pulumi.Input['VbInstanceAttachmentArgs']]]] = None,
199
214
  compartment_id: Optional[pulumi.Input[str]] = None,
200
215
  consumption_model: Optional[pulumi.Input[str]] = None,
201
216
  custom_endpoint: Optional[pulumi.Input['VbInstanceCustomEndpointArgs']] = None,
202
217
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
203
218
  display_name: Optional[pulumi.Input[str]] = None,
204
219
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
205
- idcs_infos: Optional[pulumi.Input[Sequence[pulumi.Input['VbInstanceIdcsInfoArgs']]]] = None,
206
220
  idcs_open_id: Optional[pulumi.Input[str]] = None,
207
221
  instance_url: Optional[pulumi.Input[str]] = None,
208
222
  is_visual_builder_enabled: Optional[pulumi.Input[bool]] = None,
209
223
  management_nat_gateway_ip: Optional[pulumi.Input[str]] = None,
210
224
  management_vcn_id: Optional[pulumi.Input[str]] = None,
225
+ network_endpoint_details: Optional[pulumi.Input['VbInstanceNetworkEndpointDetailsArgs']] = None,
211
226
  node_count: Optional[pulumi.Input[int]] = None,
212
227
  service_nat_gateway_ip: Optional[pulumi.Input[str]] = None,
213
228
  service_vcn_id: Optional[pulumi.Input[str]] = None,
@@ -219,19 +234,18 @@ class _VbInstanceState:
219
234
  """
220
235
  Input properties used for looking up and filtering VbInstance resources.
221
236
  :param pulumi.Input[Sequence[pulumi.Input['VbInstanceAlternateCustomEndpointArgs']]] alternate_custom_endpoints: (Updatable) A list of alternate custom endpoints to be used for the vb instance URL (contact Oracle for alternateCustomEndpoints availability for a specific instance).
222
- :param pulumi.Input[Sequence[pulumi.Input['VbInstanceAttachmentArgs']]] attachments: A list of associated attachments to other services
223
237
  :param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier.
224
238
  :param pulumi.Input[str] consumption_model: Optional parameter specifying which entitlement to use for billing purposes. Only required if the account possesses more than one entitlement.
225
239
  :param pulumi.Input['VbInstanceCustomEndpointArgs'] custom_endpoint: (Updatable) Details for a custom endpoint for the vb instance (update).
226
240
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
227
241
  :param pulumi.Input[str] display_name: (Updatable) Vb Instance Identifier.
228
242
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
229
- :param pulumi.Input[Sequence[pulumi.Input['VbInstanceIdcsInfoArgs']]] idcs_infos: Information for IDCS access
230
243
  :param pulumi.Input[str] idcs_open_id: (Updatable) Encrypted IDCS Open ID token. This is required for pre-UCPIS cloud accounts, but not UCPIS, hence not a required parameter
231
244
  :param pulumi.Input[str] instance_url: The Vb Instance URL.
232
245
  :param pulumi.Input[bool] is_visual_builder_enabled: (Updatable) Visual Builder is enabled or not.
233
246
  :param pulumi.Input[str] management_nat_gateway_ip: The NAT gateway IP address for the VB management VCN
234
247
  :param pulumi.Input[str] management_vcn_id: The Oracle Cloud ID (OCID) of the Visual Builder management VCN
248
+ :param pulumi.Input['VbInstanceNetworkEndpointDetailsArgs'] network_endpoint_details: (Updatable) Base representation of a network endpoint. In input payload to update an Visual Builder instance endpoint details, an empty payload will clear out any existing configuration for Public Visual Builder instance.
235
249
  :param pulumi.Input[int] node_count: (Updatable) The number of Nodes
236
250
 
237
251
 
@@ -247,8 +261,6 @@ class _VbInstanceState:
247
261
  """
248
262
  if alternate_custom_endpoints is not None:
249
263
  pulumi.set(__self__, "alternate_custom_endpoints", alternate_custom_endpoints)
250
- if attachments is not None:
251
- pulumi.set(__self__, "attachments", attachments)
252
264
  if compartment_id is not None:
253
265
  pulumi.set(__self__, "compartment_id", compartment_id)
254
266
  if consumption_model is not None:
@@ -261,8 +273,6 @@ class _VbInstanceState:
261
273
  pulumi.set(__self__, "display_name", display_name)
262
274
  if freeform_tags is not None:
263
275
  pulumi.set(__self__, "freeform_tags", freeform_tags)
264
- if idcs_infos is not None:
265
- pulumi.set(__self__, "idcs_infos", idcs_infos)
266
276
  if idcs_open_id is not None:
267
277
  pulumi.set(__self__, "idcs_open_id", idcs_open_id)
268
278
  if instance_url is not None:
@@ -273,6 +283,8 @@ class _VbInstanceState:
273
283
  pulumi.set(__self__, "management_nat_gateway_ip", management_nat_gateway_ip)
274
284
  if management_vcn_id is not None:
275
285
  pulumi.set(__self__, "management_vcn_id", management_vcn_id)
286
+ if network_endpoint_details is not None:
287
+ pulumi.set(__self__, "network_endpoint_details", network_endpoint_details)
276
288
  if node_count is not None:
277
289
  pulumi.set(__self__, "node_count", node_count)
278
290
  if service_nat_gateway_ip is not None:
@@ -302,18 +314,6 @@ class _VbInstanceState:
302
314
  def alternate_custom_endpoints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VbInstanceAlternateCustomEndpointArgs']]]]):
303
315
  pulumi.set(self, "alternate_custom_endpoints", value)
304
316
 
305
- @property
306
- @pulumi.getter
307
- def attachments(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VbInstanceAttachmentArgs']]]]:
308
- """
309
- A list of associated attachments to other services
310
- """
311
- return pulumi.get(self, "attachments")
312
-
313
- @attachments.setter
314
- def attachments(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VbInstanceAttachmentArgs']]]]):
315
- pulumi.set(self, "attachments", value)
316
-
317
317
  @property
318
318
  @pulumi.getter(name="compartmentId")
319
319
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
@@ -386,18 +386,6 @@ class _VbInstanceState:
386
386
  def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
387
387
  pulumi.set(self, "freeform_tags", value)
388
388
 
389
- @property
390
- @pulumi.getter(name="idcsInfos")
391
- def idcs_infos(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VbInstanceIdcsInfoArgs']]]]:
392
- """
393
- Information for IDCS access
394
- """
395
- return pulumi.get(self, "idcs_infos")
396
-
397
- @idcs_infos.setter
398
- def idcs_infos(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VbInstanceIdcsInfoArgs']]]]):
399
- pulumi.set(self, "idcs_infos", value)
400
-
401
389
  @property
402
390
  @pulumi.getter(name="idcsOpenId")
403
391
  def idcs_open_id(self) -> Optional[pulumi.Input[str]]:
@@ -458,6 +446,18 @@ class _VbInstanceState:
458
446
  def management_vcn_id(self, value: Optional[pulumi.Input[str]]):
459
447
  pulumi.set(self, "management_vcn_id", value)
460
448
 
449
+ @property
450
+ @pulumi.getter(name="networkEndpointDetails")
451
+ def network_endpoint_details(self) -> Optional[pulumi.Input['VbInstanceNetworkEndpointDetailsArgs']]:
452
+ """
453
+ (Updatable) Base representation of a network endpoint. In input payload to update an Visual Builder instance endpoint details, an empty payload will clear out any existing configuration for Public Visual Builder instance.
454
+ """
455
+ return pulumi.get(self, "network_endpoint_details")
456
+
457
+ @network_endpoint_details.setter
458
+ def network_endpoint_details(self, value: Optional[pulumi.Input['VbInstanceNetworkEndpointDetailsArgs']]):
459
+ pulumi.set(self, "network_endpoint_details", value)
460
+
461
461
  @property
462
462
  @pulumi.getter(name="nodeCount")
463
463
  def node_count(self) -> Optional[pulumi.Input[int]]:
@@ -573,6 +573,7 @@ class VbInstance(pulumi.CustomResource):
573
573
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
574
574
  idcs_open_id: Optional[pulumi.Input[str]] = None,
575
575
  is_visual_builder_enabled: Optional[pulumi.Input[bool]] = None,
576
+ network_endpoint_details: Optional[pulumi.Input[Union['VbInstanceNetworkEndpointDetailsArgs', 'VbInstanceNetworkEndpointDetailsArgsDict']]] = None,
576
577
  node_count: Optional[pulumi.Input[int]] = None,
577
578
  __props__=None):
578
579
  """
@@ -606,7 +607,13 @@ class VbInstance(pulumi.CustomResource):
606
607
  "bar-key": "value",
607
608
  },
608
609
  idcs_open_id=test_idcs_open["id"],
609
- is_visual_builder_enabled=vb_instance_is_visual_builder_enabled)
610
+ is_visual_builder_enabled=vb_instance_is_visual_builder_enabled,
611
+ network_endpoint_details={
612
+ "network_endpoint_type": vb_instance_network_endpoint_details_network_endpoint_type,
613
+ "subnet_id": test_subnet["id"],
614
+ "network_security_group_ids": vb_instance_network_endpoint_details_network_security_group_ids,
615
+ "private_endpoint_ip": vb_instance_network_endpoint_details_private_endpoint_ip,
616
+ })
610
617
  ```
611
618
 
612
619
  ## Import
@@ -628,6 +635,7 @@ class VbInstance(pulumi.CustomResource):
628
635
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
629
636
  :param pulumi.Input[str] idcs_open_id: (Updatable) Encrypted IDCS Open ID token. This is required for pre-UCPIS cloud accounts, but not UCPIS, hence not a required parameter
630
637
  :param pulumi.Input[bool] is_visual_builder_enabled: (Updatable) Visual Builder is enabled or not.
638
+ :param pulumi.Input[Union['VbInstanceNetworkEndpointDetailsArgs', 'VbInstanceNetworkEndpointDetailsArgsDict']] network_endpoint_details: (Updatable) Base representation of a network endpoint. In input payload to update an Visual Builder instance endpoint details, an empty payload will clear out any existing configuration for Public Visual Builder instance.
631
639
  :param pulumi.Input[int] node_count: (Updatable) The number of Nodes
632
640
 
633
641
 
@@ -671,7 +679,13 @@ class VbInstance(pulumi.CustomResource):
671
679
  "bar-key": "value",
672
680
  },
673
681
  idcs_open_id=test_idcs_open["id"],
674
- is_visual_builder_enabled=vb_instance_is_visual_builder_enabled)
682
+ is_visual_builder_enabled=vb_instance_is_visual_builder_enabled,
683
+ network_endpoint_details={
684
+ "network_endpoint_type": vb_instance_network_endpoint_details_network_endpoint_type,
685
+ "subnet_id": test_subnet["id"],
686
+ "network_security_group_ids": vb_instance_network_endpoint_details_network_security_group_ids,
687
+ "private_endpoint_ip": vb_instance_network_endpoint_details_private_endpoint_ip,
688
+ })
675
689
  ```
676
690
 
677
691
  ## Import
@@ -706,6 +720,7 @@ class VbInstance(pulumi.CustomResource):
706
720
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
707
721
  idcs_open_id: Optional[pulumi.Input[str]] = None,
708
722
  is_visual_builder_enabled: Optional[pulumi.Input[bool]] = None,
723
+ network_endpoint_details: Optional[pulumi.Input[Union['VbInstanceNetworkEndpointDetailsArgs', 'VbInstanceNetworkEndpointDetailsArgsDict']]] = None,
709
724
  node_count: Optional[pulumi.Input[int]] = None,
710
725
  __props__=None):
711
726
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -729,11 +744,10 @@ class VbInstance(pulumi.CustomResource):
729
744
  __props__.__dict__["freeform_tags"] = freeform_tags
730
745
  __props__.__dict__["idcs_open_id"] = None if idcs_open_id is None else pulumi.Output.secret(idcs_open_id)
731
746
  __props__.__dict__["is_visual_builder_enabled"] = is_visual_builder_enabled
747
+ __props__.__dict__["network_endpoint_details"] = network_endpoint_details
732
748
  if node_count is None and not opts.urn:
733
749
  raise TypeError("Missing required property 'node_count'")
734
750
  __props__.__dict__["node_count"] = node_count
735
- __props__.__dict__["attachments"] = None
736
- __props__.__dict__["idcs_infos"] = None
737
751
  __props__.__dict__["instance_url"] = None
738
752
  __props__.__dict__["management_nat_gateway_ip"] = None
739
753
  __props__.__dict__["management_vcn_id"] = None
@@ -757,19 +771,18 @@ class VbInstance(pulumi.CustomResource):
757
771
  id: pulumi.Input[str],
758
772
  opts: Optional[pulumi.ResourceOptions] = None,
759
773
  alternate_custom_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VbInstanceAlternateCustomEndpointArgs', 'VbInstanceAlternateCustomEndpointArgsDict']]]]] = None,
760
- attachments: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VbInstanceAttachmentArgs', 'VbInstanceAttachmentArgsDict']]]]] = None,
761
774
  compartment_id: Optional[pulumi.Input[str]] = None,
762
775
  consumption_model: Optional[pulumi.Input[str]] = None,
763
776
  custom_endpoint: Optional[pulumi.Input[Union['VbInstanceCustomEndpointArgs', 'VbInstanceCustomEndpointArgsDict']]] = None,
764
777
  defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
765
778
  display_name: Optional[pulumi.Input[str]] = None,
766
779
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
767
- idcs_infos: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VbInstanceIdcsInfoArgs', 'VbInstanceIdcsInfoArgsDict']]]]] = None,
768
780
  idcs_open_id: Optional[pulumi.Input[str]] = None,
769
781
  instance_url: Optional[pulumi.Input[str]] = None,
770
782
  is_visual_builder_enabled: Optional[pulumi.Input[bool]] = None,
771
783
  management_nat_gateway_ip: Optional[pulumi.Input[str]] = None,
772
784
  management_vcn_id: Optional[pulumi.Input[str]] = None,
785
+ network_endpoint_details: Optional[pulumi.Input[Union['VbInstanceNetworkEndpointDetailsArgs', 'VbInstanceNetworkEndpointDetailsArgsDict']]] = None,
773
786
  node_count: Optional[pulumi.Input[int]] = None,
774
787
  service_nat_gateway_ip: Optional[pulumi.Input[str]] = None,
775
788
  service_vcn_id: Optional[pulumi.Input[str]] = None,
@@ -786,19 +799,18 @@ class VbInstance(pulumi.CustomResource):
786
799
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
787
800
  :param pulumi.ResourceOptions opts: Options for the resource.
788
801
  :param pulumi.Input[Sequence[pulumi.Input[Union['VbInstanceAlternateCustomEndpointArgs', 'VbInstanceAlternateCustomEndpointArgsDict']]]] alternate_custom_endpoints: (Updatable) A list of alternate custom endpoints to be used for the vb instance URL (contact Oracle for alternateCustomEndpoints availability for a specific instance).
789
- :param pulumi.Input[Sequence[pulumi.Input[Union['VbInstanceAttachmentArgs', 'VbInstanceAttachmentArgsDict']]]] attachments: A list of associated attachments to other services
790
802
  :param pulumi.Input[str] compartment_id: (Updatable) Compartment Identifier.
791
803
  :param pulumi.Input[str] consumption_model: Optional parameter specifying which entitlement to use for billing purposes. Only required if the account possesses more than one entitlement.
792
804
  :param pulumi.Input[Union['VbInstanceCustomEndpointArgs', 'VbInstanceCustomEndpointArgsDict']] custom_endpoint: (Updatable) Details for a custom endpoint for the vb instance (update).
793
805
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
794
806
  :param pulumi.Input[str] display_name: (Updatable) Vb Instance Identifier.
795
807
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
796
- :param pulumi.Input[Sequence[pulumi.Input[Union['VbInstanceIdcsInfoArgs', 'VbInstanceIdcsInfoArgsDict']]]] idcs_infos: Information for IDCS access
797
808
  :param pulumi.Input[str] idcs_open_id: (Updatable) Encrypted IDCS Open ID token. This is required for pre-UCPIS cloud accounts, but not UCPIS, hence not a required parameter
798
809
  :param pulumi.Input[str] instance_url: The Vb Instance URL.
799
810
  :param pulumi.Input[bool] is_visual_builder_enabled: (Updatable) Visual Builder is enabled or not.
800
811
  :param pulumi.Input[str] management_nat_gateway_ip: The NAT gateway IP address for the VB management VCN
801
812
  :param pulumi.Input[str] management_vcn_id: The Oracle Cloud ID (OCID) of the Visual Builder management VCN
813
+ :param pulumi.Input[Union['VbInstanceNetworkEndpointDetailsArgs', 'VbInstanceNetworkEndpointDetailsArgsDict']] network_endpoint_details: (Updatable) Base representation of a network endpoint. In input payload to update an Visual Builder instance endpoint details, an empty payload will clear out any existing configuration for Public Visual Builder instance.
802
814
  :param pulumi.Input[int] node_count: (Updatable) The number of Nodes
803
815
 
804
816
 
@@ -817,19 +829,18 @@ class VbInstance(pulumi.CustomResource):
817
829
  __props__ = _VbInstanceState.__new__(_VbInstanceState)
818
830
 
819
831
  __props__.__dict__["alternate_custom_endpoints"] = alternate_custom_endpoints
820
- __props__.__dict__["attachments"] = attachments
821
832
  __props__.__dict__["compartment_id"] = compartment_id
822
833
  __props__.__dict__["consumption_model"] = consumption_model
823
834
  __props__.__dict__["custom_endpoint"] = custom_endpoint
824
835
  __props__.__dict__["defined_tags"] = defined_tags
825
836
  __props__.__dict__["display_name"] = display_name
826
837
  __props__.__dict__["freeform_tags"] = freeform_tags
827
- __props__.__dict__["idcs_infos"] = idcs_infos
828
838
  __props__.__dict__["idcs_open_id"] = idcs_open_id
829
839
  __props__.__dict__["instance_url"] = instance_url
830
840
  __props__.__dict__["is_visual_builder_enabled"] = is_visual_builder_enabled
831
841
  __props__.__dict__["management_nat_gateway_ip"] = management_nat_gateway_ip
832
842
  __props__.__dict__["management_vcn_id"] = management_vcn_id
843
+ __props__.__dict__["network_endpoint_details"] = network_endpoint_details
833
844
  __props__.__dict__["node_count"] = node_count
834
845
  __props__.__dict__["service_nat_gateway_ip"] = service_nat_gateway_ip
835
846
  __props__.__dict__["service_vcn_id"] = service_vcn_id
@@ -848,14 +859,6 @@ class VbInstance(pulumi.CustomResource):
848
859
  """
849
860
  return pulumi.get(self, "alternate_custom_endpoints")
850
861
 
851
- @property
852
- @pulumi.getter
853
- def attachments(self) -> pulumi.Output[Sequence['outputs.VbInstanceAttachment']]:
854
- """
855
- A list of associated attachments to other services
856
- """
857
- return pulumi.get(self, "attachments")
858
-
859
862
  @property
860
863
  @pulumi.getter(name="compartmentId")
861
864
  def compartment_id(self) -> pulumi.Output[str]:
@@ -904,14 +907,6 @@ class VbInstance(pulumi.CustomResource):
904
907
  """
905
908
  return pulumi.get(self, "freeform_tags")
906
909
 
907
- @property
908
- @pulumi.getter(name="idcsInfos")
909
- def idcs_infos(self) -> pulumi.Output[Sequence['outputs.VbInstanceIdcsInfo']]:
910
- """
911
- Information for IDCS access
912
- """
913
- return pulumi.get(self, "idcs_infos")
914
-
915
910
  @property
916
911
  @pulumi.getter(name="idcsOpenId")
917
912
  def idcs_open_id(self) -> pulumi.Output[Optional[str]]:
@@ -952,6 +947,14 @@ class VbInstance(pulumi.CustomResource):
952
947
  """
953
948
  return pulumi.get(self, "management_vcn_id")
954
949
 
950
+ @property
951
+ @pulumi.getter(name="networkEndpointDetails")
952
+ def network_endpoint_details(self) -> pulumi.Output['outputs.VbInstanceNetworkEndpointDetails']:
953
+ """
954
+ (Updatable) Base representation of a network endpoint. In input payload to update an Visual Builder instance endpoint details, an empty payload will clear out any existing configuration for Public Visual Builder instance.
955
+ """
956
+ return pulumi.get(self, "network_endpoint_details")
957
+
955
958
  @property
956
959
  @pulumi.getter(name="nodeCount")
957
960
  def node_count(self) -> pulumi.Output[int]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_oci
3
- Version: 2.19.0a1733984857
3
+ Version: 2.19.0a1734003732
4
4
  Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.pulumi.com
@@ -1,7 +1,7 @@
1
- pulumi_oci/__init__.py,sha256=REECRQRrkwfxqAJzBm4qanFJFYJFnOB9Vwht9Q1VJ0I,171917
1
+ pulumi_oci/__init__.py,sha256=0mHoQv8CNd30E_GYoLFE-z97z1Fz7f9_C98WAcSyS6g,172934
2
2
  pulumi_oci/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
3
3
  pulumi_oci/provider.py,sha256=L04-4ahVUIjPUidGY7-4m7y0-gX_oHcgpIJSRYRJET4,24096
4
- pulumi_oci/pulumi-plugin.json,sha256=v9X9VxZReeXRJeSoOynoQtekG_jp8AsONSpKJtCCHNc,80
4
+ pulumi_oci/pulumi-plugin.json,sha256=WiV9Zfr1eBukM8uTHUZrecpyk9xYMFln7VSe07a2-V4,80
5
5
  pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  pulumi_oci/adm/__init__.py,sha256=pxPlS_-eNzVJqBq2i1MCMmmLGhFhW-ATfiH6YEb71xI,1049
7
7
  pulumi_oci/adm/_inputs.py,sha256=YnlFWcwYsWjjrUbroAeHpnljrt9mAPqMtutbJnKVRCk,69792
@@ -672,11 +672,11 @@ pulumi_oci/core/vtap.py,sha256=DPtuaAL94Be1JGuZdlxbnI82rF21PVhlOY5HqE_Cq8I,62801
672
672
  pulumi_oci/database/__init__.py,sha256=TbvsgFRkvTw9PdDU7h0BQI888lpmOooIdL9UuMQ5waA,9241
673
673
  pulumi_oci/database/_inputs.py,sha256=1ImW4rSj7tXWyVEZ64g0F9MxYYAGlwIk9G4tAlvEfik,1016938
674
674
  pulumi_oci/database/application_vip.py,sha256=JDVVsM5IEweW_6ArMrPkNxc-ip4taGgoscVO448uUrE,29325
675
- pulumi_oci/database/autonomous_container_database.py,sha256=_O44mxmyvUwPPfqzPRpy3FLH4F-p2LompF_0M0Mvsik,162125
675
+ pulumi_oci/database/autonomous_container_database.py,sha256=oyi2j9RZfzK9yo-OmEpPzpc5V2om7DEKSLv3kOBQneU,164353
676
676
  pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=Vqr9H2dth2n-aRH0WozgJE33EijV3LzaQXyyfzla5uU,75512
677
677
  pulumi_oci/database/autonomous_container_database_dataguard_association_operation.py,sha256=KdrGLo1fGVgJL4tpeiYMtjyAyIaWZ7oNCD_vKMof7A8,17941
678
678
  pulumi_oci/database/autonomous_container_database_dataguard_role_change.py,sha256=yML8BbuREYzHrq1dVIYwGlZ5bFpsBVGpT_Y9m-CI4V0,12423
679
- pulumi_oci/database/autonomous_database.py,sha256=6TRXZRssao2kPTWyNO4sL5Xb3mXNVGkz9IWBOo_t2Xc,485322
679
+ pulumi_oci/database/autonomous_database.py,sha256=DAQnfq6SxQFrxXPCC6I4m3wjOuivR26TqtdX7eHbqag,487550
680
680
  pulumi_oci/database/autonomous_database_backup.py,sha256=TMDev4UedzHcRjt5ZfjnoeC3-3OTA7rM4AaAtn_bvhA,43614
681
681
  pulumi_oci/database/autonomous_database_instance_wallet_management.py,sha256=shw6-GEc4MzawcuhYyZCXXOTszzM-P1Of1wCDnjc8hc,18745
682
682
  pulumi_oci/database/autonomous_database_regional_wallet_management.py,sha256=hmbYSqFq3LOc5hXDXtp56_Z8zaCpP2O6celvTcyR8tQ,15757
@@ -726,14 +726,14 @@ pulumi_oci/database/external_pluggable_databases_stack_monitoring.py,sha256=v6DZ
726
726
  pulumi_oci/database/get_application_vip.py,sha256=aZ_K12l1IZsAOZUp1pb0he0IuhPdQFor9969aT1OPNQ,11951
727
727
  pulumi_oci/database/get_application_vips.py,sha256=IkELK4zMVS5J-R8LysmYNxCKK3crKeF3y_oTwo3MEOo,8584
728
728
  pulumi_oci/database/get_autonomous_character_sets.py,sha256=PYoZrtSl03o16dxXgBlUKDmQ3h9-36GF5vLbO-lJskI,9184
729
- pulumi_oci/database/get_autonomous_container_database.py,sha256=oOWvDMdv5fryO_37kUib0hDXEY-hLCmZ6lGWSPhyrDY,53664
729
+ pulumi_oci/database/get_autonomous_container_database.py,sha256=ypwBDi3dEy9k6PSB1eXX7T6F-34PsirNt3KVsOJKt10,54322
730
730
  pulumi_oci/database/get_autonomous_container_database_dataguard_association.py,sha256=uIOmsyp4h2RRreig-MMxNQFENM9rVGQ7WxmHEMshWGA,27687
731
731
  pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py,sha256=t572N5q2X7gZMOJBYPREHDekZQrUrhrkzRZXPnQ_yK4,8669
732
732
  pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256=LOC6gXXjAWVFiyPj2az7aTMm-kF-Fh5iGe-0bNBigkQ,14353
733
733
  pulumi_oci/database/get_autonomous_container_database_versions.py,sha256=9HE-ThIghRLY3gPOA5YQXqc3zy1ffrRqWwC1ZsGqOeg,8183
734
734
  pulumi_oci/database/get_autonomous_container_databases.py,sha256=iJlx9-0MaxV8M3HSd3Fo-wwCxIUcewLv2ux7AgdSI7w,18903
735
735
  pulumi_oci/database/get_autonomous_container_patches.py,sha256=FarcOzwvRktqTL-klNGowQmteusBjhsiFR1Ik8aApmc,9370
736
- pulumi_oci/database/get_autonomous_database.py,sha256=--F88GxF0Xq9tvuJU4EO9KulDtodvcA315onoZnB_Gs,122129
736
+ pulumi_oci/database/get_autonomous_database.py,sha256=9QmDmM2J2HHI4CrViAguBEWS35dBpK7bWZo6fPU3TgQ,122787
737
737
  pulumi_oci/database/get_autonomous_database_backup.py,sha256=AFOGaqlIepz4vIH1-pFtqNRTS86pnt1XmItkBX49Qk4,20005
738
738
  pulumi_oci/database/get_autonomous_database_backups.py,sha256=QNgjBjIo_KGANlXNB1FiMPqHchjgD1OFoO-2OBMIq5Y,11473
739
739
  pulumi_oci/database/get_autonomous_database_dataguard_association.py,sha256=xPzVDdbxvW6wdCfcgeNvG4Drba-QLkahHDzfCtrFxCw,15280
@@ -860,7 +860,7 @@ pulumi_oci/database/get_vm_clusters.py,sha256=d7ChX_wXTaZvRQbdvO51tDbuCsEKPLS2G_
860
860
  pulumi_oci/database/key_store.py,sha256=utkO4jzVMM59m0NEZdhHdqnIdGpJiNjrW8mQjF9dT4o,27789
861
861
  pulumi_oci/database/maintenance_run.py,sha256=8ARRL5E_sID9VZe3D3Szdq4rcRcRgNN2NU6udQdyhyo,62143
862
862
  pulumi_oci/database/oneoff_patch.py,sha256=WmKZ_CNZ6Ns_0s5kRuvyXeT8KgNx24L7oiRQG5CRn-Q,38954
863
- pulumi_oci/database/outputs.py,sha256=UxUYmsRMF6BDFVv4UTufAsXvptY6jLZF4F2FytKwmCo,2416849
863
+ pulumi_oci/database/outputs.py,sha256=g6mSLXik6MQ5ociG_tspTyFrdwIn0PsGIWeU89-TRR4,2417335
864
864
  pulumi_oci/database/pluggable_database.py,sha256=OYwfbMsBO58xQigObXCmC9Qez3JJnjaz2blE4tmRrOg,75593
865
865
  pulumi_oci/database/pluggable_database_managements_management.py,sha256=cmW6n0jUdviIoYQ5sHe_AwQWIEXpy8DS1W7fFnMJK2w,52897
866
866
  pulumi_oci/database/pluggable_databases_local_clone.py,sha256=S0EmRLhANos9tiM_yFrDENRZWjiROIr6MorLJlC0qFw,51106
@@ -1047,8 +1047,8 @@ pulumi_oci/datacatalog/metastore.py,sha256=IonpdNSJZAmK8FFJqX9h_EZDDJrg7DAkjc-CT
1047
1047
  pulumi_oci/datacatalog/outputs.py,sha256=MbzlzN64kBgrABMQdmOEUkh8AcOoZBkA7ud75J4UsHw,69938
1048
1048
  pulumi_oci/dataflow/__init__.py,sha256=7ZsJyNDC6M94JA1AiJcVG7hppGNGQ2ccBLtMrPvhTbo,909
1049
1049
  pulumi_oci/dataflow/_inputs.py,sha256=AB3Vx0eDzPpsjZ5JNY6Q2BWDQYmf8gBgaXFiotqvcqo,64149
1050
- pulumi_oci/dataflow/application.py,sha256=d0gA_NuimCoIDBs-UgBSQ4mdzWzUIppzwHjzcp4Uh50,107540
1051
- pulumi_oci/dataflow/get_application.py,sha256=qqhYPBEkka2NiP3siu1t0RY5FOrautRbnbMbUbixQhw,28516
1050
+ pulumi_oci/dataflow/application.py,sha256=nVITG6V3304afYEBN6C5DBIEVQ9r4gBSftTNMZeSW64,110770
1051
+ pulumi_oci/dataflow/get_application.py,sha256=k48jo-4QWVwqJUnzzG275AfBAj2DHmK1JDDGLFGc-Aw,29426
1052
1052
  pulumi_oci/dataflow/get_applications.py,sha256=5Lq-2XRmH1D7CCfvSYREpDvHEVyRtW9I90dSZ-u_LY8,10718
1053
1053
  pulumi_oci/dataflow/get_invoke_run.py,sha256=S1eIwfBRHPd5JY6QufayuTqHwvDZQZKl-G_0GnzzqyI,37054
1054
1054
  pulumi_oci/dataflow/get_invoke_runs.py,sha256=Q2I_Udwp2wIx0Bsq3F0HUsMZDF1OdvtlrpCnu5if9lw,13566
@@ -1063,7 +1063,7 @@ pulumi_oci/dataflow/get_run_statements.py,sha256=0xfALs6eCxYvIuGw2n3VOhz7KpclX4c
1063
1063
  pulumi_oci/dataflow/get_sql_endpoint.py,sha256=lTu45zh8dG6D_eI1emVbCSNjFuTwogzXWOO572aN-bQ,20557
1064
1064
  pulumi_oci/dataflow/get_sql_endpoints.py,sha256=WtVQzBtdYbEbynq3XG0lr9Q7eBTVatN1X1rY4yv2fS4,9283
1065
1065
  pulumi_oci/dataflow/invoke_run.py,sha256=-3TONTW_d6Si4iXuOnUj3IgpCA-zPK7L7mkfq86FtIU,124199
1066
- pulumi_oci/dataflow/outputs.py,sha256=hicwL0Bd-_IT4SFsNYRvPHgP5v_AfLCyfOA4ncuRCkQ,193694
1066
+ pulumi_oci/dataflow/outputs.py,sha256=jdOyYSlCxgwx_hhYgZ0Td4iRxBsd8hEwnK_Z1TdmPeU,194010
1067
1067
  pulumi_oci/dataflow/pool.py,sha256=ChOnwFqz8zxt4JRIqeO2gkh-jevtW_BU-SFYt2PuZbM,42557
1068
1068
  pulumi_oci/dataflow/private_endpoint.py,sha256=vUd1BVNf53ZjXrq12k_BknYHsdAOhm8jiO5VQWDaWzU,43567
1069
1069
  pulumi_oci/dataflow/run_statement.py,sha256=1qlviaU5-X_U2I9Shfu2ctY-ZmqLNRdpV1Cw87r0UGE,16598
@@ -1362,15 +1362,15 @@ pulumi_oci/demandsignal/get_occ_demand_signals.py,sha256=qgRdUfEZRKlm2dKbpAHrYYu
1362
1362
  pulumi_oci/demandsignal/occ_demand_signal.py,sha256=P8xq9JeRvo-otM3jaJBEyc6d68yF0g2GM-m4zQM_XUU,35511
1363
1363
  pulumi_oci/demandsignal/outputs.py,sha256=rl3UrM8OOY2cRUO2O8mbXn1-PQQuKZeeJQ0gvgLT9BM,25185
1364
1364
  pulumi_oci/desktops/__init__.py,sha256=q-fySpbcf34D1wTkjYoyTh5h88che9ptnOT3e4wUdF0,543
1365
- pulumi_oci/desktops/_inputs.py,sha256=QeboTDw8M9l6qWnT_qkIECcYaUzOXfLaDpS-uTST9Bw,41195
1366
- pulumi_oci/desktops/desktop_pool.py,sha256=F2b6QJ6c-JW8dx7pcF9njgvhID4_jUk-CAqs4mCD604,84113
1365
+ pulumi_oci/desktops/_inputs.py,sha256=yhL20iN6V3U0uMi6MBbKy2v9It4T97pw6BuXRfItz9Y,41651
1366
+ pulumi_oci/desktops/desktop_pool.py,sha256=py7ngRbVXkBBkkTWYv8bidct6cvjO0V-l4M9VNO9_DE,87419
1367
1367
  pulumi_oci/desktops/get_desktop.py,sha256=H3c69VWyeW2Oq4Yrl3enBmseeysIdpe2BjV2zaMy38M,9707
1368
- pulumi_oci/desktops/get_desktop_pool.py,sha256=mwI43ez8QMLYUYQJSiASntAEI0lwSZT2ypot-UsNuyc,23660
1368
+ pulumi_oci/desktops/get_desktop_pool.py,sha256=Wc1w-FVXiiL8ScxksjDk_-p8xHyK4UQun3bRSZQ-yh8,24316
1369
1369
  pulumi_oci/desktops/get_desktop_pool_desktops.py,sha256=b4cfkrU2UvvTOslozLq44qF15aNgbr7u_NqPxH4D2KY,11110
1370
1370
  pulumi_oci/desktops/get_desktop_pool_volumes.py,sha256=aAshPBwwAy84oP666hSwgbDlVfalizAPMeghAlyPaFU,11194
1371
1371
  pulumi_oci/desktops/get_desktop_pools.py,sha256=Zo4A_UOm94gd3i3j6-WPGL4e4076uj2LOu4INkSMLrU,9871
1372
1372
  pulumi_oci/desktops/get_desktops.py,sha256=4OY3Q6CVxQHEgZwDR4NxY2-Gm_Y56kEMVu0YopBb2T8,10508
1373
- pulumi_oci/desktops/outputs.py,sha256=dbKOKf1Cey4tO0sZ0N3NF1R9n1zp9ek10BszR-ljE7I,108342
1373
+ pulumi_oci/desktops/outputs.py,sha256=-yzeT-OLW1pYIBNquzfbq9cJJHSeTjjmSe1t-G8gsmI,108933
1374
1374
  pulumi_oci/devops/__init__.py,sha256=ogod3Nh4yEX5W_vhC8lVlVH9Tp8gPp6WkEFiEHRmndU,2458
1375
1375
  pulumi_oci/devops/_inputs.py,sha256=NEDjMWesRDNDViNeLULunbKU5Q4pogcFPIN00DI4sL4,293496
1376
1376
  pulumi_oci/devops/build_pipeline.py,sha256=KHilTVB9nFTdl_RPk-ekCG3yT0jJUXPHU8KQkkqkMrc,34139
@@ -1437,17 +1437,17 @@ pulumi_oci/devops/repository_ref.py,sha256=bTc2buZ6prz0O2i5QM1X0rhTKTnlBzUHhjDMi
1437
1437
  pulumi_oci/devops/repository_setting.py,sha256=Zw8zRU91WKMdaiutsx3yXEeJ0C-Ya8VwCXgl8cKJYtM,19786
1438
1438
  pulumi_oci/devops/trigger.py,sha256=PQ-x7FLvyhrsoJQAUEZBz4ifi2bjbiSf8DxEBITLtMA,41624
1439
1439
  pulumi_oci/disasterrecovery/__init__.py,sha256=7KleD-hSyUzKkdXcRIDujms_xktRCUn-6DFX5pKrijo,614
1440
- pulumi_oci/disasterrecovery/_inputs.py,sha256=tKHJTc8y1N-51Ce6Pk4HxMhoI4Rcl3Aihjg-815SePg,121858
1441
- pulumi_oci/disasterrecovery/dr_plan.py,sha256=ldt6ZXAA3Ho8b9xVE0VflviR7NC0YALMgc6gtVKzGw0,32776
1440
+ pulumi_oci/disasterrecovery/_inputs.py,sha256=zP8UiEASl3ogmrjSay3ChpJjcQU9l-1Va-iaCYE9UNE,122358
1441
+ pulumi_oci/disasterrecovery/dr_plan.py,sha256=U_xQsIOHL_gMYCyxuwV4bFnKWHjJ7cciSZYIQ3pyjJ0,41481
1442
1442
  pulumi_oci/disasterrecovery/dr_plan_execution.py,sha256=iFCybPffT1kDUwZRwQ-am-Na3-xt9oZYY0YgKAboHuY,43603
1443
1443
  pulumi_oci/disasterrecovery/dr_protection_group.py,sha256=C43VAxhFodltPvxyJSSyNIFaVHT3ft6ZffrzGe95wfk,51702
1444
- pulumi_oci/disasterrecovery/get_dr_plan.py,sha256=tH1B0aqm7zmY8mUvuCR3xfsAy53X640u5LIK_7dFF94,13302
1444
+ pulumi_oci/disasterrecovery/get_dr_plan.py,sha256=P-NoyhTkDcBpKUa8_d9A17Z9ask1q2mhirPHH_bGdZI,15892
1445
1445
  pulumi_oci/disasterrecovery/get_dr_plan_execution.py,sha256=vumcNJQSuQx8ZCubuHjBOxDuXwxhmeLbWwBg8lG5MKA,18494
1446
1446
  pulumi_oci/disasterrecovery/get_dr_plan_executions.py,sha256=g2gHpvR6Lhe_XFT0SOVG7n-pkA2Kr0ART9AYpvV3aTw,10056
1447
- pulumi_oci/disasterrecovery/get_dr_plans.py,sha256=dweWL7pDo1t6ZrApQ4WJKDyPEFKGlaAI3ESvYt-cf8M,9985
1447
+ pulumi_oci/disasterrecovery/get_dr_plans.py,sha256=nMQwnpDvfBxff6qqA18xnA8eRRB3y5TTz-1sc2YEE6o,11283
1448
1448
  pulumi_oci/disasterrecovery/get_dr_protection_group.py,sha256=4J8MZtjl8DvD0OX_kMfACLIPjf3pgpTINP9XCg8cyNk,15451
1449
1449
  pulumi_oci/disasterrecovery/get_dr_protection_groups.py,sha256=Huom3Ompj_Z4XoVQATMB8QpMcOpdtJd8OhXQiG_noVo,12259
1450
- pulumi_oci/disasterrecovery/outputs.py,sha256=kdgv7z9Kfl0Nedab_ShLnK7HYlDSwZDvbhFq2GHekHc,243779
1450
+ pulumi_oci/disasterrecovery/outputs.py,sha256=jVQ9Qh7aKGchvtJURO5bokWbPEeJC5MEzgZt4C3oSDA,247532
1451
1451
  pulumi_oci/dns/__init__.py,sha256=8nwbkg-1fxwoeYrAl3ruZqYBtc_dy5xkFcm5dglF1qo,1198
1452
1452
  pulumi_oci/dns/_inputs.py,sha256=w4F1h-C5mUC66RU4_WIEoWZd1fev7MZfxVQ9MWTmDgE,148914
1453
1453
  pulumi_oci/dns/action_create_zone_from_zone_file.py,sha256=9Y6pYq6JUBMsSszbY23MsykJB3pR7ndXxVg06OqD8NI,39915
@@ -1529,52 +1529,71 @@ pulumi_oci/filestorage/outbound_connector.py,sha256=gLfBwDsSjEuxjzW8cAB5ap1mvNvy
1529
1529
  pulumi_oci/filestorage/outputs.py,sha256=8ORi38ykgGRxe-XJbf2Wd9RZNLwSYZm3gHHZtJw9wFo,192076
1530
1530
  pulumi_oci/filestorage/replication.py,sha256=_X1rgxGjutgnQ8OY5_nEQYo2wgV9cYOFV8Egh9wrWgA,51036
1531
1531
  pulumi_oci/filestorage/snapshot.py,sha256=ga_xBbnabrKx4P4pzJc04zNvcjbvtRzxeIC7QXOTK_Q,41106
1532
- pulumi_oci/fleetappsmanagement/__init__.py,sha256=Jog5NRf4m2CKeEpWmSUNxRYcmWnrhCiB7UILtXBqR2g,1453
1533
- pulumi_oci/fleetappsmanagement/_inputs.py,sha256=0UNwvrCwGo0bZGMgDXqLRmEa8X4Pa9WfIFonwFfVd0Q,68423
1534
- pulumi_oci/fleetappsmanagement/fleet.py,sha256=A6dqa-VoJ72QTQd4nTtOrU-aFEchi_90TAoLQNLfw6o,47759
1535
- pulumi_oci/fleetappsmanagement/fleet_credential.py,sha256=-J9JSzFI2La0jl6dLTrAPYAQdE1SVSSfTjXs73FtNzI,27862
1536
- pulumi_oci/fleetappsmanagement/fleet_property.py,sha256=81zjc2wfG7taoWMhuhCjOg42qhRUcOo3krCWVY46D_o,23755
1537
- pulumi_oci/fleetappsmanagement/fleet_resource.py,sha256=iDq72umOmLfVO7VWSBIKUxgCQpXksXpsvZJzIRQwN5g,36797
1538
- pulumi_oci/fleetappsmanagement/get_announcements.py,sha256=Er1QIR3MOanqsp8b4QbVGzOK06CnH2Sry7tHyHp-Tgs,7131
1539
- pulumi_oci/fleetappsmanagement/get_fleet.py,sha256=jQNbIzO9HadOvTr4rNYRmt8ahrNNo8gK7ZcUwwsxJ8E,17107
1540
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py,sha256=4RzpYBvvmkCPLEbvg5WJaGNHiWji1mj2a3thgOKqT8U,6610
1541
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py,sha256=fdaXQqJGJumXupTf0fR8iW2vnmgBnpq1KSiN-eEvSqo,11410
1542
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py,sha256=s-BfWNCIRNcG886RYKW2F7McclGCu45fbxuMYuLmS6Q,10566
1543
- pulumi_oci/fleetappsmanagement/get_fleet_products.py,sha256=H91l1DAf9g1pgNqxmeSfoLzFVGr30VnaRzuSfdxll2A,10298
1544
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py,sha256=zAIUUTs1IeXBQdNtId_y816CFrKXHQ6DEideAILY318,9341
1545
- pulumi_oci/fleetappsmanagement/get_fleet_property.py,sha256=hU7zNGPgCIeUauGJXqo_zEWZwIMEuU64hB9VAuHOGP4,11481
1546
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py,sha256=MTKHj8xWQoQXaaxg0UZ5PDXuIuAA45duMksX32oKl4w,16872
1547
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py,sha256=yp_JiLfsoHkAkrumZxmNfxtr3xK296ngBqmodlnmg4g,10383
1548
- pulumi_oci/fleetappsmanagement/get_fleet_targets.py,sha256=UtxIWxuSbPPqU8T4Qtmcurf44NPdcJp4RMb8-xHDeig,9991
1549
- pulumi_oci/fleetappsmanagement/get_fleets.py,sha256=SM4tPTXT6pJR0dZqus1hFZvL73-GZEGa_gqGrftuDwM,12375
1550
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py,sha256=EYr4BlqM4kE81vncL3x80GLKodIOvCkJLASaU6esyP4,17410
1551
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py,sha256=RYgUreUeFXuxl9aEs3bqEdfVha_B4TPBXgT7yeYQhcM,15971
1552
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py,sha256=tNNZlYt-bO_s7TK_CHXhVxo2WbubKt-xnEK-eeNSRhE,8793
1553
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py,sha256=0y2rNbMSVSBCDCghkniNqHfxzgkAWoKMQM33E7mNoAU,5073
1554
- pulumi_oci/fleetappsmanagement/get_onboardings.py,sha256=cDgc5dNEIRUnhHs_LHCaETRQkVAVhpBzDudb_xmeVX4,7032
1555
- pulumi_oci/fleetappsmanagement/get_properties.py,sha256=hfIbe5b22i0it2940mBdhNjB3Rj1GqfdjzB1ruHsHzI,9052
1556
- pulumi_oci/fleetappsmanagement/get_property.py,sha256=22ittqQcHFDjg4BoJ0ZNnVEEgfVBuEXyrZGz2bF4SSc,12872
1557
- pulumi_oci/fleetappsmanagement/get_runbook.py,sha256=WeuDs7HUQgKkodXWqtEzwU4DljVc3YWMpHcOVpgJsi0,15397
1558
- pulumi_oci/fleetappsmanagement/get_runbooks.py,sha256=6zgBT9ecCjYiL1pGYfHuhgSj15wcTx3nQnWGjDZutxY,11740
1559
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py,sha256=EtzeSB0ZHY1ag0PrvK2QyeFd3UZ4tSJPpGn3E6OpIFA,20185
1560
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py,sha256=JllShMZQ238sGlJjj9PvcITLkPCMdH7oUZps2kII_OY,9299
1561
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py,sha256=pQn6Lklum5siHQeebJGwHa8TYWrugafCQxkLbkqmHLw,12158
1562
- pulumi_oci/fleetappsmanagement/get_task_record.py,sha256=260xAST3I88BLoDYJyJr_chCrE0KzgMGXYl0Iim1zmE,12538
1532
+ pulumi_oci/fleetappsmanagement/__init__.py,sha256=3CY3llYOLwOKFIfAKn0wUk8bvsRvW8v_DQksc7PYZZI,2169
1533
+ pulumi_oci/fleetappsmanagement/_inputs.py,sha256=JmKNptY_91NiIfxXXHf8G-In-D7OpttHKpaLNyWFGzQ,268399
1534
+ pulumi_oci/fleetappsmanagement/compliance_policy_rule.py,sha256=i_sRMife0n2cV2TXiY9SMrKck42YB8nH3N2msU0nVr4,45843
1535
+ pulumi_oci/fleetappsmanagement/fleet.py,sha256=yKslu319eaYkXGOdcD00MD9WiQN0nRUd6NCQ5WL23VI,54446
1536
+ pulumi_oci/fleetappsmanagement/fleet_credential.py,sha256=Jir6S6tgpbDpRSHf2-1XuqzoJk6-hciypBJAPo7NFM4,28459
1537
+ pulumi_oci/fleetappsmanagement/fleet_property.py,sha256=tWQY3rkr_fjT3lU57ixUU5sMl4KN56C5afiXTVF5qno,24150
1538
+ pulumi_oci/fleetappsmanagement/fleet_resource.py,sha256=a7R573iCuYbYvyQPU-KgRxv57pVWKPup4MrOZJ8V5uw,36954
1539
+ pulumi_oci/fleetappsmanagement/get_announcements.py,sha256=xWzQjRiR5MtX84ZYGLn980Mt3RUjQCtl267r_-EvLeg,7167
1540
+ pulumi_oci/fleetappsmanagement/get_compliance_policies.py,sha256=7-Z4T6iTL6uzBVZqPw67advFcbl-4fKYZlFWIHJERzY,8708
1541
+ pulumi_oci/fleetappsmanagement/get_compliance_policy.py,sha256=bykdghMXzWI6_2zfLSKOLeAxa155w-MtOAexRD8Brr4,11072
1542
+ pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py,sha256=1R2Tua9NAkCinzigFQsdBrfxjozt9_rEjVVRMW_hU4s,15181
1543
+ pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py,sha256=aGOCn52D5VKYEc7mNIURiiTYbOLSTk78ZZwYq7itCUY,11486
1544
+ pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py,sha256=ns24l5ZZG2khl2VykhqKfWI6AA_nImtNGW4xb0bphG8,6529
1545
+ pulumi_oci/fleetappsmanagement/get_compliance_records.py,sha256=6i_tzZT33ICH0RjXoCjVBc3dCVVi3jfj6necl-hIPSI,12286
1546
+ pulumi_oci/fleetappsmanagement/get_fleet.py,sha256=qUezNBuy-H2QW7yrMKDoVRQ70vB1zc5wnc1Zu_J0Zqs,18411
1547
+ pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py,sha256=Nl9N0czEFzioMIXmtaXLLbkCtEtaMtoe9Ayi9zDWOAM,6628
1548
+ pulumi_oci/fleetappsmanagement/get_fleet_credential.py,sha256=_Sn8ShF5UsuP7E_ATHov9n0-5lOgEwA7XrrhYqLQV0M,11426
1549
+ pulumi_oci/fleetappsmanagement/get_fleet_credentials.py,sha256=gXtfsxfFuzbUjJjsQ6bPbcEyPWFGE0Ko5p5xcR05FUM,12922
1550
+ pulumi_oci/fleetappsmanagement/get_fleet_products.py,sha256=wR8oZSO4gYW7fcM7VK9FhqfwEc_o9j75lrcWEfIH3Lg,10368
1551
+ pulumi_oci/fleetappsmanagement/get_fleet_properties.py,sha256=959gY-62m7AHtbgM3vNQ2GjhvvPYIETRfMRwOkgJDF4,9509
1552
+ pulumi_oci/fleetappsmanagement/get_fleet_property.py,sha256=bhZsxuq6WWYZ5KqnUiNTw450Yh5B6HXzMqx_YQWVPr4,11529
1553
+ pulumi_oci/fleetappsmanagement/get_fleet_resource.py,sha256=yZs03-GAPKAYNRKwI1i_fceX6hkTkHvvCFhI8D8CBvw,16901
1554
+ pulumi_oci/fleetappsmanagement/get_fleet_resources.py,sha256=HeExeE3chWInqdAyevPNAIgxCOnTyOVXrES89Ll1M5w,10607
1555
+ pulumi_oci/fleetappsmanagement/get_fleet_targets.py,sha256=z7F_d7W4A4tRXI5eXMlvTcZP7i6QZRjohoODNhedBZk,10049
1556
+ pulumi_oci/fleetappsmanagement/get_fleets.py,sha256=CH90o7ODj0vAbKooYWrZ-7ZHWeLN-iwrj-BG8SJxG9U,12736
1557
+ pulumi_oci/fleetappsmanagement/get_inventory_resources.py,sha256=kMpBZc-qc7FOJ2t-JCPS9cOnhHFOVcHcLGpTI8YSahw,17906
1558
+ pulumi_oci/fleetappsmanagement/get_maintenance_window.py,sha256=AXegmc9CqcmqCYzqQY_rbiuCvnCU6jpksGG3uhKhJfI,16407
1559
+ pulumi_oci/fleetappsmanagement/get_maintenance_windows.py,sha256=_V09JXLNw7IuwxVJsJNs0zJaweB5xertPokSu5VPCFg,10965
1560
+ pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py,sha256=HlFIy9r0thRNRF7TYHw4Bpe69-B1EGKfZqrbXOgQ31E,6365
1561
+ pulumi_oci/fleetappsmanagement/get_onboarding_policies.py,sha256=MeYmuueAncQL4RfmriR1TKJqaeLete8b4qEO6LFsZKU,5121
1562
+ pulumi_oci/fleetappsmanagement/get_onboardings.py,sha256=8j_69eU-dfHhSmLXcQv2iNimXUdFqOgZWqPbQG1LlC8,7032
1563
+ pulumi_oci/fleetappsmanagement/get_patch.py,sha256=IV65uzIZ-CfogWk4G7DOU2qreFHAC1r7Xo91peXdl9E,14855
1564
+ pulumi_oci/fleetappsmanagement/get_patches.py,sha256=CjEIQuNM3E7ANkNwULzNURZG3IoXlEGngiO_wyXfekc,15839
1565
+ pulumi_oci/fleetappsmanagement/get_platform_configuration.py,sha256=FBMX9g4oTMEe_FwZ9DMglGnQZWbYGreeekdmpi7A1PQ,13138
1566
+ pulumi_oci/fleetappsmanagement/get_platform_configurations.py,sha256=VWPWRMLFOd5JlA5sX1MFKAAwYvENH29VnV9yait-7mY,10176
1567
+ pulumi_oci/fleetappsmanagement/get_properties.py,sha256=lS9ArWvcMLxw9MQtAS0BeFqpBlrEPSlFaUYOlA30cek,9237
1568
+ pulumi_oci/fleetappsmanagement/get_property.py,sha256=GUtUC8o4A3L_iHSHR9M0uMMkITEPMKBAhSbsFuqbYyM,12876
1569
+ pulumi_oci/fleetappsmanagement/get_runbook.py,sha256=07i_14JktB1GT8fA97JMPVXDU4hMhXEB7V9bf4cW0W0,15532
1570
+ pulumi_oci/fleetappsmanagement/get_runbooks.py,sha256=AlaMhs0SnQBOqouXI_LizjLRVVvWZT60xu-81Ukzw-I,12224
1571
+ pulumi_oci/fleetappsmanagement/get_scheduler_definition.py,sha256=iRqLE4QQMNI0_fG6UBTJQB2YBOmTtjhkPq4JF2zdyXg,20323
1572
+ pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py,sha256=f_FlcXbYI2BjbQuz6JWpTdsz1-Z_00M5huYC1zh0b3s,9301
1573
+ pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py,sha256=dG2-edy8BfIGlQbYMzqxMG5k1DbnpX1GZxJiMohsLLQ,13640
1574
+ pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py,sha256=L8qtDB7knY8lgR2Ps7EwoEcls1OPyqyoK5WGd0Yevyo,6305
1575
+ pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_resources.py,sha256=O18xOuygbqJTAD8mmRzbsJo0TVMlk8T0nG0OaU5OtiI,11605
1576
+ pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py,sha256=nHir1zd1LTCcsJyEMP9F_I_RiuoEdXnaHzYJ308QJxg,11324
1577
+ pulumi_oci/fleetappsmanagement/get_task_record.py,sha256=xQlKEd-dAYoo3SOfr6QrbmNopOcvaWigwFPAYlKD6t4,12493
1563
1578
  pulumi_oci/fleetappsmanagement/get_task_records.py,sha256=SmLdURtsEXgEb2pZvaPwsF_dG3A3XsMEwymtOGCC-ds,9763
1564
- pulumi_oci/fleetappsmanagement/maintenance_window.py,sha256=4tIXI-5h4qsvcz863sTHSg2-qPIe2y1RWOK9JzNljX4,43987
1565
- pulumi_oci/fleetappsmanagement/onboarding.py,sha256=MZpQCTlzwpJjecMHmtAGSXBb4n4uWunbMvC-ZObXdOo,20420
1566
- pulumi_oci/fleetappsmanagement/outputs.py,sha256=URCvMIvGHLzTZfEmybTnEgbeMl13h-yiQs24xi4e4YM,293916
1567
- pulumi_oci/fleetappsmanagement/property.py,sha256=M1VgkhRnp5v5gSJXA8R9fE_oqkT6QOyf6MKhtvYe5Gk,30383
1568
- pulumi_oci/fleetappsmanagement/scheduler_definition.py,sha256=BtpNZNI2eoRxEFy1K93Zsezq39XN0OFPYaQ_r0jk5P8,52168
1579
+ pulumi_oci/fleetappsmanagement/maintenance_window.py,sha256=mpjkOdYYPhnf7J4JzOowKu_foNB0Bb2m2GIni6xsACM,46605
1580
+ pulumi_oci/fleetappsmanagement/onboarding.py,sha256=YNUWM0Pt1hY9k_T6iYYqW6MORPFgJEjndD57wKPZwSg,26967
1581
+ pulumi_oci/fleetappsmanagement/outputs.py,sha256=NhHhv6mNLs08j0rRIwYx5hzMOajyNaojxeCcX0IByyg,639222
1582
+ pulumi_oci/fleetappsmanagement/patch.py,sha256=0xvmxFld2b1qA721wwShYU0zFlEv1DGBefKiTOmUNAM,46425
1583
+ pulumi_oci/fleetappsmanagement/platform_configuration.py,sha256=n0y2QFDuM4SfiljcoRdsz9CY4sNHWNBrOPWxhKAiKLc,34383
1584
+ pulumi_oci/fleetappsmanagement/property.py,sha256=Mio0DqXYMblHlILwUyB75509cb-e72iyr_PIZ0FtWxY,30616
1585
+ pulumi_oci/fleetappsmanagement/runbook.py,sha256=OUkhwJhvgBZVW2yvpcxgVUievuFRjcGhpl62rdmGVbk,60205
1586
+ pulumi_oci/fleetappsmanagement/scheduler_definition.py,sha256=rcEkgFRSYyWVV_CxJj_NAvvKjau8nHOZWvLqHETYPSM,52394
1587
+ pulumi_oci/fleetappsmanagement/task_record.py,sha256=Jkl_rxNlt3gg8cGVD_I-HXPc64Y2i0Z6UR1sd7k6gr0,36220
1569
1588
  pulumi_oci/fleetsoftwareupdate/__init__.py,sha256=pjI6H1538gr5ibAG9BxFd9PoYJIRZ_dACG1hvTouhYE,497
1570
1589
  pulumi_oci/fleetsoftwareupdate/_inputs.py,sha256=Dc8bF4TckP1pgPS-lMZGyUd4EW_Xs5y8BpUV14GwZt8,37262
1571
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py,sha256=6i0K_2TPW_w4M0-TizgJUUsewwbqtKuQdoTJg_jbldM,42378
1572
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py,sha256=8HN7i65KdO4Bh1krE8WIYWpjQ_k0AjFUoZ6MwF5SXZw,71594
1573
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py,sha256=tni18qVZ1mJZjM0SaV2aX68jGWe-RanxHnQ8ZNA1RtY,14488
1590
+ pulumi_oci/fleetsoftwareupdate/fsu_collection.py,sha256=mLmZO_CbbNDAlLB9Pn_XSjaYXDNIMk03QquSL5Phqs8,44075
1591
+ pulumi_oci/fleetsoftwareupdate/fsu_cycle.py,sha256=FLMWSkkWqeMb8Nurg0A9abqrX0D0SIwpxOb1cXao4IQ,75172
1592
+ pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py,sha256=unbVJnLAzOhF8MZ95m17pmZYL0bUA3NnGjWRTqPHPdo,15378
1574
1593
  pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py,sha256=29gTo70pN8ZJ_zJZZtwGEZWCamD7jOKVmm88OEgDk0M,9176
1575
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py,sha256=nk7dkBJDzWQ-KPnTDo76hMsi6WKm6Xnj0swxNtcMn7g,22548
1594
+ pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py,sha256=U-4IFsuArXzWeZjvUS9dtUO8YvQU3lYGs8dy5Y6oYL4,24273
1576
1595
  pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py,sha256=vhNjqxt3RCs0W_wJTevRag9DM6VPY6_36QpLexuLFXQ,11631
1577
- pulumi_oci/fleetsoftwareupdate/outputs.py,sha256=-inC-gZoimK5LI_UbdIVD1iMPS_D8puqtaCxRL94qO0,88829
1596
+ pulumi_oci/fleetsoftwareupdate/outputs.py,sha256=tU_RI7_MoJI6BM8HyrAiYSjPaiVKmnxeUqQSUOt2GGI,90845
1578
1597
  pulumi_oci/functions/__init__.py,sha256=tU-pJE4jEBX9z0lBXVdVAT7ImZSEx64sZB9YYWj2dys,1734
1579
1598
  pulumi_oci/functions/_inputs.py,sha256=pCxX4AANTB5Vf4C7XRNHVWdQFPwerQxkFMb1MQo0npk,31311
1580
1599
  pulumi_oci/functions/application.py,sha256=g3Re6b_rw0YlCwS6VycD6GOOB4OSl11YcA6RqMF1hh4,51534
@@ -2855,12 +2874,12 @@ pulumi_oci/vbs/get_inst_vbs_instances.py,sha256=oVACKjJbemhd6HZBFiM6ZWTaTX9i8-V5
2855
2874
  pulumi_oci/vbs/inst_vbs_instance.py,sha256=OIiSp3y5XqNH4yejtff8GDxXRt4UTqNQ7uv5LZWuAC8,35465
2856
2875
  pulumi_oci/vbs/outputs.py,sha256=zPYJC_gpKcUTYPYnSLLmVEoTHyX-fRc9Q2vJYM1nJ2Y,9320
2857
2876
  pulumi_oci/visualbuilder/__init__.py,sha256=_-OX-bR9j1iwNa4wpmZ3qZzzInQbV3WQD89vZ5Ens2M,448
2858
- pulumi_oci/visualbuilder/_inputs.py,sha256=iR7KgVtCL-C-gxYHFSBbafcSYkNYH_Uq9z3_u9aZUl8,19452
2859
- pulumi_oci/visualbuilder/get_vb_instance.py,sha256=paVDYbpfz7c91iyzMrTUfsj66eG1PP1PxSdgt8oJy-E,18533
2877
+ pulumi_oci/visualbuilder/_inputs.py,sha256=LgVKuI03ZWycNG1twl1AOkVxh4CVi7JSMbYiCJqqOIQ,12955
2878
+ pulumi_oci/visualbuilder/get_vb_instance.py,sha256=nTUQ4aEqq0GePJKRToIcvXZdltud_MsciihI2jYeLhA,18321
2860
2879
  pulumi_oci/visualbuilder/get_vb_instance_applications.py,sha256=7FYzyO0xx01OWo_69aw2sAkfurLjeeWQaatgNwRHbwo,6496
2861
2880
  pulumi_oci/visualbuilder/get_vb_instances.py,sha256=r6Vu9uytxZHQkiBi4vEUZ7ewOX6EImEgc1wdUEdd_RY,7864
2862
- pulumi_oci/visualbuilder/outputs.py,sha256=I27Boi2FJqkqhjeXjM_Q0lxDNSK4_eHNkST10_Hz7Eg,47131
2863
- pulumi_oci/visualbuilder/vb_instance.py,sha256=iVpC2GuRQCe_MRb36M-L8TkQTiG0v3k1JaXYyrg6_sU,51469
2881
+ pulumi_oci/visualbuilder/outputs.py,sha256=MO-cx5ejmjWqsMueQoTQF11VL5Ccjx3B0nSsv7dfqDY,34935
2882
+ pulumi_oci/visualbuilder/vb_instance.py,sha256=o8VusRQ5rwuQb6s0Ew21DMdiDogGWQFZlURcX2iW8Hc,53786
2864
2883
  pulumi_oci/vnmonitoring/__init__.py,sha256=OxQ2ge12nUXNLNX4-AYv25d9BNmoAeA5KtOjmlhGiQs,453
2865
2884
  pulumi_oci/vnmonitoring/_inputs.py,sha256=7jSrGVQLi8a2RLUDqeR_OB_i415BG_FBIuX6doBAD2w,55760
2866
2885
  pulumi_oci/vnmonitoring/get_path_analyzer_test.py,sha256=xEhUIIeHjoUzLLLEaT2SI0YmmEyx_1d6KGCh8q3WK9Y,13616
@@ -2938,7 +2957,7 @@ pulumi_oci/zpr/get_zpr_policies.py,sha256=xRhJl8bBol1fMs5EXtqBuTMajSv3v0tm1A0a0B
2938
2957
  pulumi_oci/zpr/get_zpr_policy.py,sha256=Zx42tYwAMM6gOiNIREiyxZyMA5Gy1aAMsFHAR-zf8bg,11465
2939
2958
  pulumi_oci/zpr/outputs.py,sha256=bLQC7_On52bzTOlKVC9oF2CSxcSo7CiwTmOkBNy7MD4,8943
2940
2959
  pulumi_oci/zpr/zpr_policy.py,sha256=kRQiN_Fg_m8N1oVD93ktqQhhXv8z8y08nBKuypB_t3k,32563
2941
- pulumi_oci-2.19.0a1733984857.dist-info/METADATA,sha256=Je-bjoidqYxngvlSXmqj3wd9cckqbXUPLeTKH9jSUfA,3965
2942
- pulumi_oci-2.19.0a1733984857.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
2943
- pulumi_oci-2.19.0a1733984857.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
2944
- pulumi_oci-2.19.0a1733984857.dist-info/RECORD,,
2960
+ pulumi_oci-2.19.0a1734003732.dist-info/METADATA,sha256=stTm53hOafSZx_-h-Ad0awF4d0NaFCphIyxBkW9Yh5I,3965
2961
+ pulumi_oci-2.19.0a1734003732.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
2962
+ pulumi_oci-2.19.0a1734003732.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
2963
+ pulumi_oci-2.19.0a1734003732.dist-info/RECORD,,