pulumi-oci 1.31.0a1712729931__py3-none-any.whl → 1.32.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +16 -0
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +192 -0
- pulumi_oci/database/autonomous_container_database.py +83 -8
- pulumi_oci/database/autonomous_database_software_image.py +638 -0
- pulumi_oci/database/autonomous_vm_cluster.py +12 -4
- pulumi_oci/database/get_autonomous_container_database.py +26 -5
- pulumi_oci/database/get_autonomous_container_database_resource_usage.py +3 -3
- pulumi_oci/database/get_autonomous_database_software_image.py +262 -0
- pulumi_oci/database/get_autonomous_database_software_images.py +200 -0
- pulumi_oci/database/get_autonomous_vm_cluster.py +3 -1
- pulumi_oci/database/outputs.py +538 -28
- 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/datascience/_inputs.py +17 -1
- pulumi_oci/datascience/model_deployment.py +2 -0
- pulumi_oci/datascience/outputs.py +39 -3
- pulumi_oci/devops/_inputs.py +380 -10
- pulumi_oci/devops/outputs.py +953 -32
- pulumi_oci/filestorage/replication.py +4 -4
- pulumi_oci/meteringcomputation/__init__.py +3 -0
- pulumi_oci/meteringcomputation/_inputs.py +110 -0
- pulumi_oci/meteringcomputation/get_schedule.py +1 -1
- pulumi_oci/meteringcomputation/get_scheduled_run.py +2 -2
- pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_group.py +173 -0
- pulumi_oci/meteringcomputation/get_usage_statement_email_recipients_groups.py +157 -0
- pulumi_oci/meteringcomputation/outputs.py +292 -2
- pulumi_oci/meteringcomputation/schedule.py +7 -7
- pulumi_oci/meteringcomputation/usage_statement_email_recipients_group.py +392 -0
- 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/opa/opa_instance.py +41 -22
- pulumi_oci/psql/_inputs.py +4 -4
- pulumi_oci/psql/db_system.py +7 -7
- pulumi_oci/psql/outputs.py +4 -4
- pulumi_oci/redis/get_redis_cluster.py +14 -1
- pulumi_oci/redis/outputs.py +11 -0
- pulumi_oci/redis/redis_cluster.py +52 -3
- 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.31.0a1712729931.dist-info → pulumi_oci-1.32.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.32.0.dist-info}/RECORD +57 -51
- {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.32.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.31.0a1712729931.dist-info → pulumi_oci-1.32.0.dist-info}/top_level.txt +0 -0
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__, *,
|