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
@@ -17,22 +17,19 @@ from . import outputs
17
17
 
18
18
  __all__ = [
19
19
  'VbInstanceAlternateCustomEndpoint',
20
- 'VbInstanceAttachment',
21
20
  'VbInstanceCustomEndpoint',
22
- 'VbInstanceIdcsInfo',
21
+ 'VbInstanceNetworkEndpointDetails',
23
22
  'GetVbInstanceAlternateCustomEndpointResult',
24
23
  'GetVbInstanceApplicationsApplicationSummaryCollectionResult',
25
24
  'GetVbInstanceApplicationsApplicationSummaryCollectionItemResult',
26
- 'GetVbInstanceAttachmentResult',
27
25
  'GetVbInstanceCustomEndpointResult',
28
- 'GetVbInstanceIdcsInfoResult',
26
+ 'GetVbInstanceNetworkEndpointDetailResult',
29
27
  'GetVbInstancesFilterResult',
30
28
  'GetVbInstancesVbInstanceSummaryCollectionResult',
31
29
  'GetVbInstancesVbInstanceSummaryCollectionItemResult',
32
30
  'GetVbInstancesVbInstanceSummaryCollectionItemAlternateCustomEndpointResult',
33
- 'GetVbInstancesVbInstanceSummaryCollectionItemAttachmentResult',
34
31
  'GetVbInstancesVbInstanceSummaryCollectionItemCustomEndpointResult',
35
- 'GetVbInstancesVbInstanceSummaryCollectionItemIdcsInfoResult',
32
+ 'GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailResult',
36
33
  ]
37
34
 
38
35
  @pulumi.output_type
@@ -96,104 +93,6 @@ class VbInstanceAlternateCustomEndpoint(dict):
96
93
  return pulumi.get(self, "certificate_secret_version")
97
94
 
98
95
 
99
- @pulumi.output_type
100
- class VbInstanceAttachment(dict):
101
- @staticmethod
102
- def __key_warning(key: str):
103
- suggest = None
104
- if key == "isImplicit":
105
- suggest = "is_implicit"
106
- elif key == "targetId":
107
- suggest = "target_id"
108
- elif key == "targetInstanceUrl":
109
- suggest = "target_instance_url"
110
- elif key == "targetRole":
111
- suggest = "target_role"
112
- elif key == "targetServiceType":
113
- suggest = "target_service_type"
114
-
115
- if suggest:
116
- pulumi.log.warn(f"Key '{key}' not found in VbInstanceAttachment. Access the value via the '{suggest}' property getter instead.")
117
-
118
- def __getitem__(self, key: str) -> Any:
119
- VbInstanceAttachment.__key_warning(key)
120
- return super().__getitem__(key)
121
-
122
- def get(self, key: str, default = None) -> Any:
123
- VbInstanceAttachment.__key_warning(key)
124
- return super().get(key, default)
125
-
126
- def __init__(__self__, *,
127
- is_implicit: Optional[bool] = None,
128
- target_id: Optional[str] = None,
129
- target_instance_url: Optional[str] = None,
130
- target_role: Optional[str] = None,
131
- target_service_type: Optional[str] = None):
132
- """
133
- :param bool is_implicit: * If role == `PARENT`, the attached instance was created by this service instance
134
- * If role == `CHILD`, this instance was created from attached instance on behalf of a user
135
- :param str target_id: The OCID of the target instance (which could be any other Oracle Cloud Infrastructure PaaS/SaaS resource), to which this instance is attached.
136
- :param str target_instance_url: The dataplane instance URL of the attached instance
137
- :param str target_role: The role of the target attachment.
138
- * `PARENT` - The target instance is the parent of this attachment.
139
- * `CHILD` - The target instance is the child of this attachment.
140
- :param str target_service_type: The type of the target instance, such as "FUSION".
141
- """
142
- if is_implicit is not None:
143
- pulumi.set(__self__, "is_implicit", is_implicit)
144
- if target_id is not None:
145
- pulumi.set(__self__, "target_id", target_id)
146
- if target_instance_url is not None:
147
- pulumi.set(__self__, "target_instance_url", target_instance_url)
148
- if target_role is not None:
149
- pulumi.set(__self__, "target_role", target_role)
150
- if target_service_type is not None:
151
- pulumi.set(__self__, "target_service_type", target_service_type)
152
-
153
- @property
154
- @pulumi.getter(name="isImplicit")
155
- def is_implicit(self) -> Optional[bool]:
156
- """
157
- * If role == `PARENT`, the attached instance was created by this service instance
158
- * If role == `CHILD`, this instance was created from attached instance on behalf of a user
159
- """
160
- return pulumi.get(self, "is_implicit")
161
-
162
- @property
163
- @pulumi.getter(name="targetId")
164
- def target_id(self) -> Optional[str]:
165
- """
166
- The OCID of the target instance (which could be any other Oracle Cloud Infrastructure PaaS/SaaS resource), to which this instance is attached.
167
- """
168
- return pulumi.get(self, "target_id")
169
-
170
- @property
171
- @pulumi.getter(name="targetInstanceUrl")
172
- def target_instance_url(self) -> Optional[str]:
173
- """
174
- The dataplane instance URL of the attached instance
175
- """
176
- return pulumi.get(self, "target_instance_url")
177
-
178
- @property
179
- @pulumi.getter(name="targetRole")
180
- def target_role(self) -> Optional[str]:
181
- """
182
- The role of the target attachment.
183
- * `PARENT` - The target instance is the parent of this attachment.
184
- * `CHILD` - The target instance is the child of this attachment.
185
- """
186
- return pulumi.get(self, "target_role")
187
-
188
- @property
189
- @pulumi.getter(name="targetServiceType")
190
- def target_service_type(self) -> Optional[str]:
191
- """
192
- The type of the target instance, such as "FUSION".
193
- """
194
- return pulumi.get(self, "target_service_type")
195
-
196
-
197
96
  @pulumi.output_type
