pulumi-oci 2.13.0__py3-none-any.whl → 2.13.0a1729198151__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 +19 -24
- pulumi_oci/containerengine/_inputs.py +0 -341
- pulumi_oci/containerengine/cluster.py +0 -64
- pulumi_oci/containerengine/get_cluster.py +1 -12
- pulumi_oci/containerengine/outputs.py +0 -582
- pulumi_oci/core/_inputs.py +37 -299
- pulumi_oci/core/boot_volume.py +5 -90
- pulumi_oci/core/get_block_volume_replica.py +1 -15
- pulumi_oci/core/get_boot_volume.py +4 -15
- pulumi_oci/core/get_boot_volume_replica.py +1 -15
- pulumi_oci/core/get_volume.py +4 -18
- pulumi_oci/core/instance_configuration.py +0 -4
- pulumi_oci/core/outputs.py +46 -573
- pulumi_oci/core/volume.py +12 -110
- pulumi_oci/core/volume_backup_policy_assignment.py +19 -68
- pulumi_oci/core/volume_group.py +5 -56
- pulumi_oci/datasafe/__init__.py +0 -1
- pulumi_oci/desktops/_inputs.py +13 -175
- pulumi_oci/desktops/desktop_pool.py +0 -67
- pulumi_oci/desktops/get_desktop_pool.py +1 -16
- pulumi_oci/desktops/outputs.py +18 -339
- pulumi_oci/dns/__init__.py +0 -2
- pulumi_oci/dns/_inputs.py +12 -1157
- pulumi_oci/dns/action_create_zone_from_zone_file.py +2 -42
- pulumi_oci/dns/get_records.py +13 -45
- pulumi_oci/dns/get_resolver.py +6 -8
- pulumi_oci/dns/get_resolver_endpoint.py +6 -8
- 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 +10 -12
- pulumi_oci/dns/get_view.py +4 -8
- pulumi_oci/dns/get_views.py +12 -12
- pulumi_oci/dns/get_zones.py +13 -33
- pulumi_oci/dns/outputs.py +79 -1388
- 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 +41 -50
- pulumi_oci/dns/zone.py +17 -176
- pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
- pulumi_oci/globallydistributeddatabase/_inputs.py +1289 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +323 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +191 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +660 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +191 -0
- pulumi_oci/globallydistributeddatabase/outputs.py +2063 -0
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +747 -0
- pulumi_oci/globallydistributeddatabase/sharded_database.py +1821 -0
- pulumi_oci/goldengate/__init__.py +0 -1
- pulumi_oci/goldengate/_inputs.py +0 -165
- pulumi_oci/goldengate/connection.py +35 -49
- pulumi_oci/goldengate/database_registration.py +7 -7
- pulumi_oci/goldengate/deployment.py +4 -79
- pulumi_oci/goldengate/get_deployment.py +2 -30
- pulumi_oci/goldengate/outputs.py +2 -409
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729198151.dist-info}/METADATA +1 -1
- {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729198151.dist-info}/RECORD +61 -56
- pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +0 -271
- pulumi_oci/dns/zone_promote_dnssec_key_version.py +0 -328
- pulumi_oci/dns/zone_stage_dnssec_key_version.py +0 -318
- pulumi_oci/goldengate/get_deployment_environments.py +0 -144
- {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729198151.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729198151.dist-info}/top_level.txt +0 -0
@@ -1,144 +0,0 @@
|
|
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')))
|
File without changes
|
File without changes
|