pulumi-oci 2.31.0a1744784817__py3-none-any.whl → 2.32.0__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 (30) hide show
  1. pulumi_oci/containerengine/_inputs.py +20 -19
  2. pulumi_oci/containerengine/container_instance.py +2 -2
  3. pulumi_oci/containerengine/outputs.py +12 -11
  4. pulumi_oci/core/get_volume.py +15 -1
  5. pulumi_oci/core/instance.py +7 -7
  6. pulumi_oci/core/instance_configuration.py +0 -750
  7. pulumi_oci/core/outputs.py +11 -0
  8. pulumi_oci/core/volume.py +49 -0
  9. pulumi_oci/dblm/__init__.py +2 -0
  10. pulumi_oci/dblm/_inputs.py +49 -0
  11. pulumi_oci/dblm/get_patch_management.py +291 -0
  12. pulumi_oci/dblm/get_patch_management_databases.py +306 -0
  13. pulumi_oci/dblm/outputs.py +898 -0
  14. pulumi_oci/goldengate/__init__.py +1 -0
  15. pulumi_oci/goldengate/_inputs.py +103 -0
  16. pulumi_oci/goldengate/deployment.py +308 -68
  17. pulumi_oci/goldengate/get_deployment.py +85 -1
  18. pulumi_oci/goldengate/get_deployment_peers.py +192 -0
  19. pulumi_oci/goldengate/outputs.py +364 -0
  20. pulumi_oci/loadbalancer/load_balancer.py +49 -0
  21. pulumi_oci/loadbalancer/outputs.py +11 -0
  22. pulumi_oci/pulumi-plugin.json +1 -1
  23. pulumi_oci/visualbuilder/_inputs.py +119 -13
  24. pulumi_oci/visualbuilder/get_vb_instance.py +1 -1
  25. pulumi_oci/visualbuilder/outputs.py +201 -12
  26. pulumi_oci/visualbuilder/vb_instance.py +0 -70
  27. {pulumi_oci-2.31.0a1744784817.dist-info → pulumi_oci-2.32.0.dist-info}/METADATA +1 -1
  28. {pulumi_oci-2.31.0a1744784817.dist-info → pulumi_oci-2.32.0.dist-info}/RECORD +30 -27
  29. {pulumi_oci-2.31.0a1744784817.dist-info → pulumi_oci-2.32.0.dist-info}/WHEEL +1 -1
  30. {pulumi_oci-2.31.0a1744784817.dist-info → pulumi_oci-2.32.0.dist-info}/top_level.txt +0 -0
@@ -20,17 +20,20 @@ __all__ = [
20
20
  'VbInstanceAlternateCustomEndpoint',
21
21
  'VbInstanceCustomEndpoint',
22
22
  'VbInstanceNetworkEndpointDetails',
23
+ 'VbInstanceNetworkEndpointDetailsAllowlistedHttpVcn',
23
24
  'GetVbInstanceAlternateCustomEndpointResult',
24
25
  'GetVbInstanceApplicationsApplicationSummaryCollectionResult',
25
26
  'GetVbInstanceApplicationsApplicationSummaryCollectionItemResult',
26
27
  'GetVbInstanceCustomEndpointResult',
27
28
  'GetVbInstanceNetworkEndpointDetailResult',
29
+ 'GetVbInstanceNetworkEndpointDetailAllowlistedHttpVcnResult',
28
30
  'GetVbInstancesFilterResult',
29
31
  'GetVbInstancesVbInstanceSummaryCollectionResult',
30
32
  'GetVbInstancesVbInstanceSummaryCollectionItemResult',
31
33
  'GetVbInstancesVbInstanceSummaryCollectionItemAlternateCustomEndpointResult',
32
34
  'GetVbInstancesVbInstanceSummaryCollectionItemCustomEndpointResult',
33
35
  'GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailResult',
36
+ 'GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailAllowlistedHttpVcnResult',
34
37
  ]
35
38
 
36
39
  @pulumi.output_type
@@ -162,12 +165,16 @@ class VbInstanceNetworkEndpointDetails(dict):
162
165
  suggest = None
163
166
  if key == "networkEndpointType":
164
167
  suggest = "network_endpoint_type"
165
- elif key == "subnetId":
166
- suggest = "subnet_id"
168
+ elif key == "allowlistedHttpIps":
169
+ suggest = "allowlisted_http_ips"
170
+ elif key == "allowlistedHttpVcns":
171
+ suggest = "allowlisted_http_vcns"
167
172
  elif key == "networkSecurityGroupIds":
168
173
  suggest = "network_security_group_ids"
169
174
  elif key == "privateEndpointIp":
170
175
  suggest = "private_endpoint_ip"
176
+ elif key == "subnetId":
177
+ suggest = "subnet_id"
171
178
 
172
179
  if suggest:
173
180
  pulumi.log.warn(f"Key '{key}' not found in VbInstanceNetworkEndpointDetails. Access the value via the '{suggest}' property getter instead.")
@@ -182,37 +189,60 @@ class VbInstanceNetworkEndpointDetails(dict):
182
189
 
183
190
  def __init__(__self__, *,
184
191
  network_endpoint_type: builtins.str,
185
- subnet_id: builtins.str,
192
+ allowlisted_http_ips: Optional[Sequence[builtins.str]] = None,
193
+ allowlisted_http_vcns: Optional[Sequence['outputs.VbInstanceNetworkEndpointDetailsAllowlistedHttpVcn']] = None,
186
194
  network_security_group_ids: Optional[Sequence[builtins.str]] = None,
187
- private_endpoint_ip: Optional[builtins.str] = None):
195
+ private_endpoint_ip: Optional[builtins.str] = None,
196
+ subnet_id: Optional[builtins.str] = None):
188
197
  """
189
198
  :param builtins.str network_endpoint_type: (Updatable) The type of network endpoint.
190
- :param builtins.str subnet_id: (Updatable) The subnet OCID for the private endpoint.
199
+
200
+ For private endpoint access
201
+ :param Sequence[builtins.str] allowlisted_http_ips: (Updatable) Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
202
+ :param Sequence['VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs'] allowlisted_http_vcns: (Updatable) Virtual Cloud Networks allowed to access this network endpoint.
191
203
  :param Sequence[builtins.str] network_security_group_ids: (Updatable) Network Security Group OCIDs for the Private Endpoint.
192
204
  :param builtins.str private_endpoint_ip: The IP address to be assigned to Private Endpoint
205
+ :param builtins.str subnet_id: (Updatable) The subnet OCID for the private endpoint.
206
+
207
+ For public network access control
193
208
  """
194
209
  pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
195
- pulumi.set(__self__, "subnet_id", subnet_id)
210
+ if allowlisted_http_ips is not None:
211
+ pulumi.set(__self__, "allowlisted_http_ips", allowlisted_http_ips)
212
+ if allowlisted_http_vcns is not None:
213
+ pulumi.set(__self__, "allowlisted_http_vcns", allowlisted_http_vcns)
196
214
  if network_security_group_ids is not None:
197
215
  pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
198
216
  if private_endpoint_ip is not None:
199
217
  pulumi.set(__self__, "private_endpoint_ip", private_endpoint_ip)
218
+ if subnet_id is not None:
219
+ pulumi.set(__self__, "subnet_id", subnet_id)
200
220
 
201
221
  @property
202
222
  @pulumi.getter(name="networkEndpointType")
203
223
  def network_endpoint_type(self) -> builtins.str:
204
224
  """
205
225
  (Updatable) The type of network endpoint.
226
+
227
+ For private endpoint access
206
228
  """
207
229
  return pulumi.get(self, "network_endpoint_type")
208
230
 
209
231
  @property
210
- @pulumi.getter(name="subnetId")
211
- def subnet_id(self) -> builtins.str:
232
+ @pulumi.getter(name="allowlistedHttpIps")
233
+ def allowlisted_http_ips(self) -> Optional[Sequence[builtins.str]]:
212
234
  """
213
- (Updatable) The subnet OCID for the private endpoint.
235
+ (Updatable) Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
214
236
  """
215
- return pulumi.get(self, "subnet_id")
237
+ return pulumi.get(self, "allowlisted_http_ips")
238
+
239
+ @property
240
+ @pulumi.getter(name="allowlistedHttpVcns")
241
+ def allowlisted_http_vcns(self) -> Optional[Sequence['outputs.VbInstanceNetworkEndpointDetailsAllowlistedHttpVcn']]:
242
+ """
243
+ (Updatable) Virtual Cloud Networks allowed to access this network endpoint.
244
+ """
245
+ return pulumi.get(self, "allowlisted_http_vcns")
216
246
 
217
247
  @property
218
248
  @pulumi.getter(name="networkSecurityGroupIds")
@@ -230,6 +260,63 @@ class VbInstanceNetworkEndpointDetails(dict):
230
260
  """
231
261
  return pulumi.get(self, "private_endpoint_ip")
232
262
 
263
+ @property
264
+ @pulumi.getter(name="subnetId")
265
+ def subnet_id(self) -> Optional[builtins.str]:
266
+ """
267
+ (Updatable) The subnet OCID for the private endpoint.
268
+
269
+ For public network access control
270
+ """
271
+ return pulumi.get(self, "subnet_id")
272
+
273
+
274
+ @pulumi.output_type
275
+ class VbInstanceNetworkEndpointDetailsAllowlistedHttpVcn(dict):
276
+ @staticmethod
277
+ def __key_warning(key: str):
278
+ suggest = None
279
+ if key == "allowlistedIpCidrs":
280
+ suggest = "allowlisted_ip_cidrs"
281
+
282
+ if suggest:
283
+ pulumi.log.warn(f"Key '{key}' not found in VbInstanceNetworkEndpointDetailsAllowlistedHttpVcn. Access the value via the '{suggest}' property getter instead.")
284
+
285
+ def __getitem__(self, key: str) -> Any:
286
+ VbInstanceNetworkEndpointDetailsAllowlistedHttpVcn.__key_warning(key)
287
+ return super().__getitem__(key)
288
+
289
+ def get(self, key: str, default = None) -> Any:
290
+ VbInstanceNetworkEndpointDetailsAllowlistedHttpVcn.__key_warning(key)
291
+ return super().get(key, default)
292
+
293
+ def __init__(__self__, *,
294
+ id: builtins.str,
295
+ allowlisted_ip_cidrs: Optional[Sequence[builtins.str]] = None):
296
+ """
297
+ :param builtins.str id: (Updatable) The Virtual Cloud Network OCID.
298
+ :param Sequence[builtins.str] allowlisted_ip_cidrs: (Updatable) Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
299
+ """
300
+ pulumi.set(__self__, "id", id)
301
+ if allowlisted_ip_cidrs is not None:
302
+ pulumi.set(__self__, "allowlisted_ip_cidrs", allowlisted_ip_cidrs)
303
+
304
+ @property
305
+ @pulumi.getter
306
+ def id(self) -> builtins.str:
307
+ """
308
+ (Updatable) The Virtual Cloud Network OCID.
309
+ """
310
+ return pulumi.get(self, "id")
311
+
312
+ @property
313
+ @pulumi.getter(name="allowlistedIpCidrs")
314
+ def allowlisted_ip_cidrs(self) -> Optional[Sequence[builtins.str]]:
315
+ """
316
+ (Updatable) Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
317
+ """
318
+ return pulumi.get(self, "allowlisted_ip_cidrs")
319
+
233
320
 
234
321
  @pulumi.output_type
235
322
  class GetVbInstanceAlternateCustomEndpointResult(dict):
@@ -377,21 +464,43 @@ class GetVbInstanceCustomEndpointResult(dict):
377
464
  @pulumi.output_type
378
465
  class GetVbInstanceNetworkEndpointDetailResult(dict):
379
466
  def __init__(__self__, *,
467
+ allowlisted_http_ips: Sequence[builtins.str],
468
+ allowlisted_http_vcns: Sequence['outputs.GetVbInstanceNetworkEndpointDetailAllowlistedHttpVcnResult'],
380
469
  network_endpoint_type: builtins.str,
381
470
  network_security_group_ids: Sequence[builtins.str],
382
471
  private_endpoint_ip: builtins.str,
383
472
  subnet_id: builtins.str):
384
473
  """
474
+ :param Sequence[builtins.str] allowlisted_http_ips: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
475
+ :param Sequence['GetVbInstanceNetworkEndpointDetailAllowlistedHttpVcnArgs'] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
385
476
  :param builtins.str network_endpoint_type: The type of network endpoint.
386
477
  :param Sequence[builtins.str] network_security_group_ids: Network Security Group OCIDs for the Private Endpoint.
387
478
  :param builtins.str private_endpoint_ip: The IP address to be assigned to Private Endpoint
388
479
  :param builtins.str subnet_id: The subnet OCID for the private endpoint.