198
97
  class VbInstanceCustomEndpoint(dict):
199
98
  @staticmethod
@@ -256,95 +155,79 @@ class VbInstanceCustomEndpoint(dict):
256
155
 
257
156
 
258
157
  @pulumi.output_type
259
- class VbInstanceIdcsInfo(dict):
158
+ class VbInstanceNetworkEndpointDetails(dict):
260
159
  @staticmethod
261
160
  def __key_warning(key: str):
262
161
  suggest = None
263
- if key == "idcsAppDisplayName":
264
- suggest = "idcs_app_display_name"
265
- elif key == "idcsAppId":
266
- suggest = "idcs_app_id"
267
- elif key == "idcsAppLocationUrl":
268
- suggest = "idcs_app_location_url"
269
- elif key == "idcsAppName":
270
- suggest = "idcs_app_name"
271
- elif key == "instancePrimaryAudienceUrl":
272
- suggest = "instance_primary_audience_url"
162
+ if key == "networkEndpointType":
163
+ suggest = "network_endpoint_type"
164
+ elif key == "subnetId":
165
+ suggest = "subnet_id"
166
+ elif key == "networkSecurityGroupIds":
167
+ suggest = "network_security_group_ids"
168
+ elif key == "privateEndpointIp":
169
+ suggest = "private_endpoint_ip"
273
170
 
274
171
  if suggest:
275
- pulumi.log.warn(f"Key '{key}' not found in VbInstanceIdcsInfo. Access the value via the '{suggest}' property getter instead.")
172
+ pulumi.log.warn(f"Key '{key}' not found in VbInstanceNetworkEndpointDetails. Access the value via the '{suggest}' property getter instead.")
276
173
 
277
174
  def __getitem__(self, key: str) -> Any:
278
- VbInstanceIdcsInfo.__key_warning(key)
175
+ VbInstanceNetworkEndpointDetails.__key_warning(key)
279
176
  return super().__getitem__(key)
280
177
 
281
178
  def get(self, key: str, default = None) -> Any:
282
- VbInstanceIdcsInfo.__key_warning(key)
179
+ VbInstanceNetworkEndpointDetails.__key_warning(key)
283
180
  return super().get(key, default)
284
181
 
