pulumi-oci 1.30.0__py3-none-any.whl → 1.30.0a1711740723__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.
- pulumi_oci/cloudguard/_inputs.py +2 -10
- pulumi_oci/cloudguard/cloud_guard_configuration.py +2 -2
- pulumi_oci/cloudguard/cloud_guard_data_source.py +24 -45
- pulumi_oci/cloudguard/data_mask_rule.py +2 -2
- pulumi_oci/cloudguard/detector_recipe.py +2 -2
- pulumi_oci/cloudguard/get_cloud_guard_configuration.py +2 -2
- pulumi_oci/cloudguard/get_data_mask_rule.py +2 -2
- pulumi_oci/cloudguard/get_data_mask_rules.py +2 -2
- pulumi_oci/cloudguard/get_detector_recipe.py +2 -2
- pulumi_oci/cloudguard/get_detector_recipes.py +2 -2
- pulumi_oci/cloudguard/get_managed_list.py +2 -2
- pulumi_oci/cloudguard/get_managed_lists.py +2 -2
- pulumi_oci/cloudguard/managed_list.py +2 -2
- pulumi_oci/cloudguard/outputs.py +2 -10
- pulumi_oci/disasterrecovery/dr_protection_group.py +1 -1
- pulumi_oci/email/__init__.py +0 -1
- pulumi_oci/email/dkim.py +21 -21
- pulumi_oci/email/email_domain.py +7 -7
- pulumi_oci/email/get_dkim.py +2 -2
- pulumi_oci/email/get_dkims.py +2 -2
- pulumi_oci/email/get_email_domain.py +2 -2
- pulumi_oci/email/get_email_domains.py +1 -1
- pulumi_oci/email/get_sender.py +2 -15
- pulumi_oci/email/get_suppression.py +2 -2
- pulumi_oci/email/get_suppressions.py +4 -4
- pulumi_oci/email/outputs.py +12 -23
- pulumi_oci/email/sender.py +4 -32
- pulumi_oci/email/suppression.py +8 -8
- pulumi_oci/loadbalancer/_inputs.py +2 -2
- pulumi_oci/loadbalancer/outputs.py +4 -4
- pulumi_oci/loadbalancer/ssl_cipher_suite.py +0 -42
- pulumi_oci/managementagent/_inputs.py +44 -0
- pulumi_oci/managementagent/get_management_agents.py +3 -20
- pulumi_oci/managementagent/management_agent.py +79 -27
- pulumi_oci/managementagent/outputs.py +44 -0
- pulumi_oci/networkloadbalancer/_inputs.py +4 -4
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +1 -31
- pulumi_oci/networkloadbalancer/network_load_balancer.py +23 -184
- pulumi_oci/networkloadbalancer/outputs.py +4 -25
- {pulumi_oci-1.30.0.dist-info → pulumi_oci-1.30.0a1711740723.dist-info}/METADATA +1 -1
- {pulumi_oci-1.30.0.dist-info → pulumi_oci-1.30.0a1711740723.dist-info}/RECORD +43 -44
- pulumi_oci/email/get_configuration.py +0 -138
- {pulumi_oci-1.30.0.dist-info → pulumi_oci-1.30.0a1711740723.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.30.0.dist-info → pulumi_oci-1.30.0a1711740723.dist-info}/top_level.txt +0 -0
@@ -19,8 +19,6 @@ class NetworkLoadBalancerArgs:
|
|
19
19
|
compartment_id: pulumi.Input[str],
|
20
20
|
display_name: pulumi.Input[str],
|
21
21
|
subnet_id: pulumi.Input[str],
|
22
|
-
assigned_ipv6: Optional[pulumi.Input[str]] = None,
|
23
|
-
assigned_private_ipv4: Optional[pulumi.Input[str]] = None,
|
24
22
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
25
23
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
26
24
|
is_preserve_source_destination: Optional[pulumi.Input[bool]] = None,
|
@@ -28,15 +26,16 @@ class NetworkLoadBalancerArgs:
|
|
28
26
|
is_symmetric_hash_enabled: Optional[pulumi.Input[bool]] = None,
|
29
27
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
30
28
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
31
|
-
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]]] = None
|
32
|
-
subnet_ipv6cidr: Optional[pulumi.Input[str]] = None):
|
29
|
+
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]]] = None):
|
33
30
|
"""
|
34
31
|
The set of arguments for constructing a NetworkLoadBalancer resource.
|
35
32
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the network load balancer.
|
36
33
|
:param pulumi.Input[str] display_name: (Updatable) Network load balancer identifier, which can be renamed.
|
37
34
|
:param pulumi.Input[str] subnet_id: The subnet in which the network load balancer is spawned [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
38
|
-
|
39
|
-
|
35
|
+
|
36
|
+
|
37
|
+
** IMPORTANT **
|
38
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
40
39
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
41
40
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
42
41
|
:param pulumi.Input[bool] is_preserve_source_destination: (Updatable) This parameter can be enabled only if backends are compute OCIDs. When enabled, the skipSourceDestinationCheck parameter is automatically enabled on the load balancer VNIC, and packets are sent to the backend with the entire IP header intact.
|
@@ -49,9 +48,7 @@ class NetworkLoadBalancerArgs:
|
|
49
48
|
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/overview.htm). This value is true by default.
|
50
49
|
|
51
50
|
Example: `true`
|
52
|
-
:param pulumi.Input[bool] is_symmetric_hash_enabled: (Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
|
53
|
-
|
54
|
-
Example: `true`
|
51
|
+
:param pulumi.Input[bool] is_symmetric_hash_enabled: (Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
|
55
52
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] network_security_group_ids: (Updatable) An array of network security groups [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the network load balancer.
|
56
53
|
|
57
54
|
During the creation of the network load balancer, the service adds the new load balancer to the specified network security groups.
|
@@ -63,19 +60,10 @@ class NetworkLoadBalancerArgs:
|
|
63
60
|
Example: ["ocid1.nsg.oc1.phx.unique_ID"]
|
64
61
|
:param pulumi.Input[str] nlb_ip_version: (Updatable) IP version associated with the NLB.
|
65
62
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]] reserved_ips: An array of reserved Ips.
|
66
|
-
:param pulumi.Input[str] subnet_ipv6cidr: IPv6 subnet prefix selection. If Ipv6 subnet prefix is passed, Nlb Ipv6 Address would be assign within the cidr block. NLB has to be dual or single stack ipv6 to support this.
|
67
|
-
|
68
|
-
|
69
|
-
** IMPORTANT **
|
70
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
71
63
|
"""
|
72
64
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
73
65
|
pulumi.set(__self__, "display_name", display_name)
|
74
66
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
75
|
-
if assigned_ipv6 is not None:
|
76
|
-
pulumi.set(__self__, "assigned_ipv6", assigned_ipv6)
|
77
|
-
if assigned_private_ipv4 is not None:
|
78
|
-
pulumi.set(__self__, "assigned_private_ipv4", assigned_private_ipv4)
|
79
67
|
if defined_tags is not None:
|
80
68
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
81
69
|
if freeform_tags is not None:
|
@@ -92,8 +80,6 @@ class NetworkLoadBalancerArgs:
|
|
92
80
|
pulumi.set(__self__, "nlb_ip_version", nlb_ip_version)
|
93
81
|
if reserved_ips is not None:
|
94
82
|
pulumi.set(__self__, "reserved_ips", reserved_ips)
|
95
|
-
if subnet_ipv6cidr is not None:
|
96
|
-
pulumi.set(__self__, "subnet_ipv6cidr", subnet_ipv6cidr)
|
97
83
|
|
98
84
|
@property
|
99
85
|
@pulumi.getter(name="compartmentId")
|
@@ -124,6 +110,10 @@ class NetworkLoadBalancerArgs:
|
|
124
110
|
def subnet_id(self) -> pulumi.Input[str]:
|
125
111
|
"""
|
126
112
|
The subnet in which the network load balancer is spawned [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
113
|
+
|
114
|
+
|
115
|
+
** IMPORTANT **
|
116
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
127
117
|
"""
|
128
118
|
return pulumi.get(self, "subnet_id")
|
129
119
|
|
@@ -131,30 +121,6 @@ class NetworkLoadBalancerArgs:
|
|
131
121
|
def subnet_id(self, value: pulumi.Input[str]):
|
132
122
|
pulumi.set(self, "subnet_id", value)
|
133
123
|
|
134
|
-
@property
|
135
|
-
@pulumi.getter(name="assignedIpv6")
|
136
|
-
def assigned_ipv6(self) -> Optional[pulumi.Input[str]]:
|
137
|
-
"""
|
138
|
-
IPv6 address to be assigned to the network load balancer being created. This IP address has to be part of one of the prefixes supported by the subnet. Example: "2607:9b80:9a0a:9a7e:abcd:ef01:2345:6789"
|
139
|
-
"""
|
140
|
-
return pulumi.get(self, "assigned_ipv6")
|
141
|
-
|
142
|
-
@assigned_ipv6.setter
|
143
|
-
def assigned_ipv6(self, value: Optional[pulumi.Input[str]]):
|
144
|
-
pulumi.set(self, "assigned_ipv6", value)
|
145
|
-
|
146
|
-
@property
|
147
|
-
@pulumi.getter(name="assignedPrivateIpv4")
|
148
|
-
def assigned_private_ipv4(self) -> Optional[pulumi.Input[str]]:
|
149
|
-
"""
|
150
|
-
Private IP address to be assigned to the network load balancer being created. This IP address has to be in the CIDR range of the subnet where network load balancer is being created Example: "10.0.0.1"
|
151
|
-
"""
|
152
|
-
return pulumi.get(self, "assigned_private_ipv4")
|
153
|
-
|
154
|
-
@assigned_private_ipv4.setter
|
155
|
-
def assigned_private_ipv4(self, value: Optional[pulumi.Input[str]]):
|
156
|
-
pulumi.set(self, "assigned_private_ipv4", value)
|
157
|
-
|
158
124
|
@property
|
159
125
|
@pulumi.getter(name="definedTags")
|
160
126
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
@@ -215,9 +181,7 @@ class NetworkLoadBalancerArgs:
|
|
215
181
|
@pulumi.getter(name="isSymmetricHashEnabled")
|
216
182
|
def is_symmetric_hash_enabled(self) -> Optional[pulumi.Input[bool]]:
|
217
183
|
"""
|
218
|
-
(Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
|
219
|
-
|
220
|
-
Example: `true`
|
184
|
+
(Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
|
221
185
|
"""
|
222
186
|
return pulumi.get(self, "is_symmetric_hash_enabled")
|
223
187
|
|
@@ -269,28 +233,10 @@ class NetworkLoadBalancerArgs:
|
|
269
233
|
def reserved_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]]]):
|
270
234
|
pulumi.set(self, "reserved_ips", value)
|
271
235
|
|
272
|
-
@property
|
273
|
-
@pulumi.getter(name="subnetIpv6cidr")
|
274
|
-
def subnet_ipv6cidr(self) -> Optional[pulumi.Input[str]]:
|
275
|
-
"""
|
276
|
-
IPv6 subnet prefix selection. If Ipv6 subnet prefix is passed, Nlb Ipv6 Address would be assign within the cidr block. NLB has to be dual or single stack ipv6 to support this.
|
277
|
-
|
278
|
-
|
279
|
-
** IMPORTANT **
|
280
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
281
|
-
"""
|
282
|
-
return pulumi.get(self, "subnet_ipv6cidr")
|
283
|
-
|
284
|
-
@subnet_ipv6cidr.setter
|
285
|
-
def subnet_ipv6cidr(self, value: Optional[pulumi.Input[str]]):
|
286
|
-
pulumi.set(self, "subnet_ipv6cidr", value)
|
287
|
-
|
288
236
|
|
289
237
|
@pulumi.input_type
|
290
238
|
class _NetworkLoadBalancerState:
|
291
239
|
def __init__(__self__, *,
|
292
|
-
assigned_ipv6: Optional[pulumi.Input[str]] = None,
|
293
|
-
assigned_private_ipv4: Optional[pulumi.Input[str]] = None,
|
294
240
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
295
241
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
296
242
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -305,14 +251,11 @@ class _NetworkLoadBalancerState:
|
|
305
251
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]]] = None,
|
306
252
|
state: Optional[pulumi.Input[str]] = None,
|
307
253
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
308
|
-
subnet_ipv6cidr: Optional[pulumi.Input[str]] = None,
|
309
254
|
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
310
255
|
time_created: Optional[pulumi.Input[str]] = None,
|
311
256
|
time_updated: Optional[pulumi.Input[str]] = None):
|
312
257
|
"""
|
313
258
|
Input properties used for looking up and filtering NetworkLoadBalancer resources.
|
314
|
-
:param pulumi.Input[str] assigned_ipv6: IPv6 address to be assigned to the network load balancer being created. This IP address has to be part of one of the prefixes supported by the subnet. Example: "2607:9b80:9a0a:9a7e:abcd:ef01:2345:6789"
|
315
|
-
:param pulumi.Input[str] assigned_private_ipv4: Private IP address to be assigned to the network load balancer being created. This IP address has to be in the CIDR range of the subnet where network load balancer is being created Example: "10.0.0.1"
|
316
259
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the network load balancer.
|
317
260
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
318
261
|
:param pulumi.Input[str] display_name: (Updatable) Network load balancer identifier, which can be renamed.
|
@@ -328,9 +271,7 @@ class _NetworkLoadBalancerState:
|
|
328
271
|
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/overview.htm). This value is true by default.
|
329
272
|
|
330
273
|
Example: `true`
|
331
|
-
:param pulumi.Input[bool] is_symmetric_hash_enabled: (Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
|
332
|
-
|
333
|
-
Example: `true`
|
274
|
+
:param pulumi.Input[bool] is_symmetric_hash_enabled: (Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
|
334
275
|
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
335
276
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] network_security_group_ids: (Updatable) An array of network security groups [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the network load balancer.
|
336
277
|
|
@@ -345,7 +286,6 @@ class _NetworkLoadBalancerState:
|
|
345
286
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]] reserved_ips: An array of reserved Ips.
|
346
287
|
:param pulumi.Input[str] state: The current state of the network load balancer.
|
347
288
|
:param pulumi.Input[str] subnet_id: The subnet in which the network load balancer is spawned [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
348
|
-
:param pulumi.Input[str] subnet_ipv6cidr: IPv6 subnet prefix selection. If Ipv6 subnet prefix is passed, Nlb Ipv6 Address would be assign within the cidr block. NLB has to be dual or single stack ipv6 to support this.
|
349
289
|
|
350
290
|
|
351
291
|
** IMPORTANT **
|
@@ -354,10 +294,6 @@ class _NetworkLoadBalancerState:
|
|
354
294
|
:param pulumi.Input[str] time_created: The date and time the network load balancer was created, in the format defined by RFC3339. Example: `2020-05-01T21:10:29.600Z`
|
355
295
|
:param pulumi.Input[str] time_updated: The time the network load balancer was updated. An RFC3339 formatted date-time string. Example: `2020-05-01T22:10:29.600Z`
|
356
296
|
"""
|
357
|
-
if assigned_ipv6 is not None:
|
358
|
-
pulumi.set(__self__, "assigned_ipv6", assigned_ipv6)
|
359
|
-
if assigned_private_ipv4 is not None:
|
360
|
-
pulumi.set(__self__, "assigned_private_ipv4", assigned_private_ipv4)
|
361
297
|
if compartment_id is not None:
|
362
298
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
363
299
|
if defined_tags is not None:
|
@@ -386,8 +322,6 @@ class _NetworkLoadBalancerState:
|
|
386
322
|
pulumi.set(__self__, "state", state)
|
387
323
|
if subnet_id is not None:
|
388
324
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
389
|
-
if subnet_ipv6cidr is not None:
|
390
|
-
pulumi.set(__self__, "subnet_ipv6cidr", subnet_ipv6cidr)
|
391
325
|
if system_tags is not None:
|
392
326
|
pulumi.set(__self__, "system_tags", system_tags)
|
393
327
|
if time_created is not None:
|
@@ -395,30 +329,6 @@ class _NetworkLoadBalancerState:
|
|
395
329
|
if time_updated is not None:
|
396
330
|
pulumi.set(__self__, "time_updated", time_updated)
|
397
331
|
|
398
|
-
@property
|
399
|
-
@pulumi.getter(name="assignedIpv6")
|
400
|
-
def assigned_ipv6(self) -> Optional[pulumi.Input[str]]:
|
401
|
-
"""
|
402
|
-
IPv6 address to be assigned to the network load balancer being created. This IP address has to be part of one of the prefixes supported by the subnet. Example: "2607:9b80:9a0a:9a7e:abcd:ef01:2345:6789"
|
403
|
-
"""
|
404
|
-
return pulumi.get(self, "assigned_ipv6")
|
405
|
-
|
406
|
-
@assigned_ipv6.setter
|
407
|
-
def assigned_ipv6(self, value: Optional[pulumi.Input[str]]):
|
408
|
-
pulumi.set(self, "assigned_ipv6", value)
|
409
|
-
|
410
|
-
@property
|
411
|
-
@pulumi.getter(name="assignedPrivateIpv4")
|
412
|
-
def assigned_private_ipv4(self) -> Optional[pulumi.Input[str]]:
|
413
|
-
"""
|
414
|
-
Private IP address to be assigned to the network load balancer being created. This IP address has to be in the CIDR range of the subnet where network load balancer is being created Example: "10.0.0.1"
|
415
|
-
"""
|
416
|
-
return pulumi.get(self, "assigned_private_ipv4")
|
417
|
-
|
418
|
-
@assigned_private_ipv4.setter
|
419
|
-
def assigned_private_ipv4(self, value: Optional[pulumi.Input[str]]):
|
420
|
-
pulumi.set(self, "assigned_private_ipv4", value)
|
421
|
-
|
422
332
|
@property
|
423
333
|
@pulumi.getter(name="compartmentId")
|
424
334
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -515,9 +425,7 @@ class _NetworkLoadBalancerState:
|
|
515
425
|
@pulumi.getter(name="isSymmetricHashEnabled")
|
516
426
|
def is_symmetric_hash_enabled(self) -> Optional[pulumi.Input[bool]]:
|
517
427
|
"""
|
518
|
-
(Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
|
519
|
-
|
520
|
-
Example: `true`
|
428
|
+
(Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
|
521
429
|
"""
|
522
430
|
return pulumi.get(self, "is_symmetric_hash_enabled")
|
523
431
|
|
@@ -598,28 +506,16 @@ class _NetworkLoadBalancerState:
|
|
598
506
|
def subnet_id(self) -> Optional[pulumi.Input[str]]:
|
599
507
|
"""
|
600
508
|
The subnet in which the network load balancer is spawned [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
601
|
-
"""
|
602
|
-
return pulumi.get(self, "subnet_id")
|
603
|
-
|
604
|
-
@subnet_id.setter
|
605
|
-
def subnet_id(self, value: Optional[pulumi.Input[str]]):
|
606
|
-
pulumi.set(self, "subnet_id", value)
|
607
|
-
|
608
|
-
@property
|
609
|
-
@pulumi.getter(name="subnetIpv6cidr")
|
610
|
-
def subnet_ipv6cidr(self) -> Optional[pulumi.Input[str]]:
|
611
|
-
"""
|
612
|
-
IPv6 subnet prefix selection. If Ipv6 subnet prefix is passed, Nlb Ipv6 Address would be assign within the cidr block. NLB has to be dual or single stack ipv6 to support this.
|
613
509
|
|
614
510
|
|
615
511
|
** IMPORTANT **
|
616
512
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
617
513
|
"""
|
618
|
-
return pulumi.get(self, "
|
514
|
+
return pulumi.get(self, "subnet_id")
|
619
515
|
|
620
|
-
@
|
621
|
-
def
|
622
|
-
pulumi.set(self, "
|
516
|
+
@subnet_id.setter
|
517
|
+
def subnet_id(self, value: Optional[pulumi.Input[str]]):
|
518
|
+
pulumi.set(self, "subnet_id", value)
|
623
519
|
|
624
520
|
@property
|
625
521
|
@pulumi.getter(name="systemTags")
|
@@ -663,8 +559,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
663
559
|
def __init__(__self__,
|
664
560
|
resource_name: str,
|
665
561
|
opts: Optional[pulumi.ResourceOptions] = None,
|
666
|
-
assigned_ipv6: Optional[pulumi.Input[str]] = None,
|
667
|
-
assigned_private_ipv4: Optional[pulumi.Input[str]] = None,
|
668
562
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
669
563
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
670
564
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -676,7 +570,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
676
570
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
677
571
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkLoadBalancerReservedIpArgs']]]]] = None,
|
678
572
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
679
|
-
subnet_ipv6cidr: Optional[pulumi.Input[str]] = None,
|
680
573
|
__props__=None):
|
681
574
|
"""
|
682
575
|
This resource provides the Network Load Balancer resource in Oracle Cloud Infrastructure Network Load Balancer service.
|
@@ -694,8 +587,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
694
587
|
compartment_id=var["compartment_id"],
|
695
588
|
display_name=var["network_load_balancer_display_name"],
|
696
589
|
subnet_id=oci_core_subnet["test_subnet"]["id"],
|
697
|
-
assigned_ipv6=var["network_load_balancer_assigned_ipv6"],
|
698
|
-
assigned_private_ipv4=var["network_load_balancer_assigned_private_ipv4"],
|
699
590
|
defined_tags={
|
700
591
|
"Operations.CostCenter": "42",
|
701
592
|
},
|
@@ -709,8 +600,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
709
600
|
nlb_ip_version=var["network_load_balancer_nlb_ip_version"],
|
710
601
|
reserved_ips=[oci.network_load_balancer.NetworkLoadBalancerReservedIpArgs(
|
711
602
|
id=var["network_load_balancer_reserved_ips_id"],
|
712
|
-
)]
|
713
|
-
subnet_ipv6cidr=var["network_load_balancer_subnet_ipv6cidr"])
|
603
|
+
)])
|
714
604
|
```
|
715
605
|
<!--End PulumiCodeChooser -->
|
716
606
|
|
@@ -724,8 +614,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
724
614
|
|
725
615
|
:param str resource_name: The name of the resource.
|
726
616
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
727
|
-
:param pulumi.Input[str] assigned_ipv6: IPv6 address to be assigned to the network load balancer being created. This IP address has to be part of one of the prefixes supported by the subnet. Example: "2607:9b80:9a0a:9a7e:abcd:ef01:2345:6789"
|
728
|
-
:param pulumi.Input[str] assigned_private_ipv4: Private IP address to be assigned to the network load balancer being created. This IP address has to be in the CIDR range of the subnet where network load balancer is being created Example: "10.0.0.1"
|
729
617
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the network load balancer.
|
730
618
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
731
619
|
:param pulumi.Input[str] display_name: (Updatable) Network load balancer identifier, which can be renamed.
|
@@ -740,9 +628,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
740
628
|
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/overview.htm). This value is true by default.
|
741
629
|
|
742
630
|
Example: `true`
|
743
|
-
:param pulumi.Input[bool] is_symmetric_hash_enabled: (Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
|
744
|
-
|
745
|
-
Example: `true`
|
631
|
+
:param pulumi.Input[bool] is_symmetric_hash_enabled: (Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
|
746
632
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] network_security_group_ids: (Updatable) An array of network security groups [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the network load balancer.
|
747
633
|
|
748
634
|
During the creation of the network load balancer, the service adds the new load balancer to the specified network security groups.
|
@@ -755,7 +641,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
755
641
|
:param pulumi.Input[str] nlb_ip_version: (Updatable) IP version associated with the NLB.
|
756
642
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkLoadBalancerReservedIpArgs']]]] reserved_ips: An array of reserved Ips.
|
757
643
|
:param pulumi.Input[str] subnet_id: The subnet in which the network load balancer is spawned [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
758
|
-
:param pulumi.Input[str] subnet_ipv6cidr: IPv6 subnet prefix selection. If Ipv6 subnet prefix is passed, Nlb Ipv6 Address would be assign within the cidr block. NLB has to be dual or single stack ipv6 to support this.
|
759
644
|
|
760
645
|
|
761
646
|
** IMPORTANT **
|
@@ -783,8 +668,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
783
668
|
compartment_id=var["compartment_id"],
|
784
669
|
display_name=var["network_load_balancer_display_name"],
|
785
670
|
subnet_id=oci_core_subnet["test_subnet"]["id"],
|
786
|
-
assigned_ipv6=var["network_load_balancer_assigned_ipv6"],
|
787
|
-
assigned_private_ipv4=var["network_load_balancer_assigned_private_ipv4"],
|
788
671
|
defined_tags={
|
789
672
|
"Operations.CostCenter": "42",
|
790
673
|
},
|
@@ -798,8 +681,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
798
681
|
nlb_ip_version=var["network_load_balancer_nlb_ip_version"],
|
799
682
|
reserved_ips=[oci.network_load_balancer.NetworkLoadBalancerReservedIpArgs(
|
800
683
|
id=var["network_load_balancer_reserved_ips_id"],
|
801
|
-
)]
|
802
|
-
subnet_ipv6cidr=var["network_load_balancer_subnet_ipv6cidr"])
|
684
|
+
)])
|
803
685
|
```
|
804
686
|
<!--End PulumiCodeChooser -->
|
805
687
|
|
@@ -826,8 +708,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
826
708
|
def _internal_init(__self__,
|
827
709
|
resource_name: str,
|
828
710
|
opts: Optional[pulumi.ResourceOptions] = None,
|
829
|
-
assigned_ipv6: Optional[pulumi.Input[str]] = None,
|
830
|
-
assigned_private_ipv4: Optional[pulumi.Input[str]] = None,
|
831
711
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
832
712
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
833
713
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -839,7 +719,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
839
719
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
840
720
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkLoadBalancerReservedIpArgs']]]]] = None,
|
841
721
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
842
|
-
subnet_ipv6cidr: Optional[pulumi.Input[str]] = None,
|
843
722
|
__props__=None):
|
844
723
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
845
724
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -849,8 +728,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
849
728
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
850
729
|
__props__ = NetworkLoadBalancerArgs.__new__(NetworkLoadBalancerArgs)
|
851
730
|
|
852
|
-
__props__.__dict__["assigned_ipv6"] = assigned_ipv6
|
853
|
-
__props__.__dict__["assigned_private_ipv4"] = assigned_private_ipv4
|
854
731
|
if compartment_id is None and not opts.urn:
|
855
732
|
raise TypeError("Missing required property 'compartment_id'")
|
856
733
|
__props__.__dict__["compartment_id"] = compartment_id
|
@@ -868,7 +745,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
868
745
|
if subnet_id is None and not opts.urn:
|
869
746
|
raise TypeError("Missing required property 'subnet_id'")
|
870
747
|
__props__.__dict__["subnet_id"] = subnet_id
|
871
|
-
__props__.__dict__["subnet_ipv6cidr"] = subnet_ipv6cidr
|
872
748
|
__props__.__dict__["ip_addresses"] = None
|
873
749
|
__props__.__dict__["lifecycle_details"] = None
|
874
750
|
__props__.__dict__["state"] = None
|
@@ -885,8 +761,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
885
761
|
def get(resource_name: str,
|
886
762
|
id: pulumi.Input[str],
|
887
763
|
opts: Optional[pulumi.ResourceOptions] = None,
|
888
|
-
assigned_ipv6: Optional[pulumi.Input[str]] = None,
|
889
|
-
assigned_private_ipv4: Optional[pulumi.Input[str]] = None,
|
890
764
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
891
765
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
892
766
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -901,7 +775,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
901
775
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkLoadBalancerReservedIpArgs']]]]] = None,
|
902
776
|
state: Optional[pulumi.Input[str]] = None,
|
903
777
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
904
|
-
subnet_ipv6cidr: Optional[pulumi.Input[str]] = None,
|
905
778
|
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
906
779
|
time_created: Optional[pulumi.Input[str]] = None,
|
907
780
|
time_updated: Optional[pulumi.Input[str]] = None) -> 'NetworkLoadBalancer':
|
@@ -912,8 +785,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
912
785
|
:param str resource_name: The unique name of the resulting resource.
|
913
786
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
914
787
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
915
|
-
:param pulumi.Input[str] assigned_ipv6: IPv6 address to be assigned to the network load balancer being created. This IP address has to be part of one of the prefixes supported by the subnet. Example: "2607:9b80:9a0a:9a7e:abcd:ef01:2345:6789"
|
916
|
-
:param pulumi.Input[str] assigned_private_ipv4: Private IP address to be assigned to the network load balancer being created. This IP address has to be in the CIDR range of the subnet where network load balancer is being created Example: "10.0.0.1"
|
917
788
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the network load balancer.
|
918
789
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
919
790
|
:param pulumi.Input[str] display_name: (Updatable) Network load balancer identifier, which can be renamed.
|
@@ -929,9 +800,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
929
800
|
A public network load balancer is accessible from the internet, depending on the [security list rules](https://docs.cloud.oracle.com/iaas/Content/network/Concepts/securitylists.htm) for your virtual cloud network. For more information about public and private network load balancers, see [How Network Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/NetworkLoadBalancer/overview.htm). This value is true by default.
|
930
801
|
|
931
802
|
Example: `true`
|
932
|
-
:param pulumi.Input[bool] is_symmetric_hash_enabled: (Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
|
933
|
-
|
934
|
-
Example: `true`
|
803
|
+
:param pulumi.Input[bool] is_symmetric_hash_enabled: (Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
|
935
804
|
:param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
936
805
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] network_security_group_ids: (Updatable) An array of network security groups [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the network load balancer.
|
937
806
|
|
@@ -946,7 +815,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
946
815
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['NetworkLoadBalancerReservedIpArgs']]]] reserved_ips: An array of reserved Ips.
|
947
816
|
:param pulumi.Input[str] state: The current state of the network load balancer.
|
948
817
|
:param pulumi.Input[str] subnet_id: The subnet in which the network load balancer is spawned [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
949
|
-
:param pulumi.Input[str] subnet_ipv6cidr: IPv6 subnet prefix selection. If Ipv6 subnet prefix is passed, Nlb Ipv6 Address would be assign within the cidr block. NLB has to be dual or single stack ipv6 to support this.
|
950
818
|
|
951
819
|
|
952
820
|
** IMPORTANT **
|
@@ -959,8 +827,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
959
827
|
|
960
828
|
__props__ = _NetworkLoadBalancerState.__new__(_NetworkLoadBalancerState)
|
961
829
|
|
962
|
-
__props__.__dict__["assigned_ipv6"] = assigned_ipv6
|
963
|
-
__props__.__dict__["assigned_private_ipv4"] = assigned_private_ipv4
|
964
830
|
__props__.__dict__["compartment_id"] = compartment_id
|
965
831
|
__props__.__dict__["defined_tags"] = defined_tags
|
966
832
|
__props__.__dict__["display_name"] = display_name
|
@@ -975,28 +841,11 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
975
841
|
__props__.__dict__["reserved_ips"] = reserved_ips
|
976
842
|
__props__.__dict__["state"] = state
|
977
843
|
__props__.__dict__["subnet_id"] = subnet_id
|
978
|
-
__props__.__dict__["subnet_ipv6cidr"] = subnet_ipv6cidr
|
979
844
|
__props__.__dict__["system_tags"] = system_tags
|
980
845
|
__props__.__dict__["time_created"] = time_created
|
981
846
|
__props__.__dict__["time_updated"] = time_updated
|
982
847
|
return NetworkLoadBalancer(resource_name, opts=opts, __props__=__props__)
|
983
848
|
|
984
|
-
@property
|
985
|
-
@pulumi.getter(name="assignedIpv6")
|
986
|
-
def assigned_ipv6(self) -> pulumi.Output[Optional[str]]:
|
987
|
-
"""
|
988
|
-
IPv6 address to be assigned to the network load balancer being created. This IP address has to be part of one of the prefixes supported by the subnet. Example: "2607:9b80:9a0a:9a7e:abcd:ef01:2345:6789"
|
989
|
-
"""
|
990
|
-
return pulumi.get(self, "assigned_ipv6")
|
991
|
-
|
992
|
-
@property
|
993
|
-
@pulumi.getter(name="assignedPrivateIpv4")
|
994
|
-
def assigned_private_ipv4(self) -> pulumi.Output[Optional[str]]:
|
995
|
-
"""
|
996
|
-
Private IP address to be assigned to the network load balancer being created. This IP address has to be in the CIDR range of the subnet where network load balancer is being created Example: "10.0.0.1"
|
997
|
-
"""
|
998
|
-
return pulumi.get(self, "assigned_private_ipv4")
|
999
|
-
|
1000
849
|
@property
|
1001
850
|
@pulumi.getter(name="compartmentId")
|
1002
851
|
def compartment_id(self) -> pulumi.Output[str]:
|
@@ -1065,9 +914,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
1065
914
|
@pulumi.getter(name="isSymmetricHashEnabled")
|
1066
915
|
def is_symmetric_hash_enabled(self) -> pulumi.Output[bool]:
|
1067
916
|
"""
|
1068
|
-
(Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
|
1069
|
-
|
1070
|
-
Example: `true`
|
917
|
+
(Updatable) This can only be enabled when NLB is working in transparent mode with source destination header preservation enabled. This removes the additional dependency from NLB backends(like Firewalls) to perform SNAT.
|
1071
918
|
"""
|
1072
919
|
return pulumi.get(self, "is_symmetric_hash_enabled")
|
1073
920
|
|
@@ -1124,20 +971,12 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
1124
971
|
def subnet_id(self) -> pulumi.Output[str]:
|
1125
972
|
"""
|
1126
973
|
The subnet in which the network load balancer is spawned [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
1127
|
-
"""
|
1128
|
-
return pulumi.get(self, "subnet_id")
|
1129
|
-
|
1130
|
-
@property
|
1131
|
-
@pulumi.getter(name="subnetIpv6cidr")
|
1132
|
-
def subnet_ipv6cidr(self) -> pulumi.Output[Optional[str]]:
|
1133
|
-
"""
|
1134
|
-
IPv6 subnet prefix selection. If Ipv6 subnet prefix is passed, Nlb Ipv6 Address would be assign within the cidr block. NLB has to be dual or single stack ipv6 to support this.
|
1135
974
|
|
1136
975
|
|
1137
976
|
** IMPORTANT **
|
1138
977
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1139
978
|
"""
|
1140
|
-
return pulumi.get(self, "
|
979
|
+
return pulumi.get(self, "subnet_id")
|
1141
980
|
|
1142
981
|
@property
|
1143
982
|
@pulumi.getter(name="systemTags")
|
@@ -368,8 +368,8 @@ class NetworkLoadBalancerIpAddress(dict):
|
|
368
368
|
is_public: Optional[bool] = None,
|
369
369
|
reserved_ips: Optional[Sequence['outputs.NetworkLoadBalancerIpAddressReservedIp']] = None):
|
370
370
|
"""
|
371
|
-
:param str ip_address:
|
372
|
-
:param str ip_version: IP version associated with
|
371
|
+
:param str ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
372
|
+
:param str ip_version: IP version associated with the backend set.
|
373
373
|
:param bool is_public: Whether the IP address is public or private.
|
374
374
|
:param Sequence['NetworkLoadBalancerIpAddressReservedIpArgs'] reserved_ips: An object representing a reserved IP address to be attached or that is already attached to a network load balancer.
|
375
375
|
"""
|
@@ -386,7 +386,7 @@ class NetworkLoadBalancerIpAddress(dict):
|
|
386
386
|
@pulumi.getter(name="ipAddress")
|
387
387
|
def ip_address(self) -> Optional[str]:
|
388
388
|
"""
|
389
|
-
|
389
|
+
The IP address of the backend server. Example: `10.0.0.3`
|
390
390
|
"""
|
391
391
|
return pulumi.get(self, "ip_address")
|
392
392
|
|
@@ -394,7 +394,7 @@ class NetworkLoadBalancerIpAddress(dict):
|
|
394
394
|
@pulumi.getter(name="ipVersion")
|
395
395
|
def ip_version(self) -> Optional[str]:
|
396
396
|
"""
|
397
|
-
IP version associated with
|
397
|
+
IP version associated with the backend set.
|
398
398
|
"""
|
399
399
|
return pulumi.get(self, "ip_version")
|
400
400
|
|
@@ -1787,8 +1787,6 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionResult(dict):
|
|
1787
1787
|
@pulumi.output_type
|
1788
1788
|
class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemResult(dict):
|
1789
1789
|
def __init__(__self__, *,
|
1790
|
-
assigned_ipv6: str,
|
1791
|
-
assigned_private_ipv4: str,
|
1792
1790
|
compartment_id: str,
|
1793
1791
|
defined_tags: Mapping[str, Any],
|
1794
1792
|
display_name: str,
|
@@ -1804,7 +1802,6 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemResult(dict):
|
|
1804
1802
|
reserved_ips: Sequence['outputs.GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemReservedIpResult'],
|
1805
1803
|
state: str,
|
1806
1804
|
subnet_id: str,
|
1807
|
-
subnet_ipv6cidr: str,
|
1808
1805
|
system_tags: Mapping[str, Any],
|
1809
1806
|
time_created: str,
|
1810
1807
|
time_updated: str):
|
@@ -1826,8 +1823,6 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemResult(dict):
|
|
1826
1823
|
:param str time_created: The date and time the network load balancer was created, in the format defined by RFC3339. Example: `2020-05-01T21:10:29.600Z`
|
1827
1824
|
:param str time_updated: The time the network load balancer was updated. An RFC3339 formatted date-time string. Example: `2020-05-01T22:10:29.600Z`
|
1828
1825
|
"""
|
1829
|
-
pulumi.set(__self__, "assigned_ipv6", assigned_ipv6)
|
1830
|
-
pulumi.set(__self__, "assigned_private_ipv4", assigned_private_ipv4)
|
1831
1826
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
1832
1827
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
1833
1828
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -1843,21 +1838,10 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemResult(dict):
|
|
1843
1838
|
pulumi.set(__self__, "reserved_ips", reserved_ips)
|
1844
1839
|
pulumi.set(__self__, "state", state)
|
1845
1840
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
1846
|
-
pulumi.set(__self__, "subnet_ipv6cidr", subnet_ipv6cidr)
|
1847
1841
|
pulumi.set(__self__, "system_tags", system_tags)
|
1848
1842
|
pulumi.set(__self__, "time_created", time_created)
|
1849
1843
|
pulumi.set(__self__, "time_updated", time_updated)
|
1850
1844
|
|
1851
|
-
@property
|
1852
|
-
@pulumi.getter(name="assignedIpv6")
|
1853
|
-
def assigned_ipv6(self) -> str:
|
1854
|
-
return pulumi.get(self, "assigned_ipv6")
|
1855
|
-
|
1856
|
-
@property
|
1857
|
-
@pulumi.getter(name="assignedPrivateIpv4")
|
1858
|
-
def assigned_private_ipv4(self) -> str:
|
1859
|
-
return pulumi.get(self, "assigned_private_ipv4")
|
1860
|
-
|
1861
1845
|
@property
|
1862
1846
|
@pulumi.getter(name="compartmentId")
|
1863
1847
|
def compartment_id(self) -> str:
|
@@ -1972,11 +1956,6 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemResult(dict):
|
|
1972
1956
|
"""
|
1973
1957
|
return pulumi.get(self, "subnet_id")
|
1974
1958
|
|
1975
|
-
@property
|
1976
|
-
@pulumi.getter(name="subnetIpv6cidr")
|
1977
|
-
def subnet_ipv6cidr(self) -> str:
|
1978
|
-
return pulumi.get(self, "subnet_ipv6cidr")
|
1979
|
-
|
1980
1959
|
@property
|
1981
1960
|
@pulumi.getter(name="systemTags")
|
1982
1961
|
def system_tags(self) -> Mapping[str, Any]:
|