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
@@ -35,6 +35,7 @@ class LoadBalancerArgs:
35
35
  network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
36
36
  request_id_header: Optional[pulumi.Input[builtins.str]] = None,
37
37
  reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]]] = None,
38
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
38
39
  shape_details: Optional[pulumi.Input['LoadBalancerShapeDetailsArgs']] = None):
39
40
  """
40
41
  The set of arguments for constructing a LoadBalancer resource.
@@ -101,6 +102,7 @@ class LoadBalancerArgs:
101
102
  * Unless the header name is "" it must start with "X-" prefix.
102
103
  * Setting the header name to "" will set it to the default: X-Request-Id.
103
104
  :param pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]] reserved_ips: An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.
105
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] security_attributes: (Updatable) Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
104
106
  :param pulumi.Input['LoadBalancerShapeDetailsArgs'] shape_details: (Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is `Flexible`.
105
107
  """
106
108
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -125,6 +127,8 @@ class LoadBalancerArgs:
125
127
  pulumi.set(__self__, "request_id_header", request_id_header)
126
128
  if reserved_ips is not None:
127
129
  pulumi.set(__self__, "reserved_ips", reserved_ips)
130
+ if security_attributes is not None:
131
+ pulumi.set(__self__, "security_attributes", security_attributes)
128
132
  if shape_details is not None:
129
133
  pulumi.set(__self__, "shape_details", shape_details)
130
134
 
@@ -334,6 +338,18 @@ class LoadBalancerArgs:
334
338
  def reserved_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]]]):
335
339
  pulumi.set(self, "reserved_ips", value)
336
340
 
341
+ @property
342
+ @pulumi.getter(name="securityAttributes")
343
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
344
+ """
345
+ (Updatable) Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
346
+ """
347
+ return pulumi.get(self, "security_attributes")
348
+
349
+ @security_attributes.setter
350
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
351
+ pulumi.set(self, "security_attributes", value)
352
+
337
353
  @property
338
354
  @pulumi.getter(name="shapeDetails")
339
355
  def shape_details(self) -> Optional[pulumi.Input['LoadBalancerShapeDetailsArgs']]:
@@ -363,6 +379,7 @@ class _LoadBalancerState:
363
379
  network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
364
380
  request_id_header: Optional[pulumi.Input[builtins.str]] = None,
365
381
  reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]]] = None,
382
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
366
383
  shape: Optional[pulumi.Input[builtins.str]] = None,
367
384
  shape_details: Optional[pulumi.Input['LoadBalancerShapeDetailsArgs']] = None,
368
385
  state: Optional[pulumi.Input[builtins.str]] = None,
@@ -430,6 +447,7 @@ class _LoadBalancerState:
430
447
  * Unless the header name is "" it must start with "X-" prefix.
431
448
  * Setting the header name to "" will set it to the default: X-Request-Id.
432
449
  :param pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]] reserved_ips: An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.
450
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] security_attributes: (Updatable) Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
433
451
  :param pulumi.Input[builtins.str] shape: (Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerShape/ListShapes) operation. Example: `flexible` NOTE: After May 2023, Fixed shapes - 10Mbps, 100Mbps, 400Mbps, 8000Mbps would be deprecated and only shape allowed would be `Flexible` *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also `10Mbps-Micro` shape cannot be updated to any other shape nor can any other shape be updated to `10Mbps-Micro`.
434
452
  :param pulumi.Input['LoadBalancerShapeDetailsArgs'] shape_details: (Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is `Flexible`.
435
453
  :param pulumi.Input[builtins.str] state: The current state of the load balancer.
@@ -470,6 +488,8 @@ class _LoadBalancerState:
470
488
  pulumi.set(__self__, "request_id_header", request_id_header)
471
489
  if reserved_ips is not None:
472
490
  pulumi.set(__self__, "reserved_ips", reserved_ips)
491
+ if security_attributes is not None:
492
+ pulumi.set(__self__, "security_attributes", security_attributes)
473
493
  if shape is not None:
474
494
  pulumi.set(__self__, "shape", shape)
475
495
  if shape_details is not None:
@@ -686,6 +706,18 @@ class _LoadBalancerState:
686
706
  def reserved_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]]]):