285
182
  def __init__(__self__, *,
286
- idcs_app_display_name: Optional[str] = None,
287
- idcs_app_id: Optional[str] = None,
288
- idcs_app_location_url: Optional[str] = None,
289
- idcs_app_name: Optional[str] = None,
290
- instance_primary_audience_url: Optional[str] = None):
291
- """
292
- :param str idcs_app_display_name: The IDCS application display name associated with the instance
293
- :param str idcs_app_id: The IDCS application ID associated with the instance
294
- :param str idcs_app_location_url: URL for the location of the IDCS Application (used by IDCS APIs)
295
- :param str idcs_app_name: The IDCS application name associated with the instance
296
- :param str instance_primary_audience_url: The URL used as the primary audience for visual builder flows in this instance type: string
297
- """
298
- if idcs_app_display_name is not None:
299
- pulumi.set(__self__, "idcs_app_display_name", idcs_app_display_name)
300
- if idcs_app_id is not None:
301
- pulumi.set(__self__, "idcs_app_id", idcs_app_id)
302
- if idcs_app_location_url is not None:
303
- pulumi.set(__self__, "idcs_app_location_url", idcs_app_location_url)
304
- if idcs_app_name is not None:
305
- pulumi.set(__self__, "idcs_app_name", idcs_app_name)
306
- if instance_primary_audience_url is not None:
307
- pulumi.set(__self__, "instance_primary_audience_url", instance_primary_audience_url)
308
-
309
- @property
310
- @pulumi.getter(name="idcsAppDisplayName")
311
- def idcs_app_display_name(self) -> Optional[str]:
183
+ network_endpoint_type: str,
184
+ subnet_id: str,
185
+ network_security_group_ids: Optional[Sequence[str]] = None,
186
+ private_endpoint_ip: Optional[str] = None):
312
187
  """
313
- The IDCS application display name associated with the instance
188
+ :param str network_endpoint_type: (Updatable) The type of network endpoint.
189
+ :param str subnet_id: (Updatable) The subnet OCID for the private endpoint.
190
+ :param Sequence[str] network_security_group_ids: (Updatable) Network Security Group OCIDs for the Private Endpoint.
191
+ :param str private_endpoint_ip: The IP address to be assigned to Private Endpoint
314
192
  """
315
- return pulumi.get(self, "idcs_app_display_name")
193
+ pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
194
+ pulumi.set(__self__, "subnet_id", subnet_id)
195
+ if network_security_group_ids is not None:
196
+ pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
197
+ if private_endpoint_ip is not None:
198
+ pulumi.set(__self__, "private_endpoint_ip", private_endpoint_ip)
316
199
 
317
200
  @property
318
- @pulumi.getter(name="idcsAppId")
319
- def idcs_app_id(self) -> Optional[str]:
201
+ @pulumi.getter(name="networkEndpointType")
202
+ def network_endpoint_type(self) -> str:
320
203
  """
321
- The IDCS application ID associated with the instance
204
+ (Updatable) The type of network endpoint.
322
205
  """
323
- return pulumi.get(self, "idcs_app_id")
206
+ return pulumi.get(self, "network_endpoint_type")
324
207
 
325
208
  @property
326
- @pulumi.getter(name="idcsAppLocationUrl")
327
- def idcs_app_location_url(self) -> Optional[str]:
209
+ @pulumi.getter(name="subnetId")
210
+ def subnet_id(self) -> str:
328
211
  """
329
- URL for the location of the IDCS Application (used by IDCS APIs)
212
+ (Updatable) The subnet OCID for the private endpoint.
330
213
  """
331
- return pulumi.get(self, "idcs_app_location_url")
214
+ return pulumi.get(self, "subnet_id")
332
215
 
333
216
  @property
334
- @pulumi.getter(name="idcsAppName")
335
- def idcs_app_name(self) -> Optional[str]:
217
+ @pulumi.getter(name="networkSecurityGroupIds")
218
+ def network_security_group_ids(self) -> Optional[Sequence[str]]:
336
219
  """
337
- The IDCS application name associated with the instance
220
+ (Updatable) Network Security Group OCIDs for the Private Endpoint.
338
221
  """
339
- return pulumi.get(self, "idcs_app_name")
222
+ return pulumi.get(self, "network_security_group_ids")
340
223
 
341
224
  @property
342
- @pulumi.getter(name="instancePrimaryAudienceUrl")
343
- def instance_primary_audience_url(self) -> Optional[str]:
225
+ @pulumi.getter(name="privateEndpointIp")
226
+ def private_endpoint_ip(self) -> Optional[str]:
344
227
  """
345
- The URL used as the primary audience for visual builder flows in this instance type: string
228
+ The IP address to be assigned to Private Endpoint
346
229
  """
347
- return pulumi.get(self, "instance_primary_audience_url")
230
+ return pulumi.get(self, "private_endpoint_ip")
348
231
 
349
232
 
350
233
  @pulumi.output_type
@@ -450,74 +333,6 @@ class GetVbInstanceApplicationsApplicationSummaryCollectionItemResult(dict):
450
333
  return pulumi.get(self, "version")
451
334
 
452
335
 
