pulumi-oci 1.30.0a1712219839__py3-none-any.whl → 1.31.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.
Files changed (55) hide show
  1. pulumi_oci/apmsynthetics/config.py +7 -7
  2. pulumi_oci/apmsynthetics/get_monitor.py +1 -1
  3. pulumi_oci/apmsynthetics/outputs.py +2 -2
  4. pulumi_oci/containerengine/_inputs.py +6 -10
  5. pulumi_oci/containerengine/outputs.py +14 -26
  6. pulumi_oci/core/_inputs.py +6 -6
  7. pulumi_oci/core/instance.py +140 -0
  8. pulumi_oci/core/outputs.py +14 -14
  9. pulumi_oci/database/database_upgrade.py +12 -10
  10. pulumi_oci/databasemanagement/get_managed_database_cursor_cache_statements.py +2 -2
  11. pulumi_oci/databasemanagement/get_managed_database_sql_plan_baselines.py +2 -2
  12. pulumi_oci/databasemanagement/outputs.py +6 -6
  13. pulumi_oci/dataflow/get_invoke_run.py +11 -1
  14. pulumi_oci/dataflow/invoke_run.py +49 -0
  15. pulumi_oci/dataflow/outputs.py +7 -0
  16. pulumi_oci/datasafe/_inputs.py +4 -4
  17. pulumi_oci/datasafe/outputs.py +12 -12
  18. pulumi_oci/devops/_inputs.py +380 -10
  19. pulumi_oci/devops/outputs.py +953 -32
  20. pulumi_oci/disasterrecovery/dr_protection_group.py +0 -24
  21. pulumi_oci/filestorage/replication.py +4 -4
  22. pulumi_oci/goldengate/connection.py +7 -7
  23. pulumi_oci/identity/domains_app_role.py +4 -4
  24. pulumi_oci/identity/domains_group.py +7 -7
  25. pulumi_oci/identity/get_domains_app_role.py +1 -1
  26. pulumi_oci/identity/get_domains_group.py +1 -1
  27. pulumi_oci/identity/outputs.py +8 -8
  28. pulumi_oci/networkfirewall/outputs.py +12 -16
  29. pulumi_oci/networkloadbalancer/_inputs.py +222 -10
  30. pulumi_oci/networkloadbalancer/backend_set.py +70 -7
  31. pulumi_oci/networkloadbalancer/get_backend_set.py +15 -2
  32. pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -62
  33. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +70 -7
  34. pulumi_oci/networkloadbalancer/outputs.py +397 -28
  35. pulumi_oci/opensearch/cluster.py +0 -10
  36. pulumi_oci/opensearch/get_opensearch_cluster.py +0 -10
  37. pulumi_oci/opensearch/get_opensearch_clusters.py +0 -10
  38. pulumi_oci/opensearch/get_opensearch_version.py +0 -10
  39. pulumi_oci/opensearch/get_opensearch_versions.py +0 -10
  40. pulumi_oci/queue/get_queue.py +1 -1
  41. pulumi_oci/queue/outputs.py +2 -2
  42. pulumi_oci/queue/queue.py +7 -7
  43. pulumi_oci/stackmonitoring/_inputs.py +209 -1
  44. pulumi_oci/stackmonitoring/get_monitored_resource.py +27 -1
  45. pulumi_oci/stackmonitoring/get_monitored_resource_type.py +27 -1
  46. pulumi_oci/stackmonitoring/get_monitored_resources.py +18 -1
  47. pulumi_oci/stackmonitoring/monitored_resource.py +56 -0
  48. pulumi_oci/stackmonitoring/monitored_resource_task.py +18 -0
  49. pulumi_oci/stackmonitoring/monitored_resource_type.py +117 -19
  50. pulumi_oci/stackmonitoring/monitored_resources_search.py +197 -1
  51. pulumi_oci/stackmonitoring/outputs.py +436 -1
  52. {pulumi_oci-1.30.0a1712219839.dist-info → pulumi_oci-1.31.0.dist-info}/METADATA +1 -1
  53. {pulumi_oci-1.30.0a1712219839.dist-info → pulumi_oci-1.31.0.dist-info}/RECORD +55 -55
  54. {pulumi_oci-1.30.0a1712219839.dist-info → pulumi_oci-1.31.0.dist-info}/WHEEL +0 -0
  55. {pulumi_oci-1.30.0a1712219839.dist-info → pulumi_oci-1.31.0.dist-info}/top_level.txt +0 -0
@@ -6847,7 +6847,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig(dict):
6847
6847
  Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
6848
6848
  :param bool is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
6849
6849
  :param str numa_nodes_per_socket: The number of NUMA nodes per socket (NPS).
6850
- :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%! (MISSING)If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
6850
+ :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
6851
6851
 
6852
6852
  If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
6853
6853
  """
@@ -6969,7 +6969,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsPlatformConfig(dict):
6969
6969
  @pulumi.getter(name="percentageOfCoresEnabled")
6970
6970
  def percentage_of_cores_enabled(self) -> Optional[int]:
6971
6971
  """
6972
- The percentage of cores enabled. Value must be a multiple of 25%! (MISSING)If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
6972
+ The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
6973
6973
 
6974
6974
  If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
6975
6975
  """
@@ -9039,7 +9039,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfig(dict
9039
9039
  Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
9040
9040
  :param bool is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
9041
9041
  :param str numa_nodes_per_socket: The number of NUMA nodes per socket (NPS).
9042
- :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%! (MISSING)If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
9042
+ :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
9043
9043
 
9044
9044
  If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
9045
9045
  """