687
707
  pulumi.set(self, "reserved_ips", value)
688
708
 
709
+ @property
710
+ @pulumi.getter(name="securityAttributes")
711
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
712
+ """
713
+ (Updatable) Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
714
+ """
715
+ return pulumi.get(self, "security_attributes")
716
+
717
+ @security_attributes.setter
718
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
719
+ pulumi.set(self, "security_attributes", value)
720
+
689
721
  @property
690
722
  @pulumi.getter
691
723
  def shape(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -779,6 +811,7 @@ class LoadBalancer(pulumi.CustomResource):
779
811
  network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
780
812
  request_id_header: Optional[pulumi.Input[builtins.str]] = None,
781
813
  reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerReservedIpArgs', 'LoadBalancerReservedIpArgsDict']]]]] = None,
814
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
782
815
  shape: Optional[pulumi.Input[builtins.str]] = None,
783
816
  shape_details: Optional[pulumi.Input[Union['LoadBalancerShapeDetailsArgs', 'LoadBalancerShapeDetailsArgsDict']]] = None,
784
817
  subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
@@ -841,6 +874,7 @@ class LoadBalancer(pulumi.CustomResource):
841
874
  reserved_ips=[{
842
875
  "id": load_balancer_reserved_ips_id,
843
876
  }],
877
+ security_attributes=load_balancer_security_attributes,
844
878
  shape_details={
845
879
  "maximum_bandwidth_in_mbps": load_balancer_shape_details_maximum_bandwidth_in_mbps,
846
880
  "minimum_bandwidth_in_mbps": load_balancer_shape_details_minimum_bandwidth_in_mbps,
@@ -914,6 +948,7 @@ class LoadBalancer(pulumi.CustomResource):
914
948
  * Unless the header name is "" it must start with "X-" prefix.
915
949
  * Setting the header name to "" will set it to the default: X-Request-Id.
916
950
  :param pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerReservedIpArgs', 'LoadBalancerReservedIpArgsDict']]]] reserved_ips: An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.
951
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] security_attributes: (Updatable) Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
917
952
  :param pulumi.Input[builtins.str] shape: (Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerShape/ListShapes) operation. Example: `flexible` NOTE: After May 2023, Fixed shapes - 10Mbps, 100Mbps, 400Mbps, 8000Mbps would be deprecated and only shape allowed would be `Flexible` *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also `10Mbps-Micro` shape cannot be updated to any other shape nor can any other shape be updated to `10Mbps-Micro`.
918
953
  :param pulumi.Input[Union['LoadBalancerShapeDetailsArgs', 'LoadBalancerShapeDetailsArgsDict']] shape_details: (Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is `Flexible`.
919
954
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] subnet_ids: An array of subnet [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
@@ -986,6 +1021,7 @@ class LoadBalancer(pulumi.CustomResource):
986
1021
  reserved_ips=[{
987
1022
  "id": load_balancer_reserved_ips_id,
988
1023
  }],
1024
+ security_attributes=load_balancer_security_attributes,
989
1025
  shape_details={
990
1026
  "maximum_bandwidth_in_mbps": load_balancer_shape_details_maximum_bandwidth_in_mbps,
991
1027
  "minimum_bandwidth_in_mbps": load_balancer_shape_details_minimum_bandwidth_in_mbps,
@@ -1026,6 +1062,7 @@ class LoadBalancer(pulumi.CustomResource):
1026
1062
  network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
1027
1063
  request_id_header: Optional[pulumi.Input[builtins.str]] = None,
1028
1064
  reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerReservedIpArgs', 'LoadBalancerReservedIpArgsDict']]]]] = None,
1065
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
1029
1066
  shape: Optional[pulumi.Input[builtins.str]] = None,
1030
1067
  shape_details: Optional[pulumi.Input[Union['LoadBalancerShapeDetailsArgs', 'LoadBalancerShapeDetailsArgsDict']]] = None,
1031
1068
  subnet_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
@@ -1053,6 +1090,7 @@ class LoadBalancer(pulumi.CustomResource):
1053
1090
  __props__.__dict__["network_security_group_ids"] = network_security_group_ids
1054
1091
  __props__.__dict__["request_id_header"] = request_id_header
1055
1092
  __props__.__dict__["reserved_ips"] = reserved_ips
1093
+ __props__.__dict__["security_attributes"] = security_attributes
1056
1094
  if shape is None and not opts.urn:
1057
1095
  raise TypeError("Missing required property 'shape'")
1058
1096
  __props__.__dict__["shape"] = shape
@@ -1088,6 +1126,7 @@ class LoadBalancer(pulumi.CustomResource):
1088
1126
  network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
1089
1127
  request_id_header: Optional[pulumi.Input[builtins.str]] = None,
1090
1128
  reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerReservedIpArgs', 'LoadBalancerReservedIpArgsDict']]]]] = None,
1129
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
1091
1130
  shape: Optional[pulumi.Input[builtins.str]] = None,
1092
1131
  shape_details: Optional[pulumi.Input[Union['LoadBalancerShapeDetailsArgs', 'LoadBalancerShapeDetailsArgsDict']]] = None,
1093
1132
  state: Optional[pulumi.Input[builtins.str]] = None,
@@ -1160,6 +1199,7 @@ class LoadBalancer(pulumi.CustomResource):
1160
1199
  * Unless the header name is "" it must start with "X-" prefix.
1161
1200
  * Setting the header name to "" will set it to the default: X-Request-Id.
1162
1201
  :param pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerReservedIpArgs', 'LoadBalancerReservedIpArgsDict']]]] reserved_ips: An array of reserved Ips. Pre-created public IP that will be used as the IP of this load balancer. This reserved IP will not be deleted when load balancer is deleted. This ip should not be already mapped to any other resource.
1202
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] security_attributes: (Updatable) Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
1163
1203
  :param pulumi.Input[builtins.str] shape: (Updatable) A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerShape/ListShapes) operation. Example: `flexible` NOTE: After May 2023, Fixed shapes - 10Mbps, 100Mbps, 400Mbps, 8000Mbps would be deprecated and only shape allowed would be `Flexible` *Note: When updating shape for a load balancer, all existing connections to the load balancer will be reset during the update process. Also `10Mbps-Micro` shape cannot be updated to any other shape nor can any other shape be updated to `10Mbps-Micro`.
1164
1204
  :param pulumi.Input[Union['LoadBalancerShapeDetailsArgs', 'LoadBalancerShapeDetailsArgsDict']] shape_details: (Updatable) The configuration details to create load balancer using Flexible shape. This is required only if shapeName is `Flexible`.
1165
1205
  :param pulumi.Input[builtins.str] state: The current state of the load balancer.
@@ -1188,6 +1228,7 @@ class LoadBalancer(pulumi.CustomResource):
1188
1228
  __props__.__dict__["network_security_group_ids"] = network_security_group_ids
1189
1229
  __props__.__dict__["request_id_header"] = request_id_header
1190
1230
  __props__.__dict__["reserved_ips"] = reserved_ips
1231
+ __props__.__dict__["security_attributes"] = security_attributes
1191
1232
  __props__.__dict__["shape"] = shape
1192
1233
  __props__.__dict__["shape_details"] = shape_details
1193
1234
  __props__.__dict__["state"] = state
@@ -1347,6 +1388,14 @@ class LoadBalancer(pulumi.CustomResource):
1347
1388
  """
1348
1389
  return pulumi.get(self, "reserved_ips")
1349
1390
 
1391
+ @property
1392
+ @pulumi.getter(name="securityAttributes")
1393
+ def security_attributes(self) -> pulumi.Output[Mapping[str, builtins.str]]:
1394
+ """
1395
+ (Updatable) Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
1396
+ """
1397
+ return pulumi.get(self, "security_attributes")
1398
+
1350
1399
  @property
1351
1400
  @pulumi.getter
1352
1401
  def shape(self) -> pulumi.Output[builtins.str]:
@@ -3739,6 +3739,7 @@ class GetLoadBalancersLoadBalancerResult(dict):
3739
3739
  network_security_group_ids: Sequence[builtins.str],
3740
3740
  request_id_header: builtins.str,
3741
3741
  reserved_ips: Sequence['outputs.GetLoadBalancersLoadBalancerReservedIpResult'],
3742
+ security_attributes: Mapping[str, builtins.str],
3742
3743
  shape: builtins.str,
3743
3744
  shape_details: Sequence['outputs.GetLoadBalancersLoadBalancerShapeDetailResult'],
3744
3745
  state: builtins.str,
@@ -3758,6 +3759,7 @@ class GetLoadBalancersLoadBalancerResult(dict):
3758
3759
  :param builtins.bool is_request_id_enabled: Whether or not the load balancer has the Request Id feature enabled for HTTP listeners.
3759
3760
  :param Sequence[builtins.str] network_security_group_ids: An array of NSG [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the load balancer.
3760
3761
  :param builtins.str request_id_header: If isRequestIdEnabled is true then this field contains the name of the header field that contains the unique request id that is attached to every request from the load balancer to the load balancer backends and to every response from the load balancer.
3762
+ :param Mapping[str, builtins.str] security_attributes: Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
3761
3763
  :param builtins.str shape: A template that determines the total pre-provisioned bandwidth (ingress plus egress). To get a list of available shapes, use the [ListShapes](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerShape/ListShapes) operation. Example: `100Mbps`
3762
3764
  :param Sequence['GetLoadBalancersLoadBalancerShapeDetailArgs'] shape_details: The configuration details to update load balancer to a different shape.
3763
3765
  :param builtins.str state: A filter to return only resources that match the given lifecycle state. Example: `SUCCEEDED`
@@ -3779,6 +3781,7 @@ class GetLoadBalancersLoadBalancerResult(dict):
3779
3781
  pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
3780
3782
  pulumi.set(__self__, "request_id_header", request_id_header)
3781
3783
  pulumi.set(__self__, "reserved_ips", reserved_ips)
3784
+ pulumi.set(__self__, "security_attributes", security_attributes)
3782
3785
  pulumi.set(__self__, "shape", shape)
3783
3786
  pulumi.set(__self__, "shape_details", shape_details)
3784
3787
  pulumi.set(__self__, "state", state)
@@ -3893,6 +3896,14 @@ class GetLoadBalancersLoadBalancerResult(dict):
3893
3896
  def reserved_ips(self) -> Sequence['outputs.GetLoadBalancersLoadBalancerReservedIpResult']:
3894
3897
  return pulumi.get(self, "reserved_ips")
3895
3898
 
3899
+ @property
3900
+ @pulumi.getter(name="securityAttributes")
3901
+ def security_attributes(self) -> Mapping[str, builtins.str]:
3902
+ """
3903
+ Extended Defined tags for ZPR for this resource. Each key is predefined and scoped to a namespace. Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value":"42","mode":"audit", "usagetype" : "zpr"}}}`
3904
+ """
3905
+ return pulumi.get(self, "security_attributes")
3906
+
3896
3907
  @property
3897
3908
  @pulumi.getter
3898
3909
  def shape(self) -> builtins.str:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "oci",
4
- "version": "2.31.0-alpha.1744784817"
4
+ "version": "2.32.0"
5
5
  }
@@ -22,6 +22,8 @@ __all__ = [
22
22
  'VbInstanceCustomEndpointArgsDict',
23
23
  'VbInstanceNetworkEndpointDetailsArgs',
24
24
  'VbInstanceNetworkEndpointDetailsArgsDict',
25
+ 'VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs',
26
+ 'VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgsDict',
25
27
  'GetVbInstancesFilterArgs',
26
28
  'GetVbInstancesFilterArgsDict',
27
29
  ]
@@ -175,10 +177,16 @@ if not MYPY:
175
177
  network_endpoint_type: pulumi.Input[builtins.str]
176
178
  """
177
179
  (Updatable) The type of network endpoint.
180
+
181
+ For private endpoint access
178
182
  """
179
- subnet_id: pulumi.Input[builtins.str]
183
+ allowlisted_http_ips: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
180
184
  """
181
- (Updatable) The subnet OCID for the private endpoint.
185
+ (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.
186
+ """
187
+ allowlisted_http_vcns: NotRequired[pulumi.Input[Sequence[pulumi.Input['VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgsDict']]]]
188
+ """
189
+ (Updatable) Virtual Cloud Networks allowed to access this network endpoint.
182
190
  """
183
191
  network_security_group_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
184
192
  """
@@ -188,6 +196,12 @@ if not MYPY:
188
196
  """
189
197
  The IP address to be assigned to Private Endpoint
190
198
  """
199
+ subnet_id: NotRequired[pulumi.Input[builtins.str]]
200
+ """
201
+ (Updatable) The subnet OCID for the private endpoint.
202
+
203
+ For public network access control
204
+ """
191
205
  elif False:
192
206
  VbInstanceNetworkEndpointDetailsArgsDict: TypeAlias = Mapping[str, Any]
193
207
 
@@ -195,27 +209,42 @@ elif False:
195
209
  class VbInstanceNetworkEndpointDetailsArgs:
196
210
  def __init__(__self__, *,
197
211
  network_endpoint_type: pulumi.Input[builtins.str],
198
- subnet_id: pulumi.Input[builtins.str],
212
+ allowlisted_http_ips: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
213
+ allowlisted_http_vcns: Optional[pulumi.Input[Sequence[pulumi.Input['VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs']]]] = None,
199
214
  network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
200
- private_endpoint_ip: Optional[pulumi.Input[builtins.str]] = None):
215
+ private_endpoint_ip: Optional[pulumi.Input[builtins.str]] = None,
216
+ subnet_id: Optional[pulumi.Input[builtins.str]] = None):
201
217
  """
202
218
  :param pulumi.Input[builtins.str] network_endpoint_type: (Updatable) The type of network endpoint.
203
- :param pulumi.Input[builtins.str] subnet_id: (Updatable) The subnet OCID for the private endpoint.
219
+
220
+ For private endpoint access
221
+ :param pulumi.Input[Sequence[pulumi.Input[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.
222
+ :param pulumi.Input[Sequence[pulumi.Input['VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs']]] allowlisted_http_vcns: (Updatable) Virtual Cloud Networks allowed to access this network endpoint.
204
223
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] network_security_group_ids: (Updatable) Network Security Group OCIDs for the Private Endpoint.
205
224
  :param pulumi.Input[builtins.str] private_endpoint_ip: The IP address to be assigned to Private Endpoint
225
+ :param pulumi.Input[builtins.str] subnet_id: (Updatable) The subnet OCID for the private endpoint.
226
+
227
+ For public network access control
206
228
  """
207
229
  pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
208
- pulumi.set(__self__, "subnet_id", subnet_id)
230
+ if allowlisted_http_ips is not None:
231
+ pulumi.set(__self__, "allowlisted_http_ips", allowlisted_http_ips)
232
+ if allowlisted_http_vcns is not None:
233
+ pulumi.set(__self__, "allowlisted_http_vcns", allowlisted_http_vcns)
209
234
  if network_security_group_ids is not None:
210
235
  pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
211
236
  if private_endpoint_ip is not None:
212
237
  pulumi.set(__self__, "private_endpoint_ip", private_endpoint_ip)
238
+ if subnet_id is not None:
239
+ pulumi.set(__self__, "subnet_id", subnet_id)
213
240
 
214
241
  @property
215
242
  @pulumi.getter(name="networkEndpointType")
216
243
  def network_endpoint_type(self) -> pulumi.Input[builtins.str]:
217
244
  """
218
245
  (Updatable) The type of network endpoint.
246
+
247
+ For private endpoint access
219
248
  """
220
249
  return pulumi.get(self, "network_endpoint_type")
221
250
 
@@ -224,16 +253,28 @@ class VbInstanceNetworkEndpointDetailsArgs:
224
253
  pulumi.set(self, "network_endpoint_type", value)
225
254
 
226
255
  @property
227
- @pulumi.getter(name="subnetId")
228
- def subnet_id(self) -> pulumi.Input[builtins.str]:
256
+ @pulumi.getter(name="allowlistedHttpIps")
257
+ def allowlisted_http_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
229
258
  """
230
- (Updatable) The subnet OCID for the private endpoint.
259
+ (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.
231
260
  """
232
- return pulumi.get(self, "subnet_id")
261
+ return pulumi.get(self, "allowlisted_http_ips")
233
262
 
234
- @subnet_id.setter
235
- def subnet_id(self, value: pulumi.Input[builtins.str]):
236
- pulumi.set(self, "subnet_id", value)
263
+ @allowlisted_http_ips.setter
264
+ def allowlisted_http_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
265
+ pulumi.set(self, "allowlisted_http_ips", value)
266
+
267
+ @property
268
+ @pulumi.getter(name="allowlistedHttpVcns")
269
+ def allowlisted_http_vcns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs']]]]:
270
+ """
271
+ (Updatable) Virtual Cloud Networks allowed to access this network endpoint.
272
+ """
273
+ return pulumi.get(self, "allowlisted_http_vcns")
274
+
275
+ @allowlisted_http_vcns.setter
276
+ def allowlisted_http_vcns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs']]]]):
277
+ pulumi.set(self, "allowlisted_http_vcns", value)
237
278
 
238
279
  @property
239
280
  @pulumi.getter(name="networkSecurityGroupIds")
@@ -259,6 +300,71 @@ class VbInstanceNetworkEndpointDetailsArgs:
259
300
  def private_endpoint_ip(self, value: Optional[pulumi.Input[builtins.str]]):
260
301
  pulumi.set(self, "private_endpoint_ip", value)
261
302
 
303
+ @property
304
+ @pulumi.getter(name="subnetId")
305
+ def subnet_id(self) -> Optional[pulumi.Input[builtins.str]]:
306
+ """
307
+ (Updatable) The subnet OCID for the private endpoint.
308
+
309
+ For public network access control
310
+ """
311
+ return pulumi.get(self, "subnet_id")
312
+
313
+ @subnet_id.setter
314
+ def subnet_id(self, value: Optional[pulumi.Input[builtins.str]]):
315
+ pulumi.set(self, "subnet_id", value)
316
+
317
+
318
+ if not MYPY:
319
+ class VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgsDict(TypedDict):
320
+ id: pulumi.Input[builtins.str]
321
+ """
322
+ (Updatable) The Virtual Cloud Network OCID.
323
+ """
324
+ allowlisted_ip_cidrs: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
325
+ """
326
+ (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.
327
+ """
328
+ elif False:
329
+ VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgsDict: TypeAlias = Mapping[str, Any]
330
+
331
+ @pulumi.input_type
332
+ class VbInstanceNetworkEndpointDetailsAllowlistedHttpVcnArgs:
333
+ def __init__(__self__, *,
334
+ id: pulumi.Input[builtins.str],
335
+ allowlisted_ip_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
336
+ """
337
+ :param pulumi.Input[builtins.str] id: (Updatable) The Virtual Cloud Network OCID.
338
+ :param pulumi.Input[Sequence[pulumi.Input[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.
339
+ """
340
+ pulumi.set(__self__, "id", id)
341
+ if allowlisted_ip_cidrs is not None:
342
+ pulumi.set(__self__, "allowlisted_ip_cidrs", allowlisted_ip_cidrs)
343
+
344
+ @property
345
+ @pulumi.getter
346
+ def id(self) -> pulumi.Input[builtins.str]:
347
+ """
348
+ (Updatable) The Virtual Cloud Network OCID.
349
+ """
350
+ return pulumi.get(self, "id")
351
+
352
+ @id.setter
353
+ def id(self, value: pulumi.Input[builtins.str]):
354
+ pulumi.set(self, "id", value)
355
+
356
+ @property
357
+ @pulumi.getter(name="allowlistedIpCidrs")
358
+ def allowlisted_ip_cidrs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
359
+ """
360
+ (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.
361
+ """
362
+ return pulumi.get(self, "allowlisted_ip_cidrs")
363
+
364
+ @allowlisted_ip_cidrs.setter
365
+ def allowlisted_ip_cidrs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
366
+ pulumi.set(self, "allowlisted_ip_cidrs", value)
367
+
262
368
 
263
369
  if not MYPY:
264
370
  class GetVbInstancesFilterArgsDict(TypedDict):
@@ -159,7 +159,7 @@ class GetVbInstanceResult:
159
159
  @pulumi.getter
160
160
  def id(self) -> builtins.str:
161
161
  """
162
- Unique identifier that is immutable on creation.
162
+ The Virtual Cloud Network OCID.
163
163
  """
164
164
  return pulumi.get(self, "id")
165
165