453
- @pulumi.output_type
454
- class GetVbInstanceAttachmentResult(dict):
455
- def __init__(__self__, *,
456
- is_implicit: bool,
457
- target_id: str,
458
- target_instance_url: str,
459
- target_role: str,
460
- target_service_type: str):
461
- """
462
- :param bool is_implicit: * If role == `PARENT`, the attached instance was created by this service instance
463
- * If role == `CHILD`, this instance was created from attached instance on behalf of a user
464
- :param str target_id: The OCID of the target instance (which could be any other Oracle Cloud Infrastructure PaaS/SaaS resource), to which this instance is attached.
465
- :param str target_instance_url: The dataplane instance URL of the attached instance
466
- :param str target_role: The role of the target attachment.
467
- * `PARENT` - The target instance is the parent of this attachment.
468
- * `CHILD` - The target instance is the child of this attachment.
469
- :param str target_service_type: The type of the target instance, such as "FUSION".
470
- """
471
- pulumi.set(__self__, "is_implicit", is_implicit)
472
- pulumi.set(__self__, "target_id", target_id)
473
- pulumi.set(__self__, "target_instance_url", target_instance_url)
474
- pulumi.set(__self__, "target_role", target_role)
475
- pulumi.set(__self__, "target_service_type", target_service_type)
476
-
477
- @property
478
- @pulumi.getter(name="isImplicit")
479
- def is_implicit(self) -> bool:
480
- """
481
- * If role == `PARENT`, the attached instance was created by this service instance
482
- * If role == `CHILD`, this instance was created from attached instance on behalf of a user
483
- """
484
- return pulumi.get(self, "is_implicit")
485
-
486
- @property
487
- @pulumi.getter(name="targetId")
488
- def target_id(self) -> str:
489
- """
490
- The OCID of the target instance (which could be any other Oracle Cloud Infrastructure PaaS/SaaS resource), to which this instance is attached.
491
- """
492
- return pulumi.get(self, "target_id")
493
-
494
- @property
495
- @pulumi.getter(name="targetInstanceUrl")
496
- def target_instance_url(self) -> str:
497
- """
498
- The dataplane instance URL of the attached instance
499
- """
500
- return pulumi.get(self, "target_instance_url")
501
-
502
- @property
503
- @pulumi.getter(name="targetRole")
504
- def target_role(self) -> str:
505
- """
506
- The role of the target attachment.
507
- * `PARENT` - The target instance is the parent of this attachment.
508
- * `CHILD` - The target instance is the child of this attachment.
509
- """
510
- return pulumi.get(self, "target_role")
511
-
512
- @property
513
- @pulumi.getter(name="targetServiceType")
514
- def target_service_type(self) -> str:
515
- """
516
- The type of the target instance, such as "FUSION".
517
- """
518
- return pulumi.get(self, "target_service_type")
519
-
520
-
521
336
  @pulumi.output_type
522
337
  class GetVbInstanceCustomEndpointResult(dict):
523
338
  def __init__(__self__, *,
@@ -559,65 +374,54 @@ class GetVbInstanceCustomEndpointResult(dict):
559
374
 
560
375
 
561
376
  @pulumi.output_type
562
- class GetVbInstanceIdcsInfoResult(dict):
377
+ class GetVbInstanceNetworkEndpointDetailResult(dict):
563
378
  def __init__(__self__, *,
564
- idcs_app_display_name: str,
565
- idcs_app_id: str,
566
- idcs_app_location_url: str,
567
- idcs_app_name: str,
568
- instance_primary_audience_url: str):
569
- """
570
- :param str idcs_app_display_name: The IDCS application display name associated with the instance
571
- :param str idcs_app_id: The IDCS application ID associated with the instance
572
- :param str idcs_app_location_url: URL for the location of the IDCS Application (used by IDCS APIs)
573
- :param str idcs_app_name: The IDCS application name associated with the instance
574
- :param str instance_primary_audience_url: The URL used as the primary audience for visual builder flows in this instance type: string
575
- """
576
- pulumi.set(__self__, "idcs_app_display_name", idcs_app_display_name)
577
- pulumi.set(__self__, "idcs_app_id", idcs_app_id)
578
- pulumi.set(__self__, "idcs_app_location_url", idcs_app_location_url)
579
- pulumi.set(__self__, "idcs_app_name", idcs_app_name)
580
- pulumi.set(__self__, "instance_primary_audience_url", instance_primary_audience_url)
581
-
582
- @property
583
- @pulumi.getter(name="idcsAppDisplayName")
584
- def idcs_app_display_name(self) -> str:
379
+ network_endpoint_type: str,
380
+ network_security_group_ids: Sequence[str],
381
+ private_endpoint_ip: str,
382
+ subnet_id: str):
585
383
  """
586
- The IDCS application display name associated with the instance
384
+ :param str network_endpoint_type: The type of network endpoint.
385
+ :param Sequence[str] network_security_group_ids: Network Security Group OCIDs for the Private Endpoint.
386
+ :param str private_endpoint_ip: The IP address to be assigned to Private Endpoint
387
+ :param str subnet_id: The subnet OCID for the private endpoint.
587
388
  """