389
480
  """
481
+ pulumi.set(__self__, "allowlisted_http_ips", allowlisted_http_ips)
482
+ pulumi.set(__self__, "allowlisted_http_vcns", allowlisted_http_vcns)
390
483
  pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
391
484
  pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
392
485
  pulumi.set(__self__, "private_endpoint_ip", private_endpoint_ip)
393
486
  pulumi.set(__self__, "subnet_id", subnet_id)
394
487
 
488
+ @property
489
+ @pulumi.getter(name="allowlistedHttpIps")
490
+ def allowlisted_http_ips(self) -> Sequence[builtins.str]:
491
+ """
492
+ Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
493
+ """
494
+ return pulumi.get(self, "allowlisted_http_ips")
495
+
496
+ @property
497
+ @pulumi.getter(name="allowlistedHttpVcns")
498
+ def allowlisted_http_vcns(self) -> Sequence['outputs.GetVbInstanceNetworkEndpointDetailAllowlistedHttpVcnResult']:
499
+ """
500
+ Virtual Cloud Networks allowed to access this network endpoint.
501
+ """
502
+ return pulumi.get(self, "allowlisted_http_vcns")
503
+
395
504
  @property
396
505
  @pulumi.getter(name="networkEndpointType")
397
506
  def network_endpoint_type(self) -> builtins.str:
@@ -425,6 +534,35 @@ class GetVbInstanceNetworkEndpointDetailResult(dict):
425
534
  return pulumi.get(self, "subnet_id")
426
535
 
427
536
 
537
+ @pulumi.output_type
538
+ class GetVbInstanceNetworkEndpointDetailAllowlistedHttpVcnResult(dict):
539
+ def __init__(__self__, *,
540
+ allowlisted_ip_cidrs: Sequence[builtins.str],
541
+ id: builtins.str):
542
+ """
543
+ :param Sequence[builtins.str] allowlisted_ip_cidrs: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
544
+ :param builtins.str id: The Virtual Cloud Network OCID.
545
+ """
546
+ pulumi.set(__self__, "allowlisted_ip_cidrs", allowlisted_ip_cidrs)
547
+ pulumi.set(__self__, "id", id)
548
+
549
+ @property
550
+ @pulumi.getter(name="allowlistedIpCidrs")
551
+ def allowlisted_ip_cidrs(self) -> Sequence[builtins.str]:
552
+ """
553
+ Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
554
+ """
555
+ return pulumi.get(self, "allowlisted_ip_cidrs")
556
+
557
+ @property
558
+ @pulumi.getter
559
+ def id(self) -> builtins.str:
560
+ """
561
+ The Virtual Cloud Network OCID.
562
+ """
563
+ return pulumi.get(self, "id")
564
+
565
+
428
566
  @pulumi.output_type
429
567
  class GetVbInstancesFilterResult(dict):
430
568
  def __init__(__self__, *,
@@ -497,7 +635,7 @@ class GetVbInstancesVbInstanceSummaryCollectionItemResult(dict):
497
635
  :param Mapping[str, builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
498
636
  :param builtins.str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Example: `My new resource`
499
637
  :param Mapping[str, builtins.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"}`
500
- :param builtins.str id: Unique identifier that is immutable on creation.
638
+ :param builtins.str id: The Virtual Cloud Network OCID.
501
639
  :param builtins.str instance_url: The Vb Instance URL.
502
640
  :param builtins.bool is_visual_builder_enabled: Visual Builder is enabled or not.
503
641
  :param builtins.str management_nat_gateway_ip: The NAT gateway IP address for the VB management VCN
@@ -595,7 +733,7 @@ class GetVbInstancesVbInstanceSummaryCollectionItemResult(dict):
595
733
  @pulumi.getter
596
734
  def id(self) -> builtins.str:
597
735
  """
598
- Unique identifier that is immutable on creation.
736
+ The Virtual Cloud Network OCID.
599
737
  """
600
738
  return pulumi.get(self, "id")
601
739
 
@@ -792,21 +930,43 @@ class GetVbInstancesVbInstanceSummaryCollectionItemCustomEndpointResult(dict):
792
930
  @pulumi.output_type
793
931
  class GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailResult(dict):
794
932
  def __init__(__self__, *,
933
+ allowlisted_http_ips: Sequence[builtins.str],
934
+ allowlisted_http_vcns: Sequence['outputs.GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailAllowlistedHttpVcnResult'],
795
935
  network_endpoint_type: builtins.str,
796
936
  network_security_group_ids: Sequence[builtins.str],
797
937
  private_endpoint_ip: builtins.str,
798
938
  subnet_id: builtins.str):
799
939
  """
940
+ :param Sequence[builtins.str] allowlisted_http_ips: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
941
+ :param Sequence['GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailAllowlistedHttpVcnArgs'] allowlisted_http_vcns: Virtual Cloud Networks allowed to access this network endpoint.
800
942
  :param builtins.str network_endpoint_type: The type of network endpoint.
801
943
  :param Sequence[builtins.str] network_security_group_ids: Network Security Group OCIDs for the Private Endpoint.
802
944
  :param builtins.str private_endpoint_ip: The IP address to be assigned to Private Endpoint
803
945
  :param builtins.str subnet_id: The subnet OCID for the private endpoint.
