pulumi-oci 1.28.0a1711030900__py3-none-any.whl → 1.28.0a1711384732__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 +8 -0
- pulumi_oci/apmtraces/get_query_quick_picks.py +2 -2
- pulumi_oci/apmtraces/get_trace.py +69 -5
- pulumi_oci/apmtraces/get_trace_aggregated_snapshot_data.py +73 -5
- pulumi_oci/apmtraces/get_trace_snapshot_data.py +6 -6
- pulumi_oci/apmtraces/outputs.py +22 -0
- pulumi_oci/database/_inputs.py +4 -4
- pulumi_oci/database/autonomous_database.py +270 -165
- pulumi_oci/database/outputs.py +4 -4
- pulumi_oci/integration/__init__.py +1 -0
- pulumi_oci/integration/_inputs.py +58 -0
- pulumi_oci/integration/get_integration_instance.py +15 -1
- pulumi_oci/integration/integration_instance.py +42 -0
- pulumi_oci/integration/outputs.py +170 -4
- pulumi_oci/integration/private_endpoint_outbound_connection.py +234 -0
- {pulumi_oci-1.28.0a1711030900.dist-info → pulumi_oci-1.28.0a1711384732.dist-info}/METADATA +1 -1
- {pulumi_oci-1.28.0a1711030900.dist-info → pulumi_oci-1.28.0a1711384732.dist-info}/RECORD +19 -18
- {pulumi_oci-1.28.0a1711030900.dist-info → pulumi_oci-1.28.0a1711384732.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.28.0a1711030900.dist-info → pulumi_oci-1.28.0a1711384732.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,234 @@
|
|
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 pulumi
|
8
|
+
import pulumi.runtime
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
+
from .. import _utilities
|
11
|
+
|
12
|
+
__all__ = ['PrivateEndpointOutboundConnectionArgs', 'PrivateEndpointOutboundConnection']
|
13
|
+
|
14
|
+
@pulumi.input_type
|
15
|
+
class PrivateEndpointOutboundConnectionArgs:
|
16
|
+
def __init__(__self__, *,
|
17
|
+
integration_instance_id: pulumi.Input[str],
|
18
|
+
subnet_id: pulumi.Input[str],
|
19
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
20
|
+
state: Optional[pulumi.Input[str]] = None):
|
21
|
+
"""
|
22
|
+
The set of arguments for constructing a PrivateEndpointOutboundConnection resource.
|
23
|
+
"""
|
24
|
+
pulumi.set(__self__, "integration_instance_id", integration_instance_id)
|
25
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
26
|
+
if nsg_ids is not None:
|
27
|
+
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
28
|
+
if state is not None:
|
29
|
+
pulumi.set(__self__, "state", state)
|
30
|
+
|
31
|
+
@property
|
32
|
+
@pulumi.getter(name="integrationInstanceId")
|
33
|
+
def integration_instance_id(self) -> pulumi.Input[str]:
|
34
|
+
return pulumi.get(self, "integration_instance_id")
|
35
|
+
|
36
|
+
@integration_instance_id.setter
|
37
|
+
def integration_instance_id(self, value: pulumi.Input[str]):
|
38
|
+
pulumi.set(self, "integration_instance_id", value)
|
39
|
+
|
40
|
+
@property
|
41
|
+
@pulumi.getter(name="subnetId")
|
42
|
+
def subnet_id(self) -> pulumi.Input[str]:
|
43
|
+
return pulumi.get(self, "subnet_id")
|
44
|
+
|
45
|
+
@subnet_id.setter
|
46
|
+
def subnet_id(self, value: pulumi.Input[str]):
|
47
|
+
pulumi.set(self, "subnet_id", value)
|
48
|
+
|
49
|
+
@property
|
50
|
+
@pulumi.getter(name="nsgIds")
|
51
|
+
def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
52
|
+
return pulumi.get(self, "nsg_ids")
|
53
|
+
|
54
|
+
@nsg_ids.setter
|
55
|
+
def nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
56
|
+
pulumi.set(self, "nsg_ids", value)
|
57
|
+
|
58
|
+
@property
|
59
|
+
@pulumi.getter
|
60
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
61
|
+
return pulumi.get(self, "state")
|
62
|
+
|
63
|
+
@state.setter
|
64
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
65
|
+
pulumi.set(self, "state", value)
|
66
|
+
|
67
|
+
|
68
|
+
@pulumi.input_type
|
69
|
+
class _PrivateEndpointOutboundConnectionState:
|
70
|
+
def __init__(__self__, *,
|
71
|
+
integration_instance_id: Optional[pulumi.Input[str]] = None,
|
72
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
73
|
+
state: Optional[pulumi.Input[str]] = None,
|
74
|
+
subnet_id: Optional[pulumi.Input[str]] = None):
|
75
|
+
"""
|
76
|
+
Input properties used for looking up and filtering PrivateEndpointOutboundConnection resources.
|
77
|
+
"""
|
78
|
+
if integration_instance_id is not None:
|
79
|
+
pulumi.set(__self__, "integration_instance_id", integration_instance_id)
|
80
|
+
if nsg_ids is not None:
|
81
|
+
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
82
|
+
if state is not None:
|
83
|
+
pulumi.set(__self__, "state", state)
|
84
|
+
if subnet_id is not None:
|
85
|
+
pulumi.set(__self__, "subnet_id", subnet_id)
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter(name="integrationInstanceId")
|
89
|
+
def integration_instance_id(self) -> Optional[pulumi.Input[str]]:
|
90
|
+
return pulumi.get(self, "integration_instance_id")
|
91
|
+
|
92
|
+
@integration_instance_id.setter
|
93
|
+
def integration_instance_id(self, value: Optional[pulumi.Input[str]]):
|
94
|
+
pulumi.set(self, "integration_instance_id", value)
|
95
|
+
|
96
|
+
@property
|
97
|
+
@pulumi.getter(name="nsgIds")
|
98
|
+
def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
99
|
+
return pulumi.get(self, "nsg_ids")
|
100
|
+
|
101
|
+
@nsg_ids.setter
|
102
|
+
def nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
103
|
+
pulumi.set(self, "nsg_ids", value)
|
104
|
+
|
105
|
+
@property
|
106
|
+
@pulumi.getter
|
107
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
108
|
+
return pulumi.get(self, "state")
|
109
|
+
|
110
|
+
@state.setter
|
111
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
112
|
+
pulumi.set(self, "state", value)
|
113
|
+
|
114
|
+
@property
|
115
|
+
@pulumi.getter(name="subnetId")
|
116
|
+
def subnet_id(self) -> Optional[pulumi.Input[str]]:
|
117
|
+
return pulumi.get(self, "subnet_id")
|
118
|
+
|
119
|
+
@subnet_id.setter
|
120
|
+
def subnet_id(self, value: Optional[pulumi.Input[str]]):
|
121
|
+
pulumi.set(self, "subnet_id", value)
|
122
|
+
|
123
|
+
|
124
|
+
class PrivateEndpointOutboundConnection(pulumi.CustomResource):
|
125
|
+
@overload
|
126
|
+
def __init__(__self__,
|
127
|
+
resource_name: str,
|
128
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
129
|
+
integration_instance_id: Optional[pulumi.Input[str]] = None,
|
130
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
131
|
+
state: Optional[pulumi.Input[str]] = None,
|
132
|
+
subnet_id: Optional[pulumi.Input[str]] = None,
|
133
|
+
__props__=None):
|
134
|
+
"""
|
135
|
+
Create a PrivateEndpointOutboundConnection resource with the given unique name, props, and options.
|
136
|
+
:param str resource_name: The name of the resource.
|
137
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
138
|
+
"""
|
139
|
+
...
|
140
|
+
@overload
|
141
|
+
def __init__(__self__,
|
142
|
+
resource_name: str,
|
143
|
+
args: PrivateEndpointOutboundConnectionArgs,
|
144
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
145
|
+
"""
|
146
|
+
Create a PrivateEndpointOutboundConnection resource with the given unique name, props, and options.
|
147
|
+
:param str resource_name: The name of the resource.
|
148
|
+
:param PrivateEndpointOutboundConnectionArgs args: The arguments to use to populate this resource's properties.
|
149
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
150
|
+
"""
|
151
|
+
...
|
152
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
153
|
+
resource_args, opts = _utilities.get_resource_args_opts(PrivateEndpointOutboundConnectionArgs, pulumi.ResourceOptions, *args, **kwargs)
|
154
|
+
if resource_args is not None:
|
155
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
156
|
+
else:
|
157
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
158
|
+
|
159
|
+
def _internal_init(__self__,
|
160
|
+
resource_name: str,
|
161
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
162
|
+
integration_instance_id: Optional[pulumi.Input[str]] = None,
|
163
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
164
|
+
state: Optional[pulumi.Input[str]] = None,
|
165
|
+
subnet_id: Optional[pulumi.Input[str]] = None,
|
166
|
+
__props__=None):
|
167
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
168
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
169
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
170
|
+
if opts.id is None:
|
171
|
+
if __props__ is not None:
|
172
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
173
|
+
__props__ = PrivateEndpointOutboundConnectionArgs.__new__(PrivateEndpointOutboundConnectionArgs)
|
174
|
+
|
175
|
+
if integration_instance_id is None and not opts.urn:
|
176
|
+
raise TypeError("Missing required property 'integration_instance_id'")
|
177
|
+
__props__.__dict__["integration_instance_id"] = integration_instance_id
|
178
|
+
__props__.__dict__["nsg_ids"] = nsg_ids
|
179
|
+
__props__.__dict__["state"] = state
|
180
|
+
if subnet_id is None and not opts.urn:
|
181
|
+
raise TypeError("Missing required property 'subnet_id'")
|
182
|
+
__props__.__dict__["subnet_id"] = subnet_id
|
183
|
+
super(PrivateEndpointOutboundConnection, __self__).__init__(
|
184
|
+
'oci:Integration/privateEndpointOutboundConnection:PrivateEndpointOutboundConnection',
|
185
|
+
resource_name,
|
186
|
+
__props__,
|
187
|
+
opts)
|
188
|
+
|
189
|
+
@staticmethod
|
190
|
+
def get(resource_name: str,
|
191
|
+
id: pulumi.Input[str],
|
192
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
193
|
+
integration_instance_id: Optional[pulumi.Input[str]] = None,
|
194
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
195
|
+
state: Optional[pulumi.Input[str]] = None,
|
196
|
+
subnet_id: Optional[pulumi.Input[str]] = None) -> 'PrivateEndpointOutboundConnection':
|
197
|
+
"""
|
198
|
+
Get an existing PrivateEndpointOutboundConnection resource's state with the given name, id, and optional extra
|
199
|
+
properties used to qualify the lookup.
|
200
|
+
|
201
|
+
:param str resource_name: The unique name of the resulting resource.
|
202
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
203
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
204
|
+
"""
|
205
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
206
|
+
|
207
|
+
__props__ = _PrivateEndpointOutboundConnectionState.__new__(_PrivateEndpointOutboundConnectionState)
|
208
|
+
|
209
|
+
__props__.__dict__["integration_instance_id"] = integration_instance_id
|
210
|
+
__props__.__dict__["nsg_ids"] = nsg_ids
|
211
|
+
__props__.__dict__["state"] = state
|
212
|
+
__props__.__dict__["subnet_id"] = subnet_id
|
213
|
+
return PrivateEndpointOutboundConnection(resource_name, opts=opts, __props__=__props__)
|
214
|
+
|
215
|
+
@property
|
216
|
+
@pulumi.getter(name="integrationInstanceId")
|
217
|
+
def integration_instance_id(self) -> pulumi.Output[str]:
|
218
|
+
return pulumi.get(self, "integration_instance_id")
|
219
|
+
|
220
|
+
@property
|
221
|
+
@pulumi.getter(name="nsgIds")
|
222
|
+
def nsg_ids(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
223
|
+
return pulumi.get(self, "nsg_ids")
|
224
|
+
|
225
|
+
@property
|
226
|
+
@pulumi.getter
|
227
|
+
def state(self) -> pulumi.Output[str]:
|
228
|
+
return pulumi.get(self, "state")
|
229
|
+
|
230
|
+
@property
|
231
|
+
@pulumi.getter(name="subnetId")
|
232
|
+
def subnet_id(self) -> pulumi.Output[str]:
|
233
|
+
return pulumi.get(self, "subnet_id")
|
234
|
+
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pulumi_oci/__init__.py,sha256=
|
1
|
+
pulumi_oci/__init__.py,sha256=qYvxF6G6BJOX60cu-P_z47mp_YsQLIJ791o7F5Hk49A,146630
|
2
2
|
pulumi_oci/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
3
3
|
pulumi_oci/provider.py,sha256=xb4xvGxOAQDmgHlar9M1AaiSt9ZiwtfITBZBtsdkfbg,24464
|
4
4
|
pulumi_oci/pulumi-plugin.json,sha256=M43fXbtz4Dlbv_jxw-1L4SOTGFmJN2lYa7ePzB7DmBs,40
|
@@ -152,11 +152,11 @@ pulumi_oci/apmsynthetics/outputs.py,sha256=iuRhbj-XM17gb8K_3eflFLvpsoDy0ytzyda-z
|
|
152
152
|
pulumi_oci/apmsynthetics/script.py,sha256=-1r7m_b2uO4vpGaSLc65H43JUWqnigmLi0eGxGFl7_c,38330
|
153
153
|
pulumi_oci/apmtraces/__init__.py,sha256=Dgjx9uWFNtS8iGxLIR9w7ix8UR52hbu4BHgvo8cc8cU,465
|
154
154
|
pulumi_oci/apmtraces/_inputs.py,sha256=rdVeXRPtOLvPTcMimXK3W4p4PANt5E33IzgQIeC3cCQ,1398
|
155
|
-
pulumi_oci/apmtraces/get_query_quick_picks.py,sha256
|
156
|
-
pulumi_oci/apmtraces/get_trace.py,sha256=
|
157
|
-
pulumi_oci/apmtraces/get_trace_aggregated_snapshot_data.py,sha256=
|
158
|
-
pulumi_oci/apmtraces/get_trace_snapshot_data.py,sha256=
|
159
|
-
pulumi_oci/apmtraces/outputs.py,sha256=
|
155
|
+
pulumi_oci/apmtraces/get_query_quick_picks.py,sha256=-w_LDQSGYi1geayl793Bgrq5rF9Crrm69PtfAQndte0,5145
|
156
|
+
pulumi_oci/apmtraces/get_trace.py,sha256=W5Q90MvkFXPFfhLxK5ZdBpBNuMRM_B5Hj56pGz7hRbs,20515
|
157
|
+
pulumi_oci/apmtraces/get_trace_aggregated_snapshot_data.py,sha256=jtOC1kZTr2-Oje-ehgYF4XEqI2cFSl-F53VF5thkAu4,9166
|
158
|
+
pulumi_oci/apmtraces/get_trace_snapshot_data.py,sha256=t9YSZbG82x39TVuSU0xdI4FvLupowuDCfkdUtHYd3Ko,9708
|
159
|
+
pulumi_oci/apmtraces/outputs.py,sha256=X_vGriOKU9kgRZnhjTN-gGsUYT1qEEMhvTPKvP8cgOU,23829
|
160
160
|
pulumi_oci/appmgmtcontrol/__init__.py,sha256=7_IRkdYqMK2mhMYjmeqqrulNTOikX4X_YtJDRji-wB8,432
|
161
161
|
pulumi_oci/appmgmtcontrol/_inputs.py,sha256=-eG3EtB9AjSGvGt8VoHFYkHnuCZ_QkPFZvhhph99054,1404
|
162
162
|
pulumi_oci/appmgmtcontrol/get_monitored_instance.py,sha256=BBgN-8esE1NMSCd5OybCjQzVwz_Pllzd8N_97DMaycY,9498
|
@@ -635,13 +635,13 @@ pulumi_oci/core/volume_group.py,sha256=jyFtsxJoVk3OXXIE0hIMNc6nK-D9JMihhNmbIdl9b
|
|
635
635
|
pulumi_oci/core/volume_group_backup.py,sha256=SrfOm20mWLPaUdHY9Eokek0sqVwGYGMF76BCmyRh3dA,44256
|
636
636
|
pulumi_oci/core/vtap.py,sha256=_SuvrZNB7f9bGYbdrqogrB2D33NpMP7SixblXfGabjk,61791
|
637
637
|
pulumi_oci/database/__init__.py,sha256=ewxEi8ovc0VRo9yzJwFULMbKYCCi_8Kt6cvHQxtNfAs,8552
|
638
|
-
pulumi_oci/database/_inputs.py,sha256=
|
638
|
+
pulumi_oci/database/_inputs.py,sha256=zczEFuhMNqcQPOMesjswMbeEVh-24cTLT9OH0MthiBk,649084
|
639
639
|
pulumi_oci/database/application_vip.py,sha256=0LDiCa32KE0oTOuLTyNWONHcemkAOt3UjfgBduM23jw,29315
|
640
640
|
pulumi_oci/database/autonomous_container_database.py,sha256=6SpVtLgsbVbNx_X4fwpgoPEyxigLp-9EXdqwcFK_nIk,158366
|
641
641
|
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=x5zRCQ3O-770BK_qKDxXjr7br4DaarWnfZ6SoJEOY3w,75981
|
642
642
|
pulumi_oci/database/autonomous_container_database_dataguard_association_operation.py,sha256=6jrD_HRtGgP216BOlnjttB0mkeIwZ9DMHDkVYBcklDI,18247
|
643
643
|
pulumi_oci/database/autonomous_container_database_dataguard_role_change.py,sha256=dAjgy90q3k5T6dtvfFzJFXQrKECSyK08MCECei2BJ1k,12249
|
644
|
-
pulumi_oci/database/autonomous_database.py,sha256=
|
644
|
+
pulumi_oci/database/autonomous_database.py,sha256=XhueV4DpPjUc3NbfQS95o0Mc0dK-6Zw4uuM5WWXB8Ls,440069
|
645
645
|
pulumi_oci/database/autonomous_database_backup.py,sha256=cb2oUMQz69XNWieiksL5OjWb6BiuqqpNxi7Tcs5xW40,42603
|
646
646
|
pulumi_oci/database/autonomous_database_instance_wallet_management.py,sha256=NJQ8f8c89kd4ghibqVyife627c-kATdeCibzAvZej4Q,18817
|
647
647
|
pulumi_oci/database/autonomous_database_regional_wallet_management.py,sha256=ua0QRA3fDiZQQ4kTHTW5U__HAFdULmnKOomEvMiRpMU,15757
|
@@ -810,7 +810,7 @@ pulumi_oci/database/get_vm_clusters.py,sha256=oNDBSSJjyz8bMQPesLPBTPTcysF9xZUUZo
|
|
810
810
|
pulumi_oci/database/key_store.py,sha256=Wmrh5W4zSMxDK81B1NLT3osJTc2FqEDMElQKgieHA0U,25712
|
811
811
|
pulumi_oci/database/maintenance_run.py,sha256=kIJoBN-1pZix6sRD94U5OUPlgZSb2vhBIe3mkxBD64U,58772
|
812
812
|
pulumi_oci/database/oneoff_patch.py,sha256=6_XXLH-PoBvGQVVaB5kzIWq7vgWOvGVcq4K59QRT1qA,38652
|
813
|
-
pulumi_oci/database/outputs.py,sha256=
|
813
|
+
pulumi_oci/database/outputs.py,sha256=E9fxK6DCwzqS0K2nsm8DYswU66tGDw37NdhYtOGFU5s,2055880
|
814
814
|
pulumi_oci/database/pluggable_database.py,sha256=UYXCRUig97Hz22B-0KChjDoWaxdFPgNNbwfUpcVRM5g,71689
|
815
815
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=ASic1y903gVSRrAJqHY7CIWvjMvqFiOoMVXLzt2DGlY,52657
|
816
816
|
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=J4p1pkt1NUBateXMDzeIM4qQDTAxPNDqVXIuQlAbXDo,50628
|
@@ -1728,12 +1728,13 @@ pulumi_oci/identity/user_capabilities_management.py,sha256=crTvXRjeaZjJoy1s0nzn8
|
|
1728
1728
|
pulumi_oci/identity/user_group_membership.py,sha256=HHoAnoOT_ue3g_RYIGvtZDEOaLfR29uunnto2jnHHgA,16131
|
1729
1729
|
pulumi_oci/identitydataplane/__init__.py,sha256=3p2MSIiFqHpIMFFl1thue91_oqZ4koRyvoMkvsjIyzo,314
|
1730
1730
|
pulumi_oci/identitydataplane/generated_scoped_access_token.py,sha256=67CcfUwMemicmJGjuxSdL2j1KTZk02iaduQfRU-n9HU,13158
|
1731
|
-
pulumi_oci/integration/__init__.py,sha256=
|
1732
|
-
pulumi_oci/integration/_inputs.py,sha256=
|
1733
|
-
pulumi_oci/integration/get_integration_instance.py,sha256=
|
1731
|
+
pulumi_oci/integration/__init__.py,sha256=iqBDMZyU6TO-gNDI4UKSZ9DjUI7498ckz8guq5zCjjE,483
|
1732
|
+
pulumi_oci/integration/_inputs.py,sha256=0PRFy1wr6JalsaQ6bx7JdbBF7WoPMHlfUvL_8yxhrmY,24061
|
1733
|
+
pulumi_oci/integration/get_integration_instance.py,sha256=_WIiG2-3iy_FHwGJipFeL5R4df-fmmv1UGBCiPQ0IZQ,19198
|
1734
1734
|
pulumi_oci/integration/get_integration_instances.py,sha256=Z1DllN78mUXCtEvQvFCYiRjq608rzT8DV2Hp_D2HodY,7240
|
1735
|
-
pulumi_oci/integration/integration_instance.py,sha256=
|
1736
|
-
pulumi_oci/integration/outputs.py,sha256=
|
1735
|
+
pulumi_oci/integration/integration_instance.py,sha256=e8sp8LRp-V3E5_Dy_7mYUG8TotGf__h1_tmUrEHEV28,71692
|
1736
|
+
pulumi_oci/integration/outputs.py,sha256=rVxAsWDi2ICt15K3z_iUj6bln2-t1hIDdZeywX00-ZE,67539
|
1737
|
+
pulumi_oci/integration/private_endpoint_outbound_connection.py,sha256=KGbQ2rXbQYEceNg7XxfJbaY_bE9UwtQP3tpL5pxeFZI,10039
|
1737
1738
|
pulumi_oci/jms/__init__.py,sha256=mp4toqDFPlXJC2g1ozPYhqyU9Npv-KesDAUz4ny7UM4,2038
|
1738
1739
|
pulumi_oci/jms/_inputs.py,sha256=ecSPqKRTDNbfzV-9B6HFTqfuDw2im2EnKrvoL-jp-yE,31062
|
1739
1740
|
pulumi_oci/jms/fleet.py,sha256=d9V0VNiOOR8-K3YoTqRmXqM3UWI5eXt0GWR3stbu_8g,47082
|
@@ -2643,7 +2644,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=w4BfPa3_MHLImHTqz_eTHWcgT
|
|
2643
2644
|
pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=LfjsBam9uc4uT6xy9jvdA_sIRBxI-vJmkYiX0fFCpL0,14380
|
2644
2645
|
pulumi_oci/waf/network_address_list.py,sha256=kbj6jS11KnGJj-ey2RUaFNWJJHYG0_ZLVxUhja1vVx0,32809
|
2645
2646
|
pulumi_oci/waf/outputs.py,sha256=L_Ay91T3B8xIip2QKrOOW99UlLifV9ByKqO-js2Y84w,227577
|
2646
|
-
pulumi_oci-1.28.
|
2647
|
-
pulumi_oci-1.28.
|
2648
|
-
pulumi_oci-1.28.
|
2649
|
-
pulumi_oci-1.28.
|
2647
|
+
pulumi_oci-1.28.0a1711384732.dist-info/METADATA,sha256=Ngx8xV_4OzzKgkcFNC75DxHiVWYcYEcCVcGPEWCArbs,3899
|
2648
|
+
pulumi_oci-1.28.0a1711384732.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
2649
|
+
pulumi_oci-1.28.0a1711384732.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2650
|
+
pulumi_oci-1.28.0a1711384732.dist-info/RECORD,,
|
File without changes
|
{pulumi_oci-1.28.0a1711030900.dist-info → pulumi_oci-1.28.0a1711384732.dist-info}/top_level.txt
RENAMED
File without changes
|