pulumi-oci 2.8.0a1724316519__py3-none-any.whl → 2.9.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.
- pulumi_oci/__init__.py +86 -38
- pulumi_oci/announcementsservice/__init__.py +1 -0
- pulumi_oci/announcementsservice/_inputs.py +46 -6
- pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
- pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
- pulumi_oci/announcementsservice/get_services.py +173 -0
- pulumi_oci/announcementsservice/outputs.py +195 -18
- pulumi_oci/bigdataservice/_inputs.py +1 -49
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +3 -132
- pulumi_oci/database/_inputs.py +32 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_databases.py +32 -95
- pulumi_oci/database/get_data_guard_association.py +11 -1
- pulumi_oci/database/outputs.py +163 -42
- pulumi_oci/databasemanagement/__init__.py +1 -0
- pulumi_oci/databasemanagement/_inputs.py +873 -10
- pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
- pulumi_oci/databasemanagement/get_managed_database.py +47 -3
- pulumi_oci/databasemanagement/managed_database.py +56 -0
- pulumi_oci/databasemanagement/outputs.py +3331 -1397
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
- pulumi_oci/datasafe/__init__.py +6 -0
- pulumi_oci/datasafe/_inputs.py +18 -0
- pulumi_oci/datasafe/database_security_config_management.py +244 -2
- pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/datasafe/outputs.py +18 -0
- pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
- pulumi_oci/datasafe/security_policy_management.py +172 -2
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
- pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
- pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
- pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
- pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
- pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
- pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
- pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
- pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
- pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
- pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
- pulumi_oci/desktops/_inputs.py +483 -0
- pulumi_oci/desktops/desktop_pool.py +1348 -0
- pulumi_oci/desktops/get_desktop.py +223 -0
- pulumi_oci/desktops/get_desktop_pool.py +418 -0
- pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
- pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
- pulumi_oci/desktops/get_desktop_pools.py +203 -0
- pulumi_oci/desktops/get_desktops.py +214 -0
- pulumi_oci/desktops/outputs.py +1738 -0
- pulumi_oci/filestorage/mount_target.py +143 -38
- pulumi_oci/filestorage/outputs.py +44 -0
- pulumi_oci/identity/domains_group.py +34 -0
- pulumi_oci/identity/domains_user.py +34 -0
- pulumi_oci/identity/get_domains_group.py +11 -1
- pulumi_oci/identity/get_domains_user.py +11 -1
- pulumi_oci/identity/outputs.py +14 -0
- pulumi_oci/kms/_inputs.py +10 -10
- pulumi_oci/kms/get_vault.py +14 -1
- pulumi_oci/kms/outputs.py +41 -30
- pulumi_oci/kms/vault.py +28 -0
- pulumi_oci/loadbalancer/load_balancer.py +224 -0
- pulumi_oci/loadbalancer/outputs.py +22 -0
- pulumi_oci/mysql/_inputs.py +23 -0
- pulumi_oci/mysql/get_mysql_db_system.py +15 -2
- pulumi_oci/mysql/mysql_db_system.py +53 -0
- pulumi_oci/mysql/outputs.py +74 -6
- pulumi_oci/ocvp/get_cluster.py +2 -2
- pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
- pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
- pulumi_oci/ocvp/outputs.py +2 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/_inputs.py +0 -8
- pulumi_oci/recoverymod/get_protected_database.py +14 -1
- pulumi_oci/recoverymod/get_protection_policy.py +14 -1
- pulumi_oci/recoverymod/outputs.py +22 -8
- pulumi_oci/recoverymod/protected_database.py +80 -3
- pulumi_oci/recoverymod/protection_policy.py +49 -0
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +104 -86
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/WHEEL +1 -1
- pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
- pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
pulumi_oci/kms/vault.py
CHANGED
@@ -191,6 +191,7 @@ class _VaultState:
|
|
191
191
|
external_key_manager_metadata_summaries: Optional[pulumi.Input[Sequence[pulumi.Input['VaultExternalKeyManagerMetadataSummaryArgs']]]] = None,
|
192
192
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
193
193
|
is_primary: Optional[pulumi.Input[bool]] = None,
|
194
|
+
is_vault_replicable: Optional[pulumi.Input[bool]] = None,
|
194
195
|
management_endpoint: Optional[pulumi.Input[str]] = None,
|
195
196
|
replica_details: Optional[pulumi.Input[Sequence[pulumi.Input['VaultReplicaDetailArgs']]]] = None,
|
196
197
|
restore_from_file: Optional[pulumi.Input['VaultRestoreFromFileArgs']] = None,
|
@@ -211,6 +212,7 @@ class _VaultState:
|
|
211
212
|
:param pulumi.Input[Sequence[pulumi.Input['VaultExternalKeyManagerMetadataSummaryArgs']]] external_key_manager_metadata_summaries: Summary about metadata of external key manager to be returned to the customer as a response.
|
212
213
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
213
214
|
:param pulumi.Input[bool] is_primary: A Boolean value that indicates whether the Vault is primary Vault or replica Vault.
|
215
|
+
:param pulumi.Input[bool] is_vault_replicable: A Boolean value that indicates whether the Vault has cross region replication capability. Always true for Virtual Private Vaults.
|
214
216
|
:param pulumi.Input[str] management_endpoint: The service endpoint to perform management operations against. Management operations include "Create," "Update," "List," "Get," and "Delete" operations.
|
215
217
|
:param pulumi.Input[Sequence[pulumi.Input['VaultReplicaDetailArgs']]] replica_details: Vault replica details
|
216
218
|
:param pulumi.Input['VaultRestoreFromFileArgs'] restore_from_file: (Updatable) Details where vault was backed up.
|
@@ -240,6 +242,8 @@ class _VaultState:
|
|
240
242
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
241
243
|
if is_primary is not None:
|
242
244
|
pulumi.set(__self__, "is_primary", is_primary)
|
245
|
+
if is_vault_replicable is not None:
|
246
|
+
pulumi.set(__self__, "is_vault_replicable", is_vault_replicable)
|
243
247
|
if management_endpoint is not None:
|
244
248
|
pulumi.set(__self__, "management_endpoint", management_endpoint)
|
245
249
|
if replica_details is not None:
|
@@ -357,6 +361,18 @@ class _VaultState:
|
|
357
361
|
def is_primary(self, value: Optional[pulumi.Input[bool]]):
|
358
362
|
pulumi.set(self, "is_primary", value)
|
359
363
|
|
364
|
+
@property
|
365
|
+
@pulumi.getter(name="isVaultReplicable")
|
366
|
+
def is_vault_replicable(self) -> Optional[pulumi.Input[bool]]:
|
367
|
+
"""
|
368
|
+
A Boolean value that indicates whether the Vault has cross region replication capability. Always true for Virtual Private Vaults.
|
369
|
+
"""
|
370
|
+
return pulumi.get(self, "is_vault_replicable")
|
371
|
+
|
372
|
+
@is_vault_replicable.setter
|
373
|
+
def is_vault_replicable(self, value: Optional[pulumi.Input[bool]]):
|
374
|
+
pulumi.set(self, "is_vault_replicable", value)
|
375
|
+
|
360
376
|
@property
|
361
377
|
@pulumi.getter(name="managementEndpoint")
|
362
378
|
def management_endpoint(self) -> Optional[pulumi.Input[str]]:
|
@@ -664,6 +680,7 @@ class Vault(pulumi.CustomResource):
|
|
664
680
|
__props__.__dict__["crypto_endpoint"] = None
|
665
681
|
__props__.__dict__["external_key_manager_metadata_summaries"] = None
|
666
682
|
__props__.__dict__["is_primary"] = None
|
683
|
+
__props__.__dict__["is_vault_replicable"] = None
|
667
684
|
__props__.__dict__["management_endpoint"] = None
|
668
685
|
__props__.__dict__["replica_details"] = None
|
669
686
|
__props__.__dict__["restored_from_vault_id"] = None
|
@@ -687,6 +704,7 @@ class Vault(pulumi.CustomResource):
|
|
687
704
|
external_key_manager_metadata_summaries: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VaultExternalKeyManagerMetadataSummaryArgs', 'VaultExternalKeyManagerMetadataSummaryArgsDict']]]]] = None,
|
688
705
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
689
706
|
is_primary: Optional[pulumi.Input[bool]] = None,
|
707
|
+
is_vault_replicable: Optional[pulumi.Input[bool]] = None,
|
690
708
|
management_endpoint: Optional[pulumi.Input[str]] = None,
|
691
709
|
replica_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VaultReplicaDetailArgs', 'VaultReplicaDetailArgsDict']]]]] = None,
|
692
710
|
restore_from_file: Optional[pulumi.Input[Union['VaultRestoreFromFileArgs', 'VaultRestoreFromFileArgsDict']]] = None,
|
@@ -712,6 +730,7 @@ class Vault(pulumi.CustomResource):
|
|
712
730
|
:param pulumi.Input[Sequence[pulumi.Input[Union['VaultExternalKeyManagerMetadataSummaryArgs', 'VaultExternalKeyManagerMetadataSummaryArgsDict']]]] external_key_manager_metadata_summaries: Summary about metadata of external key manager to be returned to the customer as a response.
|
713
731
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
714
732
|
:param pulumi.Input[bool] is_primary: A Boolean value that indicates whether the Vault is primary Vault or replica Vault.
|
733
|
+
:param pulumi.Input[bool] is_vault_replicable: A Boolean value that indicates whether the Vault has cross region replication capability. Always true for Virtual Private Vaults.
|
715
734
|
:param pulumi.Input[str] management_endpoint: The service endpoint to perform management operations against. Management operations include "Create," "Update," "List," "Get," and "Delete" operations.
|
716
735
|
:param pulumi.Input[Sequence[pulumi.Input[Union['VaultReplicaDetailArgs', 'VaultReplicaDetailArgsDict']]]] replica_details: Vault replica details
|
717
736
|
:param pulumi.Input[Union['VaultRestoreFromFileArgs', 'VaultRestoreFromFileArgsDict']] restore_from_file: (Updatable) Details where vault was backed up.
|
@@ -737,6 +756,7 @@ class Vault(pulumi.CustomResource):
|
|
737
756
|
__props__.__dict__["external_key_manager_metadata_summaries"] = external_key_manager_metadata_summaries
|
738
757
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
739
758
|
__props__.__dict__["is_primary"] = is_primary
|
759
|
+
__props__.__dict__["is_vault_replicable"] = is_vault_replicable
|
740
760
|
__props__.__dict__["management_endpoint"] = management_endpoint
|
741
761
|
__props__.__dict__["replica_details"] = replica_details
|
742
762
|
__props__.__dict__["restore_from_file"] = restore_from_file
|
@@ -813,6 +833,14 @@ class Vault(pulumi.CustomResource):
|
|
813
833
|
"""
|
814
834
|
return pulumi.get(self, "is_primary")
|
815
835
|
|
836
|
+
@property
|
837
|
+
@pulumi.getter(name="isVaultReplicable")
|
838
|
+
def is_vault_replicable(self) -> pulumi.Output[bool]:
|
839
|
+
"""
|
840
|
+
A Boolean value that indicates whether the Vault has cross region replication capability. Always true for Virtual Private Vaults.
|
841
|
+
"""
|
842
|
+
return pulumi.get(self, "is_vault_replicable")
|
843
|
+
|
816
844
|
@property
|
817
845
|
@pulumi.getter(name="managementEndpoint")
|
818
846
|
def management_endpoint(self) -> pulumi.Output[str]:
|
@@ -25,7 +25,9 @@ class LoadBalancerArgs:
|
|
25
25
|
ip_mode: Optional[pulumi.Input[str]] = None,
|
26
26
|
is_delete_protection_enabled: Optional[pulumi.Input[bool]] = None,
|
27
27
|
is_private: Optional[pulumi.Input[bool]] = None,
|
28
|
+
is_request_id_enabled: Optional[pulumi.Input[bool]] = None,
|
28
29
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
30
|
+
request_id_header: Optional[pulumi.Input[str]] = None,
|
29
31
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]]] = None,
|
30
32
|
shape_details: Optional[pulumi.Input['LoadBalancerShapeDetailsArgs']] = None):
|
31
33
|
"""
|
@@ -62,6 +64,15 @@ class LoadBalancerArgs:
|
|
62
64
|
|
63
65
|
A public load balancer is accessible from the internet, depending on your VCN's [security list rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securitylists.htm). For more information about public and private load balancers, see [How Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/Balance/Concepts/balanceoverview.htm#how-load-balancing-works).
|
64
66
|
|
67
|
+
Example: `true`
|
68
|
+
:param pulumi.Input[bool] is_request_id_enabled: (Updatable) Whether or not the load balancer has the Request Id feature enabled for HTTP listeners.
|
69
|
+
|
70
|
+
If "true", the load balancer will attach a unique request id header to every request passed through from the load balancer to load balancer backends. This same request id header also will be added to the response the lb received from the backend handling the request before the load balancer returns the response to the requestor. The name of the unique request id header is set the by value of requestIdHeader.
|
71
|
+
|
72
|
+
If "false", the loadbalancer not add this unique request id header to either the request passed through to the load balancer backends nor to the reponse returned to the user.
|
73
|
+
|
74
|
+
New load balancers have the Request Id feature disabled unless isRequestIdEnabled is set to true.
|
75
|
+
|
65
76
|
Example: `true`
|
66
77
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] network_security_group_ids: (Updatable) An array of NSG [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this load balancer.
|
67
78
|
|
@@ -72,6 +83,17 @@ class LoadBalancerArgs:
|
|
72
83
|
* The network security rules of other resources can reference the NSGs associated with the load balancer to ensure access.
|
73
84
|
|
74
85
|
Example: `["ocid1.nsg.oc1.phx.unique_ID"]`
|
86
|
+
:param pulumi.Input[str] request_id_header: (Updatable) 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.
|
87
|
+
|
88
|
+
If a request to the load balancer already contains a header with same name as specified in requestIdHeader then the load balancer will not change the value of that field.
|
89
|
+
|
90
|
+
If isRequestIdEnabled is false then this field is ignored.
|
91
|
+
|
92
|
+
If this field is not set or is set to "" then this field defaults to X-Request-Id
|
93
|
+
|
94
|
+
**Notes:**
|
95
|
+
* Unless the header name is "" it must start with "X-" prefix.
|
96
|
+
* Setting the header name to "" will set it to the default: X-Request-Id.
|
75
97
|
: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.
|
76
98
|
: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`.
|
77
99
|
"""
|
@@ -89,8 +111,12 @@ class LoadBalancerArgs:
|
|
89
111
|
pulumi.set(__self__, "is_delete_protection_enabled", is_delete_protection_enabled)
|
90
112
|
if is_private is not None:
|
91
113
|
pulumi.set(__self__, "is_private", is_private)
|
114
|
+
if is_request_id_enabled is not None:
|
115
|
+
pulumi.set(__self__, "is_request_id_enabled", is_request_id_enabled)
|
92
116
|
if network_security_group_ids is not None:
|
93
117
|
pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
|
118
|
+
if request_id_header is not None:
|
119
|
+
pulumi.set(__self__, "request_id_header", request_id_header)
|
94
120
|
if reserved_ips is not None:
|
95
121
|
pulumi.set(__self__, "reserved_ips", reserved_ips)
|
96
122
|
if shape_details is not None:
|
@@ -228,6 +254,26 @@ class LoadBalancerArgs:
|
|
228
254
|
def is_private(self, value: Optional[pulumi.Input[bool]]):
|
229
255
|
pulumi.set(self, "is_private", value)
|
230
256
|
|
257
|
+
@property
|
258
|
+
@pulumi.getter(name="isRequestIdEnabled")
|
259
|
+
def is_request_id_enabled(self) -> Optional[pulumi.Input[bool]]:
|
260
|
+
"""
|
261
|
+
(Updatable) Whether or not the load balancer has the Request Id feature enabled for HTTP listeners.
|
262
|
+
|
263
|
+
If "true", the load balancer will attach a unique request id header to every request passed through from the load balancer to load balancer backends. This same request id header also will be added to the response the lb received from the backend handling the request before the load balancer returns the response to the requestor. The name of the unique request id header is set the by value of requestIdHeader.
|
264
|
+
|
265
|
+
If "false", the loadbalancer not add this unique request id header to either the request passed through to the load balancer backends nor to the reponse returned to the user.
|
266
|
+
|
267
|
+
New load balancers have the Request Id feature disabled unless isRequestIdEnabled is set to true.
|
268
|
+
|
269
|
+
Example: `true`
|
270
|
+
"""
|
271
|
+
return pulumi.get(self, "is_request_id_enabled")
|
272
|
+
|
273
|
+
@is_request_id_enabled.setter
|
274
|
+
def is_request_id_enabled(self, value: Optional[pulumi.Input[bool]]):
|
275
|
+
pulumi.set(self, "is_request_id_enabled", value)
|
276
|
+
|
231
277
|
@property
|
232
278
|
@pulumi.getter(name="networkSecurityGroupIds")
|
233
279
|
def network_security_group_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -248,6 +294,28 @@ class LoadBalancerArgs:
|
|
248
294
|
def network_security_group_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
249
295
|
pulumi.set(self, "network_security_group_ids", value)
|
250
296
|
|
297
|
+
@property
|
298
|
+
@pulumi.getter(name="requestIdHeader")
|
299
|
+
def request_id_header(self) -> Optional[pulumi.Input[str]]:
|
300
|
+
"""
|
301
|
+
(Updatable) 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.
|
302
|
+
|
303
|
+
If a request to the load balancer already contains a header with same name as specified in requestIdHeader then the load balancer will not change the value of that field.
|
304
|
+
|
305
|
+
If isRequestIdEnabled is false then this field is ignored.
|
306
|
+
|
307
|
+
If this field is not set or is set to "" then this field defaults to X-Request-Id
|
308
|
+
|
309
|
+
**Notes:**
|
310
|
+
* Unless the header name is "" it must start with "X-" prefix.
|
311
|
+
* Setting the header name to "" will set it to the default: X-Request-Id.
|
312
|
+
"""
|
313
|
+
return pulumi.get(self, "request_id_header")
|
314
|
+
|
315
|
+
@request_id_header.setter
|
316
|
+
def request_id_header(self, value: Optional[pulumi.Input[str]]):
|
317
|
+
pulumi.set(self, "request_id_header", value)
|
318
|
+
|
251
319
|
@property
|
252
320
|
@pulumi.getter(name="reservedIps")
|
253
321
|
def reserved_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]]]:
|
@@ -285,7 +353,9 @@ class _LoadBalancerState:
|
|
285
353
|
ip_mode: Optional[pulumi.Input[str]] = None,
|
286
354
|
is_delete_protection_enabled: Optional[pulumi.Input[bool]] = None,
|
287
355
|
is_private: Optional[pulumi.Input[bool]] = None,
|
356
|
+
is_request_id_enabled: Optional[pulumi.Input[bool]] = None,
|
288
357
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
358
|
+
request_id_header: Optional[pulumi.Input[str]] = None,
|
289
359
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]]] = None,
|
290
360
|
shape: Optional[pulumi.Input[str]] = None,
|
291
361
|
shape_details: Optional[pulumi.Input['LoadBalancerShapeDetailsArgs']] = None,
|
@@ -323,6 +393,15 @@ class _LoadBalancerState:
|
|
323
393
|
|
324
394
|
A public load balancer is accessible from the internet, depending on your VCN's [security list rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securitylists.htm). For more information about public and private load balancers, see [How Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/Balance/Concepts/balanceoverview.htm#how-load-balancing-works).
|
325
395
|
|
396
|
+
Example: `true`
|
397
|
+
:param pulumi.Input[bool] is_request_id_enabled: (Updatable) Whether or not the load balancer has the Request Id feature enabled for HTTP listeners.
|
398
|
+
|
399
|
+
If "true", the load balancer will attach a unique request id header to every request passed through from the load balancer to load balancer backends. This same request id header also will be added to the response the lb received from the backend handling the request before the load balancer returns the response to the requestor. The name of the unique request id header is set the by value of requestIdHeader.
|
400
|
+
|
401
|
+
If "false", the loadbalancer not add this unique request id header to either the request passed through to the load balancer backends nor to the reponse returned to the user.
|
402
|
+
|
403
|
+
New load balancers have the Request Id feature disabled unless isRequestIdEnabled is set to true.
|
404
|
+
|
326
405
|
Example: `true`
|
327
406
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] network_security_group_ids: (Updatable) An array of NSG [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this load balancer.
|
328
407
|
|
@@ -333,6 +412,17 @@ class _LoadBalancerState:
|
|
333
412
|
* The network security rules of other resources can reference the NSGs associated with the load balancer to ensure access.
|
334
413
|
|
335
414
|
Example: `["ocid1.nsg.oc1.phx.unique_ID"]`
|
415
|
+
:param pulumi.Input[str] request_id_header: (Updatable) 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.
|
416
|
+
|
417
|
+
If a request to the load balancer already contains a header with same name as specified in requestIdHeader then the load balancer will not change the value of that field.
|
418
|
+
|
419
|
+
If isRequestIdEnabled is false then this field is ignored.
|
420
|
+
|
421
|
+
If this field is not set or is set to "" then this field defaults to X-Request-Id
|
422
|
+
|
423
|
+
**Notes:**
|
424
|
+
* Unless the header name is "" it must start with "X-" prefix.
|
425
|
+
* Setting the header name to "" will set it to the default: X-Request-Id.
|
336
426
|
: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.
|
337
427
|
:param pulumi.Input[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`.
|
338
428
|
: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`.
|
@@ -366,8 +456,12 @@ class _LoadBalancerState:
|
|
366
456
|
pulumi.set(__self__, "is_delete_protection_enabled", is_delete_protection_enabled)
|
367
457
|
if is_private is not None:
|
368
458
|
pulumi.set(__self__, "is_private", is_private)
|
459
|
+
if is_request_id_enabled is not None:
|
460
|
+
pulumi.set(__self__, "is_request_id_enabled", is_request_id_enabled)
|
369
461
|
if network_security_group_ids is not None:
|
370
462
|
pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
|
463
|
+
if request_id_header is not None:
|
464
|
+
pulumi.set(__self__, "request_id_header", request_id_header)
|
371
465
|
if reserved_ips is not None:
|
372
466
|
pulumi.set(__self__, "reserved_ips", reserved_ips)
|
373
467
|
if shape is not None:
|
@@ -512,6 +606,26 @@ class _LoadBalancerState:
|
|
512
606
|
def is_private(self, value: Optional[pulumi.Input[bool]]):
|
513
607
|
pulumi.set(self, "is_private", value)
|
514
608
|
|
609
|
+
@property
|
610
|
+
@pulumi.getter(name="isRequestIdEnabled")
|
611
|
+
def is_request_id_enabled(self) -> Optional[pulumi.Input[bool]]:
|
612
|
+
"""
|
613
|
+
(Updatable) Whether or not the load balancer has the Request Id feature enabled for HTTP listeners.
|
614
|
+
|
615
|
+
If "true", the load balancer will attach a unique request id header to every request passed through from the load balancer to load balancer backends. This same request id header also will be added to the response the lb received from the backend handling the request before the load balancer returns the response to the requestor. The name of the unique request id header is set the by value of requestIdHeader.
|
616
|
+
|
617
|
+
If "false", the loadbalancer not add this unique request id header to either the request passed through to the load balancer backends nor to the reponse returned to the user.
|
618
|
+
|
619
|
+
New load balancers have the Request Id feature disabled unless isRequestIdEnabled is set to true.
|
620
|
+
|
621
|
+
Example: `true`
|
622
|
+
"""
|
623
|
+
return pulumi.get(self, "is_request_id_enabled")
|
624
|
+
|
625
|
+
@is_request_id_enabled.setter
|
626
|
+
def is_request_id_enabled(self, value: Optional[pulumi.Input[bool]]):
|
627
|
+
pulumi.set(self, "is_request_id_enabled", value)
|
628
|
+
|
515
629
|
@property
|
516
630
|
@pulumi.getter(name="networkSecurityGroupIds")
|
517
631
|
def network_security_group_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -532,6 +646,28 @@ class _LoadBalancerState:
|
|
532
646
|
def network_security_group_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
533
647
|
pulumi.set(self, "network_security_group_ids", value)
|
534
648
|
|
649
|
+
@property
|
650
|
+
@pulumi.getter(name="requestIdHeader")
|
651
|
+
def request_id_header(self) -> Optional[pulumi.Input[str]]:
|
652
|
+
"""
|
653
|
+
(Updatable) 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.
|
654
|
+
|
655
|
+
If a request to the load balancer already contains a header with same name as specified in requestIdHeader then the load balancer will not change the value of that field.
|
656
|
+
|
657
|
+
If isRequestIdEnabled is false then this field is ignored.
|
658
|
+
|
659
|
+
If this field is not set or is set to "" then this field defaults to X-Request-Id
|
660
|
+
|
661
|
+
**Notes:**
|
662
|
+
* Unless the header name is "" it must start with "X-" prefix.
|
663
|
+
* Setting the header name to "" will set it to the default: X-Request-Id.
|
664
|
+
"""
|
665
|
+
return pulumi.get(self, "request_id_header")
|
666
|
+
|
667
|
+
@request_id_header.setter
|
668
|
+
def request_id_header(self, value: Optional[pulumi.Input[str]]):
|
669
|
+
pulumi.set(self, "request_id_header", value)
|
670
|
+
|
535
671
|
@property
|
536
672
|
@pulumi.getter(name="reservedIps")
|
537
673
|
def reserved_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerReservedIpArgs']]]]:
|
@@ -633,7 +769,9 @@ class LoadBalancer(pulumi.CustomResource):
|
|
633
769
|
ip_mode: Optional[pulumi.Input[str]] = None,
|
634
770
|
is_delete_protection_enabled: Optional[pulumi.Input[bool]] = None,
|
635
771
|
is_private: Optional[pulumi.Input[bool]] = None,
|
772
|
+
is_request_id_enabled: Optional[pulumi.Input[bool]] = None,
|
636
773
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
774
|
+
request_id_header: Optional[pulumi.Input[str]] = None,
|
637
775
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerReservedIpArgs', 'LoadBalancerReservedIpArgsDict']]]]] = None,
|
638
776
|
shape: Optional[pulumi.Input[str]] = None,
|
639
777
|
shape_details: Optional[pulumi.Input[Union['LoadBalancerShapeDetailsArgs', 'LoadBalancerShapeDetailsArgsDict']]] = None,
|
@@ -691,7 +829,9 @@ class LoadBalancer(pulumi.CustomResource):
|
|
691
829
|
ip_mode=load_balancer_ip_mode,
|
692
830
|
is_delete_protection_enabled=load_balancer_is_delete_protection_enabled,
|
693
831
|
is_private=load_balancer_is_private,
|
832
|
+
is_request_id_enabled=load_balancer_is_request_id_enabled,
|
694
833
|
network_security_group_ids=load_balancer_network_security_group_ids,
|
834
|
+
request_id_header=load_balancer_request_id_header,
|
695
835
|
reserved_ips=[{
|
696
836
|
"id": load_balancer_reserved_ips_id,
|
697
837
|
}],
|
@@ -737,6 +877,15 @@ class LoadBalancer(pulumi.CustomResource):
|
|
737
877
|
|
738
878
|
A public load balancer is accessible from the internet, depending on your VCN's [security list rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securitylists.htm). For more information about public and private load balancers, see [How Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/Balance/Concepts/balanceoverview.htm#how-load-balancing-works).
|
739
879
|
|
880
|
+
Example: `true`
|
881
|
+
:param pulumi.Input[bool] is_request_id_enabled: (Updatable) Whether or not the load balancer has the Request Id feature enabled for HTTP listeners.
|
882
|
+
|
883
|
+
If "true", the load balancer will attach a unique request id header to every request passed through from the load balancer to load balancer backends. This same request id header also will be added to the response the lb received from the backend handling the request before the load balancer returns the response to the requestor. The name of the unique request id header is set the by value of requestIdHeader.
|
884
|
+
|
885
|
+
If "false", the loadbalancer not add this unique request id header to either the request passed through to the load balancer backends nor to the reponse returned to the user.
|
886
|
+
|
887
|
+
New load balancers have the Request Id feature disabled unless isRequestIdEnabled is set to true.
|
888
|
+
|
740
889
|
Example: `true`
|
741
890
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] network_security_group_ids: (Updatable) An array of NSG [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this load balancer.
|
742
891
|
|
@@ -747,6 +896,17 @@ class LoadBalancer(pulumi.CustomResource):
|
|
747
896
|
* The network security rules of other resources can reference the NSGs associated with the load balancer to ensure access.
|
748
897
|
|
749
898
|
Example: `["ocid1.nsg.oc1.phx.unique_ID"]`
|
899
|
+
:param pulumi.Input[str] request_id_header: (Updatable) 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.
|
900
|
+
|
901
|
+
If a request to the load balancer already contains a header with same name as specified in requestIdHeader then the load balancer will not change the value of that field.
|
902
|
+
|
903
|
+
If isRequestIdEnabled is false then this field is ignored.
|
904
|
+
|
905
|
+
If this field is not set or is set to "" then this field defaults to X-Request-Id
|
906
|
+
|
907
|
+
**Notes:**
|
908
|
+
* Unless the header name is "" it must start with "X-" prefix.
|
909
|
+
* Setting the header name to "" will set it to the default: X-Request-Id.
|
750
910
|
: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.
|
751
911
|
:param pulumi.Input[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`.
|
752
912
|
: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`.
|
@@ -814,7 +974,9 @@ class LoadBalancer(pulumi.CustomResource):
|
|
814
974
|
ip_mode=load_balancer_ip_mode,
|
815
975
|
is_delete_protection_enabled=load_balancer_is_delete_protection_enabled,
|
816
976
|
is_private=load_balancer_is_private,
|
977
|
+
is_request_id_enabled=load_balancer_is_request_id_enabled,
|
817
978
|
network_security_group_ids=load_balancer_network_security_group_ids,
|
979
|
+
request_id_header=load_balancer_request_id_header,
|
818
980
|
reserved_ips=[{
|
819
981
|
"id": load_balancer_reserved_ips_id,
|
820
982
|
}],
|
@@ -854,7 +1016,9 @@ class LoadBalancer(pulumi.CustomResource):
|
|
854
1016
|
ip_mode: Optional[pulumi.Input[str]] = None,
|
855
1017
|
is_delete_protection_enabled: Optional[pulumi.Input[bool]] = None,
|
856
1018
|
is_private: Optional[pulumi.Input[bool]] = None,
|
1019
|
+
is_request_id_enabled: Optional[pulumi.Input[bool]] = None,
|
857
1020
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1021
|
+
request_id_header: Optional[pulumi.Input[str]] = None,
|
858
1022
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerReservedIpArgs', 'LoadBalancerReservedIpArgsDict']]]]] = None,
|
859
1023
|
shape: Optional[pulumi.Input[str]] = None,
|
860
1024
|
shape_details: Optional[pulumi.Input[Union['LoadBalancerShapeDetailsArgs', 'LoadBalancerShapeDetailsArgsDict']]] = None,
|
@@ -879,7 +1043,9 @@ class LoadBalancer(pulumi.CustomResource):
|
|
879
1043
|
__props__.__dict__["ip_mode"] = ip_mode
|
880
1044
|
__props__.__dict__["is_delete_protection_enabled"] = is_delete_protection_enabled
|
881
1045
|
__props__.__dict__["is_private"] = is_private
|
1046
|
+
__props__.__dict__["is_request_id_enabled"] = is_request_id_enabled
|
882
1047
|
__props__.__dict__["network_security_group_ids"] = network_security_group_ids
|
1048
|
+
__props__.__dict__["request_id_header"] = request_id_header
|
883
1049
|
__props__.__dict__["reserved_ips"] = reserved_ips
|
884
1050
|
if shape is None and not opts.urn:
|
885
1051
|
raise TypeError("Missing required property 'shape'")
|
@@ -912,7 +1078,9 @@ class LoadBalancer(pulumi.CustomResource):
|
|
912
1078
|
ip_mode: Optional[pulumi.Input[str]] = None,
|
913
1079
|
is_delete_protection_enabled: Optional[pulumi.Input[bool]] = None,
|
914
1080
|
is_private: Optional[pulumi.Input[bool]] = None,
|
1081
|
+
is_request_id_enabled: Optional[pulumi.Input[bool]] = None,
|
915
1082
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1083
|
+
request_id_header: Optional[pulumi.Input[str]] = None,
|
916
1084
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerReservedIpArgs', 'LoadBalancerReservedIpArgsDict']]]]] = None,
|
917
1085
|
shape: Optional[pulumi.Input[str]] = None,
|
918
1086
|
shape_details: Optional[pulumi.Input[Union['LoadBalancerShapeDetailsArgs', 'LoadBalancerShapeDetailsArgsDict']]] = None,
|
@@ -955,6 +1123,15 @@ class LoadBalancer(pulumi.CustomResource):
|
|
955
1123
|
|
956
1124
|
A public load balancer is accessible from the internet, depending on your VCN's [security list rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securitylists.htm). For more information about public and private load balancers, see [How Load Balancing Works](https://docs.cloud.oracle.com/iaas/Content/Balance/Concepts/balanceoverview.htm#how-load-balancing-works).
|
957
1125
|
|
1126
|
+
Example: `true`
|
1127
|
+
:param pulumi.Input[bool] is_request_id_enabled: (Updatable) Whether or not the load balancer has the Request Id feature enabled for HTTP listeners.
|
1128
|
+
|
1129
|
+
If "true", the load balancer will attach a unique request id header to every request passed through from the load balancer to load balancer backends. This same request id header also will be added to the response the lb received from the backend handling the request before the load balancer returns the response to the requestor. The name of the unique request id header is set the by value of requestIdHeader.
|
1130
|
+
|
1131
|
+
If "false", the loadbalancer not add this unique request id header to either the request passed through to the load balancer backends nor to the reponse returned to the user.
|
1132
|
+
|
1133
|
+
New load balancers have the Request Id feature disabled unless isRequestIdEnabled is set to true.
|
1134
|
+
|
958
1135
|
Example: `true`
|
959
1136
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] network_security_group_ids: (Updatable) An array of NSG [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this load balancer.
|
960
1137
|
|
@@ -965,6 +1142,17 @@ class LoadBalancer(pulumi.CustomResource):
|
|
965
1142
|
* The network security rules of other resources can reference the NSGs associated with the load balancer to ensure access.
|
966
1143
|
|
967
1144
|
Example: `["ocid1.nsg.oc1.phx.unique_ID"]`
|
1145
|
+
:param pulumi.Input[str] request_id_header: (Updatable) 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.
|
1146
|
+
|
1147
|
+
If a request to the load balancer already contains a header with same name as specified in requestIdHeader then the load balancer will not change the value of that field.
|
1148
|
+
|
1149
|
+
If isRequestIdEnabled is false then this field is ignored.
|
1150
|
+
|
1151
|
+
If this field is not set or is set to "" then this field defaults to X-Request-Id
|
1152
|
+
|
1153
|
+
**Notes:**
|
1154
|
+
* Unless the header name is "" it must start with "X-" prefix.
|
1155
|
+
* Setting the header name to "" will set it to the default: X-Request-Id.
|
968
1156
|
: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.
|
969
1157
|
:param pulumi.Input[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`.
|
970
1158
|
: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`.
|
@@ -990,7 +1178,9 @@ class LoadBalancer(pulumi.CustomResource):
|
|
990
1178
|
__props__.__dict__["ip_mode"] = ip_mode
|
991
1179
|
__props__.__dict__["is_delete_protection_enabled"] = is_delete_protection_enabled
|
992
1180
|
__props__.__dict__["is_private"] = is_private
|
1181
|
+
__props__.__dict__["is_request_id_enabled"] = is_request_id_enabled
|
993
1182
|
__props__.__dict__["network_security_group_ids"] = network_security_group_ids
|
1183
|
+
__props__.__dict__["request_id_header"] = request_id_header
|
994
1184
|
__props__.__dict__["reserved_ips"] = reserved_ips
|
995
1185
|
__props__.__dict__["shape"] = shape
|
996
1186
|
__props__.__dict__["shape_details"] = shape_details
|
@@ -1093,6 +1283,22 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1093
1283
|
"""
|
1094
1284
|
return pulumi.get(self, "is_private")
|
1095
1285
|
|
1286
|
+
@property
|
1287
|
+
@pulumi.getter(name="isRequestIdEnabled")
|
1288
|
+
def is_request_id_enabled(self) -> pulumi.Output[bool]:
|
1289
|
+
"""
|
1290
|
+
(Updatable) Whether or not the load balancer has the Request Id feature enabled for HTTP listeners.
|
1291
|
+
|
1292
|
+
If "true", the load balancer will attach a unique request id header to every request passed through from the load balancer to load balancer backends. This same request id header also will be added to the response the lb received from the backend handling the request before the load balancer returns the response to the requestor. The name of the unique request id header is set the by value of requestIdHeader.
|
1293
|
+
|
1294
|
+
If "false", the loadbalancer not add this unique request id header to either the request passed through to the load balancer backends nor to the reponse returned to the user.
|
1295
|
+
|
1296
|
+
New load balancers have the Request Id feature disabled unless isRequestIdEnabled is set to true.
|
1297
|
+
|
1298
|
+
Example: `true`
|
1299
|
+
"""
|
1300
|
+
return pulumi.get(self, "is_request_id_enabled")
|
1301
|
+
|
1096
1302
|
@property
|
1097
1303
|
@pulumi.getter(name="networkSecurityGroupIds")
|
1098
1304
|
def network_security_group_ids(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
@@ -1109,6 +1315,24 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1109
1315
|
"""
|
1110
1316
|
return pulumi.get(self, "network_security_group_ids")
|
1111
1317
|
|
1318
|
+
@property
|
1319
|
+
@pulumi.getter(name="requestIdHeader")
|
1320
|
+
def request_id_header(self) -> pulumi.Output[str]:
|
1321
|
+
"""
|
1322
|
+
(Updatable) 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.
|
1323
|
+
|
1324
|
+
If a request to the load balancer already contains a header with same name as specified in requestIdHeader then the load balancer will not change the value of that field.
|
1325
|
+
|
1326
|
+
If isRequestIdEnabled is false then this field is ignored.
|
1327
|
+
|
1328
|
+
If this field is not set or is set to "" then this field defaults to X-Request-Id
|
1329
|
+
|
1330
|
+
**Notes:**
|
1331
|
+
* Unless the header name is "" it must start with "X-" prefix.
|
1332
|
+
* Setting the header name to "" will set it to the default: X-Request-Id.
|
1333
|
+
"""
|
1334
|
+
return pulumi.get(self, "request_id_header")
|
1335
|
+
|
1112
1336
|
@property
|
1113
1337
|
@pulumi.getter(name="reservedIps")
|
1114
1338
|
def reserved_ips(self) -> pulumi.Output[Optional[Sequence['outputs.LoadBalancerReservedIp']]]:
|
@@ -3715,7 +3715,9 @@ class GetLoadBalancersLoadBalancerResult(dict):
|
|
3715
3715
|
ip_mode: str,
|
3716
3716
|
is_delete_protection_enabled: bool,
|
3717
3717
|
is_private: bool,
|
3718
|
+
is_request_id_enabled: bool,
|
3718
3719
|
network_security_group_ids: Sequence[str],
|
3720
|
+
request_id_header: str,
|
3719
3721
|
reserved_ips: Sequence['outputs.GetLoadBalancersLoadBalancerReservedIpResult'],
|
3720
3722
|
shape: str,
|
3721
3723
|
shape_details: Sequence['outputs.GetLoadBalancersLoadBalancerShapeDetailResult'],
|
@@ -3733,7 +3735,9 @@ class GetLoadBalancersLoadBalancerResult(dict):
|
|
3733
3735
|
:param Sequence[str] ip_addresses: An array of IP addresses. Deprecated: use ip_address_details instead.
|
3734
3736
|
:param bool is_delete_protection_enabled: Whether or not the load balancer has delete protection enabled.
|
3735
3737
|
:param bool is_private: Whether the load balancer has a VCN-local (private) IP address.
|
3738
|
+
:param bool is_request_id_enabled: Whether or not the load balancer has the Request Id feature enabled for HTTP listeners.
|
3736
3739
|
:param Sequence[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.
|
3740
|
+
:param 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.
|
3737
3741
|
:param 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`
|
3738
3742
|
:param Sequence['GetLoadBalancersLoadBalancerShapeDetailArgs'] shape_details: The configuration details to update load balancer to a different shape.
|
3739
3743
|
:param str state: A filter to return only resources that match the given lifecycle state. Example: `SUCCEEDED`
|
@@ -3751,7 +3755,9 @@ class GetLoadBalancersLoadBalancerResult(dict):
|
|
3751
3755
|
pulumi.set(__self__, "ip_mode", ip_mode)
|
3752
3756
|
pulumi.set(__self__, "is_delete_protection_enabled", is_delete_protection_enabled)
|
3753
3757
|
pulumi.set(__self__, "is_private", is_private)
|
3758
|
+
pulumi.set(__self__, "is_request_id_enabled", is_request_id_enabled)
|
3754
3759
|
pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
|
3760
|
+
pulumi.set(__self__, "request_id_header", request_id_header)
|
3755
3761
|
pulumi.set(__self__, "reserved_ips", reserved_ips)
|
3756
3762
|
pulumi.set(__self__, "shape", shape)
|
3757
3763
|
pulumi.set(__self__, "shape_details", shape_details)
|
@@ -3838,6 +3844,14 @@ class GetLoadBalancersLoadBalancerResult(dict):
|
|
3838
3844
|
"""
|
3839
3845
|
return pulumi.get(self, "is_private")
|
3840
3846
|
|
3847
|
+
@property
|
3848
|
+
@pulumi.getter(name="isRequestIdEnabled")
|
3849
|
+
def is_request_id_enabled(self) -> bool:
|
3850
|
+
"""
|
3851
|
+
Whether or not the load balancer has the Request Id feature enabled for HTTP listeners.
|
3852
|
+
"""
|
3853
|
+
return pulumi.get(self, "is_request_id_enabled")
|
3854
|
+
|
3841
3855
|
@property
|
3842
3856
|
@pulumi.getter(name="networkSecurityGroupIds")
|
3843
3857
|
def network_security_group_ids(self) -> Sequence[str]:
|
@@ -3846,6 +3860,14 @@ class GetLoadBalancersLoadBalancerResult(dict):
|
|
3846
3860
|
"""
|
3847
3861
|
return pulumi.get(self, "network_security_group_ids")
|
3848
3862
|
|
3863
|
+
@property
|
3864
|
+
@pulumi.getter(name="requestIdHeader")
|
3865
|
+
def request_id_header(self) -> str:
|
3866
|
+
"""
|
3867
|
+
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.
|
3868
|
+
"""
|
3869
|
+
return pulumi.get(self, "request_id_header")
|
3870
|
+
|
3849
3871
|
@property
|
3850
3872
|
@pulumi.getter(name="reservedIps")
|
3851
3873
|
def reserved_ips(self) -> Sequence['outputs.GetLoadBalancersLoadBalancerReservedIpResult']:
|
pulumi_oci/mysql/_inputs.py
CHANGED
@@ -37,6 +37,7 @@ __all__ = [
|
|
37
37
|
'MysqlDbSystemChannelTargetArgs',
|
38
38
|
'MysqlDbSystemChannelTargetFilterArgs',
|
39
39
|
'MysqlDbSystemCurrentPlacementArgs',
|
40
|
+
'MysqlDbSystemCustomerContactArgs',
|
40
41
|
'MysqlDbSystemDataStorageArgs',
|
41
42
|
'MysqlDbSystemDeletionPolicyArgs',
|
42
43
|
'MysqlDbSystemEndpointArgs',
|
@@ -3888,6 +3889,28 @@ class MysqlDbSystemCurrentPlacementArgs:
|
|
3888
3889
|
pulumi.set(self, "fault_domain", value)
|
3889
3890
|
|
3890
3891
|
|
3892
|
+
@pulumi.input_type
|
3893
|
+
class MysqlDbSystemCustomerContactArgs:
|
3894
|
+
def __init__(__self__, *,
|
3895
|
+
email: pulumi.Input[str]):
|
3896
|
+
"""
|
3897
|
+
:param pulumi.Input[str] email: (Updatable) The email address used by Oracle to send notifications regarding the DB System.
|
3898
|
+
"""
|
3899
|
+
pulumi.set(__self__, "email", email)
|
3900
|
+
|
3901
|
+
@property
|
3902
|
+
@pulumi.getter
|
3903
|
+
def email(self) -> pulumi.Input[str]:
|
3904
|
+
"""
|
3905
|
+
(Updatable) The email address used by Oracle to send notifications regarding the DB System.
|
3906
|
+
"""
|
3907
|
+
return pulumi.get(self, "email")
|
3908
|
+
|
3909
|
+
@email.setter
|
3910
|
+
def email(self, value: pulumi.Input[str]):
|
3911
|
+
pulumi.set(self, "email", value)
|
3912
|
+
|
3913
|
+
|
3891
3914
|
@pulumi.input_type
|
3892
3915
|
class MysqlDbSystemDataStorageArgs:
|
3893
3916
|
def __init__(__self__, *,
|