pulumi-oci 2.13.0a1729059403__py3-none-any.whl → 2.13.0a1729613556__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.
Files changed (65) hide show
  1. pulumi_oci/__init__.py +24 -19
  2. pulumi_oci/containerengine/_inputs.py +341 -0
  3. pulumi_oci/containerengine/cluster.py +64 -0
  4. pulumi_oci/containerengine/get_cluster.py +12 -1
  5. pulumi_oci/containerengine/outputs.py +582 -0
  6. pulumi_oci/core/_inputs.py +299 -37
  7. pulumi_oci/core/boot_volume.py +90 -5
  8. pulumi_oci/core/get_block_volume_replica.py +15 -1
  9. pulumi_oci/core/get_boot_volume.py +15 -4
  10. pulumi_oci/core/get_boot_volume_replica.py +15 -1
  11. pulumi_oci/core/get_volume.py +18 -4
  12. pulumi_oci/core/instance_configuration.py +4 -0
  13. pulumi_oci/core/outputs.py +573 -46
  14. pulumi_oci/core/volume.py +110 -12
  15. pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
  16. pulumi_oci/core/volume_group.py +56 -5
  17. pulumi_oci/datasafe/__init__.py +1 -0
  18. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
  19. pulumi_oci/desktops/_inputs.py +175 -13
  20. pulumi_oci/desktops/desktop_pool.py +67 -0
  21. pulumi_oci/desktops/get_desktop_pool.py +16 -1
  22. pulumi_oci/desktops/outputs.py +339 -18
  23. pulumi_oci/dns/__init__.py +2 -0
  24. pulumi_oci/dns/_inputs.py +1157 -12
  25. pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
  26. pulumi_oci/dns/get_records.py +45 -13
  27. pulumi_oci/dns/get_resolver.py +8 -6
  28. pulumi_oci/dns/get_resolver_endpoint.py +8 -6
  29. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  30. pulumi_oci/dns/get_resolvers.py +12 -12
  31. pulumi_oci/dns/get_rrset.py +16 -16
  32. pulumi_oci/dns/get_rrsets.py +12 -10
  33. pulumi_oci/dns/get_view.py +8 -4
  34. pulumi_oci/dns/get_views.py +12 -12
  35. pulumi_oci/dns/get_zones.py +33 -13
  36. pulumi_oci/dns/outputs.py +1388 -79
  37. pulumi_oci/dns/record.py +12 -12
  38. pulumi_oci/dns/resolver.py +7 -7
  39. pulumi_oci/dns/resolver_endpoint.py +2 -2
  40. pulumi_oci/dns/rrset.py +50 -41
  41. pulumi_oci/dns/zone.py +176 -17
  42. pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
  43. pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
  44. pulumi_oci/goldengate/__init__.py +1 -0
  45. pulumi_oci/goldengate/_inputs.py +165 -0
  46. pulumi_oci/goldengate/connection.py +49 -35
  47. pulumi_oci/goldengate/database_registration.py +7 -7
  48. pulumi_oci/goldengate/deployment.py +79 -4
  49. pulumi_oci/goldengate/get_deployment.py +30 -2
  50. pulumi_oci/goldengate/get_deployment_environments.py +144 -0
  51. pulumi_oci/goldengate/outputs.py +409 -2
  52. pulumi_oci/pulumi-plugin.json +1 -1
  53. {pulumi_oci-2.13.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/METADATA +1 -1
  54. {pulumi_oci-2.13.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/RECORD +56 -61
  55. {pulumi_oci-2.13.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/WHEEL +1 -1
  56. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  57. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  58. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
  59. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  60. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
  61. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  62. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
  63. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
  64. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
  65. {pulumi_oci-2.13.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/top_level.txt +0 -0
@@ -27,6 +27,7 @@ __all__ = [
27
27
  'DeploymentMaintenanceConfiguration',
28
28
  'DeploymentMaintenanceWindow',
29
29
  'DeploymentOggData',
30
+ 'DeploymentOggDataGroupToRolesMapping',
30
31
  'GetConnectionAdditionalAttributeResult',
31
32
  'GetConnectionAssignmentsConnectionAssignmentCollectionResult',
32
33
  'GetConnectionAssignmentsConnectionAssignmentCollectionItemResult',
@@ -53,11 +54,15 @@ __all__ = [
53
54
  'GetDeploymentCertificatesCertificateCollectionItemResult',
54
55
  'GetDeploymentCertificatesFilterResult',
55
56
  'GetDeploymentDeploymentDiagnosticDataResult',
57
+ 'GetDeploymentEnvironmentsDeploymentEnvironmentCollectionResult',
58
+ 'GetDeploymentEnvironmentsDeploymentEnvironmentCollectionItemResult',
59
+ 'GetDeploymentEnvironmentsFilterResult',
56
60
  'GetDeploymentIngressIpResult',
57
61
  'GetDeploymentLockResult',
58
62
  'GetDeploymentMaintenanceConfigurationResult',
59
63
  'GetDeploymentMaintenanceWindowResult',
60
64
  'GetDeploymentOggDataResult',
65
+ 'GetDeploymentOggDataGroupToRolesMappingResult',
61
66
  'GetDeploymentTypeItemResult',
62
67
  'GetDeploymentTypesDeploymentTypeCollectionResult',
63
68
  'GetDeploymentTypesDeploymentTypeCollectionItemResult',
@@ -76,6 +81,7 @@ __all__ = [
76
81
  'GetDeploymentsDeploymentCollectionItemMaintenanceConfigurationResult',
77
82
  'GetDeploymentsDeploymentCollectionItemMaintenanceWindowResult',
78
83
  'GetDeploymentsDeploymentCollectionItemOggDataResult',
84
+ 'GetDeploymentsDeploymentCollectionItemOggDataGroupToRolesMappingResult',
79
85
  'GetDeploymentsFilterResult',
80
86
  'GetMessageItemResult',
81
87
  'GetMessagesDeploymentMessagesCollectionResult',
@@ -149,6 +155,7 @@ class ConnectionBootstrapServer(dict):
149
155
  :param str host: (Updatable) The name or address of a host.
150
156
  :param int port: (Updatable) The port of an endpoint usually specified for a connection.
151
157
  :param str private_ip: (Updatable) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
158
+
152
159
  The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
153
160
  """
154
161
  if host is not None:
@@ -179,6 +186,7 @@ class ConnectionBootstrapServer(dict):
179
186
  def private_ip(self) -> Optional[str]:
180
187
  """
181
188
  (Updatable) Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host field, or make sure the host name is resolvable in the target VCN.
189
+
182
190
  The private IP address of the connection's endpoint in the customer's VCN, typically a database endpoint or a big data endpoint (e.g. Kafka bootstrap server). In case the privateIp is provided, the subnetId must also be provided. In case the privateIp (and the subnetId) is not provided it is assumed the datasource is publicly accessible. In case the connection is accessible only privately, the lack of privateIp will result in not being able to access the connection.
183
191
  """
184
192
  return pulumi.get(self, "private_ip")
@@ -726,6 +734,8 @@ class DeploymentOggData(dict):
726
734
  suggest = "admin_username"
727
735
  elif key == "credentialStore":
728
736
  suggest = "credential_store"
737
+ elif key == "groupToRolesMapping":
738
+ suggest = "group_to_roles_mapping"
729
739
  elif key == "identityDomainId":
730
740
  suggest = "identity_domain_id"
731
741
  elif key == "oggVersion":
@@ -750,6 +760,7 @@ class DeploymentOggData(dict):
750
760
  admin_username: Optional[str] = None,
751
761
  certificate: Optional[str] = None,
752
762
  credential_store: Optional[str] = None,
763
+ group_to_roles_mapping: Optional['outputs.DeploymentOggDataGroupToRolesMapping'] = None,
753
764
  identity_domain_id: Optional[str] = None,
754
765
  key: Optional[str] = None,
755
766
  ogg_version: Optional[str] = None,
@@ -760,6 +771,7 @@ class DeploymentOggData(dict):
760
771
  :param str admin_username: (Updatable) The GoldenGate deployment console username.
761
772
  :param str certificate: (Updatable) The base64 encoded content of the PEM file containing the SSL certificate.
762
773
  :param str credential_store: (Updatable) The type of credential store for OGG.
774
+ :param 'DeploymentOggDataGroupToRolesMappingArgs' group_to_roles_mapping: (Updatable) Defines the IDP Groups to GoldenGate roles mapping. This field is used only for IAM deployment and does not have any impact on non-IAM deployments. For IAM deployment, when user does not specify this mapping, then it has null value and default mapping is used. User belonging to each group can only perform the actions according to the role the respective group is mapped to.
763
775
  :param str identity_domain_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Identity Domain when IAM credential store is used.
764
776
  :param str key: (Updatable) The base64 encoded content of the PEM file containing the private key.
765
777
  :param str ogg_version: Version of OGG
@@ -774,6 +786,8 @@ class DeploymentOggData(dict):
774
786
  pulumi.set(__self__, "certificate", certificate)
775
787
  if credential_store is not None:
776
788
  pulumi.set(__self__, "credential_store", credential_store)
789
+ if group_to_roles_mapping is not None:
790
+ pulumi.set(__self__, "group_to_roles_mapping", group_to_roles_mapping)
777
791
  if identity_domain_id is not None:
778
792
  pulumi.set(__self__, "identity_domain_id", identity_domain_id)
779
793
  if key is not None:
@@ -823,6 +837,14 @@ class DeploymentOggData(dict):
823
837
  """
824
838
  return pulumi.get(self, "credential_store")
825
839
 
840
+ @property
841
+ @pulumi.getter(name="groupToRolesMapping")
842
+ def group_to_roles_mapping(self) -> Optional['outputs.DeploymentOggDataGroupToRolesMapping']:
843
+ """
844
+ (Updatable) Defines the IDP Groups to GoldenGate roles mapping. This field is used only for IAM deployment and does not have any impact on non-IAM deployments. For IAM deployment, when user does not specify this mapping, then it has null value and default mapping is used. User belonging to each group can only perform the actions according to the role the respective group is mapped to.
845
+ """
846
+ return pulumi.get(self, "group_to_roles_mapping")
847
+
826
848
  @property
827
849
  @pulumi.getter(name="identityDomainId")
828
850
  def identity_domain_id(self) -> Optional[str]:
@@ -856,6 +878,83 @@ class DeploymentOggData(dict):
856
878
  return pulumi.get(self, "password_secret_id")
857
879
 
858
880
 
881
+ @pulumi.output_type
882
+ class DeploymentOggDataGroupToRolesMapping(dict):
883
+ @staticmethod
884
+ def __key_warning(key: str):
885
+ suggest = None
886
+ if key == "securityGroupId":
887
+ suggest = "security_group_id"
888
+ elif key == "administratorGroupId":
889
+ suggest = "administrator_group_id"
890
+ elif key == "operatorGroupId":
891
+ suggest = "operator_group_id"
892
+ elif key == "userGroupId":
893
+ suggest = "user_group_id"
894
+
895
+ if suggest:
896
+ pulumi.log.warn(f"Key '{key}' not found in DeploymentOggDataGroupToRolesMapping. Access the value via the '{suggest}' property getter instead.")
897
+
898
+ def __getitem__(self, key: str) -> Any:
899
+ DeploymentOggDataGroupToRolesMapping.__key_warning(key)
900
+ return super().__getitem__(key)
901
+
902
+ def get(self, key: str, default = None) -> Any:
903
+ DeploymentOggDataGroupToRolesMapping.__key_warning(key)
904
+ return super().get(key, default)
905
+
906
+ def __init__(__self__, *,
907
+ security_group_id: str,
908
+ administrator_group_id: Optional[str] = None,
909
+ operator_group_id: Optional[str] = None,
910
+ user_group_id: Optional[str] = None):
911
+ """
912
+ :param str security_group_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role securityGroup. It grants administration of security related objects and invoke security related service requests. This role has full privileges.
913
+ :param str administrator_group_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role administratorGroup. It grants full access to the user, including the ability to alter general, non-security related operational parameters and profiles of the server.
914
+ :param str operator_group_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role operatorGroup. It allows users to perform only operational actions, like starting and stopping resources. Operators cannot alter the operational parameters or profiles of the MA server.
915
+ :param str user_group_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role userGroup. It allows information-only service requests, which do not alter or affect the operation of either the MA. Examples of query and read-only information include performance metric information and resource status and monitoring information
916
+ """
917
+ pulumi.set(__self__, "security_group_id", security_group_id)
918
+ if administrator_group_id is not None:
919
+ pulumi.set(__self__, "administrator_group_id", administrator_group_id)
920
+ if operator_group_id is not None:
921
+ pulumi.set(__self__, "operator_group_id", operator_group_id)
922
+ if user_group_id is not None:
923
+ pulumi.set(__self__, "user_group_id", user_group_id)
924
+
925
+ @property
926
+ @pulumi.getter(name="securityGroupId")
927
+ def security_group_id(self) -> str:
928
+ """
929
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role securityGroup. It grants administration of security related objects and invoke security related service requests. This role has full privileges.
930
+ """
931
+ return pulumi.get(self, "security_group_id")
932
+
933
+ @property
934
+ @pulumi.getter(name="administratorGroupId")
935
+ def administrator_group_id(self) -> Optional[str]:
936
+ """
937
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role administratorGroup. It grants full access to the user, including the ability to alter general, non-security related operational parameters and profiles of the server.
938
+ """
939
+ return pulumi.get(self, "administrator_group_id")
940
+
941
+ @property
942
+ @pulumi.getter(name="operatorGroupId")
943
+ def operator_group_id(self) -> Optional[str]:
944
+ """
945
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role operatorGroup. It allows users to perform only operational actions, like starting and stopping resources. Operators cannot alter the operational parameters or profiles of the MA server.
946
+ """
947
+ return pulumi.get(self, "operator_group_id")
948
+
949
+ @property
950
+ @pulumi.getter(name="userGroupId")
951
+ def user_group_id(self) -> Optional[str]:
952
+ """
953
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role userGroup. It allows information-only service requests, which do not alter or affect the operation of either the MA. Examples of query and read-only information include performance metric information and resource status and monitoring information
954
+ """
955
+ return pulumi.get(self, "user_group_id")
956
+
957
+
859
958
  @pulumi.output_type
860
959
  class GetConnectionAdditionalAttributeResult(dict):
861
960
  def __init__(__self__, *,
@@ -3250,6 +3349,168 @@ class GetDeploymentDeploymentDiagnosticDataResult(dict):
3250
3349
  return pulumi.get(self, "time_diagnostic_start")
3251
3350
 
3252
3351
 
3352
+ @pulumi.output_type
3353
+ class GetDeploymentEnvironmentsDeploymentEnvironmentCollectionResult(dict):
3354
+ def __init__(__self__, *,
3355
+ items: Sequence['outputs.GetDeploymentEnvironmentsDeploymentEnvironmentCollectionItemResult']):
3356
+ """
3357
+ :param Sequence['GetDeploymentEnvironmentsDeploymentEnvironmentCollectionItemArgs'] items: Array of DeploymentEnvironmentSummary objects.
3358
+ """
3359
+ pulumi.set(__self__, "items", items)
3360
+
3361
+ @property
3362
+ @pulumi.getter
3363
+ def items(self) -> Sequence['outputs.GetDeploymentEnvironmentsDeploymentEnvironmentCollectionItemResult']:
3364
+ """
3365
+ Array of DeploymentEnvironmentSummary objects.
3366
+ """
3367
+ return pulumi.get(self, "items")
3368
+
3369
+
3370
+ @pulumi.output_type
3371
+ class GetDeploymentEnvironmentsDeploymentEnvironmentCollectionItemResult(dict):
3372
+ def __init__(__self__, *,
3373
+ category: str,
3374
+ default_cpu_core_count: int,
3375
+ display_name: str,
3376
+ environment_type: str,
3377
+ is_auto_scaling_enabled_by_default: bool,
3378
+ max_cpu_core_count: int,
3379
+ memory_per_ocpu_in_gbs: int,
3380
+ min_cpu_core_count: int,
3381
+ network_bandwidth_per_ocpu_in_gbps: int,
3382
+ storage_usage_limit_per_ocpu_in_gbs: int):
3383
+ """
3384
+ :param str category: The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
3385
+ :param int default_cpu_core_count: The default CPU core count.
3386
+ :param str display_name: An object's Display Name.
3387
+ :param str environment_type: Specifies whether the deployment is used in a production or development/testing environment.
3388
+ :param bool is_auto_scaling_enabled_by_default: Specifies whether the "Auto scaling" option should be enabled by default or not.
3389
+ :param int max_cpu_core_count: The maximum CPU core count.
3390
+ :param int memory_per_ocpu_in_gbs: The multiplier value between CPU core count and memory size.
3391
+ :param int min_cpu_core_count: The minimum CPU core count.
3392
+ :param int network_bandwidth_per_ocpu_in_gbps: The multiplier value between CPU core count and network bandwidth.
3393
+ :param int storage_usage_limit_per_ocpu_in_gbs: The multiplier value between CPU core count and storage usage limit size.
3394
+ """
3395
+ pulumi.set(__self__, "category", category)
3396
+ pulumi.set(__self__, "default_cpu_core_count", default_cpu_core_count)
3397
+ pulumi.set(__self__, "display_name", display_name)
3398
+ pulumi.set(__self__, "environment_type", environment_type)
3399
+ pulumi.set(__self__, "is_auto_scaling_enabled_by_default", is_auto_scaling_enabled_by_default)
3400
+ pulumi.set(__self__, "max_cpu_core_count", max_cpu_core_count)
3401
+ pulumi.set(__self__, "memory_per_ocpu_in_gbs", memory_per_ocpu_in_gbs)
3402
+ pulumi.set(__self__, "min_cpu_core_count", min_cpu_core_count)
3403
+ pulumi.set(__self__, "network_bandwidth_per_ocpu_in_gbps", network_bandwidth_per_ocpu_in_gbps)
3404
+ pulumi.set(__self__, "storage_usage_limit_per_ocpu_in_gbs", storage_usage_limit_per_ocpu_in_gbs)
3405
+
3406
+ @property
3407
+ @pulumi.getter
3408
+ def category(self) -> str:
3409
+ """
3410
+ The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
3411
+ """
3412
+ return pulumi.get(self, "category")
3413
+
3414
+ @property
3415
+ @pulumi.getter(name="defaultCpuCoreCount")
3416
+ def default_cpu_core_count(self) -> int:
3417
+ """
3418
+ The default CPU core count.
3419
+ """
3420
+ return pulumi.get(self, "default_cpu_core_count")
3421
+
3422
+ @property
3423
+ @pulumi.getter(name="displayName")
3424
+ def display_name(self) -> str:
3425
+ """
3426
+ An object's Display Name.
3427
+ """
3428
+ return pulumi.get(self, "display_name")
3429
+
3430
+ @property
3431
+ @pulumi.getter(name="environmentType")
3432
+ def environment_type(self) -> str:
3433
+ """
3434
+ Specifies whether the deployment is used in a production or development/testing environment.
3435
+ """
3436
+ return pulumi.get(self, "environment_type")
3437
+
3438
+ @property
3439
+ @pulumi.getter(name="isAutoScalingEnabledByDefault")
3440
+ def is_auto_scaling_enabled_by_default(self) -> bool:
3441
+ """
3442
+ Specifies whether the "Auto scaling" option should be enabled by default or not.
3443
+ """
3444
+ return pulumi.get(self, "is_auto_scaling_enabled_by_default")
3445
+
3446
+ @property
3447
+ @pulumi.getter(name="maxCpuCoreCount")
3448
+ def max_cpu_core_count(self) -> int:
3449
+ """
3450
+ The maximum CPU core count.
3451
+ """
3452
+ return pulumi.get(self, "max_cpu_core_count")
3453
+
3454
+ @property
3455
+ @pulumi.getter(name="memoryPerOcpuInGbs")
3456
+ def memory_per_ocpu_in_gbs(self) -> int:
3457
+ """
3458
+ The multiplier value between CPU core count and memory size.
3459
+ """
3460
+ return pulumi.get(self, "memory_per_ocpu_in_gbs")
3461
+
3462
+ @property
3463
+ @pulumi.getter(name="minCpuCoreCount")
3464
+ def min_cpu_core_count(self) -> int:
3465
+ """
3466
+ The minimum CPU core count.
3467
+ """
3468
+ return pulumi.get(self, "min_cpu_core_count")
3469
+
3470
+ @property
3471
+ @pulumi.getter(name="networkBandwidthPerOcpuInGbps")
3472
+ def network_bandwidth_per_ocpu_in_gbps(self) -> int:
3473
+ """
3474
+ The multiplier value between CPU core count and network bandwidth.
3475
+ """
3476
+ return pulumi.get(self, "network_bandwidth_per_ocpu_in_gbps")
3477
+
3478
+ @property
3479
+ @pulumi.getter(name="storageUsageLimitPerOcpuInGbs")
3480
+ def storage_usage_limit_per_ocpu_in_gbs(self) -> int:
3481
+ """
3482
+ The multiplier value between CPU core count and storage usage limit size.
3483
+ """
3484
+ return pulumi.get(self, "storage_usage_limit_per_ocpu_in_gbs")
3485
+
3486
+
3487
+ @pulumi.output_type
3488
+ class GetDeploymentEnvironmentsFilterResult(dict):
3489
+ def __init__(__self__, *,
3490
+ name: str,
3491
+ values: Sequence[str],
3492
+ regex: Optional[bool] = None):
3493
+ pulumi.set(__self__, "name", name)
3494
+ pulumi.set(__self__, "values", values)
3495
+ if regex is not None:
3496
+ pulumi.set(__self__, "regex", regex)
3497
+
3498
+ @property
3499
+ @pulumi.getter
3500
+ def name(self) -> str:
3501
+ return pulumi.get(self, "name")
3502
+
3503
+ @property
3504
+ @pulumi.getter
3505
+ def values(self) -> Sequence[str]:
3506
+ return pulumi.get(self, "values")
3507
+
3508
+ @property
3509
+ @pulumi.getter
3510
+ def regex(self) -> Optional[bool]:
3511
+ return pulumi.get(self, "regex")
3512
+
3513
+
3253
3514
  @pulumi.output_type
3254
3515
  class GetDeploymentIngressIpResult(dict):
3255
3516
  def __init__(__self__, *,
@@ -3418,6 +3679,7 @@ class GetDeploymentOggDataResult(dict):
3418
3679
  certificate: str,
3419
3680
  credential_store: str,
3420
3681
  deployment_name: str,
3682
+ group_to_roles_mappings: Sequence['outputs.GetDeploymentOggDataGroupToRolesMappingResult'],
3421
3683
  identity_domain_id: str,
3422
3684
  key: str,
3423
3685
  ogg_version: str,
@@ -3427,6 +3689,7 @@ class GetDeploymentOggDataResult(dict):
3427
3689
  :param str certificate: The base64 encoded content of the PEM file containing the SSL certificate.
3428
3690
  :param str credential_store: The type of credential store for OGG.
3429
3691
  :param str deployment_name: The name given to the GoldenGate service deployment. The name must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
3692
+ :param Sequence['GetDeploymentOggDataGroupToRolesMappingArgs'] group_to_roles_mappings: Defines the IDP Groups to GoldenGate roles mapping. This field is used only for IAM deployment and does not have any impact on non-IAM deployments. For IAM deployment, when user does not specify this mapping, then it has null value and default mapping is used. User belonging to each group can only perform the actions according to the role the respective group is mapped to.
3430
3693
  :param str identity_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Identity Domain when IAM credential store is used.
3431
3694
  :param str ogg_version: Version of OGG
3432
3695
  :param str password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the deployment password is stored.
@@ -3436,6 +3699,7 @@ class GetDeploymentOggDataResult(dict):
3436
3699
  pulumi.set(__self__, "certificate", certificate)
3437
3700
  pulumi.set(__self__, "credential_store", credential_store)
3438
3701
  pulumi.set(__self__, "deployment_name", deployment_name)
3702
+ pulumi.set(__self__, "group_to_roles_mappings", group_to_roles_mappings)
3439
3703
  pulumi.set(__self__, "identity_domain_id", identity_domain_id)
3440
3704
  pulumi.set(__self__, "key", key)
3441
3705
  pulumi.set(__self__, "ogg_version", ogg_version)
@@ -3478,6 +3742,14 @@ class GetDeploymentOggDataResult(dict):
3478
3742
  """
3479
3743
  return pulumi.get(self, "deployment_name")
3480
3744
 
3745
+ @property
3746
+ @pulumi.getter(name="groupToRolesMappings")
3747
+ def group_to_roles_mappings(self) -> Sequence['outputs.GetDeploymentOggDataGroupToRolesMappingResult']:
3748
+ """
3749
+ Defines the IDP Groups to GoldenGate roles mapping. This field is used only for IAM deployment and does not have any impact on non-IAM deployments. For IAM deployment, when user does not specify this mapping, then it has null value and default mapping is used. User belonging to each group can only perform the actions according to the role the respective group is mapped to.
3750
+ """
3751
+ return pulumi.get(self, "group_to_roles_mappings")
3752
+
3481
3753
  @property
3482
3754
  @pulumi.getter(name="identityDomainId")
3483
3755
  def identity_domain_id(self) -> str:
@@ -3508,6 +3780,57 @@ class GetDeploymentOggDataResult(dict):
3508
3780
  return pulumi.get(self, "password_secret_id")
3509
3781
 
3510
3782
 
3783
+ @pulumi.output_type
3784
+ class GetDeploymentOggDataGroupToRolesMappingResult(dict):
3785
+ def __init__(__self__, *,
3786
+ administrator_group_id: str,
3787
+ operator_group_id: str,
3788
+ security_group_id: str,
3789
+ user_group_id: str):
3790
+ """
3791
+ :param str administrator_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role administratorGroup. It grants full access to the user, including the ability to alter general, non-security related operational parameters and profiles of the server.
3792
+ :param str operator_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role operatorGroup. It allows users to perform only operational actions, like starting and stopping resources. Operators cannot alter the operational parameters or profiles of the MA server.
3793
+ :param str security_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role securityGroup. It grants administration of security related objects and invoke security related service requests. This role has full privileges.
3794
+ :param str user_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role userGroup. It allows information-only service requests, which do not alter or affect the operation of either the MA. Examples of query and read-only information include performance metric information and resource status and monitoring information
3795
+ """
3796
+ pulumi.set(__self__, "administrator_group_id", administrator_group_id)
3797
+ pulumi.set(__self__, "operator_group_id", operator_group_id)
3798
+ pulumi.set(__self__, "security_group_id", security_group_id)
3799
+ pulumi.set(__self__, "user_group_id", user_group_id)
3800
+
3801
+ @property
3802
+ @pulumi.getter(name="administratorGroupId")
3803
+ def administrator_group_id(self) -> str:
3804
+ """
3805
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role administratorGroup. It grants full access to the user, including the ability to alter general, non-security related operational parameters and profiles of the server.
3806
+ """
3807
+ return pulumi.get(self, "administrator_group_id")
3808
+
3809
+ @property
3810
+ @pulumi.getter(name="operatorGroupId")
3811
+ def operator_group_id(self) -> str:
3812
+ """
3813
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role operatorGroup. It allows users to perform only operational actions, like starting and stopping resources. Operators cannot alter the operational parameters or profiles of the MA server.
3814
+ """
3815
+ return pulumi.get(self, "operator_group_id")
3816
+
3817
+ @property
3818
+ @pulumi.getter(name="securityGroupId")
3819
+ def security_group_id(self) -> str:
3820
+ """
3821
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role securityGroup. It grants administration of security related objects and invoke security related service requests. This role has full privileges.
3822
+ """
3823
+ return pulumi.get(self, "security_group_id")
3824
+
3825
+ @property
3826
+ @pulumi.getter(name="userGroupId")
3827
+ def user_group_id(self) -> str:
3828
+ """
3829
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role userGroup. It allows information-only service requests, which do not alter or affect the operation of either the MA. Examples of query and read-only information include performance metric information and resource status and monitoring information
3830
+ """
3831
+ return pulumi.get(self, "user_group_id")
3832
+
3833
+
3511
3834
  @pulumi.output_type
3512
3835
  class GetDeploymentTypeItemResult(dict):
3513
3836
  def __init__(__self__, *,
@@ -4234,6 +4557,7 @@ class GetDeploymentsDeploymentCollectionResult(dict):
4234
4557
  @pulumi.output_type
4235
4558
  class GetDeploymentsDeploymentCollectionItemResult(dict):
4236
4559
  def __init__(__self__, *,
4560
+ category: str,
4237
4561
  compartment_id: str,
4238
4562
  cpu_core_count: int,
4239
4563
  defined_tags: Mapping[str, str],
@@ -4243,6 +4567,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
4243
4567
  deployment_url: str,
4244
4568
  description: str,
4245
4569
  display_name: str,
4570
+ environment_type: str,
4246
4571
  fqdn: str,
4247
4572
  freeform_tags: Mapping[str, str],
4248
4573
  id: str,
@@ -4277,6 +4602,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
4277
4602
  time_updated: str,
4278
4603
  time_upgrade_required: str):
4279
4604
  """
4605
+ :param str category: The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
4280
4606
  :param str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
4281
4607
  :param int cpu_core_count: The Minimum number of OCPUs to be made available for this Deployment.
4282
4608
  :param Mapping[str, str] defined_tags: Tags defined for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
@@ -4286,6 +4612,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
4286
4612
  :param str deployment_url: The URL of a resource.
4287
4613
  :param str description: Metadata about this specific object.
4288
4614
  :param str display_name: A filter to return only the resources that match the entire 'displayName' given.
4615
+ :param str environment_type: Specifies whether the deployment is used in a production or development/testing environment.
4289
4616
  :param str fqdn: A filter to return only the resources that match the 'fqdn' given.
4290
4617
  :param Mapping[str, str] freeform_tags: A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
4291
4618
  :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
@@ -4294,7 +4621,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
4294
4621
  :param bool is_healthy: True if all of the aggregate resources are working correctly.
4295
4622
  :param bool is_latest_version: Indicates if the resource is the the latest available version.
4296
4623
  :param bool is_public: True if this object is publicly available.
4297
- :param bool is_storage_utilization_limit_exceeded: Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
4624
+ :param bool is_storage_utilization_limit_exceeded: Deprecated: This field is not updated and will be removed in future versions. If storage utilization exceeds the limit, the respective warning message will appear in deployment messages, which can be accessed through /messages?deploymentId=. Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
4298
4625
  :param str license_model: The Oracle license model that applies to a Deployment.
4299
4626
  :param str lifecycle_details: Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
4300
4627
  :param str lifecycle_sub_state: A filter to return only the resources that match the 'lifecycleSubState' given.
@@ -4319,6 +4646,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
4319
4646
  :param str time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
4320
4647
  :param str time_upgrade_required: Note: Deprecated: Use timeOfNextMaintenance instead, or related upgrade records to check, when deployment will be forced to upgrade to a newer version. Old description: The date the existing version in use will no longer be considered as usable and an upgrade will be required. This date is typically 6 months after the version was released for use by GGS. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
4321
4648
  """
4649
+ pulumi.set(__self__, "category", category)
4322
4650
  pulumi.set(__self__, "compartment_id", compartment_id)
4323
4651
  pulumi.set(__self__, "cpu_core_count", cpu_core_count)
4324
4652
  pulumi.set(__self__, "defined_tags", defined_tags)
@@ -4328,6 +4656,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
4328
4656
  pulumi.set(__self__, "deployment_url", deployment_url)
4329
4657
  pulumi.set(__self__, "description", description)
4330
4658
  pulumi.set(__self__, "display_name", display_name)
4659
+ pulumi.set(__self__, "environment_type", environment_type)
4331
4660
  pulumi.set(__self__, "fqdn", fqdn)
4332
4661
  pulumi.set(__self__, "freeform_tags", freeform_tags)
4333
4662
  pulumi.set(__self__, "id", id)
@@ -4362,6 +4691,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
4362
4691
  pulumi.set(__self__, "time_updated", time_updated)
4363
4692
  pulumi.set(__self__, "time_upgrade_required", time_upgrade_required)
4364
4693
 
4694
+ @property
4695
+ @pulumi.getter
4696
+ def category(self) -> str:
4697
+ """
4698
+ The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
4699
+ """
4700
+ return pulumi.get(self, "category")
4701
+
4365
4702
  @property
4366
4703
  @pulumi.getter(name="compartmentId")
4367
4704
  def compartment_id(self) -> str:
@@ -4434,6 +4771,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
4434
4771
  """
4435
4772
  return pulumi.get(self, "display_name")
4436
4773
 
4774
+ @property
4775
+ @pulumi.getter(name="environmentType")
4776
+ def environment_type(self) -> str:
4777
+ """
4778
+ Specifies whether the deployment is used in a production or development/testing environment.
4779
+ """
4780
+ return pulumi.get(self, "environment_type")
4781
+
4437
4782
  @property
4438
4783
  @pulumi.getter
4439
4784
  def fqdn(self) -> str:
@@ -4507,7 +4852,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
4507
4852
  @pulumi.getter(name="isStorageUtilizationLimitExceeded")
4508
4853
  def is_storage_utilization_limit_exceeded(self) -> bool:
4509
4854
  """
4510
- Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
4855
+ Deprecated: This field is not updated and will be removed in future versions. If storage utilization exceeds the limit, the respective warning message will appear in deployment messages, which can be accessed through /messages?deploymentId=. Indicator will be true if the amount of storage being utilized exceeds the allowable storage utilization limit. Exceeding the limit may be an indication of a misconfiguration of the deployment's GoldenGate service.
4511
4856
  """
4512
4857
  return pulumi.get(self, "is_storage_utilization_limit_exceeded")
4513
4858
 
@@ -4937,6 +5282,7 @@ class GetDeploymentsDeploymentCollectionItemOggDataResult(dict):
4937
5282
  certificate: str,
4938
5283
  credential_store: str,
4939
5284
  deployment_name: str,
5285
+ group_to_roles_mappings: Sequence['outputs.GetDeploymentsDeploymentCollectionItemOggDataGroupToRolesMappingResult'],
4940
5286
  identity_domain_id: str,
4941
5287
  key: str,
4942
5288
  ogg_version: str,
@@ -4946,6 +5292,7 @@ class GetDeploymentsDeploymentCollectionItemOggDataResult(dict):
4946
5292
  :param str certificate: The base64 encoded content of the PEM file containing the SSL certificate.
4947
5293
  :param str credential_store: The type of credential store for OGG.
4948
5294
  :param str deployment_name: The name given to the GoldenGate service deployment. The name must be 1 to 32 characters long, must contain only alphanumeric characters and must start with a letter.
5295
+ :param Sequence['GetDeploymentsDeploymentCollectionItemOggDataGroupToRolesMappingArgs'] group_to_roles_mappings: Defines the IDP Groups to GoldenGate roles mapping. This field is used only for IAM deployment and does not have any impact on non-IAM deployments. For IAM deployment, when user does not specify this mapping, then it has null value and default mapping is used. User belonging to each group can only perform the actions according to the role the respective group is mapped to.
4949
5296
  :param str identity_domain_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Identity Domain when IAM credential store is used.
4950
5297
  :param str ogg_version: Version of OGG
4951
5298
  :param str password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the deployment password is stored.
@@ -4955,6 +5302,7 @@ class GetDeploymentsDeploymentCollectionItemOggDataResult(dict):
4955
5302
  pulumi.set(__self__, "certificate", certificate)
4956
5303
  pulumi.set(__self__, "credential_store", credential_store)
4957
5304
  pulumi.set(__self__, "deployment_name", deployment_name)
5305
+ pulumi.set(__self__, "group_to_roles_mappings", group_to_roles_mappings)
4958
5306
  pulumi.set(__self__, "identity_domain_id", identity_domain_id)
4959
5307
  pulumi.set(__self__, "key", key)
4960
5308
  pulumi.set(__self__, "ogg_version", ogg_version)
@@ -4997,6 +5345,14 @@ class GetDeploymentsDeploymentCollectionItemOggDataResult(dict):
4997
5345
  """
4998
5346
  return pulumi.get(self, "deployment_name")
4999
5347
 
5348
+ @property
5349
+ @pulumi.getter(name="groupToRolesMappings")
5350
+ def group_to_roles_mappings(self) -> Sequence['outputs.GetDeploymentsDeploymentCollectionItemOggDataGroupToRolesMappingResult']:
5351
+ """
5352
+ Defines the IDP Groups to GoldenGate roles mapping. This field is used only for IAM deployment and does not have any impact on non-IAM deployments. For IAM deployment, when user does not specify this mapping, then it has null value and default mapping is used. User belonging to each group can only perform the actions according to the role the respective group is mapped to.
5353
+ """
5354
+ return pulumi.get(self, "group_to_roles_mappings")
5355
+
5000
5356
  @property
5001
5357
  @pulumi.getter(name="identityDomainId")
5002
5358
  def identity_domain_id(self) -> str:
@@ -5027,6 +5383,57 @@ class GetDeploymentsDeploymentCollectionItemOggDataResult(dict):
5027
5383
  return pulumi.get(self, "password_secret_id")
5028
5384
 
5029
5385
 
5386
+ @pulumi.output_type
5387
+ class GetDeploymentsDeploymentCollectionItemOggDataGroupToRolesMappingResult(dict):
5388
+ def __init__(__self__, *,
5389
+ administrator_group_id: str,
5390
+ operator_group_id: str,
5391
+ security_group_id: str,
5392
+ user_group_id: str):
5393
+ """
5394
+ :param str administrator_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role administratorGroup. It grants full access to the user, including the ability to alter general, non-security related operational parameters and profiles of the server.
5395
+ :param str operator_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role operatorGroup. It allows users to perform only operational actions, like starting and stopping resources. Operators cannot alter the operational parameters or profiles of the MA server.
5396
+ :param str security_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role securityGroup. It grants administration of security related objects and invoke security related service requests. This role has full privileges.
5397
+ :param str user_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role userGroup. It allows information-only service requests, which do not alter or affect the operation of either the MA. Examples of query and read-only information include performance metric information and resource status and monitoring information
5398
+ """
5399
+ pulumi.set(__self__, "administrator_group_id", administrator_group_id)
5400
+ pulumi.set(__self__, "operator_group_id", operator_group_id)
5401
+ pulumi.set(__self__, "security_group_id", security_group_id)
5402
+ pulumi.set(__self__, "user_group_id", user_group_id)
5403
+
5404
+ @property
5405
+ @pulumi.getter(name="administratorGroupId")
5406
+ def administrator_group_id(self) -> str:
5407
+ """
5408
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role administratorGroup. It grants full access to the user, including the ability to alter general, non-security related operational parameters and profiles of the server.
5409
+ """
5410
+ return pulumi.get(self, "administrator_group_id")
5411
+
5412
+ @property
5413
+ @pulumi.getter(name="operatorGroupId")
5414
+ def operator_group_id(self) -> str:
5415
+ """
5416
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role operatorGroup. It allows users to perform only operational actions, like starting and stopping resources. Operators cannot alter the operational parameters or profiles of the MA server.
5417
+ """
5418
+ return pulumi.get(self, "operator_group_id")
5419
+
5420
+ @property
5421
+ @pulumi.getter(name="securityGroupId")
5422
+ def security_group_id(self) -> str:
5423
+ """
5424
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role securityGroup. It grants administration of security related objects and invoke security related service requests. This role has full privileges.
5425
+ """
5426
+ return pulumi.get(self, "security_group_id")
5427
+
5428
+ @property
5429
+ @pulumi.getter(name="userGroupId")
5430
+ def user_group_id(self) -> str:
5431
+ """
5432
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IDP group which will be mapped to goldengate role userGroup. It allows information-only service requests, which do not alter or affect the operation of either the MA. Examples of query and read-only information include performance metric information and resource status and monitoring information
5433
+ """
5434
+ return pulumi.get(self, "user_group_id")
5435
+
5436
+
5030
5437
  @pulumi.output_type
5031
5438
  class GetDeploymentsFilterResult(dict):
5032
5439
  def __init__(__self__, *,
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "oci",
4
- "version": "2.13.0-alpha.1729059403"
4
+ "version": "2.13.0-alpha.1729613556"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_oci
3
- Version: 2.13.0a1729059403
3
+ Version: 2.13.0a1729613556
4
4
  Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.pulumi.com