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.
- pulumi_oci/apmsynthetics/config.py +7 -7
- pulumi_oci/apmsynthetics/get_monitor.py +1 -1
- pulumi_oci/apmsynthetics/outputs.py +2 -2
- pulumi_oci/containerengine/_inputs.py +6 -10
- pulumi_oci/containerengine/outputs.py +14 -26
- pulumi_oci/core/_inputs.py +6 -6
- pulumi_oci/core/instance.py +140 -0
- pulumi_oci/core/outputs.py +14 -14
- pulumi_oci/database/database_upgrade.py +12 -10
- pulumi_oci/databasemanagement/get_managed_database_cursor_cache_statements.py +2 -2
- pulumi_oci/databasemanagement/get_managed_database_sql_plan_baselines.py +2 -2
- pulumi_oci/databasemanagement/outputs.py +6 -6
- pulumi_oci/dataflow/get_invoke_run.py +11 -1
- pulumi_oci/dataflow/invoke_run.py +49 -0
- pulumi_oci/dataflow/outputs.py +7 -0
- pulumi_oci/datasafe/_inputs.py +4 -4
- pulumi_oci/datasafe/outputs.py +12 -12
- pulumi_oci/devops/_inputs.py +380 -10
- pulumi_oci/devops/outputs.py +953 -32
- pulumi_oci/disasterrecovery/dr_protection_group.py +0 -24
- pulumi_oci/filestorage/replication.py +4 -4
- pulumi_oci/goldengate/connection.py +7 -7
- pulumi_oci/identity/domains_app_role.py +4 -4
- pulumi_oci/identity/domains_group.py +7 -7
- pulumi_oci/identity/get_domains_app_role.py +1 -1
- pulumi_oci/identity/get_domains_group.py +1 -1
- pulumi_oci/identity/outputs.py +8 -8
- pulumi_oci/networkfirewall/outputs.py +12 -16
- pulumi_oci/networkloadbalancer/_inputs.py +222 -10
- pulumi_oci/networkloadbalancer/backend_set.py +70 -7
- pulumi_oci/networkloadbalancer/get_backend_set.py +15 -2
- pulumi_oci/networkloadbalancer/network_load_balancer.py +7 -62
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +70 -7
- pulumi_oci/networkloadbalancer/outputs.py +397 -28
- pulumi_oci/opensearch/cluster.py +0 -10
- pulumi_oci/opensearch/get_opensearch_cluster.py +0 -10
- pulumi_oci/opensearch/get_opensearch_clusters.py +0 -10
- pulumi_oci/opensearch/get_opensearch_version.py +0 -10
- pulumi_oci/opensearch/get_opensearch_versions.py +0 -10
- pulumi_oci/queue/get_queue.py +1 -1
- pulumi_oci/queue/outputs.py +2 -2
- pulumi_oci/queue/queue.py +7 -7
- pulumi_oci/stackmonitoring/_inputs.py +209 -1
- pulumi_oci/stackmonitoring/get_monitored_resource.py +27 -1
- pulumi_oci/stackmonitoring/get_monitored_resource_type.py +27 -1
- pulumi_oci/stackmonitoring/get_monitored_resources.py +18 -1
- pulumi_oci/stackmonitoring/monitored_resource.py +56 -0
- pulumi_oci/stackmonitoring/monitored_resource_task.py +18 -0
- pulumi_oci/stackmonitoring/monitored_resource_type.py +117 -19
- pulumi_oci/stackmonitoring/monitored_resources_search.py +197 -1
- pulumi_oci/stackmonitoring/outputs.py +436 -1
- {pulumi_oci-1.30.0a1712219839.dist-info → pulumi_oci-1.31.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.30.0a1712219839.dist-info → pulumi_oci-1.31.0.dist-info}/RECORD +55 -55
- {pulumi_oci-1.30.0a1712219839.dist-info → pulumi_oci-1.31.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.30.0a1712219839.dist-info → pulumi_oci-1.31.0.dist-info}/top_level.txt +0 -0
pulumi_oci/datasafe/outputs.py
CHANGED
@@ -1738,7 +1738,7 @@ class LibraryMasingFormatFormatEntry(dict):
|
|
1738
1738
|
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.
|
1739
1739
|
:param 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.
|
1740
1740
|
:param str schema_name: (Updatable) The name of the schema that contains the substitution column.
|
1741
|
-
:param 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 (
|
1741
|
+
:param 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.
|
1742
1742
|
:param 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.
|
1743
1743
|
:param 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.
|
1744
1744
|
:param 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.
|
@@ -1938,7 +1938,7 @@ class LibraryMasingFormatFormatEntry(dict):
|
|
1938
1938
|
@pulumi.getter(name="sqlExpression")
|
1939
1939
|
def sql_expression(self) -> Optional[str]:
|
1940
1940
|
"""
|
1941
|
-
(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 (
|
1941
|
+
(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.
|
1942
1942
|
"""
|
1943
1943
|
return pulumi.get(self, "sql_expression")
|
1944
1944
|
|
@@ -2154,7 +2154,7 @@ class MaskingPoliciesMaskingColumnMaskingFormatFormatEntry(dict):
|
|
2154
2154
|
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.
|
2155
2155
|
:param 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.
|
2156
2156
|
:param str schema_name: The name of the schema that contains the database column. This attribute cannot be updated for an existing masking column.
|
2157
|
-
:param 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 (
|
2157
|
+
:param 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.
|
2158
2158
|
:param 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.
|
2159
2159
|
:param 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.
|
2160
2160
|
:param 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.
|
@@ -2354,7 +2354,7 @@ class MaskingPoliciesMaskingColumnMaskingFormatFormatEntry(dict):
|
|
2354
2354
|
@pulumi.getter(name="sqlExpression")
|
2355
2355
|
def sql_expression(self) -> Optional[str]:
|
2356
2356
|
"""
|
2357
|
-
(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 (
|
2357
|
+
(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.
|
2358
2358
|
"""
|
2359
2359
|
return pulumi.get(self, "sql_expression")
|
2360
2360
|
|
@@ -10439,7 +10439,7 @@ class GetLibraryMaskingFormatFormatEntryResult(dict):
|
|
10439
10439
|
:param str regular_expression: The regular expression to be used for masking. For data with characters in the ASCII character set, providing a regular expression is optional. However, it is required if the data contains multi-byte characters. If not provided, an error is returned when a multi-byte character is found.
|
10440
10440
|
:param str replace_with: 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.
|
10441
10441
|
:param str schema_name: The name of the schema that contains the substitution column.
|
10442
|
-
:param str sql_expression: 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 (
|
10442
|
+
:param str sql_expression: 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.
|
10443
10443
|
:param str start_date: 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.
|
10444
10444
|
:param int start_length: 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.
|
10445
10445
|
:param int start_position: 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.
|
@@ -10605,7 +10605,7 @@ class GetLibraryMaskingFormatFormatEntryResult(dict):
|
|
10605
10605
|
@pulumi.getter(name="sqlExpression")
|
10606
10606
|
def sql_expression(self) -> str:
|
10607
10607
|
"""
|
10608
|
-
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 (
|
10608
|
+
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.
|
10609
10609
|
"""
|
10610
10610
|
return pulumi.get(self, "sql_expression")
|
10611
10611
|
|
@@ -10888,7 +10888,7 @@ class GetLibraryMaskingFormatsLibraryMaskingFormatCollectionItemFormatEntryResul
|
|
10888
10888
|
:param str regular_expression: The regular expression to be used for masking. For data with characters in the ASCII character set, providing a regular expression is optional. However, it is required if the data contains multi-byte characters. If not provided, an error is returned when a multi-byte character is found.
|
10889
10889
|
:param str replace_with: 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.
|
10890
10890
|
:param str schema_name: The name of the schema that contains the substitution column.
|
10891
|
-
:param str sql_expression: 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 (
|
10891
|
+
:param str sql_expression: 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.
|
10892
10892
|
:param str start_date: 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.
|
10893
10893
|
:param int start_length: 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.
|
10894
10894
|
:param int start_position: 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.
|
@@ -11054,7 +11054,7 @@ class GetLibraryMaskingFormatsLibraryMaskingFormatCollectionItemFormatEntryResul
|
|
11054
11054
|
@pulumi.getter(name="sqlExpression")
|
11055
11055
|
def sql_expression(self) -> str:
|
11056
11056
|
"""
|
11057
|
-
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 (
|
11057
|
+
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.
|
11058
11058
|
"""
|
11059
11059
|
return pulumi.get(self, "sql_expression")
|
11060
11060
|
|
@@ -11498,7 +11498,7 @@ class GetMaskingPoliciesMaskingColumnMaskingFormatFormatEntryResult(dict):
|
|
11498
11498
|
:param str regular_expression: The regular expression to be used for masking. For data with characters in the ASCII character set, providing a regular expression is optional. However, it is required if the data contains multi-byte characters. If not provided, an error is returned when a multi-byte character is found.
|
11499
11499
|
:param str replace_with: 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.
|
11500
11500
|
:param str schema_name: The name of the schema that contains the database column.
|
11501
|
-
:param str sql_expression: 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 (
|
11501
|
+
:param str sql_expression: 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.
|
11502
11502
|
:param str start_date: 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.
|
11503
11503
|
:param int start_length: 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.
|
11504
11504
|
:param int start_position: 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.
|
@@ -11664,7 +11664,7 @@ class GetMaskingPoliciesMaskingColumnMaskingFormatFormatEntryResult(dict):
|
|
11664
11664
|
@pulumi.getter(name="sqlExpression")
|
11665
11665
|
def sql_expression(self) -> str:
|
11666
11666
|
"""
|
11667
|
-
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 (
|
11667
|
+
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.
|
11668
11668
|
"""
|
11669
11669
|
return pulumi.get(self, "sql_expression")
|
11670
11670
|
|
@@ -12031,7 +12031,7 @@ class GetMaskingPoliciesMaskingColumnsMaskingColumnCollectionItemMaskingFormatFo
|
|
12031
12031
|
:param str regular_expression: The regular expression to be used for masking. For data with characters in the ASCII character set, providing a regular expression is optional. However, it is required if the data contains multi-byte characters. If not provided, an error is returned when a multi-byte character is found.
|
12032
12032
|
:param str replace_with: 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.
|
12033
12033
|
:param str schema_name: A filter to return only items related to specific schema name.
|
12034
|
-
:param str sql_expression: 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 (
|
12034
|
+
:param str sql_expression: 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.
|
12035
12035
|
:param str start_date: 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.
|
12036
12036
|
:param int start_length: 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.
|
12037
12037
|
:param int start_position: 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.
|
@@ -12197,7 +12197,7 @@ class GetMaskingPoliciesMaskingColumnsMaskingColumnCollectionItemMaskingFormatFo
|
|
12197
12197
|
@pulumi.getter(name="sqlExpression")
|
12198
12198
|
def sql_expression(self) -> str:
|
12199
12199
|
"""
|
12200
|
-
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 (
|
12200
|
+
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.
|
12201
12201
|
"""
|
12202
12202
|
return pulumi.get(self, "sql_expression")
|
12203
12203
|
|
pulumi_oci/devops/_inputs.py
CHANGED
@@ -95,6 +95,11 @@ __all__ = [
|
|
95
95
|
'DeploymentDeploymentArgumentsArgs',
|
96
96
|
'DeploymentDeploymentArgumentsItemArgs',
|
97
97
|
'DeploymentDeploymentExecutionProgressArgs',
|
98
|
+
'DeploymentDeploymentExecutionProgressDeployStageExecutionProgressArgs',
|
99
|
+
'DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailArgs',
|
100
|
+
'DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailRollbackStepArgs',
|
101
|
+
'DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailStepArgs',
|
102
|
+
'DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStagePredecessorArgs',
|
98
103
|
'ProjectNotificationConfigArgs',
|
99
104
|
'RepositoryMirrorRepositoryConfigArgs',
|
100
105
|
'RepositoryMirrorRepositoryConfigTriggerScheduleArgs',
|
@@ -3880,32 +3885,32 @@ class DeploymentDeploymentArgumentsItemArgs:
|
|
3880
3885
|
@pulumi.input_type
|
3881
3886
|
class DeploymentDeploymentExecutionProgressArgs:
|
3882
3887
|
def __init__(__self__, *,
|
3883
|
-
|
3888
|
+
deploy_stage_execution_progresses: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressArgs']]]] = None,
|
3884
3889
|
time_finished: Optional[pulumi.Input[str]] = None,
|
3885
3890
|
time_started: Optional[pulumi.Input[str]] = None):
|
3886
3891
|
"""
|
3887
|
-
:param pulumi.Input[
|
3892
|
+
:param pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressArgs']]] deploy_stage_execution_progresses: Map of stage OCIDs to deploy stage execution progress model.
|
3888
3893
|
:param pulumi.Input[str] time_finished: Time the deployment is finished. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
3889
3894
|
:param pulumi.Input[str] time_started: Time the deployment is started. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
3890
3895
|
"""
|
3891
|
-
if
|
3892
|
-
pulumi.set(__self__, "
|
3896
|
+
if deploy_stage_execution_progresses is not None:
|
3897
|
+
pulumi.set(__self__, "deploy_stage_execution_progresses", deploy_stage_execution_progresses)
|
3893
3898
|
if time_finished is not None:
|
3894
3899
|
pulumi.set(__self__, "time_finished", time_finished)
|
3895
3900
|
if time_started is not None:
|
3896
3901
|
pulumi.set(__self__, "time_started", time_started)
|
3897
3902
|
|
3898
3903
|
@property
|
3899
|
-
@pulumi.getter(name="
|
3900
|
-
def
|
3904
|
+
@pulumi.getter(name="deployStageExecutionProgresses")
|
3905
|
+
def deploy_stage_execution_progresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressArgs']]]]:
|
3901
3906
|
"""
|
3902
3907
|
Map of stage OCIDs to deploy stage execution progress model.
|
3903
3908
|
"""
|
3904
|
-
return pulumi.get(self, "
|
3909
|
+
return pulumi.get(self, "deploy_stage_execution_progresses")
|
3905
3910
|
|
3906
|
-
@
|
3907
|
-
def
|
3908
|
-
pulumi.set(self, "
|
3911
|
+
@deploy_stage_execution_progresses.setter
|
3912
|
+
def deploy_stage_execution_progresses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressArgs']]]]):
|
3913
|
+
pulumi.set(self, "deploy_stage_execution_progresses", value)
|
3909
3914
|
|
3910
3915
|
@property
|
3911
3916
|
@pulumi.getter(name="timeFinished")
|
@@ -3932,6 +3937,371 @@ class DeploymentDeploymentExecutionProgressArgs:
|
|
3932
3937
|
pulumi.set(self, "time_started", value)
|
3933
3938
|
|
3934
3939
|
|
3940
|
+
@pulumi.input_type
|
3941
|
+
class DeploymentDeploymentExecutionProgressDeployStageExecutionProgressArgs:
|
3942
|
+
def __init__(__self__, *,
|
3943
|
+
deploy_stage_display_name: Optional[pulumi.Input[str]] = None,
|
3944
|
+
deploy_stage_execution_progress_details: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailArgs']]]] = None,
|
3945
|
+
deploy_stage_id: Optional[pulumi.Input[str]] = None,
|
3946
|
+
deploy_stage_predecessors: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStagePredecessorArgs']]]] = None,
|
3947
|
+
deploy_stage_type: Optional[pulumi.Input[str]] = None,
|
3948
|
+
status: Optional[pulumi.Input[str]] = None,
|
3949
|
+
time_finished: Optional[pulumi.Input[str]] = None,
|
3950
|
+
time_started: Optional[pulumi.Input[str]] = None):
|
3951
|
+
"""
|
3952
|
+
:param pulumi.Input[str] deploy_stage_display_name: Stage display name. Avoid entering confidential information.
|
3953
|
+
:param pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailArgs']]] deploy_stage_execution_progress_details: Details about stage execution for all the target environments.
|
3954
|
+
:param pulumi.Input[str] deploy_stage_id: The OCID of the stage.
|
3955
|
+
:param pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStagePredecessorArgs']]] deploy_stage_predecessors: Collection containing the predecessors of a stage.
|
3956
|
+
:param pulumi.Input[str] deploy_stage_type: Deployment stage type.
|
3957
|
+
:param pulumi.Input[str] status: The current state of the stage.
|
3958
|
+
:param pulumi.Input[str] time_finished: Time the deployment is finished. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
3959
|
+
:param pulumi.Input[str] time_started: Time the deployment is started. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
3960
|
+
"""
|
3961
|
+
if deploy_stage_display_name is not None:
|
3962
|
+
pulumi.set(__self__, "deploy_stage_display_name", deploy_stage_display_name)
|
3963
|
+
if deploy_stage_execution_progress_details is not None:
|
3964
|
+
pulumi.set(__self__, "deploy_stage_execution_progress_details", deploy_stage_execution_progress_details)
|
3965
|
+
if deploy_stage_id is not None:
|
3966
|
+
pulumi.set(__self__, "deploy_stage_id", deploy_stage_id)
|
3967
|
+
if deploy_stage_predecessors is not None:
|
3968
|
+
pulumi.set(__self__, "deploy_stage_predecessors", deploy_stage_predecessors)
|
3969
|
+
if deploy_stage_type is not None:
|
3970
|
+
pulumi.set(__self__, "deploy_stage_type", deploy_stage_type)
|
3971
|
+
if status is not None:
|
3972
|
+
pulumi.set(__self__, "status", status)
|
3973
|
+
if time_finished is not None:
|
3974
|
+
pulumi.set(__self__, "time_finished", time_finished)
|
3975
|
+
if time_started is not None:
|
3976
|
+
pulumi.set(__self__, "time_started", time_started)
|
3977
|
+
|
3978
|
+
@property
|
3979
|
+
@pulumi.getter(name="deployStageDisplayName")
|
3980
|
+
def deploy_stage_display_name(self) -> Optional[pulumi.Input[str]]:
|
3981
|
+
"""
|
3982
|
+
Stage display name. Avoid entering confidential information.
|
3983
|
+
"""
|
3984
|
+
return pulumi.get(self, "deploy_stage_display_name")
|
3985
|
+
|
3986
|
+
@deploy_stage_display_name.setter
|
3987
|
+
def deploy_stage_display_name(self, value: Optional[pulumi.Input[str]]):
|
3988
|
+
pulumi.set(self, "deploy_stage_display_name", value)
|
3989
|
+
|
3990
|
+
@property
|
3991
|
+
@pulumi.getter(name="deployStageExecutionProgressDetails")
|
3992
|
+
def deploy_stage_execution_progress_details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailArgs']]]]:
|
3993
|
+
"""
|
3994
|
+
Details about stage execution for all the target environments.
|
3995
|
+
"""
|
3996
|
+
return pulumi.get(self, "deploy_stage_execution_progress_details")
|
3997
|
+
|
3998
|
+
@deploy_stage_execution_progress_details.setter
|
3999
|
+
def deploy_stage_execution_progress_details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailArgs']]]]):
|
4000
|
+
pulumi.set(self, "deploy_stage_execution_progress_details", value)
|
4001
|
+
|
4002
|
+
@property
|
4003
|
+
@pulumi.getter(name="deployStageId")
|
4004
|
+
def deploy_stage_id(self) -> Optional[pulumi.Input[str]]:
|
4005
|
+
"""
|
4006
|
+
The OCID of the stage.
|
4007
|
+
"""
|
4008
|
+
return pulumi.get(self, "deploy_stage_id")
|
4009
|
+
|
4010
|
+
@deploy_stage_id.setter
|
4011
|
+
def deploy_stage_id(self, value: Optional[pulumi.Input[str]]):
|
4012
|
+
pulumi.set(self, "deploy_stage_id", value)
|
4013
|
+
|
4014
|
+
@property
|
4015
|
+
@pulumi.getter(name="deployStagePredecessors")
|
4016
|
+
def deploy_stage_predecessors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStagePredecessorArgs']]]]:
|
4017
|
+
"""
|
4018
|
+
Collection containing the predecessors of a stage.
|
4019
|
+
"""
|
4020
|
+
return pulumi.get(self, "deploy_stage_predecessors")
|
4021
|
+
|
4022
|
+
@deploy_stage_predecessors.setter
|
4023
|
+
def deploy_stage_predecessors(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStagePredecessorArgs']]]]):
|
4024
|
+
pulumi.set(self, "deploy_stage_predecessors", value)
|
4025
|
+
|
4026
|
+
@property
|
4027
|
+
@pulumi.getter(name="deployStageType")
|
4028
|
+
def deploy_stage_type(self) -> Optional[pulumi.Input[str]]:
|
4029
|
+
"""
|
4030
|
+
Deployment stage type.
|
4031
|
+
"""
|
4032
|
+
return pulumi.get(self, "deploy_stage_type")
|
4033
|
+
|
4034
|
+
@deploy_stage_type.setter
|
4035
|
+
def deploy_stage_type(self, value: Optional[pulumi.Input[str]]):
|
4036
|
+
pulumi.set(self, "deploy_stage_type", value)
|
4037
|
+
|
4038
|
+
@property
|
4039
|
+
@pulumi.getter
|
4040
|
+
def status(self) -> Optional[pulumi.Input[str]]:
|
4041
|
+
"""
|
4042
|
+
The current state of the stage.
|
4043
|
+
"""
|
4044
|
+
return pulumi.get(self, "status")
|
4045
|
+
|
4046
|
+
@status.setter
|
4047
|
+
def status(self, value: Optional[pulumi.Input[str]]):
|
4048
|
+
pulumi.set(self, "status", value)
|
4049
|
+
|
4050
|
+
@property
|
4051
|
+
@pulumi.getter(name="timeFinished")
|
4052
|
+
def time_finished(self) -> Optional[pulumi.Input[str]]:
|
4053
|
+
"""
|
4054
|
+
Time the deployment is finished. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
4055
|
+
"""
|
4056
|
+
return pulumi.get(self, "time_finished")
|
4057
|
+
|
4058
|
+
@time_finished.setter
|
4059
|
+
def time_finished(self, value: Optional[pulumi.Input[str]]):
|
4060
|
+
pulumi.set(self, "time_finished", value)
|
4061
|
+
|
4062
|
+
@property
|
4063
|
+
@pulumi.getter(name="timeStarted")
|
4064
|
+
def time_started(self) -> Optional[pulumi.Input[str]]:
|
4065
|
+
"""
|
4066
|
+
Time the deployment is started. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
4067
|
+
"""
|
4068
|
+
return pulumi.get(self, "time_started")
|
4069
|
+
|
4070
|
+
@time_started.setter
|
4071
|
+
def time_started(self, value: Optional[pulumi.Input[str]]):
|
4072
|
+
pulumi.set(self, "time_started", value)
|
4073
|
+
|
4074
|
+
|
4075
|
+
@pulumi.input_type
|
4076
|
+
class DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailArgs:
|
4077
|
+
def __init__(__self__, *,
|
4078
|
+
rollback_steps: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailRollbackStepArgs']]]] = None,
|
4079
|
+
steps: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailStepArgs']]]] = None,
|
4080
|
+
target_group: Optional[pulumi.Input[str]] = None,
|
4081
|
+
target_id: Optional[pulumi.Input[str]] = None):
|
4082
|
+
"""
|
4083
|
+
:param pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailRollbackStepArgs']]] rollback_steps: Details about all the rollback steps for one target environment.
|
4084
|
+
:param pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailStepArgs']]] steps: Details about all the steps for one target environment.
|
4085
|
+
:param pulumi.Input[str] target_group: Group for the target environment for example, the batch number for an Instance Group deployment.
|
4086
|
+
:param pulumi.Input[str] target_id: The function ID, instance ID or the cluster ID. For Wait stage it will be the stage ID.
|
4087
|
+
"""
|
4088
|
+
if rollback_steps is not None:
|
4089
|
+
pulumi.set(__self__, "rollback_steps", rollback_steps)
|
4090
|
+
if steps is not None:
|
4091
|
+
pulumi.set(__self__, "steps", steps)
|
4092
|
+
if target_group is not None:
|
4093
|
+
pulumi.set(__self__, "target_group", target_group)
|
4094
|
+
if target_id is not None:
|
4095
|
+
pulumi.set(__self__, "target_id", target_id)
|
4096
|
+
|
4097
|
+
@property
|
4098
|
+
@pulumi.getter(name="rollbackSteps")
|
4099
|
+
def rollback_steps(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailRollbackStepArgs']]]]:
|
4100
|
+
"""
|
4101
|
+
Details about all the rollback steps for one target environment.
|
4102
|
+
"""
|
4103
|
+
return pulumi.get(self, "rollback_steps")
|
4104
|
+
|
4105
|
+
@rollback_steps.setter
|
4106
|
+
def rollback_steps(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailRollbackStepArgs']]]]):
|
4107
|
+
pulumi.set(self, "rollback_steps", value)
|
4108
|
+
|
4109
|
+
@property
|
4110
|
+
@pulumi.getter
|
4111
|
+
def steps(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailStepArgs']]]]:
|
4112
|
+
"""
|
4113
|
+
Details about all the steps for one target environment.
|
4114
|
+
"""
|
4115
|
+
return pulumi.get(self, "steps")
|
4116
|
+
|
4117
|
+
@steps.setter
|
4118
|
+
def steps(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailStepArgs']]]]):
|
4119
|
+
pulumi.set(self, "steps", value)
|
4120
|
+
|
4121
|
+
@property
|
4122
|
+
@pulumi.getter(name="targetGroup")
|
4123
|
+
def target_group(self) -> Optional[pulumi.Input[str]]:
|
4124
|
+
"""
|
4125
|
+
Group for the target environment for example, the batch number for an Instance Group deployment.
|
4126
|
+
"""
|
4127
|
+
return pulumi.get(self, "target_group")
|
4128
|
+
|
4129
|
+
@target_group.setter
|
4130
|
+
def target_group(self, value: Optional[pulumi.Input[str]]):
|
4131
|
+
pulumi.set(self, "target_group", value)
|
4132
|
+
|
4133
|
+
@property
|
4134
|
+
@pulumi.getter(name="targetId")
|
4135
|
+
def target_id(self) -> Optional[pulumi.Input[str]]:
|
4136
|
+
"""
|
4137
|
+
The function ID, instance ID or the cluster ID. For Wait stage it will be the stage ID.
|
4138
|
+
"""
|
4139
|
+
return pulumi.get(self, "target_id")
|
4140
|
+
|
4141
|
+
@target_id.setter
|
4142
|
+
def target_id(self, value: Optional[pulumi.Input[str]]):
|
4143
|
+
pulumi.set(self, "target_id", value)
|
4144
|
+
|
4145
|
+
|
4146
|
+
@pulumi.input_type
|
4147
|
+
class DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailRollbackStepArgs:
|
4148
|
+
def __init__(__self__, *,
|
4149
|
+
name: Optional[pulumi.Input[str]] = None,
|
4150
|
+
state: Optional[pulumi.Input[str]] = None,
|
4151
|
+
time_finished: Optional[pulumi.Input[str]] = None,
|
4152
|
+
time_started: Optional[pulumi.Input[str]] = None):
|
4153
|
+
"""
|
4154
|
+
:param pulumi.Input[str] name: Name of the parameter (case-sensitive).
|
4155
|
+
:param pulumi.Input[str] state: The current state of the deployment.
|
4156
|
+
:param pulumi.Input[str] time_finished: Time the deployment is finished. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
4157
|
+
:param pulumi.Input[str] time_started: Time the deployment is started. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
4158
|
+
"""
|
4159
|
+
if name is not None:
|
4160
|
+
pulumi.set(__self__, "name", name)
|
4161
|
+
if state is not None:
|
4162
|
+
pulumi.set(__self__, "state", state)
|
4163
|
+
if time_finished is not None:
|
4164
|
+
pulumi.set(__self__, "time_finished", time_finished)
|
4165
|
+
if time_started is not None:
|
4166
|
+
pulumi.set(__self__, "time_started", time_started)
|
4167
|
+
|
4168
|
+
@property
|
4169
|
+
@pulumi.getter
|
4170
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
4171
|
+
"""
|
4172
|
+
Name of the parameter (case-sensitive).
|
4173
|
+
"""
|
4174
|
+
return pulumi.get(self, "name")
|
4175
|
+
|
4176
|
+
@name.setter
|
4177
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
4178
|
+
pulumi.set(self, "name", value)
|
4179
|
+
|
4180
|
+
@property
|
4181
|
+
@pulumi.getter
|
4182
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
4183
|
+
"""
|
4184
|
+
The current state of the deployment.
|
4185
|
+
"""
|
4186
|
+
return pulumi.get(self, "state")
|
4187
|
+
|
4188
|
+
@state.setter
|
4189
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
4190
|
+
pulumi.set(self, "state", value)
|
4191
|
+
|
4192
|
+
@property
|
4193
|
+
@pulumi.getter(name="timeFinished")
|
4194
|
+
def time_finished(self) -> Optional[pulumi.Input[str]]:
|
4195
|
+
"""
|
4196
|
+
Time the deployment is finished. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
4197
|
+
"""
|
4198
|
+
return pulumi.get(self, "time_finished")
|
4199
|
+
|
4200
|
+
@time_finished.setter
|
4201
|
+
def time_finished(self, value: Optional[pulumi.Input[str]]):
|
4202
|
+
pulumi.set(self, "time_finished", value)
|
4203
|
+
|
4204
|
+
@property
|
4205
|
+
@pulumi.getter(name="timeStarted")
|
4206
|
+
def time_started(self) -> Optional[pulumi.Input[str]]:
|
4207
|
+
"""
|
4208
|
+
Time the deployment is started. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
4209
|
+
"""
|
4210
|
+
return pulumi.get(self, "time_started")
|
4211
|
+
|
4212
|
+
@time_started.setter
|
4213
|
+
def time_started(self, value: Optional[pulumi.Input[str]]):
|
4214
|
+
pulumi.set(self, "time_started", value)
|
4215
|
+
|
4216
|
+
|
4217
|
+
@pulumi.input_type
|
4218
|
+
class DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStageExecutionProgressDetailStepArgs:
|
4219
|
+
def __init__(__self__, *,
|
4220
|
+
name: Optional[pulumi.Input[str]] = None,
|
4221
|
+
state: Optional[pulumi.Input[str]] = None,
|
4222
|
+
time_finished: Optional[pulumi.Input[str]] = None,
|
4223
|
+
time_started: Optional[pulumi.Input[str]] = None):
|
4224
|
+
"""
|
4225
|
+
:param pulumi.Input[str] name: Name of the parameter (case-sensitive).
|
4226
|
+
:param pulumi.Input[str] state: The current state of the deployment.
|
4227
|
+
:param pulumi.Input[str] time_finished: Time the deployment is finished. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
4228
|
+
:param pulumi.Input[str] time_started: Time the deployment is started. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
4229
|
+
"""
|
4230
|
+
if name is not None:
|
4231
|
+
pulumi.set(__self__, "name", name)
|
4232
|
+
if state is not None:
|
4233
|
+
pulumi.set(__self__, "state", state)
|
4234
|
+
if time_finished is not None:
|
4235
|
+
pulumi.set(__self__, "time_finished", time_finished)
|
4236
|
+
if time_started is not None:
|
4237
|
+
pulumi.set(__self__, "time_started", time_started)
|
4238
|
+
|
4239
|
+
@property
|
4240
|
+
@pulumi.getter
|
4241
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
4242
|
+
"""
|
4243
|
+
Name of the parameter (case-sensitive).
|
4244
|
+
"""
|
4245
|
+
return pulumi.get(self, "name")
|
4246
|
+
|
4247
|
+
@name.setter
|
4248
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
4249
|
+
pulumi.set(self, "name", value)
|
4250
|
+
|
4251
|
+
@property
|
4252
|
+
@pulumi.getter
|
4253
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
4254
|
+
"""
|
4255
|
+
The current state of the deployment.
|
4256
|
+
"""
|
4257
|
+
return pulumi.get(self, "state")
|
4258
|
+
|
4259
|
+
@state.setter
|
4260
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
4261
|
+
pulumi.set(self, "state", value)
|
4262
|
+
|
4263
|
+
@property
|
4264
|
+
@pulumi.getter(name="timeFinished")
|
4265
|
+
def time_finished(self) -> Optional[pulumi.Input[str]]:
|
4266
|
+
"""
|
4267
|
+
Time the deployment is finished. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
4268
|
+
"""
|
4269
|
+
return pulumi.get(self, "time_finished")
|
4270
|
+
|
4271
|
+
@time_finished.setter
|
4272
|
+
def time_finished(self, value: Optional[pulumi.Input[str]]):
|
4273
|
+
pulumi.set(self, "time_finished", value)
|
4274
|
+
|
4275
|
+
@property
|
4276
|
+
@pulumi.getter(name="timeStarted")
|
4277
|
+
def time_started(self) -> Optional[pulumi.Input[str]]:
|
4278
|
+
"""
|
4279
|
+
Time the deployment is started. Format defined by [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339).
|
4280
|
+
"""
|
4281
|
+
return pulumi.get(self, "time_started")
|
4282
|
+
|
4283
|
+
@time_started.setter
|
4284
|
+
def time_started(self, value: Optional[pulumi.Input[str]]):
|
4285
|
+
pulumi.set(self, "time_started", value)
|
4286
|
+
|
4287
|
+
|
4288
|
+
@pulumi.input_type
|
4289
|
+
class DeploymentDeploymentExecutionProgressDeployStageExecutionProgressDeployStagePredecessorArgs:
|
4290
|
+
def __init__(__self__, *,
|
4291
|
+
deploy_stage_predecessor: Optional[pulumi.Input[str]] = None):
|
4292
|
+
if deploy_stage_predecessor is not None:
|
4293
|
+
pulumi.set(__self__, "deploy_stage_predecessor", deploy_stage_predecessor)
|
4294
|
+
|
4295
|
+
@property
|
4296
|
+
@pulumi.getter(name="deployStagePredecessor")
|
4297
|
+
def deploy_stage_predecessor(self) -> Optional[pulumi.Input[str]]:
|
4298
|
+
return pulumi.get(self, "deploy_stage_predecessor")
|
4299
|
+
|
4300
|
+
@deploy_stage_predecessor.setter
|
4301
|
+
def deploy_stage_predecessor(self, value: Optional[pulumi.Input[str]]):
|
4302
|
+
pulumi.set(self, "deploy_stage_predecessor", value)
|
4303
|
+
|
4304
|
+
|
3935
4305
|
@pulumi.input_type
|
3936
4306
|
class ProjectNotificationConfigArgs:
|
3937
4307
|
def __init__(__self__, *,
|