588
- return pulumi.get(self, "idcs_app_display_name")
389
+ pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
390
+ pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
391
+ pulumi.set(__self__, "private_endpoint_ip", private_endpoint_ip)
392
+ pulumi.set(__self__, "subnet_id", subnet_id)
589
393
 
590
394
  @property
591
- @pulumi.getter(name="idcsAppId")
592
- def idcs_app_id(self) -> str:
395
+ @pulumi.getter(name="networkEndpointType")
396
+ def network_endpoint_type(self) -> str:
593
397
  """
594
- The IDCS application ID associated with the instance
398
+ The type of network endpoint.
595
399
  """
596
- return pulumi.get(self, "idcs_app_id")
400
+ return pulumi.get(self, "network_endpoint_type")
597
401
 
598
402
  @property
599
- @pulumi.getter(name="idcsAppLocationUrl")
600
- def idcs_app_location_url(self) -> str:
403
+ @pulumi.getter(name="networkSecurityGroupIds")
404
+ def network_security_group_ids(self) -> Sequence[str]:
601
405
  """
602
- URL for the location of the IDCS Application (used by IDCS APIs)
406
+ Network Security Group OCIDs for the Private Endpoint.
603
407
  """
604
- return pulumi.get(self, "idcs_app_location_url")
408
+ return pulumi.get(self, "network_security_group_ids")
605
409
 
606
410
  @property
607
- @pulumi.getter(name="idcsAppName")
608
- def idcs_app_name(self) -> str:
411
+ @pulumi.getter(name="privateEndpointIp")
412
+ def private_endpoint_ip(self) -> str:
609
413
  """
610
- The IDCS application name associated with the instance
414
+ The IP address to be assigned to Private Endpoint
611
415
  """
612
- return pulumi.get(self, "idcs_app_name")
416
+ return pulumi.get(self, "private_endpoint_ip")
613
417
 
614
418
  @property
615
- @pulumi.getter(name="instancePrimaryAudienceUrl")
616
- def instance_primary_audience_url(self) -> str:
419
+ @pulumi.getter(name="subnetId")
420
+ def subnet_id(self) -> str:
617
421
  """
618
- The URL used as the primary audience for visual builder flows in this instance type: string
422
+ The subnet OCID for the private endpoint.
619
423
  """
620
- return pulumi.get(self, "instance_primary_audience_url")
424
+ return pulumi.get(self, "subnet_id")
621
425
 
622
426
 
623
427
  @pulumi.output_type
@@ -663,7 +467,6 @@ class GetVbInstancesVbInstanceSummaryCollectionResult(dict):
663
467
  class GetVbInstancesVbInstanceSummaryCollectionItemResult(dict):
664
468
  def __init__(__self__, *,
665
469
  alternate_custom_endpoints: Sequence['outputs.GetVbInstancesVbInstanceSummaryCollectionItemAlternateCustomEndpointResult'],
666
- attachments: Sequence['outputs.GetVbInstancesVbInstanceSummaryCollectionItemAttachmentResult'],
667
470
  compartment_id: str,
668
471
  consumption_model: str,
669
472
  custom_endpoints: Sequence['outputs.GetVbInstancesVbInstanceSummaryCollectionItemCustomEndpointResult'],
@@ -671,12 +474,12 @@ class GetVbInstancesVbInstanceSummaryCollectionItemResult(dict):
671
474
  display_name: str,
672
475
  freeform_tags: Mapping[str, str],
673
476
  id: str,
674
- idcs_infos: Sequence['outputs.GetVbInstancesVbInstanceSummaryCollectionItemIdcsInfoResult'],
675
477
  idcs_open_id: str,
676
478
  instance_url: str,
677
479
  is_visual_builder_enabled: bool,
678
480
  management_nat_gateway_ip: str,
679
481
  management_vcn_id: str,
482
+ network_endpoint_details: Sequence['outputs.GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailResult'],
680
483
  node_count: int,
681
484
  service_nat_gateway_ip: str,
682
485
  service_vcn_id: str,
@@ -687,7 +490,6 @@ class GetVbInstancesVbInstanceSummaryCollectionItemResult(dict):
687
490
  time_updated: str):