804
946
  """
947
+ pulumi.set(__self__, "allowlisted_http_ips", allowlisted_http_ips)
948
+ pulumi.set(__self__, "allowlisted_http_vcns", allowlisted_http_vcns)
805
949
  pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
806
950
  pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
807
951
  pulumi.set(__self__, "private_endpoint_ip", private_endpoint_ip)
808
952
  pulumi.set(__self__, "subnet_id", subnet_id)
809
953
 
954
+ @property
955
+ @pulumi.getter(name="allowlistedHttpIps")
956
+ def allowlisted_http_ips(self) -> Sequence[builtins.str]:
957
+ """
958
+ Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
959
+ """
960
+ return pulumi.get(self, "allowlisted_http_ips")
961
+
962
+ @property
963
+ @pulumi.getter(name="allowlistedHttpVcns")
964
+ def allowlisted_http_vcns(self) -> Sequence['outputs.GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailAllowlistedHttpVcnResult']:
965
+ """
966
+ Virtual Cloud Networks allowed to access this network endpoint.
967
+ """
968
+ return pulumi.get(self, "allowlisted_http_vcns")
969
+
810
970
  @property
811
971
  @pulumi.getter(name="networkEndpointType")
812
972
  def network_endpoint_type(self) -> builtins.str:
@@ -840,3 +1000,32 @@ class GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailResult(d
840
1000
  return pulumi.get(self, "subnet_id")
841
1001
 
842
1002
 
1003
+ @pulumi.output_type
1004
+ class GetVbInstancesVbInstanceSummaryCollectionItemNetworkEndpointDetailAllowlistedHttpVcnResult(dict):
1005
+ def __init__(__self__, *,
1006
+ allowlisted_ip_cidrs: Sequence[builtins.str],
1007
+ id: builtins.str):
1008
+ """
1009
+ :param Sequence[builtins.str] allowlisted_ip_cidrs: Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
1010
+ :param builtins.str id: The Virtual Cloud Network OCID.
1011
+ """
1012
+ pulumi.set(__self__, "allowlisted_ip_cidrs", allowlisted_ip_cidrs)
1013
+ pulumi.set(__self__, "id", id)
1014
+
1015
+ @property
1016
+ @pulumi.getter(name="allowlistedIpCidrs")
1017
+ def allowlisted_ip_cidrs(self) -> Sequence[builtins.str]:
1018
+ """
1019
+ Source IP addresses or IP address ranges ingress rules. (ex: "168.122.59.5/32", "10.20.30.0/26") An invalid IP or CIDR block will result in a 400 response.
1020
+ """
1021
+ return pulumi.get(self, "allowlisted_ip_cidrs")
1022
+
1023
+ @property
1024
+ @pulumi.getter
1025
+ def id(self) -> builtins.str:
1026
+ """
1027
+ The Virtual Cloud Network OCID.
1028
+ """
1029
+ return pulumi.get(self, "id")
1030
+
1031
+
@@ -582,41 +582,6 @@ class VbInstance(pulumi.CustomResource):
582
582
 
583
583
  Creates a new Vb Instance.
584
584
 
585
- ## Example Usage
586
-
587
- ```python
588
- import pulumi
589
- import pulumi_oci as oci
590
-
591
- test_vb_instance = oci.visual_builder.VbInstance("test_vb_instance",
592
- compartment_id=compartment_id,
593
- display_name=vb_instance_display_name,
594
- node_count=vb_instance_node_count,
595
- alternate_custom_endpoints=[{
596
- "hostname": vb_instance_alternate_custom_endpoints_hostname,
597
- "certificate_secret_id": test_secret["id"],
598
- }],
599
- consumption_model=vb_instance_consumption_model,
600
- custom_endpoint={
601
- "hostname": vb_instance_custom_endpoint_hostname,
602
- "certificate_secret_id": test_secret["id"],
603
- },
604
- defined_tags={
605
- "foo-namespace.bar-key": "value",
606
- },
607
- freeform_tags={
608
- "bar-key": "value",
609
- },
610
- idcs_open_id=test_idcs_open["id"],
611
- is_visual_builder_enabled=vb_instance_is_visual_builder_enabled,
612
- network_endpoint_details={
613
- "network_endpoint_type": vb_instance_network_endpoint_details_network_endpoint_type,
614
- "subnet_id": test_subnet["id"],
615
- "network_security_group_ids": vb_instance_network_endpoint_details_network_security_group_ids,
616
- "private_endpoint_ip": vb_instance_network_endpoint_details_private_endpoint_ip,
617
- })
618
- ```
619
-
620
585
  ## Import
621
586
 
622
587
  VbInstances can be imported using the `id`, e.g.
@@ -654,41 +619,6 @@ class VbInstance(pulumi.CustomResource):
654
619
 
655
620
  Creates a new Vb Instance.
656
621
 
657
- ## Example Usage
658
-
659
- ```python
660
- import pulumi
661
- import pulumi_oci as oci
662
-
663
- test_vb_instance = oci.visual_builder.VbInstance("test_vb_instance",
664
- compartment_id=compartment_id,
665
- display_name=vb_instance_display_name,
666
- node_count=vb_instance_node_count,
667
- alternate_custom_endpoints=[{
668
- "hostname": vb_instance_alternate_custom_endpoints_hostname,
669
- "certificate_secret_id": test_secret["id"],
670
- }],
671
- consumption_model=vb_instance_consumption_model,
672
- custom_endpoint={
673
- "hostname": vb_instance_custom_endpoint_hostname,
674
- "certificate_secret_id": test_secret["id"],
675
- },
676
- defined_tags={
677
- "foo-namespace.bar-key": "value",
678
- },
679
- freeform_tags={
680
- "bar-key": "value",
681
- },
682
- idcs_open_id=test_idcs_open["id"],
683
- is_visual_builder_enabled=vb_instance_is_visual_builder_enabled,
684
- network_endpoint_details={
685
- "network_endpoint_type": vb_instance_network_endpoint_details_network_endpoint_type,
686
- "subnet_id": test_subnet["id"],
687
- "network_security_group_ids": vb_instance_network_endpoint_details_network_security_group_ids,
688
- "private_endpoint_ip": vb_instance_network_endpoint_details_private_endpoint_ip,
689
- })
690
- ```
691
-
692
622
  ## Import
693
623
 
694
624
  VbInstances can be imported using the `id`, e.g.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_oci
3
- Version: 2.31.0a1744784817
3
+ Version: 2.32.0
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
1
  pulumi_oci/__init__.py,sha256=qu0BQW428_iArc7y-5WVtz3K4pt_nghEOWDKFUeWZK0,185748
2
2
  pulumi_oci/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
3
3
  pulumi_oci/provider.py,sha256=m4f4wR02djQXympFmKa1mgeICJX9tqPC5Qmjtbq9W1E,26206
4
- pulumi_oci/pulumi-plugin.json,sha256=K-fpza3yu7JxZjJqvkhpZzwDrC6wkh-D5WYjS2RbM-g,80
4
+ pulumi_oci/pulumi-plugin.json,sha256=oiBVrBhpgmM3SmC07NHM_QrymRkhBuQOKyVKt3i70jU,63
5
5
  pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  pulumi_oci/adm/__init__.py,sha256=pVJEXB1iqT2-JWJ6h3NjwxBh64s7KjHjUpsumvPtHeQ,1065
7
7
  pulumi_oci/adm/_inputs.py,sha256=-kQkJzyZUCrFBzoJly1MbyN6uxuiAzQmpCoFIsBkbnI,72949
@@ -412,13 +412,13 @@ pulumi_oci/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c
412
412
  pulumi_oci/config/__init__.pyi,sha256=8lVKJQAf-9e3cpYPAF4wh555-5K5gUPbS0p8veNeds4,2861
413
413
  pulumi_oci/config/vars.py,sha256=RQ08Fc1zC-cTBq1evGKTfYVzxQpt-xIslhXMFhqTw_I,4487
414
414
  pulumi_oci/containerengine/__init__.py,sha256=l7GIopufg8FQlKo486HcwfiyxIY59wpqMx9vspWaiJ8,1348
415
- pulumi_oci/containerengine/_inputs.py,sha256=aJ2YtAfaSEiJrA8gW8vMSh_yXEhU8wIQpTHNsy1o4D4,252813
415
+ pulumi_oci/containerengine/_inputs.py,sha256=DekumZi6bs-fCvzcFsUzHydoq9imAjWmB0I2QujIlB0,252896
416
416
  pulumi_oci/containerengine/addon.py,sha256=cC2DgGhSAbotxaYCMlFJQtKbU9TwaCQfwuze2Na8eSI,25566
417
417
  pulumi_oci/containerengine/cluster.py,sha256=cp8tJ5hgXgxVC7lQxCTNL1_bIMRfyEUcKUY7OkGrXa4,57808
418
418
  pulumi_oci/containerengine/cluster_complete_credential_rotation_management.py,sha256=nbLTHliDUP3KbV3cUpPXtLgEALQeDX-yDgigbdsHeI4,9299
419
419
  pulumi_oci/containerengine/cluster_start_credential_rotation_management.py,sha256=OKWg2iX0OiU47npPqJBf2kWtyuyeNpy3WAOayEGhw08,12770
420
420
  pulumi_oci/containerengine/cluster_workload_mapping.py,sha256=JAZ_yTuQusXdmgGtp2nGxXdWA858WFveJ4iLzA2fKtA,25636
421
- pulumi_oci/containerengine/container_instance.py,sha256=8sCxTZuDZ4NHzzW6MQBXeJgAk_cJ3F8uFuwRILhrRZE,75107
421
+ pulumi_oci/containerengine/container_instance.py,sha256=gk3zenoTj0vNj4s3BpRWQl3qvMj8z-ERwh_DN4uQtSQ,75107
422
422
  pulumi_oci/containerengine/get_addon.py,sha256=oGoWKD4UiQlJV48mWcTzQJeJ5EQyiVpka2pKi5cJtL8,9780
423
423
  pulumi_oci/containerengine/get_addon_options.py,sha256=wv1hOZwhf5NOOYRWJ1Fw2CwYEaYvAGjcsgEVtJH_JB4,6723
424
424
  pulumi_oci/containerengine/get_addons.py,sha256=cnXR9WMEcLM83q46dHm3-U5csQJXAphqbAx6homGAwY,5096
@@ -440,7 +440,7 @@ pulumi_oci/containerengine/get_work_request_errors.py,sha256=iQfmxb1wCXZh4-Visfa
440
440
  pulumi_oci/containerengine/get_work_request_log_entries.py,sha256=rtcLc5ewP0qh4ihnknzqjEoXot_d9F1TFGVyc8Z5KAI,7186
441
441
  pulumi_oci/containerengine/get_work_requests.py,sha256=LlT0GQBih2BQlG9SZXDzHkqCLbN6fhDJkwpZBWIoxC4,9856
442
442
  pulumi_oci/containerengine/node_pool.py,sha256=W-dzgJPyHr-o89X2VDbMYU8UymGuVQ2ZeHPChCBBzhk,80591
443
- pulumi_oci/containerengine/outputs.py,sha256=weGUfQ85zHXiNcLN6h5P3LLPlwrd3t2xg5UwLmDojFw,407383
443
+ pulumi_oci/containerengine/outputs.py,sha256=orgoUeY4bDcQGK59vaH_DRMF93aIfsy0LJAlAtgFqO4,407443
444
444
  pulumi_oci/containerengine/virtual_node_pool.py,sha256=z_ZUqATM2S8j-ARfNgKkEpc53kJZgR7yaz8FQBPefGA,55726
445
445
  pulumi_oci/containerinstances/__init__.py,sha256=1NTQR8XbSqkPAUiWPM06qAugH-STR2CXEmCy3ecxNv4,496
446
446
  pulumi_oci/containerinstances/_inputs.py,sha256=kTB_N1CmL4tM517-4TJLvnahQFfxtCROA42OOcMf_Ug,4031
@@ -632,7 +632,7 @@ pulumi_oci/core/get_vlan.py,sha256=UX0U5r91e50n2ZDEcbL_ZfyaASwBM1HplDVeRISZhjM,1
632
632
  pulumi_oci/core/get_vlans.py,sha256=NYJPpU1jQppp4FlR5QWXg9HwTQfUY4Wxm0kJE4O2s4s,8805
633
633
  pulumi_oci/core/get_vnic.py,sha256=CtXSfrtL7e-S23RpwTkno96Nrf1xXX9c-wo79433n7g,18798
634
634
  pulumi_oci/core/get_vnic_attachments.py,sha256=gIhM5stkzGwUjFa_38Qp9BW4UJo6gXjvIULEbqrBAXc,9694
635
- pulumi_oci/core/get_volume.py,sha256=rlMN2N65RSLThjG_nO8XOkOYdnCXVBV6nkdhHTMCNHI,21138
635
+ pulumi_oci/core/get_volume.py,sha256=O85uwEAUCtLyw0Q08om3PWzyJaTm1giz_vhNaFAfCX4,21968
636
636
  pulumi_oci/core/get_volume_attachments.py,sha256=hBHNCOUQz4xiY-AMTKknajSUea-L7XC-dshBIlBlAAc,10237
637
637
  pulumi_oci/core/get_volume_backup_policies.py,sha256=2BscmiiI1CaIQ296RupYWBWpOGw5YLMNM3MqXEzVPqM,6731
638
638
  pulumi_oci/core/get_volume_backup_policy_assignments.py,sha256=f-YHQvDqNUwDOazVB_sHMYcLImxNVYkAMPJTH3xb6XE,6844
@@ -645,8 +645,8 @@ pulumi_oci/core/get_volumes.py,sha256=HugDzKk5YLJ8vwsDwPudkzDvoG9DdOhy2KbzH5H4CC
645
645
  pulumi_oci/core/get_vtap.py,sha256=jpPel8wlNmkASgPoqzzuFZarhhrQdJvNR72L3noVx_E,18838
646
646
  pulumi_oci/core/get_vtaps.py,sha256=aQUIKwhzhClOO4YuR0qhmZ8EK9iZZBiFGCyM1dax5K4,13796
647
647
  pulumi_oci/core/image.py,sha256=lsJBUBGFBGLL6U39LPgUMv1YD0ODdQM1nqPXiTVRPvY,55097
648
- pulumi_oci/core/instance.py,sha256=613PqCID9RFOHQhi1Hutj-OF1KADfOrDscAF-xIdOrQ,192776
649
- pulumi_oci/core/instance_configuration.py,sha256=OlLLHiA5X9gvE0cKfM7yePtVwIi1ObnA9jgA0ywnk2U,113304
648
+ pulumi_oci/core/instance.py,sha256=2bMycEYP9fCKoInqf9i_nH8SwCOaNsDSJTcFCtWCL9o,193000
649
+ pulumi_oci/core/instance_configuration.py,sha256=eARJtVuBvLev1idgqibWtGHM2V34QJvmc8pGuwxDNtc,45352
650
650
  pulumi_oci/core/instance_console_connection.py,sha256=72LkCJtbpZ3cIWlQrdoVrb8x6N2MpqRXbe2zFs5OVLY,28867
651
651
  pulumi_oci/core/instance_maintenance_event.py,sha256=WJrooDPdAxVoktsbWbkoL_eCRBqtb32ySIZN81gCwBA,59998
652
652
  pulumi_oci/core/instance_pool.py,sha256=M9eSSoEMXzokjFt9wrMkBM9FKqcMPhit0dFe4ISTzT8,57339
@@ -660,7 +660,7 @@ pulumi_oci/core/local_peering_gateway.py,sha256=jIXuK77GDuQWU1uFuANsEso4tBqp8zyF
660
660
  pulumi_oci/core/nat_gateway.py,sha256=bXI13IrWvmuU-Dm7OzGwAJv2NwFLV6WQ9rBc9W6reG4,37546
661
661
  pulumi_oci/core/network_security_group.py,sha256=2iROnrFgwvU3Obum-YlAsC0qRhZH8OOheOrFIdPgRfU,26514
662
662
  pulumi_oci/core/network_security_group_security_rule.py,sha256=F4PAKAmF-IhgE8Q9Uw-sOJR4dD3opoXQyYqmKUEX0Rw,55624
663
- pulumi_oci/core/outputs.py,sha256=Fbz9f6ggsg8VTF5C49zndPHNlFAxeD4Tn-muNba9MUw,2669228
663
+ pulumi_oci/core/outputs.py,sha256=vY-YOa82O2dSCXB7nRFiu2IR9tkMO0UBYVxa9TOxPUo,2669837
664
664
  pulumi_oci/core/private_ip.py,sha256=P1Y-o2LIY5GYAqg5-QTzOLyqqwbj8evKdytUqMG6dng,53697
665
665
  pulumi_oci/core/public_ip.py,sha256=CxbRhOV7Gpn_7t0r8znjvkwUcDXvpBFZXbkQCazLKAA,50534
666
666
  pulumi_oci/core/public_ip_pool.py,sha256=nScUAdQytchXCmsjhz1Eeg3gvk6Oc9x5BMXJp7Q6Wh0,24828
@@ -677,7 +677,7 @@ pulumi_oci/core/virtual_circuit.py,sha256=SC54cnXU8HSqFmmQg5rGE-nvVIZzuwXBxfQ1NP
677
677
  pulumi_oci/core/virtual_network.py,sha256=eUWJtvKSIUfra92Uc7rLeAOpvwMwOf_GFBJUNgkIw54,32719
678
678
  pulumi_oci/core/vlan.py,sha256=FrxpfF7m3BpcurhZZZZUT1CNhX0UAPKVKKThl5fo1zk,46737
679
679
  pulumi_oci/core/vnic_attachment.py,sha256=VQk1D9AFsrLByQ2V2CAJ9pFV3DP8gNyDir6MQWbQiL4,34706
680
- pulumi_oci/core/volume.py,sha256=W8Qq-jAxDs7nad-oashf-p13FSJe-4a890Ra-SHaM_U,82584
680
+ pulumi_oci/core/volume.py,sha256=gOyO4I0ahDSlyDH5utUnDGWW5eJJxbTXHMdQa_QtysU,85720
681
681
  pulumi_oci/core/volume_attachment.py,sha256=4Tx09gccDKbdD0xIBFFNaMwMMyZ9fnlw6C2FoQPCgjk,59901
682
682
  pulumi_oci/core/volume_backup.py,sha256=Qugqw274GrqobcKR_t7KFSnZ4zuWBZm1a-kO3bLCNRo,51045
683
683
  pulumi_oci/core/volume_backup_policy.py,sha256=xY_CATEIdk7VPFgEKy09-laSoFzI-wXiiWfbPkhAXj0,30852
@@ -1415,8 +1415,10 @@ pulumi_oci/datascience/pipeline_run.py,sha256=RqiECDIzXy0ZtVlhmdxw2H05ERMhKwBpur
1415
1415
  pulumi_oci/datascience/private_endpoint.py,sha256=SCkeRHY8zm7mIbjhkq_nDFw2vg1LQQ32kvJ0HwK84ZU,42598
1416
1416
  pulumi_oci/datascience/project.py,sha256=RDVlSlKeahXFWI0zZTvH0FUVqs9dKiydoXO2yH3npyk,28253
1417
1417
  pulumi_oci/datascience/schedule.py,sha256=zOkEjpFIDR3dyO9ZwTRkrpyuIsSTuS4-ZcentXF0b4s,60870
1418
- pulumi_oci/dblm/__init__.py,sha256=8dhBkDojABhnqdhRx9MgA9G_IbbtWpaDgYalrCCjmFY,676
1419
- pulumi_oci/dblm/_inputs.py,sha256=kmwgfRpcknozCxTY5A_gV16eQt2r0gt1RcvIO890IOA,8139
1418
+ pulumi_oci/dblm/__init__.py,sha256=QNYxDbAcegP8k_C-H136mfzpdhMOrhzz8goxqJRTIHs,758
1419
+ pulumi_oci/dblm/_inputs.py,sha256=0lgCw61O4bcIElwW7ev95fCNvdFHx8WOlGS3ihSmxHE,9600
1420
+ pulumi_oci/dblm/get_patch_management.py,sha256=TjwpPGq19EYgOWQJwOCkiReFLiBCIZmDHU8ydWwaRJg,15146
1421
+ pulumi_oci/dblm/get_patch_management_databases.py,sha256=XB380_vK9Fgdo2kGNX0sySAQSOEepMsk_zj1DSymONg,15705
1420
1422
  pulumi_oci/dblm/get_vulnerability.py,sha256=LZeT9I65_kNPjxxvtJBsN3lHI5C6sJApBYwp8hCk9bA,11137
1421
1423
  pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py,sha256=I48FJuSVfPJep3oBXSTOfU_VPZkXzLiXWd3X2QGe8uA,12213
1422
1424
  pulumi_oci/dblm/get_vulnerability_notifications.py,sha256=3tY_5JbflY2Q9NwZz4BYqPH86cAiB1RuslW5dbZ74h8,6236
@@ -1424,7 +1426,7 @@ pulumi_oci/dblm/get_vulnerability_resources.py,sha256=5ifNb3NNIllwH6-AzrhgT5tXQV
1424
1426
  pulumi_oci/dblm/get_vulnerability_scan.py,sha256=YGvDImTyuTgknArWyPtAjMJRKiVZbiKvR_Fu5iw8Bu0,12401
1425
1427
  pulumi_oci/dblm/get_vulnerability_scans.py,sha256=Klc-Vnj_8f-gwQOhdVhTSNAkNar_TL5VCdYKiJdx0jM,14561
1426
1428
  pulumi_oci/dblm/get_vulnerability_vulnerabilities.py,sha256=5-isU2kXFAsGvrWdPkjyDPwdfojUVA8c3DZxHPzuerQ,13249
1427
- pulumi_oci/dblm/outputs.py,sha256=pn6cSEHSo4Qlsq8Tr77XDNYgkLczCinKQcx88PC1sI4,47702
1429
+ pulumi_oci/dblm/outputs.py,sha256=lag7rX1jiyXYBAqpMSMVmGAxZS-WQawxmubPwvC5NLQ,83779
1428
1430
  pulumi_oci/dblm/vulnerability_scan.py,sha256=7Wyfs-3H0QquhJr-sn_Jv_-ic8bLIFB3cE5MOZ4WGTc,25120
1429
1431
  pulumi_oci/delegateaccesscontrol/__init__.py,sha256=3r1gS3Y8DpvwhuZ1D9PDnQMvJgY6tUt1L2_cjGeB7w8,1015
1430
1432
  pulumi_oci/delegateaccesscontrol/_inputs.py,sha256=jTlxH7xQM7CnV9ZzRurGGFNWGZDBGEKCi_qUcFrXut0,11493
@@ -1770,12 +1772,12 @@ pulumi_oci/globallydistributeddatabase/get_sharded_databases.py,sha256=TLkcE4GKD
1770
1772
  pulumi_oci/globallydistributeddatabase/outputs.py,sha256=aMiA05cVsIXDSye6G29wH6ssveSSceJveaSv2W8tJVw,101081
1771
1773
  pulumi_oci/globallydistributeddatabase/private_endpoint.py,sha256=dHMRfN8gra9bjiC3OCdx3HKl71GoWoGyo32agxwwMTM,40798
1772
1774
  pulumi_oci/globallydistributeddatabase/sharded_database.py,sha256=P06kT4fDCBCmzTAypOnpF0JusbU_fLRrY28OdFOPNdI,127730
1773
- pulumi_oci/goldengate/__init__.py,sha256=4BbkC_puSisUE8eDGq4cm5GTFe2KKfqMX8ehUXt1nvo,1622
1774
- pulumi_oci/goldengate/_inputs.py,sha256=oqLyCIdTlH_XZleASe0L4AKET5EZ7Xddorj9MG_JFno,114422
1775
+ pulumi_oci/goldengate/__init__.py,sha256=QtBtIqNCxMeNkuOkj52Dp66SytOGFua07qgMpf29hhM,1658
1776
+ pulumi_oci/goldengate/_inputs.py,sha256=5EIpeTETqJxUxEzmFAoiaLh-M9x9DUIbh71iMFnefO0,117875
1775
1777
  pulumi_oci/goldengate/connection.py,sha256=co_NVDAIRl-0Msdu4lDzauT40CXwz9CYIE1ysSz-0VE,386853
1776
1778
  pulumi_oci/goldengate/connection_assignment.py,sha256=GIYeHk8YWdOblf9a_gt9fN6s3NKslXLly419bJeS6cQ,21590
1777
1779
  pulumi_oci/goldengate/database_registration.py,sha256=7-swQZdN4VK37UI1Hn_KyhASn298BNlfNFWzqs1PLAk,74018
1778
- pulumi_oci/goldengate/deployment.py,sha256=lvWZoc9RaSxnEuFP4eE0Mm4U94RblFRJq6qQXs-VdV4,110006
1780
+ pulumi_oci/goldengate/deployment.py,sha256=KKrN0basHYr32BpX4GejIqFM4EgYHqwkH4CpToz7kz0,122713
1779
1781
  pulumi_oci/goldengate/deployment_backup.py,sha256=SvlnBNn-VRLmTSgwU_I5xpYa5ibDLpw0sEfFA2meHsA,54486
1780
1782
  pulumi_oci/goldengate/deployment_certificate.py,sha256=ALlhN4hbPwthQnE693noWSATIYSJTkGQqLnR18HkOHA,37271
1781
1783
  pulumi_oci/goldengate/get_connection.py,sha256=JFTPGCvrF-cJ15td29JJ_I7D__89eh5R3wMU16DGZTs,88143
@@ -1784,12 +1786,13 @@ pulumi_oci/goldengate/get_connection_assignments.py,sha256=mPcMntb8GL2o2JcUl8DTw
1784
1786
  pulumi_oci/goldengate/get_connections.py,sha256=hK4hax5E_YFUwg3sO70mCi86A2_pVWoYacbHlrqqFsI,15388
1785
1787
  pulumi_oci/goldengate/get_database_registration.py,sha256=SU34bNEOy601hJ3a5ABG3dwq-Dol8kEJyY_WPI7kXEA,21824
1786
1788
  pulumi_oci/goldengate/get_database_registrations.py,sha256=XWP2crOkNeA1qrkQcL8Tt_2oDbl80mXF8_WmIUkae2k,9378
1787
- pulumi_oci/goldengate/get_deployment.py,sha256=jKAXyf7oCf0b0_1I_qutqbd07G9WEWHUxwPaTEqBZBM,39220
1789
+ pulumi_oci/goldengate/get_deployment.py,sha256=Bbt90LmOr9zTny75a40pdSzORzjtCB1WYALvkw5QemQ,43324
1788
1790
  pulumi_oci/goldengate/get_deployment_backup.py,sha256=ZdRznt6PRr0nfIG15m2bG-zfKWf2MRa8XnrOqBj6emw,20348
1789
1791
  pulumi_oci/goldengate/get_deployment_backups.py,sha256=oJ8FAA8gFIwo5HOpohkvF2L1erGa10QYGZWoqSCpH2Y,10398
1790
1792
  pulumi_oci/goldengate/get_deployment_certificate.py,sha256=GCwsUn-5cqpJF0Wn7tZJImkwGaHwJzhJ-LhNVFoLahU,17358
1791
1793
  pulumi_oci/goldengate/get_deployment_certificates.py,sha256=ZveIjHzOY2P8qaEfhipSWV7fZvVKnvcn7oVuXSrO2RI,7258
1792
1794
  pulumi_oci/goldengate/get_deployment_environments.py,sha256=tMDrIqz0Dpl5VIsffLRbGRcexvb8OHE7_TUrs4GFjWk,6936
1795
+ pulumi_oci/goldengate/get_deployment_peers.py,sha256=KpJvXOwWsCNN8bwOfYy6yeoTEUNEovBzNu9yo3Z9Ly8,8254
1793
1796
  pulumi_oci/goldengate/get_deployment_type.py,sha256=Mj0es9mNJOUB-v7QNqZEEPGtY-_wsHTCcdG1VpGaJt0,6058
1794
1797
  pulumi_oci/goldengate/get_deployment_types.py,sha256=VDx587Ck3moyjNj8DgzbDvPz_DyfZ0lQtZYrdz13V5Q,10398
1795
1798
  pulumi_oci/goldengate/get_deployment_upgrade.py,sha256=e51ItgIZ95n0Nhp99lVKbp26M1TIMSphh-6yrVDzBHI,24761
@@ -1808,7 +1811,7 @@ pulumi_oci/goldengate/get_trail_file.py,sha256=dclKbnzqUdA_va4v_BzXor9Q8xqv16IIM
1808
1811
  pulumi_oci/goldengate/get_trail_files.py,sha256=RsQWkBuir2cOOyadRFIM5AuZVOvMw2t5B8YWc3V839Y,8115
1809
1812
  pulumi_oci/goldengate/get_trail_sequence.py,sha256=9u3_6gtjsECk1LTnBfJhy_six1QQJXtAfi3ExOxYHUg,8811
1810
1813
  pulumi_oci/goldengate/get_trail_sequences.py,sha256=npGAgDLX1gd3kJPRHOIaY0b9RhPdRuBQYqTs3Gwy-ks,9460
1811
- pulumi_oci/goldengate/outputs.py,sha256=Vc4emqWBJOKWztr3WCDWf6vW-W3d-FPsQVos4rc1dcg,412232
1814
+ pulumi_oci/goldengate/outputs.py,sha256=-dZI6qKnibeIAFHLlmdS6gziA_p9um_Ec3pk2NJGrDs,426691
1812
1815
  pulumi_oci/goldengate/pipeline.py,sha256=rjZ322Gvr3y4ZhiJxtmPjs3EoGS5CPXfp4WSYbA3nH4,52582
1813
1816
  pulumi_oci/healthchecks/__init__.py,sha256=i7ZZRUQ3bD6VFp3F9Friidt_sFThTyjUngQkbyb3NJQ,678
1814
1817
  pulumi_oci/healthchecks/_inputs.py,sha256=VX6dcLiaWbAGSKMjvv1XQHcy0RNkk911cIAhW-ykkU0,7895
@@ -2182,9 +2185,9 @@ pulumi_oci/loadbalancer/get_ssl_cipher_suite.py,sha256=36uTgSPYiIecdFKbHVqPQbEq9
2182
2185
  pulumi_oci/loadbalancer/get_ssl_cipher_suites.py,sha256=TiUBvpSLe_RNhwoW56FyE0m8t_Pdm3z0-mVodoA_IuE,6058
2183
2186
  pulumi_oci/loadbalancer/hostname.py,sha256=ZyFkXPQfz33Uxl5HVDQm4ty3KydhAuqihRxrh7e1euY,15264
2184
2187
  pulumi_oci/loadbalancer/listener.py,sha256=EFZ6dhDth9U92qWTzRkQO1yQSkWCebku34uwwIHRGMQ,43883
2185
- pulumi_oci/loadbalancer/load_balancer.py,sha256=9z3ju73e9IYlEE_3GSInuVS0nGpWYMVqRPsoFbBYk2Y,91490
2188
+ pulumi_oci/loadbalancer/load_balancer.py,sha256=ASNLTcox2vaIhYAGOYFIgclgeNneG4suurm0ixIlONk,95520
2186
2189
  pulumi_oci/loadbalancer/load_balancer_routing_policy.py,sha256=nvYvyYOLUo3aWXXhzD2e0cl82C9sl99YN4yGeMA5YzA,19051
2187
- pulumi_oci/loadbalancer/outputs.py,sha256=tapFjzxh1mcgOIEuMaInLHZoNQPcVCEJSVeMWv3UDe8,273973
2190
+ pulumi_oci/loadbalancer/outputs.py,sha256=YWmXRChN52IA_nVaLOH5QcqALLy3ZXHcIQDlztmamyw,274784
2188
2191
  pulumi_oci/loadbalancer/path_route_set.py,sha256=v7APrU3IfPrD1MkxnZtsPr3aR0ZX3ZrAnZ95UeURCnY,15332
2189
2192
  pulumi_oci/loadbalancer/rule_set.py,sha256=FjKaS1ibivRzN9jtDdNtdZ7jv-yV-RJwKxGVQpCjTwQ,19635
2190
2193
  pulumi_oci/loadbalancer/ssl_cipher_suite.py,sha256=Wzp49usxAEeP4mGeMgizzHobYgnOg0yEiUnVAr3q2ME,19561
@@ -3046,12 +3049,12 @@ pulumi_oci/vbs/get_inst_vbs_instances.py,sha256=QWVA_wH9h2gwxz89H105zQsYK1bKigeJ
3046
3049
  pulumi_oci/vbs/inst_vbs_instance.py,sha256=-yhNcfmQeG5BNXEryF_XR0fN7mAZSGsi25prNaoDy0E,36867
3047
3050
  pulumi_oci/vbs/outputs.py,sha256=N0mcvMGvZQcNtsgJS05OYCmOnRVaxarYEOcilaTyOkw,9795
3048
3051
  pulumi_oci/visualbuilder/__init__.py,sha256=L19yrfD3ZcxmvYN3LCGUs_booZ7oUceEGp7R869XP7Q,464
3049
- pulumi_oci/visualbuilder/_inputs.py,sha256=-x6F_0xF3sRb4y3Lx-eRX-fXtd2kvVh1WFNdFOSK57Q,13529
3050
- pulumi_oci/visualbuilder/get_vb_instance.py,sha256=QeedmMUURJOfwgd8-At9ypeicRXdh2Hx4TFBotjPiVo,18553
3052
+ pulumi_oci/visualbuilder/_inputs.py,sha256=xR6HHb7579HmH1koYTsazQJLeZv7etKzc9TF6C9hOp0,19106
3053
+ pulumi_oci/visualbuilder/get_vb_instance.py,sha256=vhYzcqAjkATlrhm0lWy1FrEPNdrzU9yf9hDlGyJaWS4,18536
3051
3054
  pulumi_oci/visualbuilder/get_vb_instance_applications.py,sha256=LMmxFxnSYwYv6H8WE6-I_9JuhhP15Izwdxw3yp84EvQ,6611
3052
3055
  pulumi_oci/visualbuilder/get_vb_instances.py,sha256=tP2RE4mBg4blMlAKyRgZnrz_nsltj98Q7brFlhrKr10,8024
3053
- pulumi_oci/visualbuilder/outputs.py,sha256=GdaGNHoShEa2RWUDpMxpkD8GDsfWOSq8CaMvzH48HhI,36427
3054
- pulumi_oci/visualbuilder/vb_instance.py,sha256=o4KuZK-k6UTubWH0qXWbYPxEFm3cALghy6-pF42CaH4,55440
3056
+ pulumi_oci/visualbuilder/outputs.py,sha256=D-F57-YOjbTkaP-PsdxIFSuddwqtEGYOoIjWvAAO0zc,45977
3057
+ pulumi_oci/visualbuilder/vb_instance.py,sha256=njM4MKFSsCazpTY2eqtwpyLsUECmlQkJhbQguGv9zXM,52512
3055
3058
  pulumi_oci/vnmonitoring/__init__.py,sha256=CT8nvuw7oymx_ZFvnZuc3mR6ooCO5_6kzZlWix03jJg,469
3056
3059
  pulumi_oci/vnmonitoring/_inputs.py,sha256=GJvbP68-bXfwAIf6BOuh2i9TwuqF1H3c8vBuDeZymRQ,58206
3057
3060
  pulumi_oci/vnmonitoring/get_path_analyzer_test.py,sha256=_WrQVEZYQgayVx_JCLrLSccX417saD8Zi3_IX6YwYfE,13767
@@ -3129,7 +3132,7 @@ pulumi_oci/zpr/get_zpr_policies.py,sha256=G924T2joDuYhxTgJeyYORxBZF4lQSVHPt8Y50k
3129
3132
  pulumi_oci/zpr/get_zpr_policy.py,sha256=H3Avgx-zvXVtdX8vlaFgRSQRC93-O9ALK5IVDvY7Ow0,11634
3130
3133
  pulumi_oci/zpr/outputs.py,sha256=GD2XHQ5AW23uCFwlFhhtfC-7A-WOskX10zaxLLptQo8,9337
3131
3134
  pulumi_oci/zpr/zpr_policy.py,sha256=hmHcc332CHSCVHREi5pcrQM_sSX26fDr8TDiXOz6P6A,33650
3132
- pulumi_oci-2.31.0a1744784817.dist-info/METADATA,sha256=rdZ0aVYhuXySJCvLkG62dnv0xolSUD9bm94Yn7nqx2c,4054
3133
- pulumi_oci-2.31.0a1744784817.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
3134
- pulumi_oci-2.31.0a1744784817.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
3135
- pulumi_oci-2.31.0a1744784817.dist-info/RECORD,,
3135
+ pulumi_oci-2.32.0.dist-info/METADATA,sha256=90O1AwX3l01EmB0NQfbb0ivsXEkRSScDfnCgLIHdS_0,4043
3136
+ pulumi_oci-2.32.0.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
3137
+ pulumi_oci-2.32.0.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
3138
+ pulumi_oci-2.32.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.1.0)
2
+ Generator: setuptools (79.0.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5