pulumi-oci 2.21.0a1736852431__py3-none-any.whl → 2.22.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 +8 -0
- pulumi_oci/bigdataservice/bds_instance_api_key.py +0 -14
- pulumi_oci/bigdataservice/get_bds_instance_api_key.py +0 -2
- pulumi_oci/bigdataservice/outputs.py +0 -4
- pulumi_oci/core/__init__.py +3 -0
- pulumi_oci/core/_inputs.py +414 -21
- pulumi_oci/core/byoasn.py +595 -0
- pulumi_oci/core/get_byoasn.py +268 -0
- pulumi_oci/core/get_byoasns.py +131 -0
- pulumi_oci/core/get_byoip_range.py +15 -1
- pulumi_oci/core/get_instance.py +15 -1
- pulumi_oci/core/get_ipv6.py +15 -1
- pulumi_oci/core/get_private_ip.py +12 -1
- pulumi_oci/core/get_virtual_circuit.py +1 -1
- pulumi_oci/core/get_vnic.py +12 -1
- pulumi_oci/core/instance.py +54 -7
- pulumi_oci/core/instance_configuration.py +16 -0
- pulumi_oci/core/ipv6.py +52 -3
- pulumi_oci/core/outputs.py +1019 -52
- pulumi_oci/core/private_ip.py +49 -0
- pulumi_oci/core/virtual_circuit.py +4 -4
- pulumi_oci/database/_inputs.py +696 -89
- pulumi_oci/database/autonomous_database.py +98 -4
- pulumi_oci/database/autonomous_exadata_infrastructure.py +0 -2
- pulumi_oci/database/autonomous_vm_cluster.py +0 -2
- pulumi_oci/database/cloud_exadata_infrastructure.py +0 -2
- pulumi_oci/database/data_guard_association.py +75 -28
- pulumi_oci/database/database.py +147 -32
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +0 -2
- pulumi_oci/database/get_autonomous_database.py +30 -2
- pulumi_oci/database/get_data_guard_association.py +12 -1
- pulumi_oci/database/get_database.py +40 -1
- pulumi_oci/database/outputs.py +994 -114
- pulumi_oci/networkloadbalancer/__init__.py +1 -0
- pulumi_oci/networkloadbalancer/_inputs.py +6 -6
- pulumi_oci/networkloadbalancer/backend.py +7 -7
- pulumi_oci/networkloadbalancer/backend_set.py +105 -7
- pulumi_oci/networkloadbalancer/get_backend_set.py +30 -2
- pulumi_oci/networkloadbalancer/get_network_load_balancer_backend_set_backend_operational_status.py +165 -0
- pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -7
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +105 -7
- pulumi_oci/networkloadbalancer/outputs.py +34 -12
- pulumi_oci/opensearch/_inputs.py +312 -0
- pulumi_oci/opensearch/cluster.py +289 -104
- pulumi_oci/opensearch/get_opensearch_cluster.py +84 -2
- pulumi_oci/opensearch/get_opensearch_clusters.py +1 -1
- pulumi_oci/opensearch/outputs.py +678 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.22.0.dist-info}/METADATA +7 -1
- {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.22.0.dist-info}/RECORD +53 -49
- {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.22.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.21.0a1736852431.dist-info → pulumi_oci-2.22.0.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py
CHANGED
@@ -1236,6 +1236,14 @@ _utilities.register(
|
|
1236
1236
|
"oci:Core/bootVolumeBackup:BootVolumeBackup": "BootVolumeBackup"
|
1237
1237
|
}
|
1238
1238
|
},
|
1239
|
+
{
|
1240
|
+
"pkg": "oci",
|
1241
|
+
"mod": "Core/byoasn",
|
1242
|
+
"fqn": "pulumi_oci.core",
|
1243
|
+
"classes": {
|
1244
|
+
"oci:Core/byoasn:Byoasn": "Byoasn"
|
1245
|
+
}
|
1246
|
+
},
|
1239
1247
|
{
|
1240
1248
|
"pkg": "oci",
|
1241
1249
|
"mod": "Core/captureFilter",
|
@@ -28,9 +28,7 @@ class BdsInstanceApiKeyArgs:
|
|
28
28
|
"""
|
29
29
|
The set of arguments for constructing a BdsInstanceApiKey resource.
|
30
30
|
:param pulumi.Input[str] bds_instance_id: The OCID of the cluster.
|
31
|
-
<<<<<<< ours
|
32
31
|
:param pulumi.Input[str] key_alias: User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
|
33
|
-
>>>>>>> theirs
|
34
32
|
:param pulumi.Input[str] passphrase: Base64 passphrase used to secure the private key which will be created on user behalf.
|
35
33
|
:param pulumi.Input[str] user_id: The OCID of the user for whom this new generated API key pair will be created.
|
36
34
|
|
@@ -54,7 +52,6 @@ class BdsInstanceApiKeyArgs:
|
|
54
52
|
def bds_instance_id(self) -> pulumi.Input[str]:
|
55
53
|
"""
|
56
54
|
The OCID of the cluster.
|
57
|
-
<<<<<<< ours
|
58
55
|
"""
|
59
56
|
return pulumi.get(self, "bds_instance_id")
|
60
57
|
|
@@ -67,7 +64,6 @@ class BdsInstanceApiKeyArgs:
|
|
67
64
|
def key_alias(self) -> pulumi.Input[str]:
|
68
65
|
"""
|
69
66
|
User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
|
70
|
-
>>>>>>> theirs
|
71
67
|
"""
|
72
68
|
return pulumi.get(self, "key_alias")
|
73
69
|
|
@@ -145,12 +141,10 @@ class _BdsInstanceApiKeyState:
|
|
145
141
|
"""
|
146
142
|
Input properties used for looking up and filtering BdsInstanceApiKey resources.
|
147
143
|
:param pulumi.Input[str] bds_instance_id: The OCID of the cluster.
|
148
|
-
<<<<<<< ours
|
149
144
|
:param pulumi.Input[str] default_region: The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
|
150
145
|
:param pulumi.Input[str] domain_ocid: Identity domain OCID , where user is present. For default domain , this field will be optional.
|
151
146
|
:param pulumi.Input[str] fingerprint: The fingerprint that corresponds to the public API key requested.
|
152
147
|
:param pulumi.Input[str] key_alias: User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
|
153
|
-
>>>>>>> theirs
|
154
148
|
:param pulumi.Input[str] passphrase: Base64 passphrase used to secure the private key which will be created on user behalf.
|
155
149
|
:param pulumi.Input[str] pemfilepath: The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
|
156
150
|
:param pulumi.Input[str] state: The current status of the API key.
|
@@ -190,7 +184,6 @@ class _BdsInstanceApiKeyState:
|
|
190
184
|
def bds_instance_id(self) -> Optional[pulumi.Input[str]]:
|
191
185
|
"""
|
192
186
|
The OCID of the cluster.
|
193
|
-
<<<<<<< ours
|
194
187
|
"""
|
195
188
|
return pulumi.get(self, "bds_instance_id")
|
196
189
|
|
@@ -239,7 +232,6 @@ class _BdsInstanceApiKeyState:
|
|
239
232
|
def key_alias(self) -> Optional[pulumi.Input[str]]:
|
240
233
|
"""
|
241
234
|
User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
|
242
|
-
>>>>>>> theirs
|
243
235
|
"""
|
244
236
|
return pulumi.get(self, "key_alias")
|
245
237
|
|
@@ -367,11 +359,9 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
367
359
|
:param str resource_name: The name of the resource.
|
368
360
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
369
361
|
:param pulumi.Input[str] bds_instance_id: The OCID of the cluster.
|
370
|
-
<<<<<<< ours
|
371
362
|
:param pulumi.Input[str] default_region: The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
|
372
363
|
:param pulumi.Input[str] domain_ocid: Identity domain OCID , where user is present. For default domain , this field will be optional.
|
373
364
|
:param pulumi.Input[str] key_alias: User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
|
374
|
-
>>>>>>> theirs
|
375
365
|
:param pulumi.Input[str] passphrase: Base64 passphrase used to secure the private key which will be created on user behalf.
|
376
366
|
:param pulumi.Input[str] user_id: The OCID of the user for whom this new generated API key pair will be created.
|
377
367
|
|
@@ -493,12 +483,10 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
493
483
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
494
484
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
495
485
|
:param pulumi.Input[str] bds_instance_id: The OCID of the cluster.
|
496
|
-
<<<<<<< ours
|
497
486
|
:param pulumi.Input[str] default_region: The name of the region to establish the Object Storage endpoint. See https://docs.oracle.com/en-us/iaas/api/#/en/identity/20160918/Region/ for additional information.
|
498
487
|
:param pulumi.Input[str] domain_ocid: Identity domain OCID , where user is present. For default domain , this field will be optional.
|
499
488
|
:param pulumi.Input[str] fingerprint: The fingerprint that corresponds to the public API key requested.
|
500
489
|
:param pulumi.Input[str] key_alias: User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
|
501
|
-
>>>>>>> theirs
|
502
490
|
:param pulumi.Input[str] passphrase: Base64 passphrase used to secure the private key which will be created on user behalf.
|
503
491
|
:param pulumi.Input[str] pemfilepath: The full path and file name of the private key used for authentication. This location will be automatically selected on the BDS local file system.
|
504
492
|
:param pulumi.Input[str] state: The current status of the API key.
|
@@ -532,7 +520,6 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
532
520
|
def bds_instance_id(self) -> pulumi.Output[str]:
|
533
521
|
"""
|
534
522
|
The OCID of the cluster.
|
535
|
-
<<<<<<< ours
|
536
523
|
"""
|
537
524
|
return pulumi.get(self, "bds_instance_id")
|
538
525
|
|
@@ -565,7 +552,6 @@ class BdsInstanceApiKey(pulumi.CustomResource):
|
|
565
552
|
def key_alias(self) -> pulumi.Output[str]:
|
566
553
|
"""
|
567
554
|
User friendly identifier used to uniquely differentiate between different API keys associated with this Big Data Service cluster. Only ASCII alphanumeric characters with no spaces allowed.
|
568
|
-
>>>>>>> theirs
|
569
555
|
"""
|
570
556
|
return pulumi.get(self, "key_alias")
|
571
557
|
|
@@ -82,7 +82,6 @@ class GetBdsInstanceApiKeyResult:
|
|
82
82
|
def default_region(self) -> str:
|
83
83
|
"""
|
84
84
|
The name of the region to establish the Object Storage endpoint which was set as part of key creation operation. If no region was provided this will be set to be the same region where the cluster lives. Example us-phoenix-1 .
|
85
|
-
>>>>>>> theirs
|
86
85
|
"""
|
87
86
|
return pulumi.get(self, "default_region")
|
88
87
|
|
@@ -91,7 +90,6 @@ class GetBdsInstanceApiKeyResult:
|
|
91
90
|
def domain_ocid(self) -> str:
|
92
91
|
"""
|
93
92
|
Identity domain OCID ,where user is present. For default domain ,this field will be optional.
|
94
|
-
=======
|
95
93
|
"""
|
96
94
|
return pulumi.get(self, "domain_ocid")
|
97
95
|
|
@@ -5396,9 +5396,7 @@ class GetBdsInstanceApiKeysBdsApiKeyResult(dict):
|
|
5396
5396
|
"""
|
5397
5397
|
:param str bds_instance_id: The OCID of the cluster.
|
5398
5398
|
:param str default_region: The name of the region to establish the Object Storage endpoint which was set as part of key creation operation. If no region was provided this will be set to be the same region where the cluster lives. Example us-phoenix-1 .
|
5399
|
-
>>>>>>> theirs
|
5400
5399
|
:param str domain_ocid: Identity domain OCID ,where user is present. For default domain ,this field will be optional.
|
5401
|
-
=======
|
5402
5400
|
:param str fingerprint: The fingerprint that corresponds to the public API key requested.
|
5403
5401
|
:param str id: Identifier of the user's API key.
|
5404
5402
|
:param str key_alias: User friendly identifier used to uniquely differentiate between different API keys. Only ASCII alphanumeric characters with no spaces allowed.
|
@@ -5434,7 +5432,6 @@ class GetBdsInstanceApiKeysBdsApiKeyResult(dict):
|
|
5434
5432
|
def default_region(self) -> str:
|
5435
5433
|
"""
|
5436
5434
|
The name of the region to establish the Object Storage endpoint which was set as part of key creation operation. If no region was provided this will be set to be the same region where the cluster lives. Example us-phoenix-1 .
|
5437
|
-
>>>>>>> theirs
|
5438
5435
|
"""
|
5439
5436
|
return pulumi.get(self, "default_region")
|
5440
5437
|
|
@@ -5443,7 +5440,6 @@ class GetBdsInstanceApiKeysBdsApiKeyResult(dict):
|
|
5443
5440
|
def domain_ocid(self) -> str:
|
5444
5441
|
"""
|
5445
5442
|
Identity domain OCID ,where user is present. For default domain ,this field will be optional.
|
5446
|
-
=======
|
5447
5443
|
"""
|
5448
5444
|
return pulumi.get(self, "domain_ocid")
|
5449
5445
|
|
pulumi_oci/core/__init__.py
CHANGED
@@ -9,6 +9,7 @@ from .app_catalog_listing_resource_version_agreement import *
|
|
9
9
|
from .app_catalog_subscription import *
|
10
10
|
from .boot_volume import *
|
11
11
|
from .boot_volume_backup import *
|
12
|
+
from .byoasn import *
|
12
13
|
from .capture_filter import *
|
13
14
|
from .cluster_network import *
|
14
15
|
from .compute_capacity_report import *
|
@@ -47,6 +48,8 @@ from .get_boot_volume_backups import *
|
|
47
48
|
from .get_boot_volume_replica import *
|
48
49
|
from .get_boot_volume_replicas import *
|
49
50
|
from .get_boot_volumes import *
|
51
|
+
from .get_byoasn import *
|
52
|
+
from .get_byoasns import *
|
50
53
|
from .get_byoip_allocated_ranges import *
|
51
54
|
from .get_byoip_range import *
|
52
55
|
from .get_byoip_ranges import *
|