688
491
  """
689
492
  :param Sequence['GetVbInstancesVbInstanceSummaryCollectionItemAlternateCustomEndpointArgs'] alternate_custom_endpoints: A list of alternate custom endpoints used for the vb instance URL.
690
- :param Sequence['GetVbInstancesVbInstanceSummaryCollectionItemAttachmentArgs'] attachments: A list of associated attachments to other services
691
493
  :param str compartment_id: The ID of the compartment in which to list resources.
692
494
  :param str consumption_model: The entitlement used for billing purposes.
693
495
  :param Sequence['GetVbInstancesVbInstanceSummaryCollectionItemCustomEndpointArgs'] custom_endpoints: Details for a custom endpoint for the vb instance.
@@ -695,11 +497,11 @@ class GetVbInstancesVbInstanceSummaryCollectionItemResult(dict):
695
497
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Example: `My new resource`
696
498
  :param Mapping[str, str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
697
499
  :param str id: Unique identifier that is immutable on creation.
698
- :param Sequence['GetVbInstancesVbInstanceSummaryCollectionItemIdcsInfoArgs'] idcs_infos: Information for IDCS access
699
500
  :param str instance_url: The Vb Instance URL.
700
501
  :param bool is_visual_builder_enabled: Visual Builder is enabled or not.
701
502
  :param str management_nat_gateway_ip: The NAT gateway IP address for the VB management VCN
702
503
  :param str management_vcn_id: The Oracle Cloud ID (OCID) of the Visual Builder management VCN
504
+ :param Sequence['GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailArgs'] network_endpoint_details: 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.
703
505
  :param int node_count: The number of Nodes
704
506
  :param str service_nat_gateway_ip: The NAT gateway IP address for the VB service VCN
705
507
  :param str service_vcn_id: The Oracle Cloud ID (OCID) of the Visual Builder service VCN
@@ -710,7 +512,6 @@ class GetVbInstancesVbInstanceSummaryCollectionItemResult(dict):
710
512
  :param str time_updated: The time the VbInstance was updated. An RFC3339 formatted datetime string.
711
513
  """
712
514
  pulumi.set(__self__, "alternate_custom_endpoints", alternate_custom_endpoints)
713
- pulumi.set(__self__, "attachments", attachments)
714
515
  pulumi.set(__self__, "compartment_id", compartment_id)
715
516
  pulumi.set(__self__, "consumption_model", consumption_model)
716
517
  pulumi.set(__self__, "custom_endpoints", custom_endpoints)
@@ -718,12 +519,12 @@ class GetVbInstancesVbInstanceSummaryCollectionItemResult(dict):
718
519
  pulumi.set(__self__, "display_name", display_name)
719
520
  pulumi.set(__self__, "freeform_tags", freeform_tags)
720
521
  pulumi.set(__self__, "id", id)
721
- pulumi.set(__self__, "idcs_infos", idcs_infos)
722
522
  pulumi.set(__self__, "idcs_open_id", idcs_open_id)
723
523
  pulumi.set(__self__, "instance_url", instance_url)
724
524
  pulumi.set(__self__, "is_visual_builder_enabled", is_visual_builder_enabled)
725
525
  pulumi.set(__self__, "management_nat_gateway_ip", management_nat_gateway_ip)
726
526
  pulumi.set(__self__, "management_vcn_id", management_vcn_id)
527
+ pulumi.set(__self__, "network_endpoint_details", network_endpoint_details)
727
528
  pulumi.set(__self__, "node_count", node_count)
728
529
  pulumi.set(__self__, "service_nat_gateway_ip", service_nat_gateway_ip)
729
530
  pulumi.set(__self__, "service_vcn_id", service_vcn_id)
@@ -741,14 +542,6 @@ class GetVbInstancesVbInstanceSummaryCollectionItemResult(dict):
741
542
  """
742
543
  return pulumi.get(self, "alternate_custom_endpoints")
743
544
 
744
- @property
745
- @pulumi.getter
746
- def attachments(self) -> Sequence['outputs.GetVbInstancesVbInstanceSummaryCollectionItemAttachmentResult']:
747
- """
748
- A list of associated attachments to other services
749
- """
750
- return pulumi.get(self, "attachments")
751
-
752
545
  @property
753
546
  @pulumi.getter(name="compartmentId")
754
547
  def compartment_id(self) -> str:
@@ -805,14 +598,6 @@ class GetVbInstancesVbInstanceSummaryCollectionItemResult(dict):
805
598
  """
806
599
  return pulumi.get(self, "id")
807
600
 