@@ -9151,7 +9151,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsPlatformConfig(dict
9151
9151
  @pulumi.getter(name="percentageOfCoresEnabled")
9152
9152
  def percentage_of_cores_enabled(self) -> Optional[int]:
9153
9153
  """
9154
- The percentage of cores enabled. Value must be a multiple of 25%! (MISSING)If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
9154
+ The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
9155
9155
 
9156
9156
  If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
9157
9157
  """
@@ -10891,7 +10891,7 @@ class InstancePlatformConfig(dict):
10891
10891
  Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
10892
10892
  :param bool is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
10893
10893
  :param str numa_nodes_per_socket: The number of NUMA nodes per socket (NPS).
10894
- :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%! (MISSING)If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
10894
+ :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
10895
10895
 
10896
10896
  If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
10897
10897
  """
@@ -11013,7 +11013,7 @@ class InstancePlatformConfig(dict):
11013
11013
  @pulumi.getter(name="percentageOfCoresEnabled")
11014
11014
  def percentage_of_cores_enabled(self) -> Optional[int]:
11015
11015
  """
11016
- The percentage of cores enabled. Value must be a multiple of 25%! (MISSING)If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
11016
+ The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
11017
11017
 
11018
11018
  If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
11019
11019
  """
@@ -26993,7 +26993,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailPlatformConfigResult(dic
26993
26993
  :param bool is_symmetric_multi_threading_enabled: Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
26994
26994
  :param bool is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
26995
26995
  :param str numa_nodes_per_socket: The number of NUMA nodes per socket (NPS).
26996
- :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%! (MISSING)If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
26996
+ :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
26997
26997
  :param str type: The type of action to run when the instance is interrupted for eviction.
26998
26998
  """
26999
26999
  pulumi.set(__self__, "are_virtual_instructions_enabled", are_virtual_instructions_enabled)
@@ -27093,7 +27093,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailPlatformConfigResult(dic
27093
27093
  @pulumi.getter(name="percentageOfCoresEnabled")
27094
27094
  def percentage_of_cores_enabled(self) -> int:
27095
27095
  """
27096
- The percentage of cores enabled. Value must be a multiple of 25%! (MISSING)If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
27096
+ The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
27097
27097
  """
27098
27098
  return pulumi.get(self, "percentage_of_cores_enabled")
27099
27099
 
@@ -28406,7 +28406,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailPlatformConfigResu
28406
28406
  :param bool is_symmetric_multi_threading_enabled: Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
28407
28407
  :param bool is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
28408
28408
  :param str numa_nodes_per_socket: The number of NUMA nodes per socket (NPS).
28409
- :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%! (MISSING)If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
28409
+ :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
28410
28410
  :param str type: The type of action to run when the instance is interrupted for eviction.
28411
28411
  """
28412
28412
  pulumi.set(__self__, "are_virtual_instructions_enabled", are_virtual_instructions_enabled)
@@ -28497,7 +28497,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailPlatformConfigResu
28497
28497
  @pulumi.getter(name="percentageOfCoresEnabled")
28498
28498
  def percentage_of_cores_enabled(self) -> int:
28499
28499
  """
28500
- The percentage of cores enabled. Value must be a multiple of 25%! (MISSING)If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
28500
+ The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
28501
28501
  """
28502
28502
  return pulumi.get(self, "percentage_of_cores_enabled")
28503
28503
 
@@ -30388,7 +30388,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailPl
30388
30388
  :param bool is_symmetric_multi_threading_enabled: Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
30389
30389
  :param bool is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
30390
30390
  :param str numa_nodes_per_socket: The number of NUMA nodes per socket (NPS).
30391
- :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%! (MISSING)If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
30391
+ :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
30392
30392
  :param str type: The type of action to run when the instance is interrupted for eviction.
30393
30393
  """
30394
30394
  pulumi.set(__self__, "are_virtual_instructions_enabled", are_virtual_instructions_enabled)
@@ -30488,7 +30488,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailPl
30488
30488
  @pulumi.getter(name="percentageOfCoresEnabled")
30489
30489
  def percentage_of_cores_enabled(self) -> int:
30490
30490
  """
30491
- The percentage of cores enabled. Value must be a multiple of 25%! (MISSING)If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
30491
+ The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
30492
30492
  """
30493
30493
  return pulumi.get(self, "percentage_of_cores_enabled")
30494
30494
 
@@ -31801,7 +31801,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31801
31801
  :param bool is_symmetric_multi_threading_enabled: Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
31802
31802
  :param bool is_trusted_platform_module_enabled: Whether the Trusted Platform Module (TPM) is enabled on the instance.
31803
31803
  :param str numa_nodes_per_socket: The number of NUMA nodes per socket (NPS).
31804
- :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%! (MISSING)If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
31804
+ :param int percentage_of_cores_enabled: The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
31805
31805
  :param str type: The type of action to run when the instance is interrupted for eviction.
31806
31806
  """
31807
31807
  pulumi.set(__self__, "are_virtual_instructions_enabled", are_virtual_instructions_enabled)
@@ -31892,7 +31892,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31892
31892
  @pulumi.getter(name="percentageOfCoresEnabled")
31893
31893
  def percentage_of_cores_enabled(self) -> int:
31894
31894
  """
31895
- The percentage of cores enabled. Value must be a multiple of 25%! (MISSING)If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
31895
+ The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
31896
31896
  """
31897
31897
  return pulumi.get(self, "percentage_of_cores_enabled")
31898
31898
 
@@ -604,11 +604,12 @@ class DatabaseUpgrade(pulumi.CustomResource):
604
604
  Database upgrade requires source to be `DB_VERSION` or `DB_SOFTWARE_IMAGE`.
605
605
  `db_home.0.db_version` is updated to target DB version specified in the upgrade request.
606
606
  To avoid a force new create of the db_home on the next apply, add the following to the resource
607
- <!--Start PulumiCodeChooser -->
608
- ```python
609
- import pulumi
610
- ```
611
- <!--End PulumiCodeChooser -->
607
+ ``` lifecycle {
608
+ ignore_changes = [
609
+ db_home.0.db_version,
610
+ ]
611
+ }
612
+ ```
612
613
 
613
614
  :param str resource_name: The name of the resource.
614
615
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -630,11 +631,12 @@ class DatabaseUpgrade(pulumi.CustomResource):
630
631
  Database upgrade requires source to be `DB_VERSION` or `DB_SOFTWARE_IMAGE`.
631
632
  `db_home.0.db_version` is updated to target DB version specified in the upgrade request.
632
633
  To avoid a force new create of the db_home on the next apply, add the following to the resource
633
- <!--Start PulumiCodeChooser -->
634
- ```python
635
- import pulumi
636
- ```
637
- <!--End PulumiCodeChooser -->
634
+ ``` lifecycle {
635
+ ignore_changes = [
636
+ db_home.0.db_version,
637
+ ]
638
+ }
639
+ ```
638
640
 
639
641
  :param str resource_name: The name of the resource.
640
642
  :param DatabaseUpgradeArgs args: The arguments to use to populate this resource's properties.
@@ -133,7 +133,7 @@ def get_managed_database_cursor_cache_statements(filters: Optional[Sequence[pulu
133
133
 
134
134
  :param str managed_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database.
135
135
  :param str opc_named_credential_id: The OCID of the Named Credential.
136
- :param str sql_text: A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%!'(MISSING) symbol as a wildcard.
136
+ :param str sql_text: A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%' symbol as a wildcard.
137
137
  """
138
138
  __args__ = dict()
139
139
  __args__['filters'] = filters
@@ -182,6 +182,6 @@ def get_managed_database_cursor_cache_statements_output(filters: Optional[pulumi
182
182
 
183
183
  :param str managed_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database.
184
184
  :param str opc_named_credential_id: The OCID of the Named Credential.
185
- :param str sql_text: A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%!'(MISSING) symbol as a wildcard.
185
+ :param str sql_text: A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%' symbol as a wildcard.
186
186
  """
187
187
  ...
@@ -239,7 +239,7 @@ def get_managed_database_sql_plan_baselines(filters: Optional[Sequence[pulumi.In
239
239
  :param str origin: A filter to return all the SQL plan baselines that match the origin.
240
240
  :param str plan_name: A filter to return only SQL plan baselines that match the plan name.
241
241
  :param str sql_handle: A filter to return all the SQL plan baselines for the specified SQL handle.
242
- :param str sql_text: A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%!'(MISSING) symbol as a wildcard.
242
+ :param str sql_text: A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%' symbol as a wildcard.
243
243
  """
244
244
  __args__ = dict()
245
245
  __args__['filters'] = filters
@@ -315,6 +315,6 @@ def get_managed_database_sql_plan_baselines_output(filters: Optional[pulumi.Inpu
315
315
  :param str origin: A filter to return all the SQL plan baselines that match the origin.
316
316
  :param str plan_name: A filter to return only SQL plan baselines that match the plan name.
317
317
  :param str sql_handle: A filter to return all the SQL plan baselines for the specified SQL handle.
318
- :param str sql_text: A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%!'(MISSING) symbol as a wildcard.
318
+ :param str sql_text: A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%' symbol as a wildcard.
319
319
  """
320
320
  ...
@@ -18616,7 +18616,7 @@ class GetManagedDatabaseCursorCacheStatementsCursorCacheStatementCollectionItemR
18616
18616
  """
18617
18617
  :param str schema: The name of the parsing schema.
18618
18618
  :param str sql_id: The SQL statement identifier. Identifies a SQL statement in the cursor cache.
18619
- :param str sql_text: A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%!'(MISSING) symbol as a wildcard.
18619
+ :param str sql_text: A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%' symbol as a wildcard.
18620
18620
  """
18621
18621
  pulumi.set(__self__, "schema", schema)
18622
18622
  pulumi.set(__self__, "sql_id", sql_id)
@@ -18642,7 +18642,7 @@ class GetManagedDatabaseCursorCacheStatementsCursorCacheStatementCollectionItemR
18642
18642
  @pulumi.getter(name="sqlText")
18643
18643
  def sql_text(self) -> str:
18644
18644
  """
18645
- A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%!'(MISSING) symbol as a wildcard.
18645
+ A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%' symbol as a wildcard.
18646
18646
  """
18647
18647
  return pulumi.get(self, "sql_text")
18648
18648
 
@@ -20971,7 +20971,7 @@ class GetManagedDatabaseSqlPlanBaselinesSqlPlanBaselineCollectionItemResult(dict
20971
20971
  :param str plan_name: A filter to return only SQL plan baselines that match the plan name.
20972
20972
  :param str reproduced: Indicates whether the optimizer was able to reproduce the plan (`YES`) or not (`NO`). The value is set to `YES` when a plan is initially added to the plan baseline.
20973
20973
  :param str sql_handle: A filter to return all the SQL plan baselines for the specified SQL handle.
20974
- :param str sql_text: A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%!'(MISSING) symbol as a wildcard.
20974
+ :param str sql_text: A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%' symbol as a wildcard.
20975
20975
  :param str time_created: The date and time when the plan baseline was created.
20976
20976
  :param str time_last_executed: The date and time when the plan baseline was last executed.
20977
20977
  :param str time_last_modified: The date and time when the plan baseline was last modified.
@@ -21093,7 +21093,7 @@ class GetManagedDatabaseSqlPlanBaselinesSqlPlanBaselineCollectionItemResult(dict
21093
21093
  @pulumi.getter(name="sqlText")
21094
21094
  def sql_text(self) -> str:
21095
21095
  """
21096
- A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%!'(MISSING) symbol as a wildcard.
21096
+ A filter to return all the SQL plan baselines that match the SQL text. By default, the search is case insensitive. To run an exact or case-sensitive search, double-quote the search string. You may also use the '%' symbol as a wildcard.
21097
21097
  """
21098
21098
  return pulumi.get(self, "sql_text")
21099
21099
 
@@ -26211,7 +26211,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
26211
26211
  :param str last_seen: The date and time the query was last seen.
26212
26212
  :param float max_timer_wait: The slowest the query has been executed.
26213
26213
  :param float min_timer_wait: The fastest the query has been executed.
26214
- :param float quantile95: The 95th percentile of the query latency. That is, 95%!o(MISSING)f the queries complete in the time given or in less time.
26214
+ :param float quantile95: The 95th percentile of the query latency. That is, 95% of the queries complete in the time given or in less time.
26215
26215
  :param float quantile99: The 99th percentile of the query latency.
26216
26216
  :param float quantile999: The 99.9th percentile of the query latency.
26217
26217
  :param str schema_name: The name of the default schema when executing the query. If a schema is not set as the default, then the value is NULL.
@@ -26355,7 +26355,7 @@ class GetManagedMySqlDatabaseSqlDataMySqlDataCollectionItemResult(dict):
26355
26355
  @pulumi.getter
26356
26356
  def quantile95(self) -> float:
26357
26357
  """
26358
- The 95th percentile of the query latency. That is, 95%!o(MISSING)f the queries complete in the time given or in less time.
26358
+ The 95th percentile of the query latency. That is, 95% of the queries complete in the time given or in less time.
26359
26359
  """
26360
26360
  return pulumi.get(self, "quantile95")
26361
26361
 
@@ -22,7 +22,7 @@ class GetInvokeRunResult:
22
22
  """
23
23
  A collection of values returned by getInvokeRun.
24
24
  """
25
- def __init__(__self__, application_id=None, application_log_configs=None, archive_uri=None, arguments=None, asynchronous=None, class_name=None, compartment_id=None, configuration=None, data_read_in_bytes=None, data_written_in_bytes=None, defined_tags=None, display_name=None, driver_shape=None, driver_shape_configs=None, execute=None, executor_shape=None, executor_shape_configs=None, file_uri=None, freeform_tags=None, id=None, idle_timeout_in_minutes=None, language=None, lifecycle_details=None, logs_bucket_uri=None, max_duration_in_minutes=None, metastore_id=None, num_executors=None, opc_request_id=None, owner_principal_id=None, owner_user_name=None, parameters=None, pool_id=None, private_endpoint_dns_zones=None, private_endpoint_id=None, private_endpoint_max_host_count=None, private_endpoint_nsg_ids=None, private_endpoint_subnet_id=None, run_duration_in_milliseconds=None, run_id=None, spark_version=None, state=None, time_created=None, time_updated=None, total_ocpu=None, type=None, warehouse_bucket_uri=None):
25
+ def __init__(__self__, application_id=None, application_log_configs=None, archive_uri=None, arguments=None, asynchronous=None, class_name=None, compartment_id=None, configuration=None, data_read_in_bytes=None, data_written_in_bytes=None, defined_tags=None, display_name=None, driver_shape=None, driver_shape_configs=None, execute=None, executor_shape=None, executor_shape_configs=None, file_uri=None, freeform_tags=None, id=None, idle_timeout_in_minutes=None, language=None, lifecycle_details=None, logs_bucket_uri=None, max_duration_in_minutes=None, metastore_id=None, num_executors=None, opc_parent_rpt_url=None, opc_request_id=None, owner_principal_id=None, owner_user_name=None, parameters=None, pool_id=None, private_endpoint_dns_zones=None, private_endpoint_id=None, private_endpoint_max_host_count=None, private_endpoint_nsg_ids=None, private_endpoint_subnet_id=None, run_duration_in_milliseconds=None, run_id=None, spark_version=None, state=None, time_created=None, time_updated=None, total_ocpu=None, type=None, warehouse_bucket_uri=None):
26
26
  if application_id and not isinstance(application_id, str):
27
27
  raise TypeError("Expected argument 'application_id' to be a str")
28
28
  pulumi.set(__self__, "application_id", application_id)
@@ -104,6 +104,9 @@ class GetInvokeRunResult:
104
104
  if num_executors and not isinstance(num_executors, int):
105
105
  raise TypeError("Expected argument 'num_executors' to be a int")
106
106
  pulumi.set(__self__, "num_executors", num_executors)
107
+ if opc_parent_rpt_url and not isinstance(opc_parent_rpt_url, str):
108
+ raise TypeError("Expected argument 'opc_parent_rpt_url' to be a str")
109
+ pulumi.set(__self__, "opc_parent_rpt_url", opc_parent_rpt_url)
107
110
  if opc_request_id and not isinstance(opc_request_id, str):
108
111
  raise TypeError("Expected argument 'opc_request_id' to be a str")
109
112
  pulumi.set(__self__, "opc_request_id", opc_request_id)
@@ -375,6 +378,11 @@ class GetInvokeRunResult:
375
378
  """
376
379
  return pulumi.get(self, "num_executors")
377
380
 
381
+ @property
382
+ @pulumi.getter(name="opcParentRptUrl")
383
+ def opc_parent_rpt_url(self) -> str:
384
+ return pulumi.get(self, "opc_parent_rpt_url")
385
+
378
386
  @property
379
387
  @pulumi.getter(name="opcRequestId")
380
388
  def opc_request_id(self) -> str:
@@ -558,6 +566,7 @@ class AwaitableGetInvokeRunResult(GetInvokeRunResult):
558
566
  max_duration_in_minutes=self.max_duration_in_minutes,
559
567
  metastore_id=self.metastore_id,
560
568
  num_executors=self.num_executors,
569
+ opc_parent_rpt_url=self.opc_parent_rpt_url,
561
570
  opc_request_id=self.opc_request_id,
562
571
  owner_principal_id=self.owner_principal_id,
563
572
  owner_user_name=self.owner_user_name,
@@ -633,6 +642,7 @@ def get_invoke_run(run_id: Optional[str] = None,
633
642
  max_duration_in_minutes=pulumi.get(__ret__, 'max_duration_in_minutes'),
634
643
  metastore_id=pulumi.get(__ret__, 'metastore_id'),
635
644
  num_executors=pulumi.get(__ret__, 'num_executors'),
645
+ opc_parent_rpt_url=pulumi.get(__ret__, 'opc_parent_rpt_url'),
636
646
  opc_request_id=pulumi.get(__ret__, 'opc_request_id'),
637
647
  owner_principal_id=pulumi.get(__ret__, 'owner_principal_id'),
638
648
  owner_user_name=pulumi.get(__ret__, 'owner_user_name'),
@@ -36,6 +36,7 @@ class InvokeRunArgs:
36
36
  max_duration_in_minutes: Optional[pulumi.Input[str]] = None,
37
37
  metastore_id: Optional[pulumi.Input[str]] = None,
38
38
  num_executors: Optional[pulumi.Input[int]] = None,
39
+ opc_parent_rpt_url: Optional[pulumi.Input[str]] = None,
39
40
  parameters: Optional[pulumi.Input[Sequence[pulumi.Input['InvokeRunParameterArgs']]]] = None,
40
41
  pool_id: Optional[pulumi.Input[str]] = None,
41
42
  spark_version: Optional[pulumi.Input[str]] = None,
@@ -62,6 +63,7 @@ class InvokeRunArgs:
62
63
  :param pulumi.Input[str] max_duration_in_minutes: (Updatable) The maximum duration in minutes for which an Application should run. Data Flow Run would be terminated once it reaches this duration from the time it transitions to `IN_PROGRESS` state.
63
64
  :param pulumi.Input[str] metastore_id: The OCID of Oracle Cloud Infrastructure Hive Metastore.
64
65
  :param pulumi.Input[int] num_executors: The number of executor VMs requested.
66
+ :param pulumi.Input[str] opc_parent_rpt_url: (Optional header param, required for Resource Principal version 3.0+) Parent resource control plane endpoint used to exchange for upper level resource principal token.
65
67
  :param pulumi.Input[Sequence[pulumi.Input['InvokeRunParameterArgs']]] parameters: An array of name/value pairs used to fill placeholders found in properties like `Application.arguments`. The name must be a string of one or more word characters (a-z, A-Z, 0-9, _). The value can be a string of 0 or more characters of any kind. Example: [ { name: "iterations", value: "10"}, { name: "input_file", value: "mydata.xml" }, { name: "variable_x", value: "${x}"} ]
66
68
  :param pulumi.Input[str] pool_id: The OCID of a pool. Unique Id to indentify a dataflow pool resource.
67
69
  :param pulumi.Input[str] spark_version: The Spark version utilized to run the application. This value may be set if applicationId is not since the Spark version will be taken from the associated application.
@@ -111,6 +113,8 @@ class InvokeRunArgs:
111
113
  pulumi.set(__self__, "metastore_id", metastore_id)
112
114
  if num_executors is not None:
113
115
  pulumi.set(__self__, "num_executors", num_executors)
116
+ if opc_parent_rpt_url is not None:
117
+ pulumi.set(__self__, "opc_parent_rpt_url", opc_parent_rpt_url)
114
118
  if parameters is not None:
115
119
  pulumi.set(__self__, "parameters", parameters)
116
120
  if pool_id is not None:
@@ -359,6 +363,18 @@ class InvokeRunArgs:
359
363
  def num_executors(self, value: Optional[pulumi.Input[int]]):
360
364
  pulumi.set(self, "num_executors", value)
361
365
 
366
+ @property
367
+ @pulumi.getter(name="opcParentRptUrl")
368
+ def opc_parent_rpt_url(self) -> Optional[pulumi.Input[str]]:
369
+ """
370
+ (Optional header param, required for Resource Principal version 3.0+) Parent resource control plane endpoint used to exchange for upper level resource principal token.
371
+ """
372
+ return pulumi.get(self, "opc_parent_rpt_url")
373
+
374
+ @opc_parent_rpt_url.setter
375
+ def opc_parent_rpt_url(self, value: Optional[pulumi.Input[str]]):
376
+ pulumi.set(self, "opc_parent_rpt_url", value)
377
+
362
378
  @property
363
379
  @pulumi.getter
364
380
  def parameters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InvokeRunParameterArgs']]]]:
@@ -453,6 +469,7 @@ class _InvokeRunState:
453
469
  max_duration_in_minutes: Optional[pulumi.Input[str]] = None,
454
470
  metastore_id: Optional[pulumi.Input[str]] = None,
455
471
  num_executors: Optional[pulumi.Input[int]] = None,
472
+ opc_parent_rpt_url: Optional[pulumi.Input[str]] = None,
456
473
  opc_request_id: Optional[pulumi.Input[str]] = None,
457
474
  owner_principal_id: Optional[pulumi.Input[str]] = None,
458
475
  owner_user_name: Optional[pulumi.Input[str]] = None,
@@ -498,6 +515,7 @@ class _InvokeRunState:
498
515
  :param pulumi.Input[str] max_duration_in_minutes: (Updatable) The maximum duration in minutes for which an Application should run. Data Flow Run would be terminated once it reaches this duration from the time it transitions to `IN_PROGRESS` state.
499
516
  :param pulumi.Input[str] metastore_id: The OCID of Oracle Cloud Infrastructure Hive Metastore.
500
517
  :param pulumi.Input[int] num_executors: The number of executor VMs requested.
518
+ :param pulumi.Input[str] opc_parent_rpt_url: (Optional header param, required for Resource Principal version 3.0+) Parent resource control plane endpoint used to exchange for upper level resource principal token.
501
519
  :param pulumi.Input[str] opc_request_id: Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
502
520
  :param pulumi.Input[str] owner_principal_id: The OCID of the user who created the resource.
503
521
  :param pulumi.Input[str] owner_user_name: The username of the user who created the resource. If the username of the owner does not exist, `null` will be returned and the caller should refer to the ownerPrincipalId value instead.
@@ -573,6 +591,8 @@ class _InvokeRunState:
573
591
  pulumi.set(__self__, "metastore_id", metastore_id)
574
592
  if num_executors is not None:
575
593
  pulumi.set(__self__, "num_executors", num_executors)
594
+ if opc_parent_rpt_url is not None:
595
+ pulumi.set(__self__, "opc_parent_rpt_url", opc_parent_rpt_url)
576
596
  if opc_request_id is not None:
577
597
  pulumi.set(__self__, "opc_request_id", opc_request_id)
578
598
  if owner_principal_id is not None:
@@ -919,6 +939,18 @@ class _InvokeRunState:
919
939
  def num_executors(self, value: Optional[pulumi.Input[int]]):
920
940
  pulumi.set(self, "num_executors", value)
921
941
 
942
+ @property
943
+ @pulumi.getter(name="opcParentRptUrl")
944
+ def opc_parent_rpt_url(self) -> Optional[pulumi.Input[str]]:
945
+ """
946
+ (Optional header param, required for Resource Principal version 3.0+) Parent resource control plane endpoint used to exchange for upper level resource principal token.
947
+ """
948
+ return pulumi.get(self, "opc_parent_rpt_url")
949
+
950
+ @opc_parent_rpt_url.setter
951
+ def opc_parent_rpt_url(self, value: Optional[pulumi.Input[str]]):
952
+ pulumi.set(self, "opc_parent_rpt_url", value)
953
+
922
954
  @property
923
955
  @pulumi.getter(name="opcRequestId")
924
956
  def opc_request_id(self) -> Optional[pulumi.Input[str]]:
@@ -1165,6 +1197,7 @@ class InvokeRun(pulumi.CustomResource):
1165
1197
  max_duration_in_minutes: Optional[pulumi.Input[str]] = None,
1166
1198
  metastore_id: Optional[pulumi.Input[str]] = None,
1167
1199
  num_executors: Optional[pulumi.Input[int]] = None,
1200
+ opc_parent_rpt_url: Optional[pulumi.Input[str]] = None,
1168
1201
  parameters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InvokeRunParameterArgs']]]]] = None,
1169
1202
  pool_id: Optional[pulumi.Input[str]] = None,
1170
1203
  spark_version: Optional[pulumi.Input[str]] = None,
@@ -1216,6 +1249,7 @@ class InvokeRun(pulumi.CustomResource):
1216
1249
  max_duration_in_minutes=var["invoke_run_max_duration_in_minutes"],
1217
1250
  metastore_id=var["metastore_id"],
1218
1251
  num_executors=var["invoke_run_num_executors"],
1252
+ opc_parent_rpt_url=var["invoke_run_opc_parent_rpt_url"],
1219
1253
  parameters=[oci.data_flow.InvokeRunParameterArgs(
1220
1254
  name=var["invoke_run_parameters_name"],
1221
1255
  value=var["invoke_run_parameters_value"],
@@ -1260,6 +1294,7 @@ class InvokeRun(pulumi.CustomResource):
1260
1294
  :param pulumi.Input[str] max_duration_in_minutes: (Updatable) The maximum duration in minutes for which an Application should run. Data Flow Run would be terminated once it reaches this duration from the time it transitions to `IN_PROGRESS` state.
1261
1295
  :param pulumi.Input[str] metastore_id: The OCID of Oracle Cloud Infrastructure Hive Metastore.
1262
1296
  :param pulumi.Input[int] num_executors: The number of executor VMs requested.
1297
+ :param pulumi.Input[str] opc_parent_rpt_url: (Optional header param, required for Resource Principal version 3.0+) Parent resource control plane endpoint used to exchange for upper level resource principal token.
1263
1298
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InvokeRunParameterArgs']]]] parameters: An array of name/value pairs used to fill placeholders found in properties like `Application.arguments`. The name must be a string of one or more word characters (a-z, A-Z, 0-9, _). The value can be a string of 0 or more characters of any kind. Example: [ { name: "iterations", value: "10"}, { name: "input_file", value: "mydata.xml" }, { name: "variable_x", value: "${x}"} ]
1264
1299
  :param pulumi.Input[str] pool_id: The OCID of a pool. Unique Id to indentify a dataflow pool resource.
1265
1300
  :param pulumi.Input[str] spark_version: The Spark version utilized to run the application. This value may be set if applicationId is not since the Spark version will be taken from the associated application.
@@ -1321,6 +1356,7 @@ class InvokeRun(pulumi.CustomResource):
1321
1356
  max_duration_in_minutes=var["invoke_run_max_duration_in_minutes"],
1322
1357
  metastore_id=var["metastore_id"],
1323
1358
  num_executors=var["invoke_run_num_executors"],
1359
+ opc_parent_rpt_url=var["invoke_run_opc_parent_rpt_url"],
1324
1360
  parameters=[oci.data_flow.InvokeRunParameterArgs(
1325
1361
  name=var["invoke_run_parameters_name"],
1326
1362
  value=var["invoke_run_parameters_value"],
@@ -1379,6 +1415,7 @@ class InvokeRun(pulumi.CustomResource):
1379
1415
  max_duration_in_minutes: Optional[pulumi.Input[str]] = None,
1380
1416
  metastore_id: Optional[pulumi.Input[str]] = None,
1381
1417
  num_executors: Optional[pulumi.Input[int]] = None,
1418
+ opc_parent_rpt_url: Optional[pulumi.Input[str]] = None,
1382
1419
  parameters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InvokeRunParameterArgs']]]]] = None,
1383
1420
  pool_id: Optional[pulumi.Input[str]] = None,
1384
1421
  spark_version: Optional[pulumi.Input[str]] = None,
@@ -1415,6 +1452,7 @@ class InvokeRun(pulumi.CustomResource):
1415
1452
  __props__.__dict__["max_duration_in_minutes"] = max_duration_in_minutes
1416
1453
  __props__.__dict__["metastore_id"] = metastore_id
1417
1454
  __props__.__dict__["num_executors"] = num_executors
1455
+ __props__.__dict__["opc_parent_rpt_url"] = opc_parent_rpt_url
1418
1456
  __props__.__dict__["parameters"] = parameters
1419
1457
  __props__.__dict__["pool_id"] = pool_id
1420
1458
  __props__.__dict__["spark_version"] = spark_version
@@ -1475,6 +1513,7 @@ class InvokeRun(pulumi.CustomResource):
1475
1513
  max_duration_in_minutes: Optional[pulumi.Input[str]] = None,
1476
1514
  metastore_id: Optional[pulumi.Input[str]] = None,
1477
1515
  num_executors: Optional[pulumi.Input[int]] = None,
1516
+ opc_parent_rpt_url: Optional[pulumi.Input[str]] = None,
1478
1517
  opc_request_id: Optional[pulumi.Input[str]] = None,
1479
1518
  owner_principal_id: Optional[pulumi.Input[str]] = None,
1480
1519
  owner_user_name: Optional[pulumi.Input[str]] = None,
@@ -1525,6 +1564,7 @@ class InvokeRun(pulumi.CustomResource):
1525
1564
  :param pulumi.Input[str] max_duration_in_minutes: (Updatable) The maximum duration in minutes for which an Application should run. Data Flow Run would be terminated once it reaches this duration from the time it transitions to `IN_PROGRESS` state.
1526
1565
  :param pulumi.Input[str] metastore_id: The OCID of Oracle Cloud Infrastructure Hive Metastore.
1527
1566
  :param pulumi.Input[int] num_executors: The number of executor VMs requested.
1567
+ :param pulumi.Input[str] opc_parent_rpt_url: (Optional header param, required for Resource Principal version 3.0+) Parent resource control plane endpoint used to exchange for upper level resource principal token.
1528
1568
  :param pulumi.Input[str] opc_request_id: Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
1529
1569
  :param pulumi.Input[str] owner_principal_id: The OCID of the user who created the resource.
1530
1570
  :param pulumi.Input[str] owner_user_name: The username of the user who created the resource. If the username of the owner does not exist, `null` will be returned and the caller should refer to the ownerPrincipalId value instead.
@@ -1578,6 +1618,7 @@ class InvokeRun(pulumi.CustomResource):
1578
1618
  __props__.__dict__["max_duration_in_minutes"] = max_duration_in_minutes
1579
1619
  __props__.__dict__["metastore_id"] = metastore_id
1580
1620
  __props__.__dict__["num_executors"] = num_executors
1621
+ __props__.__dict__["opc_parent_rpt_url"] = opc_parent_rpt_url
1581
1622
  __props__.__dict__["opc_request_id"] = opc_request_id
1582
1623
  __props__.__dict__["owner_principal_id"] = owner_principal_id
1583
1624
  __props__.__dict__["owner_user_name"] = owner_user_name
@@ -1803,6 +1844,14 @@ class InvokeRun(pulumi.CustomResource):
1803
1844
  """
1804
1845
  return pulumi.get(self, "num_executors")
1805
1846
 
1847
+ @property
1848
+ @pulumi.getter(name="opcParentRptUrl")
1849
+ def opc_parent_rpt_url(self) -> pulumi.Output[str]:
1850
+ """
1851
+ (Optional header param, required for Resource Principal version 3.0+) Parent resource control plane endpoint used to exchange for upper level resource principal token.
1852
+ """
1853
+ return pulumi.get(self, "opc_parent_rpt_url")
1854
+
1806
1855
  @property
1807
1856
  @pulumi.getter(name="opcRequestId")
1808
1857
  def opc_request_id(self) -> pulumi.Output[str]:
@@ -2027,6 +2027,7 @@ class GetInvokeRunsRunResult(dict):
2027
2027
  max_duration_in_minutes: str,
2028
2028
  metastore_id: str,
2029
2029
  num_executors: int,
2030
+ opc_parent_rpt_url: str,
2030
2031
  opc_request_id: str,
2031
2032
  owner_principal_id: str,
2032
2033
  owner_user_name: str,
@@ -2118,6 +2119,7 @@ class GetInvokeRunsRunResult(dict):
2118
2119
  pulumi.set(__self__, "max_duration_in_minutes", max_duration_in_minutes)
2119
2120
  pulumi.set(__self__, "metastore_id", metastore_id)
2120
2121
  pulumi.set(__self__, "num_executors", num_executors)
2122
+ pulumi.set(__self__, "opc_parent_rpt_url", opc_parent_rpt_url)
2121
2123
  pulumi.set(__self__, "opc_request_id", opc_request_id)
2122
2124
  pulumi.set(__self__, "owner_principal_id", owner_principal_id)
2123
2125
  pulumi.set(__self__, "owner_user_name", owner_user_name)
@@ -2350,6 +2352,11 @@ class GetInvokeRunsRunResult(dict):
2350
2352
  """
2351
2353
  return pulumi.get(self, "num_executors")
2352
2354
 
2355
+ @property
2356
+ @pulumi.getter(name="opcParentRptUrl")
2357
+ def opc_parent_rpt_url(self) -> str:
2358
+ return pulumi.get(self, "opc_parent_rpt_url")
2359
+
2353
2360
  @property
2354
2361
  @pulumi.getter(name="opcRequestId")
2355
2362
  def opc_request_id(self) -> str:
@@ -1439,7 +1439,7 @@ class LibraryMasingFormatFormatEntryArgs:
1439
1439
  If a regular expression is provided, the column values in all the rows must match the regular expression. Deterministic Encryption supports a subset of the regular expression language. It supports encryption of fixed-length strings, and does not support * or + syntax of regular expressions. The encrypted values also match the regular expression, which helps to ensure that the original format is preserved. If an original value does not match the regular expression, Deterministic Encryption might not produce a one-to-one mapping. All non-confirming values are mapped to a single encrypted value, thereby producing a many-to-one mapping.
1440
1440
  :param pulumi.Input[str] replace_with: (Updatable) The value that should be used to replace the data matching the regular expression. It can be a fixed string, fixed number, null value, or SQL expression.
1441
1441
  :param pulumi.Input[str] schema_name: (Updatable) The name of the schema that contains the substitution column.
1442
- :param pulumi.Input[str] sql_expression: (Updatable) The SQL expression to be used to generate the masked values. It can consist of one or more values, operators, and SQL functions that evaluate to a value. It can also contain substitution columns from the same table. Specify the substitution columns within percent (%!)(MISSING) symbols.
1442
+ :param pulumi.Input[str] sql_expression: (Updatable) The SQL expression to be used to generate the masked values. It can consist of one or more values, operators, and SQL functions that evaluate to a value. It can also contain substitution columns from the same table. Specify the substitution columns within percent (%) symbols.
1443
1443
  :param pulumi.Input[str] start_date: (Updatable) The lower bound of the range within which all the original column values fall. The start date must be less than or equal to the end date.
1444
1444
  :param pulumi.Input[int] start_length: (Updatable) The minimum number of characters the generated strings should have. It can be any integer greater than zero, but it must be less than or equal to the end length.
1445
1445
  :param pulumi.Input[int] start_position: (Updatable) The starting position in the original string from where the substring should be extracted. It can be either a positive or a negative integer. If It's negative, the counting starts from the end of the string.
@@ -1707,7 +1707,7 @@ class LibraryMasingFormatFormatEntryArgs:
1707
1707
  @pulumi.getter(name="sqlExpression")
1708
1708
  def sql_expression(self) -> Optional[pulumi.Input[str]]:
1709
1709
  """
1710
- (Updatable) The SQL expression to be used to generate the masked values. It can consist of one or more values, operators, and SQL functions that evaluate to a value. It can also contain substitution columns from the same table. Specify the substitution columns within percent (%!)(MISSING) symbols.
1710
+ (Updatable) The SQL expression to be used to generate the masked values. It can consist of one or more values, operators, and SQL functions that evaluate to a value. It can also contain substitution columns from the same table. Specify the substitution columns within percent (%) symbols.
1711
1711
  """
1712
1712
  return pulumi.get(self, "sql_expression")
1713
1713
 
@@ -1891,7 +1891,7 @@ class MaskingPoliciesMaskingColumnMaskingFormatFormatEntryArgs:
1891
1891
  If a regular expression is provided, the column values in all the rows must match the regular expression. Deterministic Encryption supports a subset of the regular expression language. It supports encryption of fixed-length strings, and does not support * or + syntax of regular expressions. The encrypted values also match the regular expression, which helps to ensure that the original format is preserved. If an original value does not match the regular expression, Deterministic Encryption might not produce a one-to-one mapping. All non-confirming values are mapped to a single encrypted value, thereby producing a many-to-one mapping.
1892
1892
  :param pulumi.Input[str] replace_with: (Updatable) The value that should be used to replace the data matching the regular expression. It can be a fixed string, fixed number, null value, or SQL expression.
1893
1893
  :param pulumi.Input[str] schema_name: The name of the schema that contains the database column. This attribute cannot be updated for an existing masking column.
1894
- :param pulumi.Input[str] sql_expression: (Updatable) The SQL expression to be used to generate the masked values. It can consist of one or more values, operators, and SQL functions that evaluate to a value. It can also contain substitution columns from the same table. Specify the substitution columns within percent (%!)(MISSING) symbols.
1894
+ :param pulumi.Input[str] sql_expression: (Updatable) The SQL expression to be used to generate the masked values. It can consist of one or more values, operators, and SQL functions that evaluate to a value. It can also contain substitution columns from the same table. Specify the substitution columns within percent (%) symbols.
1895
1895
  :param pulumi.Input[str] start_date: (Updatable) The lower bound of the range within which all the original column values fall. The start date must be less than or equal to the end date.
1896
1896
  :param pulumi.Input[int] start_length: (Updatable) The minimum number of characters the generated strings should have. It can be any integer greater than zero, but it must be less than or equal to the end length.
1897
1897
  :param pulumi.Input[int] start_position: (Updatable) The starting position in the original string from where the substring should be extracted. It can be either a positive or a negative integer. If It's negative, the counting starts from the end of the string.
@@ -2159,7 +2159,7 @@ class MaskingPoliciesMaskingColumnMaskingFormatFormatEntryArgs:
2159
2159
  @pulumi.getter(name="sqlExpression")
2160
2160
  def sql_expression(self) -> Optional[pulumi.Input[str]]:
2161
2161
  """
2162
- (Updatable) The SQL expression to be used to generate the masked values. It can consist of one or more values, operators, and SQL functions that evaluate to a value. It can also contain substitution columns from the same table. Specify the substitution columns within percent (%!)(MISSING) symbols.
2162
+ (Updatable) The SQL expression to be used to generate the masked values. It can consist of one or more values, operators, and SQL functions that evaluate to a value. It can also contain substitution columns from the same table. Specify the substitution columns within percent (%) symbols.
2163
2163
  """
2164
2164
  return pulumi.get(self, "sql_expression")
2165
2165