pulumi-oci 1.31.0a1712742264__py3-none-any.whl → 1.32.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 +16 -0
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +192 -0
- pulumi_oci/database/autonomous_container_database.py +83 -8
- pulumi_oci/database/autonomous_database_software_image.py +638 -0
- pulumi_oci/database/autonomous_vm_cluster.py +12 -4
- pulumi_oci/database/get_autonomous_container_database.py +26 -5
- pulumi_oci/database/get_autonomous_container_database_resource_usage.py +3 -3
- pulumi_oci/database/get_autonomous_database_software_image.py +262 -0
- pulumi_oci/database/get_autonomous_database_software_images.py +200 -0
- pulumi_oci/database/get_autonomous_vm_cluster.py +3 -1
- pulumi_oci/database/outputs.py +538 -28
- pulumi_oci/datascience/_inputs.py +17 -1
- pulumi_oci/datascience/model_deployment.py +2 -0
- pulumi_oci/datascience/outputs.py +39 -3
- pulumi_oci/meteringcomputation/__init__.py +3 -0
- pulumi_oci/meteringcomputation/_inputs.py +110 -0
- pulumi_oci/meteringcomputation/get_schedule.py +1 -1
- pulumi_oci/meteringcomputation/get_scheduled_run.py +2 -2
- pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_group.py +173 -0
- pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_groups.py +157 -0
- pulumi_oci/meteringcomputation/outputs.py +292 -2
- pulumi_oci/meteringcomputation/schedule.py +7 -7
- pulumi_oci/meteringcomputation/usage_statement_email_recipients_group.py +392 -0
- pulumi_oci/opa/opa_instance.py +41 -22
- pulumi_oci/psql/_inputs.py +4 -4
- pulumi_oci/psql/db_system.py +7 -7
- pulumi_oci/psql/outputs.py +4 -4
- pulumi_oci/redis/get_redis_cluster.py +14 -1
- pulumi_oci/redis/outputs.py +11 -0
- pulumi_oci/redis/redis_cluster.py +52 -3
- {pulumi_oci-1.31.0a1712742264.dist-info → pulumi_oci-1.32.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.31.0a1712742264.dist-info → pulumi_oci-1.32.0.dist-info}/RECORD +35 -29
- {pulumi_oci-1.31.0a1712742264.dist-info → pulumi_oci-1.32.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.31.0a1712742264.dist-info → pulumi_oci-1.32.0.dist-info}/top_level.txt +0 -0
pulumi_oci/psql/db_system.py
CHANGED
@@ -42,7 +42,7 @@ class DbSystemArgs:
|
|
42
42
|
:param pulumi.Input[str] db_version: Version of database system software.
|
43
43
|
:param pulumi.Input[str] display_name: Display name of the database instance node. Avoid entering confidential information.
|
44
44
|
:param pulumi.Input['DbSystemNetworkDetailsArgs'] network_details: Network details for the database system.
|
45
|
-
:param pulumi.Input[str] shape: The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `VM.Standard.E4.Flex
|
45
|
+
:param pulumi.Input[str] shape: The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `PostgreSQL.VM.Standard.E4.Flex.2.32GB`. Find more about the supported shapes [here](https://docs.oracle.com/en-us/iaas/Content/postgresql/supported-shapes.htm).
|
46
46
|
:param pulumi.Input['DbSystemStorageDetailsArgs'] storage_details: (Updatable) Storage details of the database system.
|
47
47
|
:param pulumi.Input[str] apply_config: Whether a configuration update requires a restart of the database instance or a reload of the configuration. Some configuration changes require a restart of database instances to be applied. Apply config can be passed as `RESTART` or `RELOAD`
|
48
48
|
:param pulumi.Input[str] config_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the configuration associated with the database system.
|
@@ -150,7 +150,7 @@ class DbSystemArgs:
|
|
150
150
|
@pulumi.getter
|
151
151
|
def shape(self) -> pulumi.Input[str]:
|
152
152
|
"""
|
153
|
-
The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `VM.Standard.E4.Flex
|
153
|
+
The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `PostgreSQL.VM.Standard.E4.Flex.2.32GB`. Find more about the supported shapes [here](https://docs.oracle.com/en-us/iaas/Content/postgresql/supported-shapes.htm).
|
154
154
|
"""
|
155
155
|
return pulumi.get(self, "shape")
|
156
156
|
|
@@ -394,7 +394,7 @@ class _DbSystemState:
|
|
394
394
|
:param pulumi.Input['DbSystemManagementPolicyArgs'] management_policy: (Updatable) PostgreSQL database system management policy update details.
|
395
395
|
:param pulumi.Input['DbSystemNetworkDetailsArgs'] network_details: Network details for the database system.
|
396
396
|
:param pulumi.Input[Sequence[pulumi.Input['DbSystemPatchOperationArgs']]] patch_operations: (Updatable) For adding and removing from read replica database instances. Please remove the patch_operations after it is applied. Update the instance_count arrodrandly. Cannot be specified when creating the resource.
|
397
|
-
:param pulumi.Input[str] shape: The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `VM.Standard.E4.Flex
|
397
|
+
:param pulumi.Input[str] shape: The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `PostgreSQL.VM.Standard.E4.Flex.2.32GB`. Find more about the supported shapes [here](https://docs.oracle.com/en-us/iaas/Content/postgresql/supported-shapes.htm).
|
398
398
|
:param pulumi.Input['DbSystemSourceArgs'] source: The source used to restore the database system.
|
399
399
|
:param pulumi.Input[str] state: The current state of the database system.
|
400
400
|
:param pulumi.Input['DbSystemStorageDetailsArgs'] storage_details: (Updatable) Storage details of the database system.
|
@@ -694,7 +694,7 @@ class _DbSystemState:
|
|
694
694
|
@pulumi.getter
|
695
695
|
def shape(self) -> Optional[pulumi.Input[str]]:
|
696
696
|
"""
|
697
|
-
The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `VM.Standard.E4.Flex
|
697
|
+
The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `PostgreSQL.VM.Standard.E4.Flex.2.32GB`. Find more about the supported shapes [here](https://docs.oracle.com/en-us/iaas/Content/postgresql/supported-shapes.htm).
|
698
698
|
"""
|
699
699
|
return pulumi.get(self, "shape")
|
700
700
|
|
@@ -921,7 +921,7 @@ class DbSystem(pulumi.CustomResource):
|
|
921
921
|
:param pulumi.Input[pulumi.InputType['DbSystemManagementPolicyArgs']] management_policy: (Updatable) PostgreSQL database system management policy update details.
|
922
922
|
:param pulumi.Input[pulumi.InputType['DbSystemNetworkDetailsArgs']] network_details: Network details for the database system.
|
923
923
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DbSystemPatchOperationArgs']]]] patch_operations: (Updatable) For adding and removing from read replica database instances. Please remove the patch_operations after it is applied. Update the instance_count arrodrandly. Cannot be specified when creating the resource.
|
924
|
-
:param pulumi.Input[str] shape: The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `VM.Standard.E4.Flex
|
924
|
+
:param pulumi.Input[str] shape: The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `PostgreSQL.VM.Standard.E4.Flex.2.32GB`. Find more about the supported shapes [here](https://docs.oracle.com/en-us/iaas/Content/postgresql/supported-shapes.htm).
|
925
925
|
:param pulumi.Input[pulumi.InputType['DbSystemSourceArgs']] source: The source used to restore the database system.
|
926
926
|
:param pulumi.Input[pulumi.InputType['DbSystemStorageDetailsArgs']] storage_details: (Updatable) Storage details of the database system.
|
927
927
|
:param pulumi.Input[str] system_type: Type of the database system.
|
@@ -1168,7 +1168,7 @@ class DbSystem(pulumi.CustomResource):
|
|
1168
1168
|
:param pulumi.Input[pulumi.InputType['DbSystemManagementPolicyArgs']] management_policy: (Updatable) PostgreSQL database system management policy update details.
|
1169
1169
|
:param pulumi.Input[pulumi.InputType['DbSystemNetworkDetailsArgs']] network_details: Network details for the database system.
|
1170
1170
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DbSystemPatchOperationArgs']]]] patch_operations: (Updatable) For adding and removing from read replica database instances. Please remove the patch_operations after it is applied. Update the instance_count arrodrandly. Cannot be specified when creating the resource.
|
1171
|
-
:param pulumi.Input[str] shape: The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `VM.Standard.E4.Flex
|
1171
|
+
:param pulumi.Input[str] shape: The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `PostgreSQL.VM.Standard.E4.Flex.2.32GB`. Find more about the supported shapes [here](https://docs.oracle.com/en-us/iaas/Content/postgresql/supported-shapes.htm).
|
1172
1172
|
:param pulumi.Input[pulumi.InputType['DbSystemSourceArgs']] source: The source used to restore the database system.
|
1173
1173
|
:param pulumi.Input[str] state: The current state of the database system.
|
1174
1174
|
:param pulumi.Input[pulumi.InputType['DbSystemStorageDetailsArgs']] storage_details: (Updatable) Storage details of the database system.
|
@@ -1370,7 +1370,7 @@ class DbSystem(pulumi.CustomResource):
|
|
1370
1370
|
@pulumi.getter
|
1371
1371
|
def shape(self) -> pulumi.Output[str]:
|
1372
1372
|
"""
|
1373
|
-
The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `VM.Standard.E4.Flex
|
1373
|
+
The name of the shape for the database instance node. Use the /shapes API for accepted shapes. Example: `PostgreSQL.VM.Standard.E4.Flex.2.32GB`. Find more about the supported shapes [here](https://docs.oracle.com/en-us/iaas/Content/postgresql/supported-shapes.htm).
|
1374
1374
|
"""
|
1375
1375
|
return pulumi.get(self, "shape")
|
1376
1376
|
|
pulumi_oci/psql/outputs.py
CHANGED
@@ -973,7 +973,7 @@ class DbSystemSource(dict):
|
|
973
973
|
backup_id: Optional[str] = None,
|
974
974
|
is_having_restore_config_overrides: Optional[bool] = None):
|
975
975
|
"""
|
976
|
-
:param str source_type: The source descriminator.
|
976
|
+
:param str source_type: The source descriminator. Example: `{"source_type": "BACKUP"}`.
|
977
977
|
:param str backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database system backup.
|
978
978
|
:param bool is_having_restore_config_overrides: Deprecated. Don't use.
|
979
979
|
"""
|
@@ -987,7 +987,7 @@ class DbSystemSource(dict):
|
|
987
987
|
@pulumi.getter(name="sourceType")
|
988
988
|
def source_type(self) -> str:
|
989
989
|
"""
|
990
|
-
The source descriminator.
|
990
|
+
The source descriminator. Example: `{"source_type": "BACKUP"}`.
|
991
991
|
"""
|
992
992
|
return pulumi.get(self, "source_type")
|
993
993
|
|
@@ -1044,7 +1044,7 @@ class DbSystemStorageDetails(dict):
|
|
1044
1044
|
** IMPORTANT **
|
1045
1045
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1046
1046
|
:param str availability_domain: Specifies the availability domain of AD-local storage. If `isRegionallyDurable` is set to true, `availabilityDomain` should not be specified. If `isRegionallyDurable` is set to false, `availabilityDomain` must be specified.
|
1047
|
-
:param str iops: (Updatable) Guaranteed input/output storage requests per second (IOPS) available to the database system.
|
1047
|
+
:param str iops: (Updatable) Guaranteed input/output storage requests per second (IOPS) available to the database system. Find more about the supported Peformance Tiers [here](https://docs.oracle.com/en-us/iaas/Content/postgresql/performance-tiers.htm).
|
1048
1048
|
"""
|
1049
1049
|
pulumi.set(__self__, "is_regionally_durable", is_regionally_durable)
|
1050
1050
|
pulumi.set(__self__, "system_type", system_type)
|
@@ -1085,7 +1085,7 @@ class DbSystemStorageDetails(dict):
|
|
1085
1085
|
@pulumi.getter
|
1086
1086
|
def iops(self) -> Optional[str]:
|
1087
1087
|
"""
|
1088
|
-
(Updatable) Guaranteed input/output storage requests per second (IOPS) available to the database system.
|
1088
|
+
(Updatable) Guaranteed input/output storage requests per second (IOPS) available to the database system. Find more about the supported Peformance Tiers [here](https://docs.oracle.com/en-us/iaas/Content/postgresql/performance-tiers.htm).
|
1089
1089
|
"""
|
1090
1090
|
return pulumi.get(self, "iops")
|
1091
1091
|
|
@@ -22,7 +22,7 @@ class GetRedisClusterResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getRedisCluster.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, lifecycle_details=None, node_collections=None, node_count=None, node_memory_in_gbs=None, primary_endpoint_ip_address=None, primary_fqdn=None, redis_cluster_id=None, replicas_endpoint_ip_address=None, replicas_fqdn=None, software_version=None, state=None, subnet_id=None, system_tags=None, time_created=None, time_updated=None):
|
25
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, lifecycle_details=None, node_collections=None, node_count=None, node_memory_in_gbs=None, nsg_ids=None, primary_endpoint_ip_address=None, primary_fqdn=None, redis_cluster_id=None, replicas_endpoint_ip_address=None, replicas_fqdn=None, software_version=None, state=None, subnet_id=None, system_tags=None, time_created=None, time_updated=None):
|
26
26
|
if compartment_id and not isinstance(compartment_id, str):
|
27
27
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
28
28
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -50,6 +50,9 @@ class GetRedisClusterResult:
|
|
50
50
|
if node_memory_in_gbs and not isinstance(node_memory_in_gbs, float):
|
51
51
|
raise TypeError("Expected argument 'node_memory_in_gbs' to be a float")
|
52
52
|
pulumi.set(__self__, "node_memory_in_gbs", node_memory_in_gbs)
|
53
|
+
if nsg_ids and not isinstance(nsg_ids, list):
|
54
|
+
raise TypeError("Expected argument 'nsg_ids' to be a list")
|
55
|
+
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
53
56
|
if primary_endpoint_ip_address and not isinstance(primary_endpoint_ip_address, str):
|
54
57
|
raise TypeError("Expected argument 'primary_endpoint_ip_address' to be a str")
|
55
58
|
pulumi.set(__self__, "primary_endpoint_ip_address", primary_endpoint_ip_address)
|
@@ -156,6 +159,14 @@ class GetRedisClusterResult:
|
|
156
159
|
"""
|
157
160
|
return pulumi.get(self, "node_memory_in_gbs")
|
158
161
|
|
162
|
+
@property
|
163
|
+
@pulumi.getter(name="nsgIds")
|
164
|
+
def nsg_ids(self) -> Sequence[str]:
|
165
|
+
"""
|
166
|
+
OCIDs of the NSGs to control access in the customer network
|
167
|
+
"""
|
168
|
+
return pulumi.get(self, "nsg_ids")
|
169
|
+
|
159
170
|
@property
|
160
171
|
@pulumi.getter(name="primaryEndpointIpAddress")
|
161
172
|
def primary_endpoint_ip_address(self) -> str:
|
@@ -257,6 +268,7 @@ class AwaitableGetRedisClusterResult(GetRedisClusterResult):
|
|
257
268
|
node_collections=self.node_collections,
|
258
269
|
node_count=self.node_count,
|
259
270
|
node_memory_in_gbs=self.node_memory_in_gbs,
|
271
|
+
nsg_ids=self.nsg_ids,
|
260
272
|
primary_endpoint_ip_address=self.primary_endpoint_ip_address,
|
261
273
|
primary_fqdn=self.primary_fqdn,
|
262
274
|
redis_cluster_id=self.redis_cluster_id,
|
@@ -306,6 +318,7 @@ def get_redis_cluster(redis_cluster_id: Optional[str] = None,
|
|
306
318
|
node_collections=pulumi.get(__ret__, 'node_collections'),
|
307
319
|
node_count=pulumi.get(__ret__, 'node_count'),
|
308
320
|
node_memory_in_gbs=pulumi.get(__ret__, 'node_memory_in_gbs'),
|
321
|
+
nsg_ids=pulumi.get(__ret__, 'nsg_ids'),
|
309
322
|
primary_endpoint_ip_address=pulumi.get(__ret__, 'primary_endpoint_ip_address'),
|
310
323
|
primary_fqdn=pulumi.get(__ret__, 'primary_fqdn'),
|
311
324
|
redis_cluster_id=pulumi.get(__ret__, 'redis_cluster_id'),
|
pulumi_oci/redis/outputs.py
CHANGED
@@ -220,6 +220,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
220
220
|
node_collections: Sequence['outputs.GetRedisClustersRedisClusterCollectionItemNodeCollectionResult'],
|
221
221
|
node_count: int,
|
222
222
|
node_memory_in_gbs: float,
|
223
|
+
nsg_ids: Sequence[str],
|
223
224
|
primary_endpoint_ip_address: str,
|
224
225
|
primary_fqdn: str,
|
225
226
|
replicas_endpoint_ip_address: str,
|
@@ -240,6 +241,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
240
241
|
:param Sequence['GetRedisClustersRedisClusterCollectionItemNodeCollectionArgs'] node_collections: The collection of Redis cluster nodes.
|
241
242
|
:param int node_count: The number of nodes in the Redis cluster.
|
242
243
|
:param float node_memory_in_gbs: The amount of memory allocated to the Redis cluster's nodes, in gigabytes.
|
244
|
+
:param Sequence[str] nsg_ids: OCIDs of the NSGs to control access in the customer network
|
243
245
|
:param str primary_endpoint_ip_address: The private IP address of the API endpoint for the Redis cluster's primary node.
|
244
246
|
:param str primary_fqdn: The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's primary node.
|
245
247
|
:param str replicas_endpoint_ip_address: The private IP address of the API endpoint for the Redis cluster's replica nodes.
|
@@ -260,6 +262,7 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
260
262
|
pulumi.set(__self__, "node_collections", node_collections)
|
261
263
|
pulumi.set(__self__, "node_count", node_count)
|
262
264
|
pulumi.set(__self__, "node_memory_in_gbs", node_memory_in_gbs)
|
265
|
+
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
263
266
|
pulumi.set(__self__, "primary_endpoint_ip_address", primary_endpoint_ip_address)
|
264
267
|
pulumi.set(__self__, "primary_fqdn", primary_fqdn)
|
265
268
|
pulumi.set(__self__, "replicas_endpoint_ip_address", replicas_endpoint_ip_address)
|
@@ -343,6 +346,14 @@ class GetRedisClustersRedisClusterCollectionItemResult(dict):
|
|
343
346
|
"""
|
344
347
|
return pulumi.get(self, "node_memory_in_gbs")
|
345
348
|
|
349
|
+
@property
|
350
|
+
@pulumi.getter(name="nsgIds")
|
351
|
+
def nsg_ids(self) -> Sequence[str]:
|
352
|
+
"""
|
353
|
+
OCIDs of the NSGs to control access in the customer network
|
354
|
+
"""
|
355
|
+
return pulumi.get(self, "nsg_ids")
|
356
|
+
|
346
357
|
@property
|
347
358
|
@pulumi.getter(name="primaryEndpointIpAddress")
|
348
359
|
def primary_endpoint_ip_address(self) -> str:
|
@@ -23,7 +23,8 @@ class RedisClusterArgs:
|
|
23
23
|
software_version: pulumi.Input[str],
|
24
24
|
subnet_id: pulumi.Input[str],
|
25
25
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
26
|
-
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None
|
26
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
27
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
27
28
|
"""
|
28
29
|
The set of arguments for constructing a RedisCluster resource.
|
29
30
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the compartment that contains the Redis cluster.
|
@@ -38,6 +39,7 @@ class RedisClusterArgs:
|
|
38
39
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
39
40
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
40
41
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
42
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) OCIDs of the NSGs to control access in the customer network
|
41
43
|
"""
|
42
44
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
43
45
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -49,6 +51,8 @@ class RedisClusterArgs:
|
|
49
51
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
50
52
|
if freeform_tags is not None:
|
51
53
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
54
|
+
if nsg_ids is not None:
|
55
|
+
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
52
56
|
|
53
57
|
@property
|
54
58
|
@pulumi.getter(name="compartmentId")
|
@@ -150,6 +154,18 @@ class RedisClusterArgs:
|
|
150
154
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
151
155
|
pulumi.set(self, "freeform_tags", value)
|
152
156
|
|
157
|
+
@property
|
158
|
+
@pulumi.getter(name="nsgIds")
|
159
|
+
def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
160
|
+
"""
|
161
|
+
(Updatable) OCIDs of the NSGs to control access in the customer network
|
162
|
+
"""
|
163
|
+
return pulumi.get(self, "nsg_ids")
|
164
|
+
|
165
|
+
@nsg_ids.setter
|
166
|
+
def nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
167
|
+
pulumi.set(self, "nsg_ids", value)
|
168
|
+
|
153
169
|
|
154
170
|
@pulumi.input_type
|
155
171
|
class _RedisClusterState:
|
@@ -162,6 +178,7 @@ class _RedisClusterState:
|
|
162
178
|
node_collections: Optional[pulumi.Input[Sequence[pulumi.Input['RedisClusterNodeCollectionArgs']]]] = None,
|
163
179
|
node_count: Optional[pulumi.Input[int]] = None,
|
164
180
|
node_memory_in_gbs: Optional[pulumi.Input[float]] = None,
|
181
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
165
182
|
primary_endpoint_ip_address: Optional[pulumi.Input[str]] = None,
|
166
183
|
primary_fqdn: Optional[pulumi.Input[str]] = None,
|
167
184
|
replicas_endpoint_ip_address: Optional[pulumi.Input[str]] = None,
|
@@ -182,6 +199,7 @@ class _RedisClusterState:
|
|
182
199
|
:param pulumi.Input[Sequence[pulumi.Input['RedisClusterNodeCollectionArgs']]] node_collections: The collection of Redis cluster nodes.
|
183
200
|
:param pulumi.Input[int] node_count: (Updatable) The number of nodes in the Redis cluster.
|
184
201
|
:param pulumi.Input[float] node_memory_in_gbs: (Updatable) The amount of memory allocated to the Redis cluster's nodes, in gigabytes.
|
202
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) OCIDs of the NSGs to control access in the customer network
|
185
203
|
:param pulumi.Input[str] primary_endpoint_ip_address: The private IP address of the API endpoint for the Redis cluster's primary node.
|
186
204
|
:param pulumi.Input[str] primary_fqdn: The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's primary node.
|
187
205
|
:param pulumi.Input[str] replicas_endpoint_ip_address: The private IP address of the API endpoint for the Redis cluster's replica nodes.
|
@@ -213,6 +231,8 @@ class _RedisClusterState:
|
|
213
231
|
pulumi.set(__self__, "node_count", node_count)
|
214
232
|
if node_memory_in_gbs is not None:
|
215
233
|
pulumi.set(__self__, "node_memory_in_gbs", node_memory_in_gbs)
|
234
|
+
if nsg_ids is not None:
|
235
|
+
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
216
236
|
if primary_endpoint_ip_address is not None:
|
217
237
|
pulumi.set(__self__, "primary_endpoint_ip_address", primary_endpoint_ip_address)
|
218
238
|
if primary_fqdn is not None:
|
@@ -330,6 +350,18 @@ class _RedisClusterState:
|
|
330
350
|
def node_memory_in_gbs(self, value: Optional[pulumi.Input[float]]):
|
331
351
|
pulumi.set(self, "node_memory_in_gbs", value)
|
332
352
|
|
353
|
+
@property
|
354
|
+
@pulumi.getter(name="nsgIds")
|
355
|
+
def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
356
|
+
"""
|
357
|
+
(Updatable) OCIDs of the NSGs to control access in the customer network
|
358
|
+
"""
|
359
|
+
return pulumi.get(self, "nsg_ids")
|
360
|
+
|
361
|
+
@nsg_ids.setter
|
362
|
+
def nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
363
|
+
pulumi.set(self, "nsg_ids", value)
|
364
|
+
|
333
365
|
@property
|
334
366
|
@pulumi.getter(name="primaryEndpointIpAddress")
|
335
367
|
def primary_endpoint_ip_address(self) -> Optional[pulumi.Input[str]]:
|
@@ -466,6 +498,7 @@ class RedisCluster(pulumi.CustomResource):
|
|
466
498
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
467
499
|
node_count: Optional[pulumi.Input[int]] = None,
|
468
500
|
node_memory_in_gbs: Optional[pulumi.Input[float]] = None,
|
501
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
469
502
|
software_version: Optional[pulumi.Input[str]] = None,
|
470
503
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
471
504
|
__props__=None):
|
@@ -493,7 +526,8 @@ class RedisCluster(pulumi.CustomResource):
|
|
493
526
|
},
|
494
527
|
freeform_tags={
|
495
528
|
"bar-key": "value",
|
496
|
-
}
|
529
|
+
},
|
530
|
+
nsg_ids=var["redis_cluster_nsg_ids"])
|
497
531
|
```
|
498
532
|
<!--End PulumiCodeChooser -->
|
499
533
|
|
@@ -513,6 +547,7 @@ class RedisCluster(pulumi.CustomResource):
|
|
513
547
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
514
548
|
:param pulumi.Input[int] node_count: (Updatable) The number of nodes in the Redis cluster.
|
515
549
|
:param pulumi.Input[float] node_memory_in_gbs: (Updatable) The amount of memory allocated to the Redis cluster's nodes, in gigabytes.
|
550
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) OCIDs of the NSGs to control access in the customer network
|
516
551
|
:param pulumi.Input[str] software_version: The Redis version that the cluster is running.
|
517
552
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the Redis cluster's subnet.
|
518
553
|
|
@@ -550,7 +585,8 @@ class RedisCluster(pulumi.CustomResource):
|
|
550
585
|
},
|
551
586
|
freeform_tags={
|
552
587
|
"bar-key": "value",
|
553
|
-
}
|
588
|
+
},
|
589
|
+
nsg_ids=var["redis_cluster_nsg_ids"])
|
554
590
|
```
|
555
591
|
<!--End PulumiCodeChooser -->
|
556
592
|
|
@@ -583,6 +619,7 @@ class RedisCluster(pulumi.CustomResource):
|
|
583
619
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
584
620
|
node_count: Optional[pulumi.Input[int]] = None,
|
585
621
|
node_memory_in_gbs: Optional[pulumi.Input[float]] = None,
|
622
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
586
623
|
software_version: Optional[pulumi.Input[str]] = None,
|
587
624
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
588
625
|
__props__=None):
|
@@ -608,6 +645,7 @@ class RedisCluster(pulumi.CustomResource):
|
|
608
645
|
if node_memory_in_gbs is None and not opts.urn:
|
609
646
|
raise TypeError("Missing required property 'node_memory_in_gbs'")
|
610
647
|
__props__.__dict__["node_memory_in_gbs"] = node_memory_in_gbs
|
648
|
+
__props__.__dict__["nsg_ids"] = nsg_ids
|
611
649
|
if software_version is None and not opts.urn:
|
612
650
|
raise TypeError("Missing required property 'software_version'")
|
613
651
|
__props__.__dict__["software_version"] = software_version
|
@@ -642,6 +680,7 @@ class RedisCluster(pulumi.CustomResource):
|
|
642
680
|
node_collections: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisClusterNodeCollectionArgs']]]]] = None,
|
643
681
|
node_count: Optional[pulumi.Input[int]] = None,
|
644
682
|
node_memory_in_gbs: Optional[pulumi.Input[float]] = None,
|
683
|
+
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
645
684
|
primary_endpoint_ip_address: Optional[pulumi.Input[str]] = None,
|
646
685
|
primary_fqdn: Optional[pulumi.Input[str]] = None,
|
647
686
|
replicas_endpoint_ip_address: Optional[pulumi.Input[str]] = None,
|
@@ -667,6 +706,7 @@ class RedisCluster(pulumi.CustomResource):
|
|
667
706
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['RedisClusterNodeCollectionArgs']]]] node_collections: The collection of Redis cluster nodes.
|
668
707
|
:param pulumi.Input[int] node_count: (Updatable) The number of nodes in the Redis cluster.
|
669
708
|
:param pulumi.Input[float] node_memory_in_gbs: (Updatable) The amount of memory allocated to the Redis cluster's nodes, in gigabytes.
|
709
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) OCIDs of the NSGs to control access in the customer network
|
670
710
|
:param pulumi.Input[str] primary_endpoint_ip_address: The private IP address of the API endpoint for the Redis cluster's primary node.
|
671
711
|
:param pulumi.Input[str] primary_fqdn: The fully qualified domain name (FQDN) of the API endpoint for the Redis cluster's primary node.
|
672
712
|
:param pulumi.Input[str] replicas_endpoint_ip_address: The private IP address of the API endpoint for the Redis cluster's replica nodes.
|
@@ -694,6 +734,7 @@ class RedisCluster(pulumi.CustomResource):
|
|
694
734
|
__props__.__dict__["node_collections"] = node_collections
|
695
735
|
__props__.__dict__["node_count"] = node_count
|
696
736
|
__props__.__dict__["node_memory_in_gbs"] = node_memory_in_gbs
|
737
|
+
__props__.__dict__["nsg_ids"] = nsg_ids
|
697
738
|
__props__.__dict__["primary_endpoint_ip_address"] = primary_endpoint_ip_address
|
698
739
|
__props__.__dict__["primary_fqdn"] = primary_fqdn
|
699
740
|
__props__.__dict__["replicas_endpoint_ip_address"] = replicas_endpoint_ip_address
|
@@ -770,6 +811,14 @@ class RedisCluster(pulumi.CustomResource):
|
|
770
811
|
"""
|
771
812
|
return pulumi.get(self, "node_memory_in_gbs")
|
772
813
|
|
814
|
+
@property
|
815
|
+
@pulumi.getter(name="nsgIds")
|
816
|
+
def nsg_ids(self) -> pulumi.Output[Sequence[str]]:
|
817
|
+
"""
|
818
|
+
(Updatable) OCIDs of the NSGs to control access in the customer network
|
819
|
+
"""
|
820
|
+
return pulumi.get(self, "nsg_ids")
|
821
|
+
|
773
822
|
@property
|
774
823
|
@pulumi.getter(name="primaryEndpointIpAddress")
|
775
824
|
def primary_endpoint_ip_address(self) -> pulumi.Output[str]:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pulumi_oci/__init__.py,sha256=
|
1
|
+
pulumi_oci/__init__.py,sha256=mYV2LtWu28ZWdKHNjNCSjsNsHIwVwAvf92QvwjOGz8I,147356
|
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
|
@@ -634,10 +634,10 @@ pulumi_oci/core/volume_backup_policy_assignment.py,sha256=vB0uaT69bJAWybSdyhUIdM
|
|
634
634
|
pulumi_oci/core/volume_group.py,sha256=jyFtsxJoVk3OXXIE0hIMNc6nK-D9JMihhNmbIdl9bAI,47695
|
635
635
|
pulumi_oci/core/volume_group_backup.py,sha256=SrfOm20mWLPaUdHY9Eokek0sqVwGYGMF76BCmyRh3dA,44256
|
636
636
|
pulumi_oci/core/vtap.py,sha256=_SuvrZNB7f9bGYbdrqogrB2D33NpMP7SixblXfGabjk,61791
|
637
|
-
pulumi_oci/database/__init__.py,sha256=
|
638
|
-
pulumi_oci/database/_inputs.py,sha256=
|
637
|
+
pulumi_oci/database/__init__.py,sha256=vmk_ABTY9egQLB9TjjbjLk9eoslzGAmlgEGmikTVIvs,8711
|
638
|
+
pulumi_oci/database/_inputs.py,sha256=KYXEUGhCvRSxgGV93eS8rsks3tI-T4P5XkDaNAAt6tk,657348
|
639
639
|
pulumi_oci/database/application_vip.py,sha256=0LDiCa32KE0oTOuLTyNWONHcemkAOt3UjfgBduM23jw,29315
|
640
|
-
pulumi_oci/database/autonomous_container_database.py,sha256=
|
640
|
+
pulumi_oci/database/autonomous_container_database.py,sha256=8KBRkXFQ3H2jSqiNl8bFB4SKp4qakiaiU5hXtylcGq8,161652
|
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
|
@@ -646,9 +646,10 @@ pulumi_oci/database/autonomous_database_backup.py,sha256=cb2oUMQz69XNWieiksL5OjW
|
|
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
|
648
648
|
pulumi_oci/database/autonomous_database_saas_admin_user.py,sha256=9wutUpIf9CJ00xakk8_frKOx7t_olrppsQOO7bUWekE,26828
|
649
|
+
pulumi_oci/database/autonomous_database_software_image.py,sha256=DZ2x277ePyTgVe9AUNJ_9-dDrn8_E48sz0iO2ujNAtM,33231
|
649
650
|
pulumi_oci/database/autonomous_database_wallet.py,sha256=iZAAXHhjMM6i4UGiloGeAFe0e01MWuQnNx7Akeoc7r0,21338
|
650
651
|
pulumi_oci/database/autonomous_exadata_infrastructure.py,sha256=qVsiMyN8QFZ3nzVIr5Ly_kkBwvj-izrTOJ7LRoAQoKU,68745
|
651
|
-
pulumi_oci/database/autonomous_vm_cluster.py,sha256=
|
652
|
+
pulumi_oci/database/autonomous_vm_cluster.py,sha256=sk0JWXmf0sg9pJoKuKUqlX9zyFAm53OQliBVmQLC5fY,112205
|
652
653
|
pulumi_oci/database/autonomous_vm_cluster_ords_certificate_management.py,sha256=GBh03Xj_04tzhOHgFqxtTNP7zSos4j2i9VP-H7S8bhQ,22011
|
653
654
|
pulumi_oci/database/autonomous_vm_cluster_ssl_certificate_management.py,sha256=dKDwrxjYE1mzu1w8an486dzvqcjsHARXzs3pPoiqz3Y,21923
|
654
655
|
pulumi_oci/database/backup.py,sha256=5u8jBqTZ5JCquNMtzCbRELJw3OEZckE42NYMairSWt8,32285
|
@@ -688,10 +689,10 @@ pulumi_oci/database/external_pluggable_databases_stack_monitoring.py,sha256=SJxr
|
|
688
689
|
pulumi_oci/database/get_application_vip.py,sha256=z8bgWy4kMfrgbzd-T-T9vrh3Ewl7o53jQdkrRog5bsY,10747
|
689
690
|
pulumi_oci/database/get_application_vips.py,sha256=kB_JnmJmv_RwHNZ3d97E0pmOEVAKP5QtT45vL8MT1LI,7762
|
690
691
|
pulumi_oci/database/get_autonomous_character_sets.py,sha256=KZI7njXUM-R9aK5i83lhloNNQ2f-H8NKqTF7DO0H6LQ,8181
|
691
|
-
pulumi_oci/database/get_autonomous_container_database.py,sha256=
|
692
|
+
pulumi_oci/database/get_autonomous_container_database.py,sha256=dxgZPHA4WOsZpn2HmipwKBc5TUXB3czYovDorpi0l-g,48110
|
692
693
|
pulumi_oci/database/get_autonomous_container_database_dataguard_association.py,sha256=imifH0w61Pj1LV2LumQGOW77m-9ZvIhkMyHH-s4w_Zs,24798
|
693
694
|
pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py,sha256=tvxQq4bFs2rFbsA3pdxXfbhb5vET6ki8vNOlAW8BnZE,7752
|
694
|
-
pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256
|
695
|
+
pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256=TgaAwyFbCamCYr7aE5pWT-uDNUYibZUDrSCUNMfRkpE,12951
|
695
696
|
pulumi_oci/database/get_autonomous_container_database_versions.py,sha256=rKzBpB0nWww9rSIiNOSBXT9Xfgau8H5ULlkIOfMhcjo,7238
|
696
697
|
pulumi_oci/database/get_autonomous_container_databases.py,sha256=fJfAC_XlRSz93nUgTRBWtjw9YcXB_n56xL1Jw50DGT0,17306
|
697
698
|
pulumi_oci/database/get_autonomous_container_patches.py,sha256=gKo5X3qAqTHlrFleGWVO2-t7zoL1SuP_-lgd6dr7thA,8402
|
@@ -703,6 +704,8 @@ pulumi_oci/database/get_autonomous_database_dataguard_associations.py,sha256=ZWr
|
|
703
704
|
pulumi_oci/database/get_autonomous_database_instance_wallet_management.py,sha256=Z6gJ819OxV08n10RqleQwYv1oI1SORI12b7R3266e2g,6852
|
704
705
|
pulumi_oci/database/get_autonomous_database_refreshable_clones.py,sha256=iy7uDoAHdBFW9jp2RXREISitqDiK_fCsCWXXYZX2SVk,6415
|
705
706
|
pulumi_oci/database/get_autonomous_database_regional_wallet_management.py,sha256=AnFrgtqRbvyARmT8XfWlp6NHaDoYKJ_L6q8cIAIP6GQ,5231
|
707
|
+
pulumi_oci/database/get_autonomous_database_software_image.py,sha256=3qOyBqjLvzDVZtfWXoVzOLgWbb3byx-G0l5_dfcPxpI,12313
|
708
|
+
pulumi_oci/database/get_autonomous_database_software_images.py,sha256=dplyVCxbGzN0BG9zwtTl8Q_x6LQVPORPkvKeBqcTgxs,9838
|
706
709
|
pulumi_oci/database/get_autonomous_database_wallet.py,sha256=Wimzb5_gcFv-j2W0v5zw3bkomxkuy5B4PoAxfIYI2IY,7487
|
707
710
|
pulumi_oci/database/get_autonomous_databases.py,sha256=cx3NrluP3sr7IorwbrYwwcmf6T6YPNLnNKrj-TOpVOQ,21626
|
708
711
|
pulumi_oci/database/get_autonomous_databases_clones.py,sha256=98GJ-2Ka3Q8HRmLnTr9CLnW5kUV12_U8b80Yi0bjHwU,10128
|
@@ -715,7 +718,7 @@ pulumi_oci/database/get_autonomous_exadata_infrastructures.py,sha256=MRx201Zokxq
|
|
715
718
|
pulumi_oci/database/get_autonomous_patch.py,sha256=mYeM-vlhUKCEEbG14EBX253Lukb4vA7o5jhNCnjnUlA,9171
|
716
719
|
pulumi_oci/database/get_autonomous_virtual_machine.py,sha256=5ya_0Vj98rDfRC7svKR8lSSxE49u-CZ3hP-c1X2GY0k,12159
|
717
720
|
pulumi_oci/database/get_autonomous_virtual_machines.py,sha256=5Fo38qhoQ_qW5i28gGFjgHnjVYdp0n4O6pJmP3LYJ_8,8352
|
718
|
-
pulumi_oci/database/get_autonomous_vm_cluster.py,sha256=
|
721
|
+
pulumi_oci/database/get_autonomous_vm_cluster.py,sha256=7k2GR8z9v1Z35j2u0n18ja_hx-RNmNNh7_zblGnLFVc,40748
|
719
722
|
pulumi_oci/database/get_autonomous_vm_cluster_acd_resource_usages.py,sha256=eVihXKqlr6skYhlP8Zz8kISGT29wEKC241K3VYHtoSw,7836
|
720
723
|
pulumi_oci/database/get_autonomous_vm_cluster_resource_usage.py,sha256=DNqCp_oZ3WZAxfbur47pvTv_I_F6bvGLuhsX5waJ2xw,19926
|
721
724
|
pulumi_oci/database/get_autonomous_vm_clusters.py,sha256=aoAV0jYb9-8ojNVuLaUX4Euvu3T12awswbOGrxSNDG4,9598
|
@@ -810,7 +813,7 @@ pulumi_oci/database/get_vm_clusters.py,sha256=oNDBSSJjyz8bMQPesLPBTPTcysF9xZUUZo
|
|
810
813
|
pulumi_oci/database/key_store.py,sha256=Wmrh5W4zSMxDK81B1NLT3osJTc2FqEDMElQKgieHA0U,25712
|
811
814
|
pulumi_oci/database/maintenance_run.py,sha256=kIJoBN-1pZix6sRD94U5OUPlgZSb2vhBIe3mkxBD64U,58772
|
812
815
|
pulumi_oci/database/oneoff_patch.py,sha256=6_XXLH-PoBvGQVVaB5kzIWq7vgWOvGVcq4K59QRT1qA,38652
|
813
|
-
pulumi_oci/database/outputs.py,sha256=
|
816
|
+
pulumi_oci/database/outputs.py,sha256=Zt-xCxZ4g4TamGLExyGI1o4XTtPaLGFj008Y1du2A90,2083465
|
814
817
|
pulumi_oci/database/pluggable_database.py,sha256=UYXCRUig97Hz22B-0KChjDoWaxdFPgNNbwfUpcVRM5g,71689
|
815
818
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=ASic1y903gVSRrAJqHY7CIWvjMvqFiOoMVXLzt2DGlY,52657
|
816
819
|
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=J4p1pkt1NUBateXMDzeIM4qQDTAxPNDqVXIuQlAbXDo,50628
|
@@ -1212,7 +1215,7 @@ pulumi_oci/datasafe/unset_security_assessment_baseline.py,sha256=clkmFGg7_YRgChL
|
|
1212
1215
|
pulumi_oci/datasafe/unset_user_assessment_baseline.py,sha256=0dz6U72wwfweu7HFwTXJd_fHExXma6NZxoOHeaBb5nU,9533
|
1213
1216
|
pulumi_oci/datasafe/user_assessment.py,sha256=crOwHGUTySzB13vsem9KZ0amEostnNofu_ScTrVmSxw,55549
|
1214
1217
|
pulumi_oci/datascience/__init__.py,sha256=YUs9Sg1hYEkk_ORPN54BOFosvaeepgs8SelXVgSpgYc,1506
|
1215
|
-
pulumi_oci/datascience/_inputs.py,sha256=
|
1218
|
+
pulumi_oci/datascience/_inputs.py,sha256=iWtIB7RxZVgby5rXuCq_KSXw1CkNfrSpzD3grlCPm7c,199255
|
1216
1219
|
pulumi_oci/datascience/get_fast_launch_job_configs.py,sha256=HytkjtUe3LHbrGGq29LT5PnL-wjp34M3QSOxr-NhL1k,5495
|
1217
1220
|
pulumi_oci/datascience/get_job.py,sha256=pYefOz9JzlNn5_hedi3QpszYoAMQ_J_NWFtVPRD_rCY,17708
|
1218
1221
|
pulumi_oci/datascience/get_job_run.py,sha256=e8SzrAzWlL3QhZyqpLALMaKTvi8cTDwQAuGG6vv0ARg,16634
|
@@ -1243,11 +1246,11 @@ pulumi_oci/datascience/job_run.py,sha256=qpGVKoDlof2PwiR1Q3GpOKCMYZkZ0sLbsfzFCuZ
|
|
1243
1246
|
pulumi_oci/datascience/model.py,sha256=31xDYmrVjjEWuXwkAuCNLY_9ewo44aoik3PZuLuNxYg,52870
|
1244
1247
|
pulumi_oci/datascience/model_artifact_export.py,sha256=3luxH5zMiFVqyiUAha3paucsA2RgDt8r9HiOa8o1kX8,12879
|
1245
1248
|
pulumi_oci/datascience/model_artifact_import.py,sha256=bPnG_kR2mp8AcUUdlEV1wWOiP9cXrfbbTMUox-VeXhM,13344
|
1246
|
-
pulumi_oci/datascience/model_deployment.py,sha256=
|
1249
|
+
pulumi_oci/datascience/model_deployment.py,sha256=E7HJkA6_aJOhBCvxPrtZsaEJieKwzv5_ACTRccSvpOE,59742
|
1247
1250
|
pulumi_oci/datascience/model_provenance.py,sha256=mIkL-XKOsnOvi9v0z6PeH1II6InmORfKr5i8TOwxQ0c,24923
|
1248
1251
|
pulumi_oci/datascience/model_version_set.py,sha256=RUz29EWAy288-cEwXuNOydzEDZu9ncWB0PKPNNhBy4g,31512
|
1249
1252
|
pulumi_oci/datascience/notebook_session.py,sha256=DdUPhluJHp8WEsNlf8RW0Z_MxacC3Nd9aFw7FQ6RbOU,54184
|
1250
|
-
pulumi_oci/datascience/outputs.py,sha256=
|
1253
|
+
pulumi_oci/datascience/outputs.py,sha256=nvX9rAYCiomVIzkTxKDXEwcWS0OGzBVQmL9bEISu4is,555715
|
1251
1254
|
pulumi_oci/datascience/pipeline.py,sha256=cz3h7efL1YQXpinHkCMJYPXA8Rj8Jl-pEKbjuTPrly0,53890
|
1252
1255
|
pulumi_oci/datascience/pipeline_run.py,sha256=1qzVXbpQ2HItNJYSgzU9IaDZk3A55533K-rGI6gGUy0,57086
|
1253
1256
|
pulumi_oci/datascience/private_endpoint.py,sha256=40drPJ0upXdRDmetkaW3-2QKBCtOVWLQxRj6STnXpwQ,40655
|
@@ -1990,8 +1993,8 @@ pulumi_oci/mediaservices/outputs.py,sha256=uq1hQ45QuLHeAMqMzDIUpOyj2eZycdqIFbx1s
|
|
1990
1993
|
pulumi_oci/mediaservices/stream_cdn_config.py,sha256=vYZGb9aWnm7gyYl7ZIhjuZtYi8vAQUG-lC39i4b5cXo,35692
|
1991
1994
|
pulumi_oci/mediaservices/stream_distribution_channel.py,sha256=edx2lnlLuk66wcxSqHjzgexmkHAj6hYzODdz3ytpBF8,27458
|
1992
1995
|
pulumi_oci/mediaservices/stream_packaging_config.py,sha256=SeZYbPugi-q4cyaXpVcESfISuD6cAMQit3MsCJZK0_k,37519
|
1993
|
-
pulumi_oci/meteringcomputation/__init__.py,sha256=
|
1994
|
-
pulumi_oci/meteringcomputation/_inputs.py,sha256=
|
1996
|
+
pulumi_oci/meteringcomputation/__init__.py,sha256=5NXcizl3_GVPujB3HrJ6JuJMgUev8xZ6w7N2bTyUSLw,1162
|
1997
|
+
pulumi_oci/meteringcomputation/_inputs.py,sha256=I6oxPgCBUoyKtsGzJogjg4Ay5X5Io-IlL8ByQieAneQ,101628
|
1995
1998
|
pulumi_oci/meteringcomputation/custom_table.py,sha256=zVdBzt-utgy5e0Hwz_LOXn3bdqUYSnqkNJ4yfc_o_e8,15337
|
1996
1999
|
pulumi_oci/meteringcomputation/get_average_carbon_emission.py,sha256=lQXLQABtq7PZFD47bPInk9BteM1Xxtb16UPQCdNhCZw,4606
|
1997
2000
|
pulumi_oci/meteringcomputation/get_clean_energy_usage.py,sha256=rdlMtqsOt9JZ_p7hNT-l48fiejSnKuDuJRFT4zo4tzk,3779
|
@@ -2000,19 +2003,22 @@ pulumi_oci/meteringcomputation/get_custom_table.py,sha256=j_6QqiTmuV6N6JcmbtTcn2
|
|
2000
2003
|
pulumi_oci/meteringcomputation/get_custom_tables.py,sha256=f_mndBVatMz0UleF6ZoIDGxaXAzBgcnrHSS5MERGBXY,6204
|
2001
2004
|
pulumi_oci/meteringcomputation/get_queries.py,sha256=dEN3WrnNTfNUh6metbPlH3M-wzGmUBErvoY4tpX8f-A,5074
|
2002
2005
|
pulumi_oci/meteringcomputation/get_query.py,sha256=CRar2ji2Z_mZ_GJYjxaMZx5YGXJ90lhMN1xRYmLJ8Wg,4396
|
2003
|
-
pulumi_oci/meteringcomputation/get_schedule.py,sha256=
|
2004
|
-
pulumi_oci/meteringcomputation/get_scheduled_run.py,sha256=
|
2006
|
+
pulumi_oci/meteringcomputation/get_schedule.py,sha256=PhEFfYqh5q02AFG5jDUfvb25zOOjCDap9-4PmNPMOu4,12533
|
2007
|
+
pulumi_oci/meteringcomputation/get_scheduled_run.py,sha256=XAjY3rfrOGdGMcYOFXZGp_EIa2Ona73dv0_YZsGRV0s,6295
|
2005
2008
|
pulumi_oci/meteringcomputation/get_scheduled_runs.py,sha256=CU6JbQsQtHP3di_EUHSs2ucvMVR3xsQnj8R3j8eMo3o,5108
|
2006
2009
|
pulumi_oci/meteringcomputation/get_schedules.py,sha256=L1UoTu1cY9ZlXHTHM_0epWg5hpuVOBzOd_PX_He6nkU,5967
|
2007
2010
|
pulumi_oci/meteringcomputation/get_usage_carbon_emissions_config.py,sha256=PftJREsvhiY51xR88zci0gJ7yyYxfbTuIi1RF2PUcXk,4455
|
2008
2011
|
pulumi_oci/meteringcomputation/get_usage_carbon_emissions_queries.py,sha256=9uk0I0dAeJ2xo7lcmkY-I4Ngj6vHgsN5t1QgWt88Mwg,5865
|
2009
2012
|
pulumi_oci/meteringcomputation/get_usage_carbon_emissions_query.py,sha256=JmBMHDyLqD5QXUHctjtKV3URzeCvIu8ThXDArqUfu2I,5590
|
2010
|
-
pulumi_oci/meteringcomputation/
|
2013
|
+
pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_group.py,sha256=6ZQP5RvCfEaknSWum9BqNUPZ5oHFTctSOxRbO9E1OCs,7669
|
2014
|
+
pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_groups.py,sha256=aMjl6hPi318Dn9c9ybEOgjNccw91cVposLHbAQjvpGc,7122
|
2015
|
+
pulumi_oci/meteringcomputation/outputs.py,sha256=uSHTVC_YhhXf_XFkUSZvA_cQ1LJkqwF_4IrGlQ6KkKs,188731
|
2011
2016
|
pulumi_oci/meteringcomputation/query.py,sha256=p7E2YSDzypWfIPQN4o7J72OKMLHEe4gcNSzyBG9LdwI,14237
|
2012
|
-
pulumi_oci/meteringcomputation/schedule.py,sha256=
|
2017
|
+
pulumi_oci/meteringcomputation/schedule.py,sha256=dtW3TsS2IwVESQZGR6hXeLh-yZcSqv6ExnpK4mBes0w,45182
|
2013
2018
|
pulumi_oci/meteringcomputation/usage.py,sha256=mQoH5JRVvThRk4KmgAWwna8eChEBKSONLziScVNUfpo,37253
|
2014
2019
|
pulumi_oci/meteringcomputation/usage_carbon_emission.py,sha256=EDao6nuV2B0QVWKqTe9SyYXulCAEKX341Jsp-uGmOhk,30790
|
2015
2020
|
pulumi_oci/meteringcomputation/usage_carbon_emissions_query.py,sha256=G2_PlAEpygHjzr2tJhHdBqTmFSl-f_OObpCkQ0U8iCw,14943
|
2021
|
+
pulumi_oci/meteringcomputation/usage_statement_email_recipients_group.py,sha256=2UpGykBQIruJtpATFx5l39v500ONdF1dY7h8FGCERRw,19250
|
2016
2022
|
pulumi_oci/monitoring/__init__.py,sha256=pxwgZhWmpTpbldRtkppXsIZ4Xm_FNNHvlIjr1jYMcl4,630
|
2017
2023
|
pulumi_oci/monitoring/_inputs.py,sha256=T68GHXDiLhCTGJxlfaaRT4YW_RdQ8y4zVQueTRO8dLw,19957
|
2018
2024
|
pulumi_oci/monitoring/alarm.py,sha256=bLeKFqpVMK1ivMhsCAABcDO-XJlH-2CdTX0JQlnY_FU,104246
|
@@ -2207,7 +2213,7 @@ pulumi_oci/opa/__init__.py,sha256=NWevj4wdv4lTwkJ5tcUGcUCfKbbXcsX6i2pdNVfpjlE,40
|
|
2207
2213
|
pulumi_oci/opa/_inputs.py,sha256=7MO8IsRQjLjf6K6WxW4S_NjkSzOlk5dIDuPYFJtAXqM,5291
|
2208
2214
|
pulumi_oci/opa/get_opa_instance.py,sha256=sHDHOrul-CdvVJ_Bd9jAkbY46mqJkisC9bxvRfIU-xA,16018
|
2209
2215
|
pulumi_oci/opa/get_opa_instances.py,sha256=4HUTEs9gsRfYUwdNjgSCVzxW8jJWxbdyDj34ON29tzU,7294
|
2210
|
-
pulumi_oci/opa/opa_instance.py,sha256=
|
2216
|
+
pulumi_oci/opa/opa_instance.py,sha256=C0H-PLpe8SiunHx2EIj5FcBIpumm-9wk_CNjlXezXq0,49118
|
2211
2217
|
pulumi_oci/opa/outputs.py,sha256=iGS2KM1HcRf8swe54kHH8rAqa_ZirpTlzTFqG7KWR3M,22120
|
2212
2218
|
pulumi_oci/opensearch/__init__.py,sha256=j6imX3-XMevHNRul4IwmPmSMXzCUFaiStMD2MhamtRc,491
|
2213
2219
|
pulumi_oci/opensearch/_inputs.py,sha256=e2q1m7kinTP9p017LXU0Nw548wQaZFYNf6FQbobO_9U,2448
|
@@ -2389,10 +2395,10 @@ pulumi_oci/osubusage/get_computed_usage.py,sha256=mwIuQCfGQHcBd807CzBlgVVbEn7gbV
|
|
2389
2395
|
pulumi_oci/osubusage/get_computed_usages.py,sha256=v58c49lE4keERZf0ZQBbIw4gSyt1yWGmgxAWqnObPCY,10129
|
2390
2396
|
pulumi_oci/osubusage/outputs.py,sha256=dzAhiIXAjhu56gHJH3-LrdzW56wR1M2oU4tK0299-Eo,37821
|
2391
2397
|
pulumi_oci/psql/__init__.py,sha256=Ze9Vw0SqWLlOMonve0kvQypQH1rN57OusxmHbnPZ2nk,774
|
2392
|
-
pulumi_oci/psql/_inputs.py,sha256=
|
2398
|
+
pulumi_oci/psql/_inputs.py,sha256=ywp76k7Vw_TKlvgzsHvW6QE37Gt7bLQeCDmJ1KW_6Zk,46923
|
2393
2399
|
pulumi_oci/psql/backup.py,sha256=EldonOi3qMtV8ghkGyg93NjVYRG9x2z27vkLJ6-58rg,38056
|
2394
2400
|
pulumi_oci/psql/configuration.py,sha256=H13WE7Yn_qnJOaHzR9EkkgptmcvrpxXtR_r-rYpirD4,42110
|
2395
|
-
pulumi_oci/psql/db_system.py,sha256=
|
2401
|
+
pulumi_oci/psql/db_system.py,sha256=pHWckLjeAzlRHgT1JCFOjdPzsCH6nmj_2cdGwjknhp4,78847
|
2396
2402
|
pulumi_oci/psql/get_backup.py,sha256=XR39nA-A2wZrGpnXRTUfqK03zanG3cUzicqH-IqdwNI,13691
|
2397
2403
|
pulumi_oci/psql/get_backups.py,sha256=dkc0PIs2-mv6kWfx4sNVC7mZ3hobDkk-DrSZtuR1EA0,10036
|
2398
2404
|
pulumi_oci/psql/get_configuration.py,sha256=_ngE9l1tMPnx0PLHOhbYZuIfkHgUAc0xoe4USDC9-tI,12746
|
@@ -2404,7 +2410,7 @@ pulumi_oci/psql/get_db_systems.py,sha256=_QZlsbggclkyCUheaCiGgvK09ZH6Iv_wlwhcBmm
|
|
2404
2410
|
pulumi_oci/psql/get_default_configuration.py,sha256=91ok8Z5Uwz4AUJVckmhbw3Dv5_cX9NSvb2hJdwLBPRg,9875
|
2405
2411
|
pulumi_oci/psql/get_default_configurations.py,sha256=6RuuITV2H5ij3FrGoTn2VzjggKhkFtA23Dmrc25EYkA,9477
|
2406
2412
|
pulumi_oci/psql/get_shapes.py,sha256=YfPuVB4OZJLteXkPhjuYo1KID_dGsqa-5_7jwFU4VP4,5023
|
2407
|
-
pulumi_oci/psql/outputs.py,sha256=
|
2413
|
+
pulumi_oci/psql/outputs.py,sha256=ILccBI2WUrk4pUdpnHxN6qS45L87PC6pggsoEI5LB5M,148489
|
2408
2414
|
pulumi_oci/queue/__init__.py,sha256=jwKK25ETwcG0tqoblRZJX6MN7BKulcDaUyL3ql98tf4,386
|
2409
2415
|
pulumi_oci/queue/_inputs.py,sha256=iTTjPe03bpwbFZLXV0Ur_pm8wdO_XNCsz_rqBJI1xv4,1380
|
2410
2416
|
pulumi_oci/queue/get_queue.py,sha256=0xKHgR5LCD0DADYr_sx1lrAF2LLmkFnChvi4EAUHGyY,14850
|
@@ -2426,10 +2432,10 @@ pulumi_oci/recoverymod/protection_policy.py,sha256=5G5idbW-6M45qQFAknjuvIXTHIf1D
|
|
2426
2432
|
pulumi_oci/recoverymod/recovery_service_subnet.py,sha256=nejQuxigZDF-zVuZv7yuUCBstiM73F3ploEabp1z4D0,32775
|
2427
2433
|
pulumi_oci/redis/__init__.py,sha256=qn3X_w55WB6CuT20Q-Nt7zxiXVnt4qHqOYRo05JuvIU,410
|
2428
2434
|
pulumi_oci/redis/_inputs.py,sha256=facaTYotXU0epdJPA8tlJTJOjqUMhl8NF-2KGq-vlyo,4901
|
2429
|
-
pulumi_oci/redis/get_redis_cluster.py,sha256=
|
2435
|
+
pulumi_oci/redis/get_redis_cluster.py,sha256=c9iY7uGD0PslGD3-TNNobldr36qjfVO5ts0D1vEPsVE,15828
|
2430
2436
|
pulumi_oci/redis/get_redis_clusters.py,sha256=4yPkE0eMzuUaLr2DGmU7HL8z8SYLGXooKPynzMeSGYk,8127
|
2431
|
-
pulumi_oci/redis/outputs.py,sha256=
|
2432
|
-
pulumi_oci/redis/redis_cluster.py,sha256=
|
2437
|
+
pulumi_oci/redis/outputs.py,sha256=m-l7tK1cfAJV_WxXYuWCvzDIY3b1biSDQ-ofVEN_ag8,20494
|
2438
|
+
pulumi_oci/redis/redis_cluster.py,sha256=10rS4_wrA6HvwTw4hC3qplLHqPg1_Nmpgs3tBImMPMQ,45418
|
2433
2439
|
pulumi_oci/resourcemanager/__init__.py,sha256=2G2BH5kW2MtOJKFnTb6Oytp5JQCS7n_E3uSubLhEQqk,553
|
2434
2440
|
pulumi_oci/resourcemanager/_inputs.py,sha256=dsFbYoETEn_qfAz8RUBdr4o5-Gkf_Q5Jn-H5ojIZzSA,2420
|
2435
2441
|
pulumi_oci/resourcemanager/get_private_endpoint.py,sha256=7fCYpwdLAGrtZyKshmiQ03cVAzcEEFfW0pjbZ5doA9E,12371
|
@@ -2648,7 +2654,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=w4BfPa3_MHLImHTqz_eTHWcgT
|
|
2648
2654
|
pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=LfjsBam9uc4uT6xy9jvdA_sIRBxI-vJmkYiX0fFCpL0,14380
|
2649
2655
|
pulumi_oci/waf/network_address_list.py,sha256=kbj6jS11KnGJj-ey2RUaFNWJJHYG0_ZLVxUhja1vVx0,32809
|
2650
2656
|
pulumi_oci/waf/outputs.py,sha256=L_Ay91T3B8xIip2QKrOOW99UlLifV9ByKqO-js2Y84w,227577
|
2651
|
-
pulumi_oci-1.
|
2652
|
-
pulumi_oci-1.
|
2653
|
-
pulumi_oci-1.
|
2654
|
-
pulumi_oci-1.
|
2657
|
+
pulumi_oci-1.32.0.dist-info/METADATA,sha256=i4NwsYja4hzuhUco-W0K9FKyVF3yybzm8NwXQt7fk_w,3888
|
2658
|
+
pulumi_oci-1.32.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
2659
|
+
pulumi_oci-1.32.0.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2660
|
+
pulumi_oci-1.32.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|