808
- @property
809
- @pulumi.getter(name="idcsInfos")
810
- def idcs_infos(self) -> Sequence['outputs.GetVbInstancesVbInstanceSummaryCollectionItemIdcsInfoResult']:
811
- """
812
- Information for IDCS access
813
- """
814
- return pulumi.get(self, "idcs_infos")
815
-
816
601
  @property
817
602
  @pulumi.getter(name="idcsOpenId")
818
603
  def idcs_open_id(self) -> str:
@@ -850,6 +635,14 @@ class GetVbInstancesVbInstanceSummaryCollectionItemResult(dict):
850
635
  """
851
636
  return pulumi.get(self, "management_vcn_id")
852
637
 
638
+ @property
639
+ @pulumi.getter(name="networkEndpointDetails")
640
+ def network_endpoint_details(self) -> Sequence['outputs.GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailResult']:
641
+ """
642
+ 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.
643
+ """
644
+ return pulumi.get(self, "network_endpoint_details")
645
+
853
646
  @property
854
647
  @pulumi.getter(name="nodeCount")
855
648
  def node_count(self) -> int:
@@ -955,74 +748,6 @@ class GetVbInstancesVbInstanceSummaryCollectionItemAlternateCustomEndpointResult
955
748
  return pulumi.get(self, "hostname")
956
749
 
957
750
 
958
- @pulumi.output_type
959
- class GetVbInstancesVbInstanceSummaryCollectionItemAttachmentResult(dict):
960
- def __init__(__self__, *,
961
- is_implicit: bool,
962
- target_id: str,
963
- target_instance_url: str,
964
- target_role: str,
965
- target_service_type: str):
966
- """
967
- :param bool is_implicit: * If role == `PARENT`, the attached instance was created by this service instance
968
- * If role == `CHILD`, this instance was created from attached instance on behalf of a user
969
- :param str target_id: The OCID of the target instance (which could be any other Oracle Cloud Infrastructure PaaS/SaaS resource), to which this instance is attached.
970
- :param str target_instance_url: The dataplane instance URL of the attached instance
971
- :param str target_role: The role of the target attachment.
972
- * `PARENT` - The target instance is the parent of this attachment.
973
- * `CHILD` - The target instance is the child of this attachment.
974
- :param str target_service_type: The type of the target instance, such as "FUSION".
975
- """
976
- pulumi.set(__self__, "is_implicit", is_implicit)
977
- pulumi.set(__self__, "target_id", target_id)
978
- pulumi.set(__self__, "target_instance_url", target_instance_url)
979
- pulumi.set(__self__, "target_role", target_role)
980
- pulumi.set(__self__, "target_service_type", target_service_type)
981
-
982
- @property
983
- @pulumi.getter(name="isImplicit")
984
- def is_implicit(self) -> bool:
985
- """
986
- * If role == `PARENT`, the attached instance was created by this service instance
987
- * If role == `CHILD`, this instance was created from attached instance on behalf of a user
988
- """
989
- return pulumi.get(self, "is_implicit")
990
-
991
- @property
992
- @pulumi.getter(name="targetId")
993
- def target_id(self) -> str:
994
- """
995
- The OCID of the target instance (which could be any other Oracle Cloud Infrastructure PaaS/SaaS resource), to which this instance is attached.
996
- """
997
- return pulumi.get(self, "target_id")
998
-
999
- @property
1000
- @pulumi.getter(name="targetInstanceUrl")
1001
- def target_instance_url(self) -> str:
1002
- """
1003
- The dataplane instance URL of the attached instance
1004
- """
1005
- return pulumi.get(self, "target_instance_url")
1006
-
1007
- @property
1008
- @pulumi.getter(name="targetRole")
1009
- def target_role(self) -> str:
1010
- """
1011
- The role of the target attachment.
1012
- * `PARENT` - The target instance is the parent of this attachment.
1013
- * `CHILD` - The target instance is the child of this attachment.
1014
- """
1015
- return pulumi.get(self, "target_role")
1016
-
1017
- @property
1018
- @pulumi.getter(name="targetServiceType")
1019
- def target_service_type(self) -> str:
1020
- """
1021
- The type of the target instance, such as "FUSION".
1022
- """
1023
- return pulumi.get(self, "target_service_type")
1024
-
1025
-
1026
751
  @pulumi.output_type
1027
752
  class GetVbInstancesVbInstanceSummaryCollectionItemCustomEndpointResult(dict):
1028
753
  def __init__(__self__, *,
@@ -1064,64 +789,53 @@ class GetVbInstancesVbInstanceSummaryCollectionItemCustomEndpointResult(dict):
1064
789
 
1065
790
 
1066
791
  @pulumi.output_type
1067
- class GetVbInstancesVbInstanceSummaryCollectionItemIdcsInfoResult(dict):
792
+ class GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailResult(dict):
1068
793
  def __init__(__self__, *,
1069
- idcs_app_display_name: str,
1070
- idcs_app_id: str,
1071
- idcs_app_location_url: str,
1072
- idcs_app_name: str,
1073
- instance_primary_audience_url: str):
1074
- """
1075
- :param str idcs_app_display_name: The IDCS application display name associated with the instance
1076
- :param str idcs_app_id: The IDCS application ID associated with the instance
1077
- :param str idcs_app_location_url: URL for the location of the IDCS Application (used by IDCS APIs)
1078
- :param str idcs_app_name: The IDCS application name associated with the instance
1079
- :param str instance_primary_audience_url: The URL used as the primary audience for visual builder flows in this instance type: string
1080
- """
1081
- pulumi.set(__self__, "idcs_app_display_name", idcs_app_display_name)
1082
- pulumi.set(__self__, "idcs_app_id", idcs_app_id)
1083
- pulumi.set(__self__, "idcs_app_location_url", idcs_app_location_url)
1084
- pulumi.set(__self__, "idcs_app_name", idcs_app_name)
1085
- pulumi.set(__self__, "instance_primary_audience_url", instance_primary_audience_url)
1086
-
1087
- @property
1088
- @pulumi.getter(name="idcsAppDisplayName")
1089
- def idcs_app_display_name(self) -> str:
794
+ network_endpoint_type: str,
795
+ network_security_group_ids: Sequence[str],
796
+ private_endpoint_ip: str,
797
+ subnet_id: str):
1090
798
  """
