pulumi-oci 2.13.0a1729198151__py3-none-any.whl → 2.13.0a1729613556__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 +24 -19
- pulumi_oci/containerengine/_inputs.py +341 -0
- pulumi_oci/containerengine/cluster.py +64 -0
- pulumi_oci/containerengine/get_cluster.py +12 -1
- pulumi_oci/containerengine/outputs.py +582 -0
- pulumi_oci/core/_inputs.py +299 -37
- pulumi_oci/core/boot_volume.py +90 -5
- pulumi_oci/core/get_block_volume_replica.py +15 -1
- pulumi_oci/core/get_boot_volume.py +15 -4
- pulumi_oci/core/get_boot_volume_replica.py +15 -1
- pulumi_oci/core/get_volume.py +18 -4
- pulumi_oci/core/instance_configuration.py +4 -0
- pulumi_oci/core/outputs.py +573 -46
- pulumi_oci/core/volume.py +110 -12
- pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
- pulumi_oci/core/volume_group.py +56 -5
- pulumi_oci/datasafe/__init__.py +1 -0
- pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
- pulumi_oci/desktops/_inputs.py +175 -13
- pulumi_oci/desktops/desktop_pool.py +67 -0
- pulumi_oci/desktops/get_desktop_pool.py +16 -1
- pulumi_oci/desktops/outputs.py +339 -18
- pulumi_oci/dns/__init__.py +2 -0
- pulumi_oci/dns/_inputs.py +1157 -12
- pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
- pulumi_oci/dns/get_records.py +45 -13
- pulumi_oci/dns/get_resolver.py +8 -6
- pulumi_oci/dns/get_resolver_endpoint.py +8 -6
- pulumi_oci/dns/get_resolver_endpoints.py +2 -2
- pulumi_oci/dns/get_resolvers.py +12 -12
- pulumi_oci/dns/get_rrset.py +16 -16
- pulumi_oci/dns/get_rrsets.py +12 -10
- pulumi_oci/dns/get_view.py +8 -4
- pulumi_oci/dns/get_views.py +12 -12
- pulumi_oci/dns/get_zones.py +33 -13
- pulumi_oci/dns/outputs.py +1388 -79
- pulumi_oci/dns/record.py +12 -12
- pulumi_oci/dns/resolver.py +7 -7
- pulumi_oci/dns/resolver_endpoint.py +2 -2
- pulumi_oci/dns/rrset.py +50 -41
- pulumi_oci/dns/zone.py +176 -17
- pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
- pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
- pulumi_oci/goldengate/__init__.py +1 -0
- pulumi_oci/goldengate/_inputs.py +165 -0
- pulumi_oci/goldengate/connection.py +49 -35
- pulumi_oci/goldengate/database_registration.py +7 -7
- pulumi_oci/goldengate/deployment.py +79 -4
- pulumi_oci/goldengate/get_deployment.py +30 -2
- pulumi_oci/goldengate/get_deployment_environments.py +144 -0
- pulumi_oci/goldengate/outputs.py +409 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/METADATA +1 -1
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/RECORD +56 -61
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/top_level.txt +0 -0
@@ -56,7 +56,7 @@ class DatabaseRegistrationArgs:
|
|
56
56
|
:param pulumi.Input[str] session_mode: (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
|
57
57
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
|
58
58
|
:param pulumi.Input[str] vault_id: Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
|
59
|
-
:param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database.
|
59
|
+
:param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
|
60
60
|
|
61
61
|
|
62
62
|
** IMPORTANT **
|
@@ -301,7 +301,7 @@ class DatabaseRegistrationArgs:
|
|
301
301
|
@pulumi.getter
|
302
302
|
def wallet(self) -> Optional[pulumi.Input[str]]:
|
303
303
|
"""
|
304
|
-
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database.
|
304
|
+
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
|
305
305
|
|
306
306
|
|
307
307
|
** IMPORTANT **
|
@@ -368,7 +368,7 @@ class _DatabaseRegistrationState:
|
|
368
368
|
:param pulumi.Input[str] time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
369
369
|
:param pulumi.Input[str] username: (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
|
370
370
|
:param pulumi.Input[str] vault_id: Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
|
371
|
-
:param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database.
|
371
|
+
:param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
|
372
372
|
|
373
373
|
|
374
374
|
** IMPORTANT **
|
@@ -717,7 +717,7 @@ class _DatabaseRegistrationState:
|
|
717
717
|
@pulumi.getter
|
718
718
|
def wallet(self) -> Optional[pulumi.Input[str]]:
|
719
719
|
"""
|
720
|
-
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database.
|
720
|
+
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
|
721
721
|
|
722
722
|
|
723
723
|
** IMPORTANT **
|
@@ -818,7 +818,7 @@ class DatabaseRegistration(pulumi.CustomResource):
|
|
818
818
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target subnet of the dedicated connection.
|
819
819
|
:param pulumi.Input[str] username: (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
|
820
820
|
:param pulumi.Input[str] vault_id: Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
|
821
|
-
:param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database.
|
821
|
+
:param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
|
822
822
|
|
823
823
|
|
824
824
|
** IMPORTANT **
|
@@ -1022,7 +1022,7 @@ class DatabaseRegistration(pulumi.CustomResource):
|
|
1022
1022
|
:param pulumi.Input[str] time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
1023
1023
|
:param pulumi.Input[str] username: (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
|
1024
1024
|
:param pulumi.Input[str] vault_id: Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
|
1025
|
-
:param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database.
|
1025
|
+
:param pulumi.Input[str] wallet: (Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
|
1026
1026
|
|
1027
1027
|
|
1028
1028
|
** IMPORTANT **
|
@@ -1255,7 +1255,7 @@ class DatabaseRegistration(pulumi.CustomResource):
|
|
1255
1255
|
@pulumi.getter
|
1256
1256
|
def wallet(self) -> pulumi.Output[str]:
|
1257
1257
|
"""
|
1258
|
-
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database.
|
1258
|
+
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
|
1259
1259
|
|
1260
1260
|
|
1261
1261
|
** IMPORTANT **
|
@@ -31,6 +31,7 @@ class DeploymentArgs:
|
|
31
31
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
32
32
|
deployment_backup_id: Optional[pulumi.Input[str]] = None,
|
33
33
|
description: Optional[pulumi.Input[str]] = None,
|
34
|
+
environment_type: Optional[pulumi.Input[str]] = None,
|
34
35
|
fqdn: Optional[pulumi.Input[str]] = None,
|
35
36
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
36
37
|
is_lock_override: Optional[pulumi.Input[bool]] = None,
|
@@ -54,6 +55,7 @@ class DeploymentArgs:
|
|
54
55
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
55
56
|
:param pulumi.Input[str] deployment_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup being referenced.
|
56
57
|
:param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
|
58
|
+
:param pulumi.Input[str] environment_type: (Updatable) Specifies whether the deployment is used in a production or development/testing environment.
|
57
59
|
:param pulumi.Input[str] fqdn: (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
|
58
60
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
59
61
|
:param pulumi.Input[bool] is_public: (Updatable) True if this object is publicly available.
|
@@ -77,6 +79,8 @@ class DeploymentArgs:
|
|
77
79
|
pulumi.set(__self__, "deployment_backup_id", deployment_backup_id)
|
78
80
|
if description is not None:
|
79
81
|
pulumi.set(__self__, "description", description)
|
82
|
+
if environment_type is not None:
|
83
|
+
pulumi.set(__self__, "environment_type", environment_type)
|
80
84
|
if fqdn is not None:
|
81
85
|
pulumi.set(__self__, "fqdn", fqdn)
|
82
86
|
if freeform_tags is not None:
|
@@ -220,6 +224,18 @@ class DeploymentArgs:
|
|
220
224
|
def description(self, value: Optional[pulumi.Input[str]]):
|
221
225
|
pulumi.set(self, "description", value)
|
222
226
|
|
227
|
+
@property
|
228
|
+
@pulumi.getter(name="environmentType")
|
229
|
+
def environment_type(self) -> Optional[pulumi.Input[str]]:
|
230
|
+
"""
|
231
|
+
(Updatable) Specifies whether the deployment is used in a production or development/testing environment.
|
232
|
+
"""
|
233
|
+
return pulumi.get(self, "environment_type")
|
234
|
+
|
235
|
+
@environment_type.setter
|
236
|
+
def environment_type(self, value: Optional[pulumi.Input[str]]):
|
237
|
+
pulumi.set(self, "environment_type", value)
|
238
|
+
|
223
239
|
@property
|
224
240
|
@pulumi.getter
|
225
241
|
def fqdn(self) -> Optional[pulumi.Input[str]]:
|
@@ -350,6 +366,7 @@ class DeploymentArgs:
|
|
350
366
|
@pulumi.input_type
|
351
367
|
class _DeploymentState:
|
352
368
|
def __init__(__self__, *,
|
369
|
+
category: Optional[pulumi.Input[str]] = None,
|
353
370
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
354
371
|
cpu_core_count: Optional[pulumi.Input[int]] = None,
|
355
372
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -359,6 +376,7 @@ class _DeploymentState:
|
|
359
376
|
deployment_url: Optional[pulumi.Input[str]] = None,
|
360
377
|
description: Optional[pulumi.Input[str]] = None,
|
361
378
|
display_name: Optional[pulumi.Input[str]] = None,
|
379
|
+
environment_type: Optional[pulumi.Input[str]] = None,
|
362
380
|
fqdn: Optional[pulumi.Input[str]] = None,
|
363
381
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
364
382
|
ingress_ips: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentIngressIpArgs']]]] = None,
|
@@ -393,6 +411,7 @@ class _DeploymentState:
|
|
393
411
|
time_upgrade_required: Optional[pulumi.Input[str]] = None):
|
394
412
|
"""
|
395
413
|
Input properties used for looking up and filtering Deployment resources.
|
414
|
+
:param pulumi.Input[str] category: The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
|
396
415
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
397
416
|
:param pulumi.Input[int] cpu_core_count: (Updatable) The Minimum number of OCPUs to be made available for this Deployment.
|
398
417
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
@@ -402,6 +421,7 @@ class _DeploymentState:
|
|
402
421
|
:param pulumi.Input[str] deployment_url: The URL of a resource.
|
403
422
|
:param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
|
404
423
|
:param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
|
424
|
+
:param pulumi.Input[str] environment_type: (Updatable) Specifies whether the deployment is used in a production or development/testing environment.
|
405
425
|
:param pulumi.Input[str] fqdn: (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
|
406
426
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
407
427
|
:param pulumi.Input[Sequence[pulumi.Input['DeploymentIngressIpArgs']]] ingress_ips: List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
|
@@ -409,7 +429,7 @@ class _DeploymentState:
|
|
409
429
|
:param pulumi.Input[bool] is_healthy: True if all of the aggregate resources are working correctly.
|
410
430
|
:param pulumi.Input[bool] is_latest_version: Indicates if the resource is the the latest available version.
|
411
431
|
:param pulumi.Input[bool] is_public: (Updatable) True if this object is publicly available.
|
412
|
-
:param pulumi.Input[bool] is_storage_utilization_limit_exceeded: Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
|
432
|
+
:param pulumi.Input[bool] is_storage_utilization_limit_exceeded: Deprecated: This field is not updated and will be removed in future versions. If storage utilization exceeds the limit, the respective warning message will appear in deployment messages, which can be accessed through /messages?deploymentId=. Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
|
413
433
|
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to a Deployment.
|
414
434
|
:param pulumi.Input[str] lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
|
415
435
|
:param pulumi.Input[str] lifecycle_sub_state: Possible GGS lifecycle sub-states.
|
@@ -433,6 +453,8 @@ class _DeploymentState:
|
|
433
453
|
:param pulumi.Input[str] time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
434
454
|
:param pulumi.Input[str] time_upgrade_required: Note: Deprecated: Use timeOfNextMaintenance instead, or related upgrade records to check, when deployment will be forced to upgrade to a newer version. Old description: The date the existing version in use will no longer be considered as usable and an upgrade will be required. This date is typically 6 months after the version was released for use by GGS. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
435
455
|
"""
|
456
|
+
if category is not None:
|
457
|
+
pulumi.set(__self__, "category", category)
|
436
458
|
if compartment_id is not None:
|
437
459
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
438
460
|
if cpu_core_count is not None:
|
@@ -451,6 +473,8 @@ class _DeploymentState:
|
|
451
473
|
pulumi.set(__self__, "description", description)
|
452
474
|
if display_name is not None:
|
453
475
|
pulumi.set(__self__, "display_name", display_name)
|
476
|
+
if environment_type is not None:
|
477
|
+
pulumi.set(__self__, "environment_type", environment_type)
|
454
478
|
if fqdn is not None:
|
455
479
|
pulumi.set(__self__, "fqdn", fqdn)
|
456
480
|
if freeform_tags is not None:
|
@@ -516,6 +540,18 @@ class _DeploymentState:
|
|
516
540
|
if time_upgrade_required is not None:
|
517
541
|
pulumi.set(__self__, "time_upgrade_required", time_upgrade_required)
|
518
542
|
|
543
|
+
@property
|
544
|
+
@pulumi.getter
|
545
|
+
def category(self) -> Optional[pulumi.Input[str]]:
|
546
|
+
"""
|
547
|
+
The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
|
548
|
+
"""
|
549
|
+
return pulumi.get(self, "category")
|
550
|
+
|
551
|
+
@category.setter
|
552
|
+
def category(self, value: Optional[pulumi.Input[str]]):
|
553
|
+
pulumi.set(self, "category", value)
|
554
|
+
|
519
555
|
@property
|
520
556
|
@pulumi.getter(name="compartmentId")
|
521
557
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -624,6 +660,18 @@ class _DeploymentState:
|
|
624
660
|
def display_name(self, value: Optional[pulumi.Input[str]]):
|
625
661
|
pulumi.set(self, "display_name", value)
|
626
662
|
|
663
|
+
@property
|
664
|
+
@pulumi.getter(name="environmentType")
|
665
|
+
def environment_type(self) -> Optional[pulumi.Input[str]]:
|
666
|
+
"""
|
667
|
+
(Updatable) Specifies whether the deployment is used in a production or development/testing environment.
|
668
|
+
"""
|
669
|
+
return pulumi.get(self, "environment_type")
|
670
|
+
|
671
|
+
@environment_type.setter
|
672
|
+
def environment_type(self, value: Optional[pulumi.Input[str]]):
|
673
|
+
pulumi.set(self, "environment_type", value)
|
674
|
+
|
627
675
|
@property
|
628
676
|
@pulumi.getter
|
629
677
|
def fqdn(self) -> Optional[pulumi.Input[str]]:
|
@@ -721,7 +769,7 @@ class _DeploymentState:
|
|
721
769
|
@pulumi.getter(name="isStorageUtilizationLimitExceeded")
|
722
770
|
def is_storage_utilization_limit_exceeded(self) -> Optional[pulumi.Input[bool]]:
|
723
771
|
"""
|
724
|
-
Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
|
772
|
+
Deprecated: This field is not updated and will be removed in future versions. If storage utilization exceeds the limit, the respective warning message will appear in deployment messages, which can be accessed through /messages?deploymentId=. Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
|
725
773
|
"""
|
726
774
|
return pulumi.get(self, "is_storage_utilization_limit_exceeded")
|
727
775
|
|
@@ -1015,6 +1063,7 @@ class Deployment(pulumi.CustomResource):
|
|
1015
1063
|
deployment_type: Optional[pulumi.Input[str]] = None,
|
1016
1064
|
description: Optional[pulumi.Input[str]] = None,
|
1017
1065
|
display_name: Optional[pulumi.Input[str]] = None,
|
1066
|
+
environment_type: Optional[pulumi.Input[str]] = None,
|
1018
1067
|
fqdn: Optional[pulumi.Input[str]] = None,
|
1019
1068
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1020
1069
|
is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
|
@@ -1052,6 +1101,7 @@ class Deployment(pulumi.CustomResource):
|
|
1052
1101
|
:param pulumi.Input[str] deployment_type: The type of deployment, which can be any one of the Allowed values. NOTE: Use of the value 'OGG' is maintained for backward compatibility purposes. Its use is discouraged in favor of 'DATABASE_ORACLE'.
|
1053
1102
|
:param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
|
1054
1103
|
:param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
|
1104
|
+
:param pulumi.Input[str] environment_type: (Updatable) Specifies whether the deployment is used in a production or development/testing environment.
|
1055
1105
|
:param pulumi.Input[str] fqdn: (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
|
1056
1106
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1057
1107
|
:param pulumi.Input[bool] is_auto_scaling_enabled: (Updatable) Indicates if auto scaling is enabled for the Deployment's CPU core count.
|
@@ -1106,6 +1156,7 @@ class Deployment(pulumi.CustomResource):
|
|
1106
1156
|
deployment_type: Optional[pulumi.Input[str]] = None,
|
1107
1157
|
description: Optional[pulumi.Input[str]] = None,
|
1108
1158
|
display_name: Optional[pulumi.Input[str]] = None,
|
1159
|
+
environment_type: Optional[pulumi.Input[str]] = None,
|
1109
1160
|
fqdn: Optional[pulumi.Input[str]] = None,
|
1110
1161
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1111
1162
|
is_auto_scaling_enabled: Optional[pulumi.Input[bool]] = None,
|
@@ -1144,6 +1195,7 @@ class Deployment(pulumi.CustomResource):
|
|
1144
1195
|
if display_name is None and not opts.urn:
|
1145
1196
|
raise TypeError("Missing required property 'display_name'")
|
1146
1197
|
__props__.__dict__["display_name"] = display_name
|
1198
|
+
__props__.__dict__["environment_type"] = environment_type
|
1147
1199
|
__props__.__dict__["fqdn"] = fqdn
|
1148
1200
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1149
1201
|
if is_auto_scaling_enabled is None and not opts.urn:
|
@@ -1164,6 +1216,7 @@ class Deployment(pulumi.CustomResource):
|
|
1164
1216
|
if subnet_id is None and not opts.urn:
|
1165
1217
|
raise TypeError("Missing required property 'subnet_id'")
|
1166
1218
|
__props__.__dict__["subnet_id"] = subnet_id
|
1219
|
+
__props__.__dict__["category"] = None
|
1167
1220
|
__props__.__dict__["deployment_diagnostic_datas"] = None
|
1168
1221
|
__props__.__dict__["deployment_url"] = None
|
1169
1222
|
__props__.__dict__["ingress_ips"] = None
|
@@ -1194,6 +1247,7 @@ class Deployment(pulumi.CustomResource):
|
|
1194
1247
|
def get(resource_name: str,
|
1195
1248
|
id: pulumi.Input[str],
|
1196
1249
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1250
|
+
category: Optional[pulumi.Input[str]] = None,
|
1197
1251
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1198
1252
|
cpu_core_count: Optional[pulumi.Input[int]] = None,
|
1199
1253
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1203,6 +1257,7 @@ class Deployment(pulumi.CustomResource):
|
|
1203
1257
|
deployment_url: Optional[pulumi.Input[str]] = None,
|
1204
1258
|
description: Optional[pulumi.Input[str]] = None,
|
1205
1259
|
display_name: Optional[pulumi.Input[str]] = None,
|
1260
|
+
environment_type: Optional[pulumi.Input[str]] = None,
|
1206
1261
|
fqdn: Optional[pulumi.Input[str]] = None,
|
1207
1262
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1208
1263
|
ingress_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DeploymentIngressIpArgs', 'DeploymentIngressIpArgsDict']]]]] = None,
|
@@ -1242,6 +1297,7 @@ class Deployment(pulumi.CustomResource):
|
|
1242
1297
|
:param str resource_name: The unique name of the resulting resource.
|
1243
1298
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1244
1299
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1300
|
+
:param pulumi.Input[str] category: The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
|
1245
1301
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment being referenced.
|
1246
1302
|
:param pulumi.Input[int] cpu_core_count: (Updatable) The Minimum number of OCPUs to be made available for this Deployment.
|
1247
1303
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
@@ -1251,6 +1307,7 @@ class Deployment(pulumi.CustomResource):
|
|
1251
1307
|
:param pulumi.Input[str] deployment_url: The URL of a resource.
|
1252
1308
|
:param pulumi.Input[str] description: (Updatable) Metadata about this specific object.
|
1253
1309
|
:param pulumi.Input[str] display_name: (Updatable) An object's Display Name.
|
1310
|
+
:param pulumi.Input[str] environment_type: (Updatable) Specifies whether the deployment is used in a production or development/testing environment.
|
1254
1311
|
:param pulumi.Input[str] fqdn: (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
|
1255
1312
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1256
1313
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DeploymentIngressIpArgs', 'DeploymentIngressIpArgsDict']]]] ingress_ips: List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
|
@@ -1258,7 +1315,7 @@ class Deployment(pulumi.CustomResource):
|
|
1258
1315
|
:param pulumi.Input[bool] is_healthy: True if all of the aggregate resources are working correctly.
|
1259
1316
|
:param pulumi.Input[bool] is_latest_version: Indicates if the resource is the the latest available version.
|
1260
1317
|
:param pulumi.Input[bool] is_public: (Updatable) True if this object is publicly available.
|
1261
|
-
:param pulumi.Input[bool] is_storage_utilization_limit_exceeded: Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
|
1318
|
+
:param pulumi.Input[bool] is_storage_utilization_limit_exceeded: Deprecated: This field is not updated and will be removed in future versions. If storage utilization exceeds the limit, the respective warning message will appear in deployment messages, which can be accessed through /messages?deploymentId=. Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
|
1262
1319
|
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to a Deployment.
|
1263
1320
|
:param pulumi.Input[str] lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
|
1264
1321
|
:param pulumi.Input[str] lifecycle_sub_state: Possible GGS lifecycle sub-states.
|
@@ -1286,6 +1343,7 @@ class Deployment(pulumi.CustomResource):
|
|
1286
1343
|
|
1287
1344
|
__props__ = _DeploymentState.__new__(_DeploymentState)
|
1288
1345
|
|
1346
|
+
__props__.__dict__["category"] = category
|
1289
1347
|
__props__.__dict__["compartment_id"] = compartment_id
|
1290
1348
|
__props__.__dict__["cpu_core_count"] = cpu_core_count
|
1291
1349
|
__props__.__dict__["defined_tags"] = defined_tags
|
@@ -1295,6 +1353,7 @@ class Deployment(pulumi.CustomResource):
|
|
1295
1353
|
__props__.__dict__["deployment_url"] = deployment_url
|
1296
1354
|
__props__.__dict__["description"] = description
|
1297
1355
|
__props__.__dict__["display_name"] = display_name
|
1356
|
+
__props__.__dict__["environment_type"] = environment_type
|
1298
1357
|
__props__.__dict__["fqdn"] = fqdn
|
1299
1358
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1300
1359
|
__props__.__dict__["ingress_ips"] = ingress_ips
|
@@ -1329,6 +1388,14 @@ class Deployment(pulumi.CustomResource):
|
|
1329
1388
|
__props__.__dict__["time_upgrade_required"] = time_upgrade_required
|
1330
1389
|
return Deployment(resource_name, opts=opts, __props__=__props__)
|
1331
1390
|
|
1391
|
+
@property
|
1392
|
+
@pulumi.getter
|
1393
|
+
def category(self) -> pulumi.Output[str]:
|
1394
|
+
"""
|
1395
|
+
The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
|
1396
|
+
"""
|
1397
|
+
return pulumi.get(self, "category")
|
1398
|
+
|
1332
1399
|
@property
|
1333
1400
|
@pulumi.getter(name="compartmentId")
|
1334
1401
|
def compartment_id(self) -> pulumi.Output[str]:
|
@@ -1401,6 +1468,14 @@ class Deployment(pulumi.CustomResource):
|
|
1401
1468
|
"""
|
1402
1469
|
return pulumi.get(self, "display_name")
|
1403
1470
|
|
1471
|
+
@property
|
1472
|
+
@pulumi.getter(name="environmentType")
|
1473
|
+
def environment_type(self) -> pulumi.Output[str]:
|
1474
|
+
"""
|
1475
|
+
(Updatable) Specifies whether the deployment is used in a production or development/testing environment.
|
1476
|
+
"""
|
1477
|
+
return pulumi.get(self, "environment_type")
|
1478
|
+
|
1404
1479
|
@property
|
1405
1480
|
@pulumi.getter
|
1406
1481
|
def fqdn(self) -> pulumi.Output[str]:
|
@@ -1466,7 +1541,7 @@ class Deployment(pulumi.CustomResource):
|
|
1466
1541
|
@pulumi.getter(name="isStorageUtilizationLimitExceeded")
|
1467
1542
|
def is_storage_utilization_limit_exceeded(self) -> pulumi.Output[bool]:
|
1468
1543
|
"""
|
1469
|
-
Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
|
1544
|
+
Deprecated: This field is not updated and will be removed in future versions. If storage utilization exceeds the limit, the respective warning message will appear in deployment messages, which can be accessed through /messages?deploymentId=. Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
|
1470
1545
|
"""
|
1471
1546
|
return pulumi.get(self, "is_storage_utilization_limit_exceeded")
|
1472
1547
|
|
@@ -27,7 +27,10 @@ class GetDeploymentResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getDeployment.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, compartment_id=None, cpu_core_count=None, defined_tags=None, deployment_backup_id=None, deployment_diagnostic_datas=None, deployment_id=None, deployment_type=None, deployment_url=None, description=None, display_name=None, fqdn=None, freeform_tags=None, id=None, ingress_ips=None, is_auto_scaling_enabled=None, is_healthy=None, is_latest_version=None, is_lock_override=None, is_public=None, is_storage_utilization_limit_exceeded=None, license_model=None, lifecycle_details=None, lifecycle_sub_state=None, load_balancer_id=None, load_balancer_subnet_id=None, locks=None, maintenance_configurations=None, maintenance_windows=None, next_maintenance_action_type=None, next_maintenance_description=None, nsg_ids=None, ogg_datas=None, private_ip_address=None, public_ip_address=None, state=None, storage_utilization_in_bytes=None, subnet_id=None, system_tags=None, time_created=None, time_of_next_maintenance=None, time_ogg_version_supported_until=None, time_updated=None, time_upgrade_required=None):
|
30
|
+
def __init__(__self__, category=None, compartment_id=None, cpu_core_count=None, defined_tags=None, deployment_backup_id=None, deployment_diagnostic_datas=None, deployment_id=None, deployment_type=None, deployment_url=None, description=None, display_name=None, environment_type=None, fqdn=None, freeform_tags=None, id=None, ingress_ips=None, is_auto_scaling_enabled=None, is_healthy=None, is_latest_version=None, is_lock_override=None, is_public=None, is_storage_utilization_limit_exceeded=None, license_model=None, lifecycle_details=None, lifecycle_sub_state=None, load_balancer_id=None, load_balancer_subnet_id=None, locks=None, maintenance_configurations=None, maintenance_windows=None, next_maintenance_action_type=None, next_maintenance_description=None, nsg_ids=None, ogg_datas=None, private_ip_address=None, public_ip_address=None, state=None, storage_utilization_in_bytes=None, subnet_id=None, system_tags=None, time_created=None, time_of_next_maintenance=None, time_ogg_version_supported_until=None, time_updated=None, time_upgrade_required=None):
|
31
|
+
if category and not isinstance(category, str):
|
32
|
+
raise TypeError("Expected argument 'category' to be a str")
|
33
|
+
pulumi.set(__self__, "category", category)
|
31
34
|
if compartment_id and not isinstance(compartment_id, str):
|
32
35
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
33
36
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -58,6 +61,9 @@ class GetDeploymentResult:
|
|
58
61
|
if display_name and not isinstance(display_name, str):
|
59
62
|
raise TypeError("Expected argument 'display_name' to be a str")
|
60
63
|
pulumi.set(__self__, "display_name", display_name)
|
64
|
+
if environment_type and not isinstance(environment_type, str):
|
65
|
+
raise TypeError("Expected argument 'environment_type' to be a str")
|
66
|
+
pulumi.set(__self__, "environment_type", environment_type)
|
61
67
|
if fqdn and not isinstance(fqdn, str):
|
62
68
|
raise TypeError("Expected argument 'fqdn' to be a str")
|
63
69
|
pulumi.set(__self__, "fqdn", fqdn)
|
@@ -158,6 +164,14 @@ class GetDeploymentResult:
|
|
158
164
|
raise TypeError("Expected argument 'time_upgrade_required' to be a str")
|
159
165
|
pulumi.set(__self__, "time_upgrade_required", time_upgrade_required)
|
160
166
|
|
167
|
+
@property
|
168
|
+
@pulumi.getter
|
169
|
+
def category(self) -> str:
|
170
|
+
"""
|
171
|
+
The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
|
172
|
+
"""
|
173
|
+
return pulumi.get(self, "category")
|
174
|
+
|
161
175
|
@property
|
162
176
|
@pulumi.getter(name="compartmentId")
|
163
177
|
def compartment_id(self) -> str:
|
@@ -235,6 +249,14 @@ class GetDeploymentResult:
|
|
235
249
|
"""
|
236
250
|
return pulumi.get(self, "display_name")
|
237
251
|
|
252
|
+
@property
|
253
|
+
@pulumi.getter(name="environmentType")
|
254
|
+
def environment_type(self) -> str:
|
255
|
+
"""
|
256
|
+
Specifies whether the deployment is used in a production or development/testing environment.
|
257
|
+
"""
|
258
|
+
return pulumi.get(self, "environment_type")
|
259
|
+
|
238
260
|
@property
|
239
261
|
@pulumi.getter
|
240
262
|
def fqdn(self) -> str:
|
@@ -308,7 +330,7 @@ class GetDeploymentResult:
|
|
308
330
|
@pulumi.getter(name="isStorageUtilizationLimitExceeded")
|
309
331
|
def is_storage_utilization_limit_exceeded(self) -> bool:
|
310
332
|
"""
|
311
|
-
Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
|
333
|
+
Deprecated: This field is not updated and will be removed in future versions. If storage utilization exceeds the limit, the respective warning message will appear in deployment messages, which can be accessed through /messages?deploymentId=. Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
|
312
334
|
"""
|
313
335
|
return pulumi.get(self, "is_storage_utilization_limit_exceeded")
|
314
336
|
|
@@ -503,6 +525,7 @@ class AwaitableGetDeploymentResult(GetDeploymentResult):
|
|
503
525
|
if False:
|
504
526
|
yield self
|
505
527
|
return GetDeploymentResult(
|
528
|
+
category=self.category,
|
506
529
|
compartment_id=self.compartment_id,
|
507
530
|
cpu_core_count=self.cpu_core_count,
|
508
531
|
defined_tags=self.defined_tags,
|
@@ -513,6 +536,7 @@ class AwaitableGetDeploymentResult(GetDeploymentResult):
|
|
513
536
|
deployment_url=self.deployment_url,
|
514
537
|
description=self.description,
|
515
538
|
display_name=self.display_name,
|
539
|
+
environment_type=self.environment_type,
|
516
540
|
fqdn=self.fqdn,
|
517
541
|
freeform_tags=self.freeform_tags,
|
518
542
|
id=self.id,
|
@@ -573,6 +597,7 @@ def get_deployment(deployment_id: Optional[str] = None,
|
|
573
597
|
__ret__ = pulumi.runtime.invoke('oci:GoldenGate/getDeployment:getDeployment', __args__, opts=opts, typ=GetDeploymentResult).value
|
574
598
|
|
575
599
|
return AwaitableGetDeploymentResult(
|
600
|
+
category=pulumi.get(__ret__, 'category'),
|
576
601
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
577
602
|
cpu_core_count=pulumi.get(__ret__, 'cpu_core_count'),
|
578
603
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
@@ -583,6 +608,7 @@ def get_deployment(deployment_id: Optional[str] = None,
|
|
583
608
|
deployment_url=pulumi.get(__ret__, 'deployment_url'),
|
584
609
|
description=pulumi.get(__ret__, 'description'),
|
585
610
|
display_name=pulumi.get(__ret__, 'display_name'),
|
611
|
+
environment_type=pulumi.get(__ret__, 'environment_type'),
|
586
612
|
fqdn=pulumi.get(__ret__, 'fqdn'),
|
587
613
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
588
614
|
id=pulumi.get(__ret__, 'id'),
|
@@ -640,6 +666,7 @@ def get_deployment_output(deployment_id: Optional[pulumi.Input[str]] = None,
|
|
640
666
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
641
667
|
__ret__ = pulumi.runtime.invoke_output('oci:GoldenGate/getDeployment:getDeployment', __args__, opts=opts, typ=GetDeploymentResult)
|
642
668
|
return __ret__.apply(lambda __response__: GetDeploymentResult(
|
669
|
+
category=pulumi.get(__response__, 'category'),
|
643
670
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
644
671
|
cpu_core_count=pulumi.get(__response__, 'cpu_core_count'),
|
645
672
|
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
@@ -650,6 +677,7 @@ def get_deployment_output(deployment_id: Optional[pulumi.Input[str]] = None,
|
|
650
677
|
deployment_url=pulumi.get(__response__, 'deployment_url'),
|
651
678
|
description=pulumi.get(__response__, 'description'),
|
652
679
|
display_name=pulumi.get(__response__, 'display_name'),
|
680
|
+
environment_type=pulumi.get(__response__, 'environment_type'),
|
653
681
|
fqdn=pulumi.get(__response__, 'fqdn'),
|
654
682
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
655
683
|
id=pulumi.get(__response__, 'id'),
|
@@ -0,0 +1,144 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
18
|
+
|
19
|
+
__all__ = [
|
20
|
+
'GetDeploymentEnvironmentsResult',
|
21
|
+
'AwaitableGetDeploymentEnvironmentsResult',
|
22
|
+
'get_deployment_environments',
|
23
|
+
'get_deployment_environments_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetDeploymentEnvironmentsResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getDeploymentEnvironments.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, compartment_id=None, deployment_environment_collections=None, filters=None, id=None):
|
32
|
+
if compartment_id and not isinstance(compartment_id, str):
|
33
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
35
|
+
if deployment_environment_collections and not isinstance(deployment_environment_collections, list):
|
36
|
+
raise TypeError("Expected argument 'deployment_environment_collections' to be a list")
|
37
|
+
pulumi.set(__self__, "deployment_environment_collections", deployment_environment_collections)
|
38
|
+
if filters and not isinstance(filters, list):
|
39
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
40
|
+
pulumi.set(__self__, "filters", filters)
|
41
|
+
if id and not isinstance(id, str):
|
42
|
+
raise TypeError("Expected argument 'id' to be a str")
|
43
|
+
pulumi.set(__self__, "id", id)
|
44
|
+
|
45
|
+
@property
|
46
|
+
@pulumi.getter(name="compartmentId")
|
47
|
+
def compartment_id(self) -> str:
|
48
|
+
return pulumi.get(self, "compartment_id")
|
49
|
+
|
50
|
+
@property
|
51
|
+
@pulumi.getter(name="deploymentEnvironmentCollections")
|
52
|
+
def deployment_environment_collections(self) -> Sequence['outputs.GetDeploymentEnvironmentsDeploymentEnvironmentCollectionResult']:
|
53
|
+
"""
|
54
|
+
The list of deployment_environment_collection.
|
55
|
+
"""
|
56
|
+
return pulumi.get(self, "deployment_environment_collections")
|
57
|
+
|
58
|
+
@property
|
59
|
+
@pulumi.getter
|
60
|
+
def filters(self) -> Optional[Sequence['outputs.GetDeploymentEnvironmentsFilterResult']]:
|
61
|
+
return pulumi.get(self, "filters")
|
62
|
+
|
63
|
+
@property
|
64
|
+
@pulumi.getter
|
65
|
+
def id(self) -> str:
|
66
|
+
"""
|
67
|
+
The provider-assigned unique ID for this managed resource.
|
68
|
+
"""
|
69
|
+
return pulumi.get(self, "id")
|
70
|
+
|
71
|
+
|
72
|
+
class AwaitableGetDeploymentEnvironmentsResult(GetDeploymentEnvironmentsResult):
|
73
|
+
# pylint: disable=using-constant-test
|
74
|
+
def __await__(self):
|
75
|
+
if False:
|
76
|
+
yield self
|
77
|
+
return GetDeploymentEnvironmentsResult(
|
78
|
+
compartment_id=self.compartment_id,
|
79
|
+
deployment_environment_collections=self.deployment_environment_collections,
|
80
|
+
filters=self.filters,
|
81
|
+
id=self.id)
|
82
|
+
|
83
|
+
|
84
|
+
def get_deployment_environments(compartment_id: Optional[str] = None,
|
85
|
+
filters: Optional[Sequence[Union['GetDeploymentEnvironmentsFilterArgs', 'GetDeploymentEnvironmentsFilterArgsDict']]] = None,
|
86
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDeploymentEnvironmentsResult:
|
87
|
+
"""
|
88
|
+
This data source provides the list of Deployment Environments in Oracle Cloud Infrastructure Golden Gate service.
|
89
|
+
|
90
|
+
Returns an array of DeploymentEnvironmentDescriptor
|
91
|
+
|
92
|
+
## Example Usage
|
93
|
+
|
94
|
+
```python
|
95
|
+
import pulumi
|
96
|
+
import pulumi_oci as oci
|
97
|
+
|
98
|
+
test_deployment_environments = oci.GoldenGate.get_deployment_environments(compartment_id=compartment_id)
|
99
|
+
```
|
100
|
+
|
101
|
+
|
102
|
+
:param str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
|
103
|
+
"""
|
104
|
+
__args__ = dict()
|
105
|
+
__args__['compartmentId'] = compartment_id
|
106
|
+
__args__['filters'] = filters
|
107
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
108
|
+
__ret__ = pulumi.runtime.invoke('oci:GoldenGate/getDeploymentEnvironments:getDeploymentEnvironments', __args__, opts=opts, typ=GetDeploymentEnvironmentsResult).value
|
109
|
+
|
110
|
+
return AwaitableGetDeploymentEnvironmentsResult(
|
111
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
112
|
+
deployment_environment_collections=pulumi.get(__ret__, 'deployment_environment_collections'),
|
113
|
+
filters=pulumi.get(__ret__, 'filters'),
|
114
|
+
id=pulumi.get(__ret__, 'id'))
|
115
|
+
def get_deployment_environments_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
116
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDeploymentEnvironmentsFilterArgs', 'GetDeploymentEnvironmentsFilterArgsDict']]]]] = None,
|
117
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDeploymentEnvironmentsResult]:
|
118
|
+
"""
|
119
|
+
This data source provides the list of Deployment Environments in Oracle Cloud Infrastructure Golden Gate service.
|
120
|
+
|
121
|
+
Returns an array of DeploymentEnvironmentDescriptor
|
122
|
+
|
123
|
+
## Example Usage
|
124
|
+
|
125
|
+
```python
|
126
|
+
import pulumi
|
127
|
+
import pulumi_oci as oci
|
128
|
+
|
129
|
+
test_deployment_environments = oci.GoldenGate.get_deployment_environments(compartment_id=compartment_id)
|
130
|
+
```
|
131
|
+
|
132
|
+
|
133
|
+
:param str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
|
134
|
+
"""
|
135
|
+
__args__ = dict()
|
136
|
+
__args__['compartmentId'] = compartment_id
|
137
|
+
__args__['filters'] = filters
|
138
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
139
|
+
__ret__ = pulumi.runtime.invoke_output('oci:GoldenGate/getDeploymentEnvironments:getDeploymentEnvironments', __args__, opts=opts, typ=GetDeploymentEnvironmentsResult)
|
140
|
+
return __ret__.apply(lambda __response__: GetDeploymentEnvironmentsResult(
|
141
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
142
|
+
deployment_environment_collections=pulumi.get(__response__, 'deployment_environment_collections'),
|
143
|
+
filters=pulumi.get(__response__, 'filters'),
|
144
|
+
id=pulumi.get(__response__, 'id')))
|