pulumi-oci 1.33.0a1713903118__py3-none-any.whl → 1.34.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 +51 -0
- pulumi_oci/clusterplacementgroups/__init__.py +12 -0
- pulumi_oci/clusterplacementgroups/_inputs.py +159 -0
- pulumi_oci/clusterplacementgroups/cluster_placement_group.py +843 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +298 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +217 -0
- pulumi_oci/clusterplacementgroups/outputs.py +485 -0
- pulumi_oci/config/__init__.pyi +2 -2
- pulumi_oci/config/vars.py +2 -2
- pulumi_oci/core/_inputs.py +116 -28
- pulumi_oci/core/boot_volume.py +49 -0
- pulumi_oci/core/compute_capacity_reservation.py +2 -0
- pulumi_oci/core/compute_cluster.py +2 -4
- pulumi_oci/core/drg_route_distribution.py +7 -7
- pulumi_oci/core/get_boot_volume.py +14 -1
- pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
- pulumi_oci/core/get_instance.py +14 -1
- pulumi_oci/core/get_subnet.py +2 -2
- pulumi_oci/core/get_vcn.py +2 -2
- pulumi_oci/core/get_volume.py +14 -1
- pulumi_oci/core/get_volumes.py +21 -1
- pulumi_oci/core/instance.py +51 -4
- pulumi_oci/core/instance_configuration.py +8 -0
- pulumi_oci/core/outputs.py +302 -45
- pulumi_oci/core/volume.py +49 -0
- pulumi_oci/core/volume_attachment.py +28 -0
- pulumi_oci/core/volume_group.py +49 -0
- pulumi_oci/database/db_home.py +47 -0
- pulumi_oci/database/get_db_home.py +14 -1
- pulumi_oci/database/outputs.py +11 -0
- pulumi_oci/databasemanagement/__init__.py +5 -0
- pulumi_oci/databasemanagement/_inputs.py +1207 -2
- pulumi_oci/databasemanagement/database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +28 -0
- pulumi_oci/databasemanagement/external_asm.py +28 -0
- pulumi_oci/databasemanagement/external_asm_instance.py +28 -0
- pulumi_oci/databasemanagement/external_cluster.py +28 -0
- pulumi_oci/databasemanagement/external_cluster_instance.py +28 -0
- pulumi_oci/databasemanagement/external_db_home.py +28 -0
- pulumi_oci/databasemanagement/external_db_node.py +28 -0
- pulumi_oci/databasemanagement/external_db_system.py +28 -0
- pulumi_oci/databasemanagement/external_db_system_connector.py +28 -0
- pulumi_oci/databasemanagement/external_db_system_discovery.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_infrastructure.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_connector.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_grid.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_server.py +28 -0
- pulumi_oci/databasemanagement/external_listener.py +28 -0
- pulumi_oci/databasemanagement/externalcontainerdatabase_external_container_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/externalnoncontainerdatabase_external_non_container_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/externalpluggabledatabase_external_pluggable_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_external_asm.py +14 -1
- pulumi_oci/databasemanagement/get_external_asm_instance.py +14 -1
- pulumi_oci/databasemanagement/get_external_cluster.py +14 -1
- pulumi_oci/databasemanagement/get_external_cluster_instance.py +14 -1
- pulumi_oci/databasemanagement/get_external_databases.py +18 -1
- pulumi_oci/databasemanagement/get_external_db_home.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_node.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system_connector.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system_discovery.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_infrastructure.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_connector.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_grid.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_server.py +14 -1
- pulumi_oci/databasemanagement/get_external_listener.py +14 -1
- pulumi_oci/databasemanagement/get_managed_database_group.py +14 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +6 -6
- pulumi_oci/databasemanagement/get_named_credential.py +14 -1
- pulumi_oci/databasemanagement/managed_database.py +28 -0
- pulumi_oci/databasemanagement/managed_database_group.py +28 -0
- pulumi_oci/databasemanagement/named_credential.py +28 -0
- pulumi_oci/databasemanagement/outputs.py +1723 -214
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemigration/_inputs.py +20 -0
- pulumi_oci/databasemigration/connection.py +13 -0
- pulumi_oci/databasemigration/get_connection.py +3 -0
- pulumi_oci/databasemigration/get_migration.py +3 -0
- pulumi_oci/databasemigration/migration.py +13 -0
- pulumi_oci/databasemigration/outputs.py +68 -0
- pulumi_oci/datasafe/__init__.py +3 -0
- pulumi_oci/datasafe/_inputs.py +80 -0
- pulumi_oci/datasafe/get_masking_policy.py +11 -1
- pulumi_oci/datasafe/get_masking_policy_health_report.py +235 -0
- pulumi_oci/datasafe/get_masking_policy_health_report_logs.py +153 -0
- pulumi_oci/datasafe/get_masking_policy_health_reports.py +267 -0
- pulumi_oci/datasafe/masking_policy.py +75 -28
- pulumi_oci/datasafe/outputs.py +287 -0
- pulumi_oci/networkloadbalancer/backend_set.py +49 -0
- pulumi_oci/networkloadbalancer/get_backend_set.py +14 -1
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +49 -0
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/provider.py +8 -8
- pulumi_oci/recoverymod/_inputs.py +16 -0
- pulumi_oci/recoverymod/get_protected_database.py +25 -5
- pulumi_oci/recoverymod/get_protection_policies.py +1 -7
- pulumi_oci/recoverymod/get_protection_policy.py +15 -8
- pulumi_oci/recoverymod/get_recovery_service_subnet.py +32 -9
- pulumi_oci/recoverymod/get_recovery_service_subnets.py +3 -21
- pulumi_oci/recoverymod/outputs.py +96 -24
- pulumi_oci/recoverymod/protected_database.py +95 -16
- pulumi_oci/recoverymod/protection_policy.py +121 -54
- pulumi_oci/recoverymod/recovery_service_subnet.py +143 -55
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/RECORD +108 -94
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py
CHANGED
@@ -59,6 +59,8 @@ if typing.TYPE_CHECKING:
|
|
59
59
|
cloudguard = __cloudguard
|
60
60
|
import pulumi_oci.cloudmigrations as __cloudmigrations
|
61
61
|
cloudmigrations = __cloudmigrations
|
62
|
+
import pulumi_oci.clusterplacementgroups as __clusterplacementgroups
|
63
|
+
clusterplacementgroups = __clusterplacementgroups
|
62
64
|
import pulumi_oci.computecloud as __computecloud
|
63
65
|
computecloud = __computecloud
|
64
66
|
import pulumi_oci.computeinstanceagent as __computeinstanceagent
|
@@ -261,6 +263,7 @@ else:
|
|
261
263
|
cloudbridge = _utilities.lazy_import('pulumi_oci.cloudbridge')
|
262
264
|
cloudguard = _utilities.lazy_import('pulumi_oci.cloudguard')
|
263
265
|
cloudmigrations = _utilities.lazy_import('pulumi_oci.cloudmigrations')
|
266
|
+
clusterplacementgroups = _utilities.lazy_import('pulumi_oci.clusterplacementgroups')
|
264
267
|
computecloud = _utilities.lazy_import('pulumi_oci.computecloud')
|
265
268
|
computeinstanceagent = _utilities.lazy_import('pulumi_oci.computeinstanceagent')
|
266
269
|
config = _utilities.lazy_import('pulumi_oci.config')
|
@@ -1025,6 +1028,14 @@ _utilities.register(
|
|
1025
1028
|
"oci:CloudMigrations/targetAsset:TargetAsset": "TargetAsset"
|
1026
1029
|
}
|
1027
1030
|
},
|
1031
|
+
{
|
1032
|
+
"pkg": "oci",
|
1033
|
+
"mod": "ClusterPlacementGroups/clusterPlacementGroup",
|
1034
|
+
"fqn": "pulumi_oci.clusterplacementgroups",
|
1035
|
+
"classes": {
|
1036
|
+
"oci:ClusterPlacementGroups/clusterPlacementGroup:ClusterPlacementGroup": "ClusterPlacementGroup"
|
1037
|
+
}
|
1038
|
+
},
|
1028
1039
|
{
|
1029
1040
|
"pkg": "oci",
|
1030
1041
|
"mod": "ComputeCloud/atCustomerCccInfrastructure",
|
@@ -2777,6 +2788,14 @@ _utilities.register(
|
|
2777
2788
|
"oci:Database/vmClusterRemoveVirtualMachine:VmClusterRemoveVirtualMachine": "VmClusterRemoveVirtualMachine"
|
2778
2789
|
}
|
2779
2790
|
},
|
2791
|
+
{
|
2792
|
+
"pkg": "oci",
|
2793
|
+
"mod": "DatabaseManagement/databaseDbmFeaturesManagement",
|
2794
|
+
"fqn": "pulumi_oci.databasemanagement",
|
2795
|
+
"classes": {
|
2796
|
+
"oci:DatabaseManagement/databaseDbmFeaturesManagement:DatabaseDbmFeaturesManagement": "DatabaseDbmFeaturesManagement"
|
2797
|
+
}
|
2798
|
+
},
|
2780
2799
|
{
|
2781
2800
|
"pkg": "oci",
|
2782
2801
|
"mod": "DatabaseManagement/dbManagementPrivateEndpoint",
|
@@ -2921,6 +2940,30 @@ _utilities.register(
|
|
2921
2940
|
"oci:DatabaseManagement/externalListener:ExternalListener": "ExternalListener"
|
2922
2941
|
}
|
2923
2942
|
},
|
2943
|
+
{
|
2944
|
+
"pkg": "oci",
|
2945
|
+
"mod": "DatabaseManagement/externalcontainerdatabaseExternalContainerDbmFeaturesManagement",
|
2946
|
+
"fqn": "pulumi_oci.databasemanagement",
|
2947
|
+
"classes": {
|
2948
|
+
"oci:DatabaseManagement/externalcontainerdatabaseExternalContainerDbmFeaturesManagement:ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement": "ExternalcontainerdatabaseExternalContainerDbmFeaturesManagement"
|
2949
|
+
}
|
2950
|
+
},
|
2951
|
+
{
|
2952
|
+
"pkg": "oci",
|
2953
|
+
"mod": "DatabaseManagement/externalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement",
|
2954
|
+
"fqn": "pulumi_oci.databasemanagement",
|
2955
|
+
"classes": {
|
2956
|
+
"oci:DatabaseManagement/externalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement:ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement": "ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagement"
|
2957
|
+
}
|
2958
|
+
},
|
2959
|
+
{
|
2960
|
+
"pkg": "oci",
|
2961
|
+
"mod": "DatabaseManagement/externalpluggabledatabaseExternalPluggableDbmFeaturesManagement",
|
2962
|
+
"fqn": "pulumi_oci.databasemanagement",
|
2963
|
+
"classes": {
|
2964
|
+
"oci:DatabaseManagement/externalpluggabledatabaseExternalPluggableDbmFeaturesManagement:ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement": "ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagement"
|
2965
|
+
}
|
2966
|
+
},
|
2924
2967
|
{
|
2925
2968
|
"pkg": "oci",
|
2926
2969
|
"mod": "DatabaseManagement/managedDatabase",
|
@@ -2961,6 +3004,14 @@ _utilities.register(
|
|
2961
3004
|
"oci:DatabaseManagement/namedCredential:NamedCredential": "NamedCredential"
|
2962
3005
|
}
|
2963
3006
|
},
|
3007
|
+
{
|
3008
|
+
"pkg": "oci",
|
3009
|
+
"mod": "DatabaseManagement/pluggabledatabasePluggableDatabaseDbmFeaturesManagement",
|
3010
|
+
"fqn": "pulumi_oci.databasemanagement",
|
3011
|
+
"classes": {
|
3012
|
+
"oci:DatabaseManagement/pluggabledatabasePluggableDatabaseDbmFeaturesManagement:PluggabledatabasePluggableDatabaseDbmFeaturesManagement": "PluggabledatabasePluggableDatabaseDbmFeaturesManagement"
|
3013
|
+
}
|
3014
|
+
},
|
2964
3015
|
{
|
2965
3016
|
"pkg": "oci",
|
2966
3017
|
"mod": "DatabaseMigration/connection",
|
@@ -0,0 +1,12 @@
|
|
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
|
+
from .. import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .cluster_placement_group import *
|
9
|
+
from .get_cluster_placement_group import *
|
10
|
+
from .get_cluster_placement_groups import *
|
11
|
+
from ._inputs import *
|
12
|
+
from . import outputs
|
@@ -0,0 +1,159 @@
|
|
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__ = [
|
13
|
+
'ClusterPlacementGroupCapabilitiesArgs',
|
14
|
+
'ClusterPlacementGroupCapabilitiesItemArgs',
|
15
|
+
'ClusterPlacementGroupPlacementInstructionArgs',
|
16
|
+
'GetClusterPlacementGroupsFilterArgs',
|
17
|
+
]
|
18
|
+
|
19
|
+
@pulumi.input_type
|
20
|
+
class ClusterPlacementGroupCapabilitiesArgs:
|
21
|
+
def __init__(__self__, *,
|
22
|
+
items: pulumi.Input[Sequence[pulumi.Input['ClusterPlacementGroupCapabilitiesItemArgs']]]):
|
23
|
+
"""
|
24
|
+
:param pulumi.Input[Sequence[pulumi.Input['ClusterPlacementGroupCapabilitiesItemArgs']]] items: The supported resources.
|
25
|
+
"""
|
26
|
+
pulumi.set(__self__, "items", items)
|
27
|
+
|
28
|
+
@property
|
29
|
+
@pulumi.getter
|
30
|
+
def items(self) -> pulumi.Input[Sequence[pulumi.Input['ClusterPlacementGroupCapabilitiesItemArgs']]]:
|
31
|
+
"""
|
32
|
+
The supported resources.
|
33
|
+
"""
|
34
|
+
return pulumi.get(self, "items")
|
35
|
+
|
36
|
+
@items.setter
|
37
|
+
def items(self, value: pulumi.Input[Sequence[pulumi.Input['ClusterPlacementGroupCapabilitiesItemArgs']]]):
|
38
|
+
pulumi.set(self, "items", value)
|
39
|
+
|
40
|
+
|
41
|
+
@pulumi.input_type
|
42
|
+
class ClusterPlacementGroupCapabilitiesItemArgs:
|
43
|
+
def __init__(__self__, *,
|
44
|
+
name: pulumi.Input[str],
|
45
|
+
service: pulumi.Input[str]):
|
46
|
+
"""
|
47
|
+
:param pulumi.Input[str] name: The friendly name of the cluster placement group.
|
48
|
+
:param pulumi.Input[str] service: The service that the resource is part of.
|
49
|
+
"""
|
50
|
+
pulumi.set(__self__, "name", name)
|
51
|
+
pulumi.set(__self__, "service", service)
|
52
|
+
|
53
|
+
@property
|
54
|
+
@pulumi.getter
|
55
|
+
def name(self) -> pulumi.Input[str]:
|
56
|
+
"""
|
57
|
+
The friendly name of the cluster placement group.
|
58
|
+
"""
|
59
|
+
return pulumi.get(self, "name")
|
60
|
+
|
61
|
+
@name.setter
|
62
|
+
def name(self, value: pulumi.Input[str]):
|
63
|
+
pulumi.set(self, "name", value)
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter
|
67
|
+
def service(self) -> pulumi.Input[str]:
|
68
|
+
"""
|
69
|
+
The service that the resource is part of.
|
70
|
+
"""
|
71
|
+
return pulumi.get(self, "service")
|
72
|
+
|
73
|
+
@service.setter
|
74
|
+
def service(self, value: pulumi.Input[str]):
|
75
|
+
pulumi.set(self, "service", value)
|
76
|
+
|
77
|
+
|
78
|
+
@pulumi.input_type
|
79
|
+
class ClusterPlacementGroupPlacementInstructionArgs:
|
80
|
+
def __init__(__self__, *,
|
81
|
+
type: pulumi.Input[str],
|
82
|
+
value: pulumi.Input[str]):
|
83
|
+
"""
|
84
|
+
:param pulumi.Input[str] type: The type of placement instruction.
|
85
|
+
:param pulumi.Input[str] value: The value of the token designated for placement of the cluster placement group upon creation.
|
86
|
+
"""
|
87
|
+
pulumi.set(__self__, "type", type)
|
88
|
+
pulumi.set(__self__, "value", value)
|
89
|
+
|
90
|
+
@property
|
91
|
+
@pulumi.getter
|
92
|
+
def type(self) -> pulumi.Input[str]:
|
93
|
+
"""
|
94
|
+
The type of placement instruction.
|
95
|
+
"""
|
96
|
+
return pulumi.get(self, "type")
|
97
|
+
|
98
|
+
@type.setter
|
99
|
+
def type(self, value: pulumi.Input[str]):
|
100
|
+
pulumi.set(self, "type", value)
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter
|
104
|
+
def value(self) -> pulumi.Input[str]:
|
105
|
+
"""
|
106
|
+
The value of the token designated for placement of the cluster placement group upon creation.
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "value")
|
109
|
+
|
110
|
+
@value.setter
|
111
|
+
def value(self, value: pulumi.Input[str]):
|
112
|
+
pulumi.set(self, "value", value)
|
113
|
+
|
114
|
+
|
115
|
+
@pulumi.input_type
|
116
|
+
class GetClusterPlacementGroupsFilterArgs:
|
117
|
+
def __init__(__self__, *,
|
118
|
+
name: str,
|
119
|
+
values: Sequence[str],
|
120
|
+
regex: Optional[bool] = None):
|
121
|
+
"""
|
122
|
+
:param str name: A filter to return only the resources that match the entire display name specified.
|
123
|
+
"""
|
124
|
+
pulumi.set(__self__, "name", name)
|
125
|
+
pulumi.set(__self__, "values", values)
|
126
|
+
if regex is not None:
|
127
|
+
pulumi.set(__self__, "regex", regex)
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter
|
131
|
+
def name(self) -> str:
|
132
|
+
"""
|
133
|
+
A filter to return only the resources that match the entire display name specified.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "name")
|
136
|
+
|
137
|
+
@name.setter
|
138
|
+
def name(self, value: str):
|
139
|
+
pulumi.set(self, "name", value)
|
140
|
+
|
141
|
+
@property
|
142
|
+
@pulumi.getter
|
143
|
+
def values(self) -> Sequence[str]:
|
144
|
+
return pulumi.get(self, "values")
|
145
|
+
|
146
|
+
@values.setter
|
147
|
+
def values(self, value: Sequence[str]):
|
148
|
+
pulumi.set(self, "values", value)
|
149
|
+
|
150
|
+
@property
|
151
|
+
@pulumi.getter
|
152
|
+
def regex(self) -> Optional[bool]:
|
153
|
+
return pulumi.get(self, "regex")
|
154
|
+
|
155
|
+
@regex.setter
|
156
|
+
def regex(self, value: Optional[bool]):
|
157
|
+
pulumi.set(self, "regex", value)
|
158
|
+
|
159
|
+
|