1091
- The IDCS application display name associated with the instance
799
+ :param str network_endpoint_type: The type of network endpoint.
800
+ :param Sequence[str] network_security_group_ids: Network Security Group OCIDs for the Private Endpoint.
801
+ :param str private_endpoint_ip: The IP address to be assigned to Private Endpoint
802
+ :param str subnet_id: The subnet OCID for the private endpoint.
1092
803
  """
1093
- return pulumi.get(self, "idcs_app_display_name")
804
+ pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
805
+ pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
806
+ pulumi.set(__self__, "private_endpoint_ip", private_endpoint_ip)
807
+ pulumi.set(__self__, "subnet_id", subnet_id)
1094
808
 
1095
809
  @property
1096
- @pulumi.getter(name="idcsAppId")
1097
- def idcs_app_id(self) -> str:
810
+ @pulumi.getter(name="networkEndpointType")
811
+ def network_endpoint_type(self) -> str:
1098
812
  """
1099
- The IDCS application ID associated with the instance
813
+ The type of network endpoint.
1100
814
  """
1101
- return pulumi.get(self, "idcs_app_id")
815
+ return pulumi.get(self, "network_endpoint_type")
1102
816
 
1103
817
  @property
1104
- @pulumi.getter(name="idcsAppLocationUrl")
1105
- def idcs_app_location_url(self) -> str:
818
+ @pulumi.getter(name="networkSecurityGroupIds")
819
+ def network_security_group_ids(self) -> Sequence[str]:
1106
820
  """
1107
- URL for the location of the IDCS Application (used by IDCS APIs)
821
+ Network Security Group OCIDs for the Private Endpoint.
1108
822
  """
1109
- return pulumi.get(self, "idcs_app_location_url")
823
+ return pulumi.get(self, "network_security_group_ids")
1110
824
 
1111
825
  @property
1112
- @pulumi.getter(name="idcsAppName")
1113
- def idcs_app_name(self) -> str:
826
+ @pulumi.getter(name="privateEndpointIp")
827
+ def private_endpoint_ip(self) -> str:
1114
828
  """
1115
- The IDCS application name associated with the instance
829
+ The IP address to be assigned to Private Endpoint
1116
830
  """
1117
- return pulumi.get(self, "idcs_app_name")
831
+ return pulumi.get(self, "private_endpoint_ip")
1118
832
 
1119
833
  @property
1120
- @pulumi.getter(name="instancePrimaryAudienceUrl")
1121
- def instance_primary_audience_url(self) -> str:
834
+ @pulumi.getter(name="subnetId")
835
+ def subnet_id(self) -> str:
1122
836
  """
1123
- The URL used as the primary audience for visual builder flows in this instance type: string
837
+ The subnet OCID for the private endpoint.
1124
838
  """
1125
- return pulumi.get(self, "instance_primary_audience_url")
839
+ return pulumi.get(self, "subnet_id")
1126
840
 
1127
841