pulumi-oci 1.35.0a1715306721__py3-none-any.whl → 1.36.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 +208 -0
- pulumi_oci/core/__init__.py +3 -0
- pulumi_oci/core/_inputs.py +40 -0
- pulumi_oci/core/get_ip_inventory_subnet.py +171 -0
- pulumi_oci/core/get_ip_inventory_subnet_cidr.py +171 -0
- pulumi_oci/core/get_ip_inventory_vcn_overlaps.py +206 -0
- pulumi_oci/core/outputs.py +261 -0
- pulumi_oci/database/_inputs.py +304 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
- pulumi_oci/database/cloud_vm_cluster.py +55 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +14 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +14 -1
- pulumi_oci/database/get_exadata_infrastructure.py +14 -1
- pulumi_oci/database/get_vm_cluster.py +14 -1
- pulumi_oci/database/outputs.py +734 -6
- pulumi_oci/database/vm_cluster.py +55 -0
- pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
- pulumi_oci/datasafe/__init__.py +1 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/disasterrecovery/_inputs.py +16 -0
- pulumi_oci/disasterrecovery/outputs.py +36 -0
- pulumi_oci/email/__init__.py +3 -0
- pulumi_oci/email/_inputs.py +46 -0
- pulumi_oci/email/dkim.py +4 -4
- pulumi_oci/email/email_domain.py +77 -0
- pulumi_oci/email/email_return_path.py +642 -0
- pulumi_oci/email/get_email_domain.py +27 -1
- pulumi_oci/email/get_email_return_path.py +274 -0
- pulumi_oci/email/get_email_return_paths.py +203 -0
- pulumi_oci/email/outputs.py +231 -0
- pulumi_oci/loadbalancer/_inputs.py +160 -20
- pulumi_oci/loadbalancer/backend.py +49 -0
- pulumi_oci/loadbalancer/backend_set.py +57 -0
- pulumi_oci/loadbalancer/get_listener_rules.py +2 -2
- pulumi_oci/loadbalancer/listener.py +2 -0
- pulumi_oci/loadbalancer/load_balancer.py +98 -7
- pulumi_oci/loadbalancer/outputs.py +375 -36
- pulumi_oci/loadbalancer/rule_set.py +10 -0
- pulumi_oci/loganalytics/namespace.py +4 -4
- pulumi_oci/networkloadbalancer/get_listener.py +14 -1
- pulumi_oci/networkloadbalancer/listener.py +51 -2
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/osmanagementhub/__init__.py +48 -0
- pulumi_oci/osmanagementhub/_inputs.py +3635 -493
- pulumi_oci/osmanagementhub/event.py +701 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +178 -0
- pulumi_oci/osmanagementhub/get_errata.py +283 -0
- pulumi_oci/osmanagementhub/get_erratum.py +308 -0
- pulumi_oci/osmanagementhub/get_event.py +314 -0
- pulumi_oci/osmanagementhub/get_events.py +314 -0
- pulumi_oci/osmanagementhub/get_lifecycle_environment.py +26 -13
- pulumi_oci/osmanagementhub/get_lifecycle_environments.py +48 -11
- pulumi_oci/osmanagementhub/get_lifecycle_stage.py +28 -15
- pulumi_oci/osmanagementhub/get_lifecycle_stages.py +86 -19
- pulumi_oci/osmanagementhub/get_managed_instance.py +587 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_packages.py +187 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_software_sources.py +190 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_windows_updates.py +238 -0
- pulumi_oci/osmanagementhub/get_managed_instance_errata.py +204 -0
- pulumi_oci/osmanagementhub/get_managed_instance_group.py +62 -10
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_modules.py +7 -9
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_packages.py +7 -7
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_software_sources.py +8 -10
- pulumi_oci/osmanagementhub/get_managed_instance_group_installed_packages.py +220 -0
- pulumi_oci/osmanagementhub/get_managed_instance_group_modules.py +244 -0
- pulumi_oci/osmanagementhub/get_managed_instance_groups.py +71 -16
- pulumi_oci/osmanagementhub/get_managed_instance_installed_packages.py +221 -0
- pulumi_oci/osmanagementhub/get_managed_instance_installed_windows_updates.py +204 -0
- pulumi_oci/osmanagementhub/get_managed_instance_modules.py +187 -0
- pulumi_oci/osmanagementhub/get_managed_instance_updatable_packages.py +221 -0
- pulumi_oci/osmanagementhub/get_managed_instances.py +537 -0
- pulumi_oci/osmanagementhub/get_management_station.py +42 -19
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +4 -4
- pulumi_oci/osmanagementhub/get_management_stations.py +15 -15
- pulumi_oci/osmanagementhub/get_profile.py +51 -12
- pulumi_oci/osmanagementhub/get_profiles.py +76 -16
- pulumi_oci/osmanagementhub/get_scheduled_job.py +426 -0
- pulumi_oci/osmanagementhub/get_scheduled_jobs.py +433 -0
- pulumi_oci/osmanagementhub/get_software_package.py +301 -0
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +329 -0
- pulumi_oci/osmanagementhub/get_software_packages.py +232 -0
- pulumi_oci/osmanagementhub/get_software_source.py +109 -18
- pulumi_oci/osmanagementhub/get_software_source_module_stream.py +5 -5
- pulumi_oci/osmanagementhub/get_software_source_module_stream_profile.py +6 -6
- pulumi_oci/osmanagementhub/get_software_source_module_stream_profiles.py +8 -8
- pulumi_oci/osmanagementhub/get_software_source_module_streams.py +9 -9
- pulumi_oci/osmanagementhub/get_software_source_package_group.py +8 -8
- pulumi_oci/osmanagementhub/get_software_source_package_groups.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source_software_package.py +23 -10
- pulumi_oci/osmanagementhub/get_software_source_software_packages.py +6 -6
- pulumi_oci/osmanagementhub/get_software_source_vendors.py +2 -2
- pulumi_oci/osmanagementhub/get_software_sources.py +78 -21
- pulumi_oci/osmanagementhub/get_windows_update.py +222 -0
- pulumi_oci/osmanagementhub/get_windows_updates.py +187 -0
- pulumi_oci/osmanagementhub/lifecycle_environment.py +159 -86
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +249 -0
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +249 -0
- pulumi_oci/osmanagementhub/lifecycle_stage_promote_software_source_management.py +296 -0
- pulumi_oci/osmanagementhub/managed_instance.py +1327 -0
- pulumi_oci/osmanagementhub/managed_instance_attach_profile_management.py +266 -0
- pulumi_oci/osmanagementhub/managed_instance_detach_profile_management.py +214 -0
- pulumi_oci/osmanagementhub/managed_instance_group.py +264 -86
- pulumi_oci/osmanagementhub/managed_instance_group_attach_managed_instances_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_attach_software_sources_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_detach_managed_instances_management.py +264 -0
- pulumi_oci/osmanagementhub/managed_instance_group_detach_software_sources_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_windows_updates_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_manage_module_streams_management.py +526 -0
- pulumi_oci/osmanagementhub/managed_instance_group_remove_packages_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_update_all_packages_management.py +292 -0
- pulumi_oci/osmanagementhub/managed_instance_install_windows_updates_management.py +341 -0
- pulumi_oci/osmanagementhub/managed_instance_update_packages_management.py +341 -0
- pulumi_oci/osmanagementhub/management_station.py +184 -81
- pulumi_oci/osmanagementhub/management_station_mirror_synchronize_management.py +264 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +212 -0
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +264 -0
- pulumi_oci/osmanagementhub/outputs.py +10867 -2365
- pulumi_oci/osmanagementhub/profile.py +200 -78
- pulumi_oci/osmanagementhub/scheduled_job.py +1331 -0
- pulumi_oci/osmanagementhub/software_source.py +365 -181
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +266 -0
- pulumi_oci/osmanagementhub/software_source_change_availability_management.py +194 -0
- pulumi_oci/pulumi-plugin.json +2 -1
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/RECORD +130 -75
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/top_level.txt +0 -0
@@ -182,9 +182,14 @@ class RuleSet(pulumi.CustomResource):
|
|
182
182
|
attribute_value=rule_set_items_conditions_attribute_value,
|
183
183
|
operator=rule_set_items_conditions_operator,
|
184
184
|
)],
|
185
|
+
default_max_connections=rule_set_items_default_max_connections,
|
185
186
|
description=rule_set_items_description,
|
186
187
|
header=rule_set_items_header,
|
187
188
|
http_large_header_size_in_kb=rule_set_items_http_large_header_size_in_kb,
|
189
|
+
ip_max_connections=[oci.load_balancer.RuleSetItemIpMaxConnectionArgs(
|
190
|
+
ip_addresses=rule_set_items_ip_max_connections_ip_addresses,
|
191
|
+
max_connections=rule_set_items_ip_max_connections_max_connections,
|
192
|
+
)],
|
188
193
|
prefix=rule_set_items_prefix,
|
189
194
|
redirect_uri=oci.load_balancer.RuleSetItemRedirectUriArgs(
|
190
195
|
host=rule_set_items_redirect_uri_host,
|
@@ -248,9 +253,14 @@ class RuleSet(pulumi.CustomResource):
|
|
248
253
|
attribute_value=rule_set_items_conditions_attribute_value,
|
249
254
|
operator=rule_set_items_conditions_operator,
|
250
255
|
)],
|
256
|
+
default_max_connections=rule_set_items_default_max_connections,
|
251
257
|
description=rule_set_items_description,
|
252
258
|
header=rule_set_items_header,
|
253
259
|
http_large_header_size_in_kb=rule_set_items_http_large_header_size_in_kb,
|
260
|
+
ip_max_connections=[oci.load_balancer.RuleSetItemIpMaxConnectionArgs(
|
261
|
+
ip_addresses=rule_set_items_ip_max_connections_ip_addresses,
|
262
|
+
max_connections=rule_set_items_ip_max_connections_max_connections,
|
263
|
+
)],
|
254
264
|
prefix=rule_set_items_prefix,
|
255
265
|
redirect_uri=oci.load_balancer.RuleSetItemRedirectUriArgs(
|
256
266
|
host=rule_set_items_redirect_uri_host,
|
@@ -148,10 +148,10 @@ class Namespace(pulumi.CustomResource):
|
|
148
148
|
|
149
149
|
## Import
|
150
150
|
|
151
|
-
Namespace can be imported using the `namespace`, e.g.
|
151
|
+
Namespace can be imported using the `compartment_id` and `namespace`, e.g.
|
152
152
|
|
153
153
|
```sh
|
154
|
-
$ pulumi import oci:LogAnalytics/namespace:Namespace test_namespace "namespace"
|
154
|
+
$ pulumi import oci:LogAnalytics/namespace:Namespace test_namespace "compartmentId/<compartment_id>/namespace/<namespace>"
|
155
155
|
```
|
156
156
|
|
157
157
|
:param str resource_name: The name of the resource.
|
@@ -185,10 +185,10 @@ class Namespace(pulumi.CustomResource):
|
|
185
185
|
|
186
186
|
## Import
|
187
187
|
|
188
|
-
Namespace can be imported using the `namespace`, e.g.
|
188
|
+
Namespace can be imported using the `compartment_id` and `namespace`, e.g.
|
189
189
|
|
190
190
|
```sh
|
191
|
-
$ pulumi import oci:LogAnalytics/namespace:Namespace test_namespace "namespace"
|
191
|
+
$ pulumi import oci:LogAnalytics/namespace:Namespace test_namespace "compartmentId/<compartment_id>/namespace/<namespace>"
|
192
192
|
```
|
193
193
|
|
194
194
|
:param str resource_name: The name of the resource.
|
@@ -21,7 +21,7 @@ class GetListenerResult:
|
|
21
21
|
"""
|
22
22
|
A collection of values returned by getListener.
|
23
23
|
"""
|
24
|
-
def __init__(__self__, default_backend_set_name=None, id=None, ip_version=None, listener_name=None, name=None, network_load_balancer_id=None, port=None, protocol=None):
|
24
|
+
def __init__(__self__, default_backend_set_name=None, id=None, ip_version=None, is_ppv2enabled=None, listener_name=None, name=None, network_load_balancer_id=None, port=None, protocol=None):
|
25
25
|
if default_backend_set_name and not isinstance(default_backend_set_name, str):
|
26
26
|
raise TypeError("Expected argument 'default_backend_set_name' to be a str")
|
27
27
|
pulumi.set(__self__, "default_backend_set_name", default_backend_set_name)
|
@@ -31,6 +31,9 @@ class GetListenerResult:
|
|
31
31
|
if ip_version and not isinstance(ip_version, str):
|
32
32
|
raise TypeError("Expected argument 'ip_version' to be a str")
|
33
33
|
pulumi.set(__self__, "ip_version", ip_version)
|
34
|
+
if is_ppv2enabled and not isinstance(is_ppv2enabled, bool):
|
35
|
+
raise TypeError("Expected argument 'is_ppv2enabled' to be a bool")
|
36
|
+
pulumi.set(__self__, "is_ppv2enabled", is_ppv2enabled)
|
34
37
|
if listener_name and not isinstance(listener_name, str):
|
35
38
|
raise TypeError("Expected argument 'listener_name' to be a str")
|
36
39
|
pulumi.set(__self__, "listener_name", listener_name)
|
@@ -68,6 +71,14 @@ class GetListenerResult:
|
|
68
71
|
"""
|
69
72
|
return pulumi.get(self, "ip_version")
|
70
73
|
|
74
|
+
@property
|
75
|
+
@pulumi.getter(name="isPpv2enabled")
|
76
|
+
def is_ppv2enabled(self) -> bool:
|
77
|
+
"""
|
78
|
+
Property to enable/disable PPv2 feature for this listener.
|
79
|
+
"""
|
80
|
+
return pulumi.get(self, "is_ppv2enabled")
|
81
|
+
|
71
82
|
@property
|
72
83
|
@pulumi.getter(name="listenerName")
|
73
84
|
def listener_name(self) -> str:
|
@@ -112,6 +123,7 @@ class AwaitableGetListenerResult(GetListenerResult):
|
|
112
123
|
default_backend_set_name=self.default_backend_set_name,
|
113
124
|
id=self.id,
|
114
125
|
ip_version=self.ip_version,
|
126
|
+
is_ppv2enabled=self.is_ppv2enabled,
|
115
127
|
listener_name=self.listener_name,
|
116
128
|
name=self.name,
|
117
129
|
network_load_balancer_id=self.network_load_balancer_id,
|
@@ -151,6 +163,7 @@ def get_listener(listener_name: Optional[str] = None,
|
|
151
163
|
default_backend_set_name=pulumi.get(__ret__, 'default_backend_set_name'),
|
152
164
|
id=pulumi.get(__ret__, 'id'),
|
153
165
|
ip_version=pulumi.get(__ret__, 'ip_version'),
|
166
|
+
is_ppv2enabled=pulumi.get(__ret__, 'is_ppv2enabled'),
|
154
167
|
listener_name=pulumi.get(__ret__, 'listener_name'),
|
155
168
|
name=pulumi.get(__ret__, 'name'),
|
156
169
|
network_load_balancer_id=pulumi.get(__ret__, 'network_load_balancer_id'),
|
@@ -19,6 +19,7 @@ class ListenerArgs:
|
|
19
19
|
port: pulumi.Input[int],
|
20
20
|
protocol: pulumi.Input[str],
|
21
21
|
ip_version: Optional[pulumi.Input[str]] = None,
|
22
|
+
is_ppv2enabled: Optional[pulumi.Input[bool]] = None,
|
22
23
|
name: Optional[pulumi.Input[str]] = None):
|
23
24
|
"""
|
24
25
|
The set of arguments for constructing a Listener resource.
|
@@ -31,6 +32,7 @@ class ListenerArgs:
|
|
31
32
|
** IMPORTANT **
|
32
33
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
33
34
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the listener.
|
35
|
+
:param pulumi.Input[bool] is_ppv2enabled: (Updatable) Property to enable/disable PPv2 feature for this listener.
|
34
36
|
:param pulumi.Input[str] name: A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`
|
35
37
|
"""
|
36
38
|
pulumi.set(__self__, "default_backend_set_name", default_backend_set_name)
|
@@ -39,6 +41,8 @@ class ListenerArgs:
|
|
39
41
|
pulumi.set(__self__, "protocol", protocol)
|
40
42
|
if ip_version is not None:
|
41
43
|
pulumi.set(__self__, "ip_version", ip_version)
|
44
|
+
if is_ppv2enabled is not None:
|
45
|
+
pulumi.set(__self__, "is_ppv2enabled", is_ppv2enabled)
|
42
46
|
if name is not None:
|
43
47
|
pulumi.set(__self__, "name", name)
|
44
48
|
|
@@ -106,6 +110,18 @@ class ListenerArgs:
|
|
106
110
|
def ip_version(self, value: Optional[pulumi.Input[str]]):
|
107
111
|
pulumi.set(self, "ip_version", value)
|
108
112
|
|
113
|
+
@property
|
114
|
+
@pulumi.getter(name="isPpv2enabled")
|
115
|
+
def is_ppv2enabled(self) -> Optional[pulumi.Input[bool]]:
|
116
|
+
"""
|
117
|
+
(Updatable) Property to enable/disable PPv2 feature for this listener.
|
118
|
+
"""
|
119
|
+
return pulumi.get(self, "is_ppv2enabled")
|
120
|
+
|
121
|
+
@is_ppv2enabled.setter
|
122
|
+
def is_ppv2enabled(self, value: Optional[pulumi.Input[bool]]):
|
123
|
+
pulumi.set(self, "is_ppv2enabled", value)
|
124
|
+
|
109
125
|
@property
|
110
126
|
@pulumi.getter
|
111
127
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -124,6 +140,7 @@ class _ListenerState:
|
|
124
140
|
def __init__(__self__, *,
|
125
141
|
default_backend_set_name: Optional[pulumi.Input[str]] = None,
|
126
142
|
ip_version: Optional[pulumi.Input[str]] = None,
|
143
|
+
is_ppv2enabled: Optional[pulumi.Input[bool]] = None,
|
127
144
|
name: Optional[pulumi.Input[str]] = None,
|
128
145
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
129
146
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -132,6 +149,7 @@ class _ListenerState:
|
|
132
149
|
Input properties used for looking up and filtering Listener resources.
|
133
150
|
:param pulumi.Input[str] default_backend_set_name: (Updatable) The name of the associated backend set. Example: `example_backend_set`
|
134
151
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the listener.
|
152
|
+
:param pulumi.Input[bool] is_ppv2enabled: (Updatable) Property to enable/disable PPv2 feature for this listener.
|
135
153
|
:param pulumi.Input[str] name: A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`
|
136
154
|
:param pulumi.Input[str] network_load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network load balancer to update.
|
137
155
|
:param pulumi.Input[int] port: (Updatable) The communication port for the listener. Example: `80`
|
@@ -145,6 +163,8 @@ class _ListenerState:
|
|
145
163
|
pulumi.set(__self__, "default_backend_set_name", default_backend_set_name)
|
146
164
|
if ip_version is not None:
|
147
165
|
pulumi.set(__self__, "ip_version", ip_version)
|
166
|
+
if is_ppv2enabled is not None:
|
167
|
+
pulumi.set(__self__, "is_ppv2enabled", is_ppv2enabled)
|
148
168
|
if name is not None:
|
149
169
|
pulumi.set(__self__, "name", name)
|
150
170
|
if network_load_balancer_id is not None:
|
@@ -178,6 +198,18 @@ class _ListenerState:
|
|
178
198
|
def ip_version(self, value: Optional[pulumi.Input[str]]):
|
179
199
|
pulumi.set(self, "ip_version", value)
|
180
200
|
|
201
|
+
@property
|
202
|
+
@pulumi.getter(name="isPpv2enabled")
|
203
|
+
def is_ppv2enabled(self) -> Optional[pulumi.Input[bool]]:
|
204
|
+
"""
|
205
|
+
(Updatable) Property to enable/disable PPv2 feature for this listener.
|
206
|
+
"""
|
207
|
+
return pulumi.get(self, "is_ppv2enabled")
|
208
|
+
|
209
|
+
@is_ppv2enabled.setter
|
210
|
+
def is_ppv2enabled(self, value: Optional[pulumi.Input[bool]]):
|
211
|
+
pulumi.set(self, "is_ppv2enabled", value)
|
212
|
+
|
181
213
|
@property
|
182
214
|
@pulumi.getter
|
183
215
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -238,6 +270,7 @@ class Listener(pulumi.CustomResource):
|
|
238
270
|
opts: Optional[pulumi.ResourceOptions] = None,
|
239
271
|
default_backend_set_name: Optional[pulumi.Input[str]] = None,
|
240
272
|
ip_version: Optional[pulumi.Input[str]] = None,
|
273
|
+
is_ppv2enabled: Optional[pulumi.Input[bool]] = None,
|
241
274
|
name: Optional[pulumi.Input[str]] = None,
|
242
275
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
243
276
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -260,7 +293,8 @@ class Listener(pulumi.CustomResource):
|
|
260
293
|
network_load_balancer_id=test_network_load_balancer["id"],
|
261
294
|
port=listener_port,
|
262
295
|
protocol=listener_protocol,
|
263
|
-
ip_version=listener_ip_version
|
296
|
+
ip_version=listener_ip_version,
|
297
|
+
is_ppv2enabled=listener_is_ppv2enabled)
|
264
298
|
```
|
265
299
|
|
266
300
|
## Import
|
@@ -275,6 +309,7 @@ class Listener(pulumi.CustomResource):
|
|
275
309
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
276
310
|
:param pulumi.Input[str] default_backend_set_name: (Updatable) The name of the associated backend set. Example: `example_backend_set`
|
277
311
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the listener.
|
312
|
+
:param pulumi.Input[bool] is_ppv2enabled: (Updatable) Property to enable/disable PPv2 feature for this listener.
|
278
313
|
:param pulumi.Input[str] name: A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`
|
279
314
|
:param pulumi.Input[str] network_load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network load balancer to update.
|
280
315
|
:param pulumi.Input[int] port: (Updatable) The communication port for the listener. Example: `80`
|
@@ -307,7 +342,8 @@ class Listener(pulumi.CustomResource):
|
|
307
342
|
network_load_balancer_id=test_network_load_balancer["id"],
|
308
343
|
port=listener_port,
|
309
344
|
protocol=listener_protocol,
|
310
|
-
ip_version=listener_ip_version
|
345
|
+
ip_version=listener_ip_version,
|
346
|
+
is_ppv2enabled=listener_is_ppv2enabled)
|
311
347
|
```
|
312
348
|
|
313
349
|
## Import
|
@@ -335,6 +371,7 @@ class Listener(pulumi.CustomResource):
|
|
335
371
|
opts: Optional[pulumi.ResourceOptions] = None,
|
336
372
|
default_backend_set_name: Optional[pulumi.Input[str]] = None,
|
337
373
|
ip_version: Optional[pulumi.Input[str]] = None,
|
374
|
+
is_ppv2enabled: Optional[pulumi.Input[bool]] = None,
|
338
375
|
name: Optional[pulumi.Input[str]] = None,
|
339
376
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
340
377
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -352,6 +389,7 @@ class Listener(pulumi.CustomResource):
|
|
352
389
|
raise TypeError("Missing required property 'default_backend_set_name'")
|
353
390
|
__props__.__dict__["default_backend_set_name"] = default_backend_set_name
|
354
391
|
__props__.__dict__["ip_version"] = ip_version
|
392
|
+
__props__.__dict__["is_ppv2enabled"] = is_ppv2enabled
|
355
393
|
__props__.__dict__["name"] = name
|
356
394
|
if network_load_balancer_id is None and not opts.urn:
|
357
395
|
raise TypeError("Missing required property 'network_load_balancer_id'")
|
@@ -374,6 +412,7 @@ class Listener(pulumi.CustomResource):
|
|
374
412
|
opts: Optional[pulumi.ResourceOptions] = None,
|
375
413
|
default_backend_set_name: Optional[pulumi.Input[str]] = None,
|
376
414
|
ip_version: Optional[pulumi.Input[str]] = None,
|
415
|
+
is_ppv2enabled: Optional[pulumi.Input[bool]] = None,
|
377
416
|
name: Optional[pulumi.Input[str]] = None,
|
378
417
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
379
418
|
port: Optional[pulumi.Input[int]] = None,
|
@@ -387,6 +426,7 @@ class Listener(pulumi.CustomResource):
|
|
387
426
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
388
427
|
:param pulumi.Input[str] default_backend_set_name: (Updatable) The name of the associated backend set. Example: `example_backend_set`
|
389
428
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the listener.
|
429
|
+
:param pulumi.Input[bool] is_ppv2enabled: (Updatable) Property to enable/disable PPv2 feature for this listener.
|
390
430
|
:param pulumi.Input[str] name: A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`
|
391
431
|
:param pulumi.Input[str] network_load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network load balancer to update.
|
392
432
|
:param pulumi.Input[int] port: (Updatable) The communication port for the listener. Example: `80`
|
@@ -402,6 +442,7 @@ class Listener(pulumi.CustomResource):
|
|
402
442
|
|
403
443
|
__props__.__dict__["default_backend_set_name"] = default_backend_set_name
|
404
444
|
__props__.__dict__["ip_version"] = ip_version
|
445
|
+
__props__.__dict__["is_ppv2enabled"] = is_ppv2enabled
|
405
446
|
__props__.__dict__["name"] = name
|
406
447
|
__props__.__dict__["network_load_balancer_id"] = network_load_balancer_id
|
407
448
|
__props__.__dict__["port"] = port
|
@@ -424,6 +465,14 @@ class Listener(pulumi.CustomResource):
|
|
424
465
|
"""
|
425
466
|
return pulumi.get(self, "ip_version")
|
426
467
|
|
468
|
+
@property
|
469
|
+
@pulumi.getter(name="isPpv2enabled")
|
470
|
+
def is_ppv2enabled(self) -> pulumi.Output[bool]:
|
471
|
+
"""
|
472
|
+
(Updatable) Property to enable/disable PPv2 feature for this listener.
|
473
|
+
"""
|
474
|
+
return pulumi.get(self, "is_ppv2enabled")
|
475
|
+
|
427
476
|
@property
|
428
477
|
@pulumi.getter
|
429
478
|
def name(self) -> pulumi.Output[str]:
|
@@ -1942,6 +1942,7 @@ class GetListenersListenerCollectionItemResult(dict):
|
|
1942
1942
|
default_backend_set_name: str,
|
1943
1943
|
id: str,
|
1944
1944
|
ip_version: str,
|
1945
|
+
is_ppv2enabled: bool,
|
1945
1946
|
name: str,
|
1946
1947
|
network_load_balancer_id: str,
|
1947
1948
|
port: int,
|
@@ -1949,6 +1950,7 @@ class GetListenersListenerCollectionItemResult(dict):
|
|
1949
1950
|
"""
|
1950
1951
|
:param str default_backend_set_name: The name of the associated backend set. Example: `example_backend_set`
|
1951
1952
|
:param str ip_version: IP version associated with the listener.
|
1953
|
+
:param bool is_ppv2enabled: Property to enable/disable PPv2 feature for this listener.
|
1952
1954
|
:param str name: A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`
|
1953
1955
|
:param str network_load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network load balancer to update.
|
1954
1956
|
:param int port: The communication port for the listener. Example: `80`
|
@@ -1957,6 +1959,7 @@ class GetListenersListenerCollectionItemResult(dict):
|
|
1957
1959
|
pulumi.set(__self__, "default_backend_set_name", default_backend_set_name)
|
1958
1960
|
pulumi.set(__self__, "id", id)
|
1959
1961
|
pulumi.set(__self__, "ip_version", ip_version)
|
1962
|
+
pulumi.set(__self__, "is_ppv2enabled", is_ppv2enabled)
|
1960
1963
|
pulumi.set(__self__, "name", name)
|
1961
1964
|
pulumi.set(__self__, "network_load_balancer_id", network_load_balancer_id)
|
1962
1965
|
pulumi.set(__self__, "port", port)
|
@@ -1983,6 +1986,14 @@ class GetListenersListenerCollectionItemResult(dict):
|
|
1983
1986
|
"""
|
1984
1987
|
return pulumi.get(self, "ip_version")
|
1985
1988
|
|
1989
|
+
@property
|
1990
|
+
@pulumi.getter(name="isPpv2enabled")
|
1991
|
+
def is_ppv2enabled(self) -> bool:
|
1992
|
+
"""
|
1993
|
+
Property to enable/disable PPv2 feature for this listener.
|
1994
|
+
"""
|
1995
|
+
return pulumi.get(self, "is_ppv2enabled")
|
1996
|
+
|
1986
1997
|
@property
|
1987
1998
|
@pulumi.getter
|
1988
1999
|
def name(self) -> str:
|
@@ -5,20 +5,43 @@
|
|
5
5
|
from .. import _utilities
|
6
6
|
import typing
|
7
7
|
# Export this package's modules as members:
|
8
|
+
from .event import *
|
9
|
+
from .get_entitlements import *
|
10
|
+
from .get_errata import *
|
11
|
+
from .get_erratum import *
|
12
|
+
from .get_event import *
|
13
|
+
from .get_events import *
|
8
14
|
from .get_lifecycle_environment import *
|
9
15
|
from .get_lifecycle_environments import *
|
10
16
|
from .get_lifecycle_stage import *
|
11
17
|
from .get_lifecycle_stages import *
|
18
|
+
from .get_managed_instance import *
|
19
|
+
from .get_managed_instance_available_packages import *
|
20
|
+
from .get_managed_instance_available_software_sources import *
|
21
|
+
from .get_managed_instance_available_windows_updates import *
|
22
|
+
from .get_managed_instance_errata import *
|
12
23
|
from .get_managed_instance_group import *
|
13
24
|
from .get_managed_instance_group_available_modules import *
|
14
25
|
from .get_managed_instance_group_available_packages import *
|
15
26
|
from .get_managed_instance_group_available_software_sources import *
|
27
|
+
from .get_managed_instance_group_installed_packages import *
|
28
|
+
from .get_managed_instance_group_modules import *
|
16
29
|
from .get_managed_instance_groups import *
|
30
|
+
from .get_managed_instance_installed_packages import *
|
31
|
+
from .get_managed_instance_installed_windows_updates import *
|
32
|
+
from .get_managed_instance_modules import *
|
33
|
+
from .get_managed_instance_updatable_packages import *
|
34
|
+
from .get_managed_instances import *
|
17
35
|
from .get_management_station import *
|
18
36
|
from .get_management_station_mirrors import *
|
19
37
|
from .get_management_stations import *
|
20
38
|
from .get_profile import *
|
21
39
|
from .get_profiles import *
|
40
|
+
from .get_scheduled_job import *
|
41
|
+
from .get_scheduled_jobs import *
|
42
|
+
from .get_software_package import *
|
43
|
+
from .get_software_package_software_source import *
|
44
|
+
from .get_software_packages import *
|
22
45
|
from .get_software_source import *
|
23
46
|
from .get_software_source_module_stream import *
|
24
47
|
from .get_software_source_module_stream_profile import *
|
@@ -30,10 +53,35 @@ from .get_software_source_software_package import *
|
|
30
53
|
from .get_software_source_software_packages import *
|
31
54
|
from .get_software_source_vendors import *
|
32
55
|
from .get_software_sources import *
|
56
|
+
from .get_windows_update import *
|
57
|
+
from .get_windows_updates import *
|
33
58
|
from .lifecycle_environment import *
|
59
|
+
from .lifecycle_stage_attach_managed_instances_management import *
|
60
|
+
from .lifecycle_stage_detach_managed_instances_management import *
|
61
|
+
from .lifecycle_stage_promote_software_source_management import *
|
62
|
+
from .managed_instance import *
|
63
|
+
from .managed_instance_attach_profile_management import *
|
64
|
+
from .managed_instance_detach_profile_management import *
|
34
65
|
from .managed_instance_group import *
|
66
|
+
from .managed_instance_group_attach_managed_instances_management import *
|
67
|
+
from .managed_instance_group_attach_software_sources_management import *
|
68
|
+
from .managed_instance_group_detach_managed_instances_management import *
|
69
|
+
from .managed_instance_group_detach_software_sources_management import *
|
70
|
+
from .managed_instance_group_install_packages_management import *
|
71
|
+
from .managed_instance_group_install_windows_updates_management import *
|
72
|
+
from .managed_instance_group_manage_module_streams_management import *
|
73
|
+
from .managed_instance_group_remove_packages_management import *
|
74
|
+
from .managed_instance_group_update_all_packages_management import *
|
75
|
+
from .managed_instance_install_windows_updates_management import *
|
76
|
+
from .managed_instance_update_packages_management import *
|
35
77
|
from .management_station import *
|
78
|
+
from .management_station_mirror_synchronize_management import *
|
79
|
+
from .management_station_refresh_management import *
|
80
|
+
from .management_station_synchronize_mirrors_management import *
|
36
81
|
from .profile import *
|
82
|
+
from .scheduled_job import *
|
37
83
|
from .software_source import *
|
84
|
+
from .software_source_add_packages_management import *
|
85
|
+
from .software_source_change_availability_management import *
|
38
86
|
from ._inputs import *
|
39
87
|
from . import outputs
|