pulumi-gcp 8.2.0a1726671837__py3-none-any.whl → 8.3.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 (100) hide show
  1. pulumi_gcp/__init__.py +158 -0
  2. pulumi_gcp/alloydb/_inputs.py +20 -0
  3. pulumi_gcp/alloydb/instance.py +36 -0
  4. pulumi_gcp/alloydb/outputs.py +14 -0
  5. pulumi_gcp/bigquery/__init__.py +1 -0
  6. pulumi_gcp/bigquery/get_tables.py +143 -0
  7. pulumi_gcp/bigquery/outputs.py +30 -0
  8. pulumi_gcp/compute/__init__.py +2 -0
  9. pulumi_gcp/compute/_inputs.py +12481 -9158
  10. pulumi_gcp/compute/attached_disk.py +103 -0
  11. pulumi_gcp/compute/backend_service.py +29 -22
  12. pulumi_gcp/compute/firewall_policy_with_rules.py +769 -0
  13. pulumi_gcp/compute/get_instance.py +3 -0
  14. pulumi_gcp/compute/network_firewall_policy_with_rules.py +826 -0
  15. pulumi_gcp/compute/outputs.py +3695 -1293
  16. pulumi_gcp/compute/region_backend_service.py +29 -22
  17. pulumi_gcp/compute/region_target_http_proxy.py +159 -0
  18. pulumi_gcp/compute/region_target_https_proxy.py +175 -0
  19. pulumi_gcp/compute/router_nat.py +27 -66
  20. pulumi_gcp/compute/service_attachment.py +75 -0
  21. pulumi_gcp/compute/target_http_proxy.py +49 -28
  22. pulumi_gcp/compute/target_https_proxy.py +49 -28
  23. pulumi_gcp/config/__init__.pyi +6 -0
  24. pulumi_gcp/config/vars.py +12 -0
  25. pulumi_gcp/container/_inputs.py +168 -99
  26. pulumi_gcp/container/attached_cluster.py +54 -1
  27. pulumi_gcp/container/outputs.py +155 -70
  28. pulumi_gcp/databasemigrationservice/__init__.py +1 -0
  29. pulumi_gcp/databasemigrationservice/_inputs.py +362 -0
  30. pulumi_gcp/databasemigrationservice/migration_job.py +1739 -0
  31. pulumi_gcp/databasemigrationservice/outputs.py +268 -0
  32. pulumi_gcp/dataproc/get_metastore_service.py +11 -1
  33. pulumi_gcp/dataproc/metastore_federation.py +8 -8
  34. pulumi_gcp/dataproc/metastore_service.py +95 -0
  35. pulumi_gcp/datastream/stream.py +21 -14
  36. pulumi_gcp/developerconnect/__init__.py +11 -0
  37. pulumi_gcp/developerconnect/_inputs.py +304 -0
  38. pulumi_gcp/developerconnect/connection.py +1037 -0
  39. pulumi_gcp/developerconnect/git_repository_link.py +873 -0
  40. pulumi_gcp/developerconnect/outputs.py +249 -0
  41. pulumi_gcp/discoveryengine/__init__.py +1 -0
  42. pulumi_gcp/discoveryengine/_inputs.py +131 -0
  43. pulumi_gcp/discoveryengine/outputs.py +131 -0
  44. pulumi_gcp/discoveryengine/target_site.py +870 -0
  45. pulumi_gcp/dns/managed_zone.py +1 -1
  46. pulumi_gcp/filestore/get_instance.py +21 -1
  47. pulumi_gcp/filestore/instance.py +94 -0
  48. pulumi_gcp/gkehub/feature_membership.py +140 -62
  49. pulumi_gcp/gkeonprem/_inputs.py +3 -3
  50. pulumi_gcp/gkeonprem/outputs.py +2 -2
  51. pulumi_gcp/healthcare/__init__.py +1 -0
  52. pulumi_gcp/healthcare/_inputs.py +39 -0
  53. pulumi_gcp/healthcare/outputs.py +40 -0
  54. pulumi_gcp/healthcare/workspace.py +465 -0
  55. pulumi_gcp/looker/instance.py +81 -0
  56. pulumi_gcp/memorystore/__init__.py +10 -0
  57. pulumi_gcp/memorystore/_inputs.py +731 -0
  58. pulumi_gcp/memorystore/instance.py +1663 -0
  59. pulumi_gcp/memorystore/outputs.py +598 -0
  60. pulumi_gcp/netapp/_inputs.py +63 -0
  61. pulumi_gcp/netapp/outputs.py +57 -0
  62. pulumi_gcp/netapp/storage_pool.py +54 -0
  63. pulumi_gcp/netapp/volume.py +183 -0
  64. pulumi_gcp/organizations/folder.py +52 -33
  65. pulumi_gcp/provider.py +60 -0
  66. pulumi_gcp/pubsub/subscription.py +43 -7
  67. pulumi_gcp/pulumi-plugin.json +1 -1
  68. pulumi_gcp/secretmanager/__init__.py +8 -0
  69. pulumi_gcp/secretmanager/_inputs.py +308 -0
  70. pulumi_gcp/secretmanager/get_regional_secret.py +279 -0
  71. pulumi_gcp/secretmanager/get_regional_secret_iam_policy.py +173 -0
  72. pulumi_gcp/secretmanager/get_regional_secret_version.py +241 -0
  73. pulumi_gcp/secretmanager/outputs.py +336 -0
  74. pulumi_gcp/secretmanager/regional_secret.py +1433 -0
  75. pulumi_gcp/secretmanager/regional_secret_iam_binding.py +1082 -0
  76. pulumi_gcp/secretmanager/regional_secret_iam_member.py +1082 -0
  77. pulumi_gcp/secretmanager/regional_secret_iam_policy.py +901 -0
  78. pulumi_gcp/secretmanager/regional_secret_version.py +753 -0
  79. pulumi_gcp/securitycenter/__init__.py +4 -0
  80. pulumi_gcp/securitycenter/folder_scc_big_query_export.py +795 -0
  81. pulumi_gcp/securitycenter/organization_scc_big_query_export.py +738 -0
  82. pulumi_gcp/securitycenter/project_scc_big_query_export.py +749 -0
  83. pulumi_gcp/securitycenter/v2_organization_scc_big_query_export.py +862 -0
  84. pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +6 -2
  85. pulumi_gcp/securitycenter/v2_project_mute_config.py +2 -2
  86. pulumi_gcp/siteverification/__init__.py +3 -0
  87. pulumi_gcp/siteverification/_inputs.py +85 -0
  88. pulumi_gcp/siteverification/outputs.py +57 -0
  89. pulumi_gcp/siteverification/web_resource.py +398 -0
  90. pulumi_gcp/spanner/__init__.py +1 -0
  91. pulumi_gcp/spanner/_inputs.py +129 -0
  92. pulumi_gcp/spanner/backup_schedule.py +748 -0
  93. pulumi_gcp/spanner/get_instance.py +11 -1
  94. pulumi_gcp/spanner/instance.py +56 -0
  95. pulumi_gcp/spanner/outputs.py +93 -0
  96. pulumi_gcp/vpcaccess/connector.py +21 -28
  97. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/METADATA +1 -1
  98. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/RECORD +100 -69
  99. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/WHEEL +0 -0
  100. {pulumi_gcp-8.2.0a1726671837.dist-info → pulumi_gcp-8.3.0.dist-info}/top_level.txt +0 -0
@@ -47,8 +47,9 @@ class StreamArgs:
47
47
  :param pulumi.Input[bool] create_without_validation: Create the stream without validating it.
48
48
  :param pulumi.Input[str] customer_managed_encryption_key: A reference to a KMS encryption key. If provided, it will be used to encrypt the data. If left blank, data will be
49
49
  encrypted using an internal Stream-specific encryption key provisioned through KMS.
50
- :param pulumi.Input[str] desired_state: Desired state of the Stream. Set this field to 'RUNNING' to start the stream, and 'PAUSED' to pause the stream. Possible
51
- values: NOT_STARTED, RUNNING, PAUSED. Default: NOT_STARTED
50
+ :param pulumi.Input[str] desired_state: Desired state of the Stream. Set this field to 'RUNNING' to start the stream, 'NOT_STARTED' to create the stream without
51
+ starting and 'PAUSED' to pause the stream from a 'RUNNING' state. Possible values: NOT_STARTED, RUNNING, PAUSED.
52
+ Default: NOT_STARTED
52
53
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels. **Note**: This field is non-authoritative, and will only manage the labels present in your configuration. Please
53
54
  refer to the field 'effective_labels' for all of the labels present on the resource.
54
55
  """
@@ -187,8 +188,9 @@ class StreamArgs:
187
188
  @pulumi.getter(name="desiredState")
188
189
  def desired_state(self) -> Optional[pulumi.Input[str]]:
189
190
  """
190
- Desired state of the Stream. Set this field to 'RUNNING' to start the stream, and 'PAUSED' to pause the stream. Possible
191
- values: NOT_STARTED, RUNNING, PAUSED. Default: NOT_STARTED
191
+ Desired state of the Stream. Set this field to 'RUNNING' to start the stream, 'NOT_STARTED' to create the stream without
192
+ starting and 'PAUSED' to pause the stream from a 'RUNNING' state. Possible values: NOT_STARTED, RUNNING, PAUSED.
193
+ Default: NOT_STARTED
192
194
  """
193
195
  return pulumi.get(self, "desired_state")
194
196
 
@@ -245,8 +247,9 @@ class _StreamState:
245
247
  :param pulumi.Input[bool] create_without_validation: Create the stream without validating it.
246
248
  :param pulumi.Input[str] customer_managed_encryption_key: A reference to a KMS encryption key. If provided, it will be used to encrypt the data. If left blank, data will be
247
249
  encrypted using an internal Stream-specific encryption key provisioned through KMS.
248
- :param pulumi.Input[str] desired_state: Desired state of the Stream. Set this field to 'RUNNING' to start the stream, and 'PAUSED' to pause the stream. Possible
249
- values: NOT_STARTED, RUNNING, PAUSED. Default: NOT_STARTED
250
+ :param pulumi.Input[str] desired_state: Desired state of the Stream. Set this field to 'RUNNING' to start the stream, 'NOT_STARTED' to create the stream without
251
+ starting and 'PAUSED' to pause the stream from a 'RUNNING' state. Possible values: NOT_STARTED, RUNNING, PAUSED.
252
+ Default: NOT_STARTED
250
253
  :param pulumi.Input['StreamDestinationConfigArgs'] destination_config: Destination connection profile configuration.
251
254
  Structure is documented below.
252
255
  :param pulumi.Input[str] display_name: Display name.
@@ -348,8 +351,9 @@ class _StreamState:
348
351
  @pulumi.getter(name="desiredState")
349
352
  def desired_state(self) -> Optional[pulumi.Input[str]]:
350
353
  """
351
- Desired state of the Stream. Set this field to 'RUNNING' to start the stream, and 'PAUSED' to pause the stream. Possible
352
- values: NOT_STARTED, RUNNING, PAUSED. Default: NOT_STARTED
354
+ Desired state of the Stream. Set this field to 'RUNNING' to start the stream, 'NOT_STARTED' to create the stream without
355
+ starting and 'PAUSED' to pause the stream from a 'RUNNING' state. Possible values: NOT_STARTED, RUNNING, PAUSED.
356
+ Default: NOT_STARTED
353
357
  """
354
358
  return pulumi.get(self, "desired_state")
355
359
 
@@ -1328,8 +1332,9 @@ class Stream(pulumi.CustomResource):
1328
1332
  :param pulumi.Input[bool] create_without_validation: Create the stream without validating it.
1329
1333
  :param pulumi.Input[str] customer_managed_encryption_key: A reference to a KMS encryption key. If provided, it will be used to encrypt the data. If left blank, data will be
1330
1334
  encrypted using an internal Stream-specific encryption key provisioned through KMS.
1331
- :param pulumi.Input[str] desired_state: Desired state of the Stream. Set this field to 'RUNNING' to start the stream, and 'PAUSED' to pause the stream. Possible
1332
- values: NOT_STARTED, RUNNING, PAUSED. Default: NOT_STARTED
1335
+ :param pulumi.Input[str] desired_state: Desired state of the Stream. Set this field to 'RUNNING' to start the stream, 'NOT_STARTED' to create the stream without
1336
+ starting and 'PAUSED' to pause the stream from a 'RUNNING' state. Possible values: NOT_STARTED, RUNNING, PAUSED.
1337
+ Default: NOT_STARTED
1333
1338
  :param pulumi.Input[Union['StreamDestinationConfigArgs', 'StreamDestinationConfigArgsDict']] destination_config: Destination connection profile configuration.
1334
1339
  Structure is documented below.
1335
1340
  :param pulumi.Input[str] display_name: Display name.
@@ -2260,8 +2265,9 @@ class Stream(pulumi.CustomResource):
2260
2265
  :param pulumi.Input[bool] create_without_validation: Create the stream without validating it.
2261
2266
  :param pulumi.Input[str] customer_managed_encryption_key: A reference to a KMS encryption key. If provided, it will be used to encrypt the data. If left blank, data will be
2262
2267
  encrypted using an internal Stream-specific encryption key provisioned through KMS.
2263
- :param pulumi.Input[str] desired_state: Desired state of the Stream. Set this field to 'RUNNING' to start the stream, and 'PAUSED' to pause the stream. Possible
2264
- values: NOT_STARTED, RUNNING, PAUSED. Default: NOT_STARTED
2268
+ :param pulumi.Input[str] desired_state: Desired state of the Stream. Set this field to 'RUNNING' to start the stream, 'NOT_STARTED' to create the stream without
2269
+ starting and 'PAUSED' to pause the stream from a 'RUNNING' state. Possible values: NOT_STARTED, RUNNING, PAUSED.
2270
+ Default: NOT_STARTED
2265
2271
  :param pulumi.Input[Union['StreamDestinationConfigArgs', 'StreamDestinationConfigArgsDict']] destination_config: Destination connection profile configuration.
2266
2272
  Structure is documented below.
2267
2273
  :param pulumi.Input[str] display_name: Display name.
@@ -2336,8 +2342,9 @@ class Stream(pulumi.CustomResource):
2336
2342
  @pulumi.getter(name="desiredState")
2337
2343
  def desired_state(self) -> pulumi.Output[Optional[str]]:
2338
2344
  """
2339
- Desired state of the Stream. Set this field to 'RUNNING' to start the stream, and 'PAUSED' to pause the stream. Possible
2340
- values: NOT_STARTED, RUNNING, PAUSED. Default: NOT_STARTED
2345
+ Desired state of the Stream. Set this field to 'RUNNING' to start the stream, 'NOT_STARTED' to create the stream without
2346
+ starting and 'PAUSED' to pause the stream from a 'RUNNING' state. Possible values: NOT_STARTED, RUNNING, PAUSED.
2347
+ Default: NOT_STARTED
2341
2348
  """
2342
2349
  return pulumi.get(self, "desired_state")
2343
2350
 
@@ -0,0 +1,11 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ from .. import _utilities
6
+ import typing
7
+ # Export this package's modules as members:
8
+ from .connection import *
9
+ from .git_repository_link import *
10
+ from ._inputs import *
11
+ from . import outputs
@@ -0,0 +1,304 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+
17
+ __all__ = [
18
+ 'ConnectionGithubConfigArgs',
19
+ 'ConnectionGithubConfigArgsDict',
20
+ 'ConnectionGithubConfigAuthorizerCredentialArgs',
21
+ 'ConnectionGithubConfigAuthorizerCredentialArgsDict',
22
+ 'ConnectionInstallationStateArgs',
23
+ 'ConnectionInstallationStateArgsDict',
24
+ ]
25
+
26
+ MYPY = False
27
+
28
+ if not MYPY:
29
+ class ConnectionGithubConfigArgsDict(TypedDict):
30
+ github_app: pulumi.Input[str]
31
+ """
32
+ Required. Immutable. The GitHub Application that was installed to
33
+ the GitHub user or organization.
34
+ Possible values:
35
+ GIT_HUB_APP_UNSPECIFIED
36
+ DEVELOPER_CONNECT
37
+ FIREBASE"
38
+ """
39
+ app_installation_id: NotRequired[pulumi.Input[str]]
40
+ """
41
+ Optional. GitHub App installation id.
42
+ """
43
+ authorizer_credential: NotRequired[pulumi.Input['ConnectionGithubConfigAuthorizerCredentialArgsDict']]
44
+ """
45
+ Represents an OAuth token of the account that authorized the Connection,and
46
+ associated metadata.
47
+ Structure is documented below.
48
+ """
49
+ installation_uri: NotRequired[pulumi.Input[str]]
50
+ """
51
+ (Output)
52
+ Output only. The URI to navigate to in order to manage the installation
53
+ associated with this GitHubConfig.
54
+ """
55
+ elif False:
56
+ ConnectionGithubConfigArgsDict: TypeAlias = Mapping[str, Any]
57
+
58
+ @pulumi.input_type
59
+ class ConnectionGithubConfigArgs:
60
+ def __init__(__self__, *,
61
+ github_app: pulumi.Input[str],
62
+ app_installation_id: Optional[pulumi.Input[str]] = None,
63
+ authorizer_credential: Optional[pulumi.Input['ConnectionGithubConfigAuthorizerCredentialArgs']] = None,
64
+ installation_uri: Optional[pulumi.Input[str]] = None):
65
+ """
66
+ :param pulumi.Input[str] github_app: Required. Immutable. The GitHub Application that was installed to
67
+ the GitHub user or organization.
68
+ Possible values:
69
+ GIT_HUB_APP_UNSPECIFIED
70
+ DEVELOPER_CONNECT
71
+ FIREBASE"
72
+ :param pulumi.Input[str] app_installation_id: Optional. GitHub App installation id.
73
+ :param pulumi.Input['ConnectionGithubConfigAuthorizerCredentialArgs'] authorizer_credential: Represents an OAuth token of the account that authorized the Connection,and
74
+ associated metadata.
75
+ Structure is documented below.
76
+ :param pulumi.Input[str] installation_uri: (Output)
77
+ Output only. The URI to navigate to in order to manage the installation
78
+ associated with this GitHubConfig.
79
+ """
80
+ pulumi.set(__self__, "github_app", github_app)
81
+ if app_installation_id is not None:
82
+ pulumi.set(__self__, "app_installation_id", app_installation_id)
83
+ if authorizer_credential is not None:
84
+ pulumi.set(__self__, "authorizer_credential", authorizer_credential)
85
+ if installation_uri is not None:
86
+ pulumi.set(__self__, "installation_uri", installation_uri)
87
+
88
+ @property
89
+ @pulumi.getter(name="githubApp")
90
+ def github_app(self) -> pulumi.Input[str]:
91
+ """
92
+ Required. Immutable. The GitHub Application that was installed to
93
+ the GitHub user or organization.
94
+ Possible values:
95
+ GIT_HUB_APP_UNSPECIFIED
96
+ DEVELOPER_CONNECT
97
+ FIREBASE"
98
+ """
99
+ return pulumi.get(self, "github_app")
100
+
101
+ @github_app.setter
102
+ def github_app(self, value: pulumi.Input[str]):
103
+ pulumi.set(self, "github_app", value)
104
+
105
+ @property
106
+ @pulumi.getter(name="appInstallationId")
107
+ def app_installation_id(self) -> Optional[pulumi.Input[str]]:
108
+ """
109
+ Optional. GitHub App installation id.
110
+ """
111
+ return pulumi.get(self, "app_installation_id")
112
+
113
+ @app_installation_id.setter
114
+ def app_installation_id(self, value: Optional[pulumi.Input[str]]):
115
+ pulumi.set(self, "app_installation_id", value)
116
+
117
+ @property
118
+ @pulumi.getter(name="authorizerCredential")
119
+ def authorizer_credential(self) -> Optional[pulumi.Input['ConnectionGithubConfigAuthorizerCredentialArgs']]:
120
+ """
121
+ Represents an OAuth token of the account that authorized the Connection,and
122
+ associated metadata.
123
+ Structure is documented below.
124
+ """
125
+ return pulumi.get(self, "authorizer_credential")
126
+
127
+ @authorizer_credential.setter
128
+ def authorizer_credential(self, value: Optional[pulumi.Input['ConnectionGithubConfigAuthorizerCredentialArgs']]):
129
+ pulumi.set(self, "authorizer_credential", value)
130
+
131
+ @property
132
+ @pulumi.getter(name="installationUri")
133
+ def installation_uri(self) -> Optional[pulumi.Input[str]]:
134
+ """
135
+ (Output)
136
+ Output only. The URI to navigate to in order to manage the installation
137
+ associated with this GitHubConfig.
138
+ """
139
+ return pulumi.get(self, "installation_uri")
140
+
141
+ @installation_uri.setter
142
+ def installation_uri(self, value: Optional[pulumi.Input[str]]):
143
+ pulumi.set(self, "installation_uri", value)
144
+
145
+
146
+ if not MYPY:
147
+ class ConnectionGithubConfigAuthorizerCredentialArgsDict(TypedDict):
148
+ oauth_token_secret_version: pulumi.Input[str]
149
+ """
150
+ Required. A SecretManager resource containing the OAuth token
151
+ that authorizes the connection.
152
+ Format: `projects/*/secrets/*/versions/*`.
153
+ """
154
+ username: NotRequired[pulumi.Input[str]]
155
+ """
156
+ (Output)
157
+ Output only. The username associated with this token.
158
+ """
159
+ elif False:
160
+ ConnectionGithubConfigAuthorizerCredentialArgsDict: TypeAlias = Mapping[str, Any]
161
+
162
+ @pulumi.input_type
163
+ class ConnectionGithubConfigAuthorizerCredentialArgs:
164
+ def __init__(__self__, *,
165
+ oauth_token_secret_version: pulumi.Input[str],
166
+ username: Optional[pulumi.Input[str]] = None):
167
+ """
168
+ :param pulumi.Input[str] oauth_token_secret_version: Required. A SecretManager resource containing the OAuth token
169
+ that authorizes the connection.
170
+ Format: `projects/*/secrets/*/versions/*`.
171
+ :param pulumi.Input[str] username: (Output)
172
+ Output only. The username associated with this token.
173
+ """
174
+ pulumi.set(__self__, "oauth_token_secret_version", oauth_token_secret_version)
175
+ if username is not None:
176
+ pulumi.set(__self__, "username", username)
177
+
178
+ @property
179
+ @pulumi.getter(name="oauthTokenSecretVersion")
180
+ def oauth_token_secret_version(self) -> pulumi.Input[str]:
181
+ """
182
+ Required. A SecretManager resource containing the OAuth token
183
+ that authorizes the connection.
184
+ Format: `projects/*/secrets/*/versions/*`.
185
+ """
186
+ return pulumi.get(self, "oauth_token_secret_version")
187
+
188
+ @oauth_token_secret_version.setter
189
+ def oauth_token_secret_version(self, value: pulumi.Input[str]):
190
+ pulumi.set(self, "oauth_token_secret_version", value)
191
+
192
+ @property
193
+ @pulumi.getter
194
+ def username(self) -> Optional[pulumi.Input[str]]:
195
+ """
196
+ (Output)
197
+ Output only. The username associated with this token.
198
+ """
199
+ return pulumi.get(self, "username")
200
+
201
+ @username.setter
202
+ def username(self, value: Optional[pulumi.Input[str]]):
203
+ pulumi.set(self, "username", value)
204
+
205
+
206
+ if not MYPY:
207
+ class ConnectionInstallationStateArgsDict(TypedDict):
208
+ action_uri: NotRequired[pulumi.Input[str]]
209
+ """
210
+ Output only. Link to follow for next action. Empty string if the
211
+ installation is already complete.
212
+ """
213
+ message: NotRequired[pulumi.Input[str]]
214
+ """
215
+ Output only. Message of what the user should do next to continue
216
+ the installation.Empty string if the installation is already complete.
217
+ """
218
+ stage: NotRequired[pulumi.Input[str]]
219
+ """
220
+ (Output)
221
+ Output only. Current step of the installation process.
222
+ Possible values:
223
+ STAGE_UNSPECIFIED
224
+ PENDING_CREATE_APP
225
+ PENDING_USER_OAUTH
226
+ PENDING_INSTALL_APP
227
+ COMPLETE
228
+ """
229
+ elif False:
230
+ ConnectionInstallationStateArgsDict: TypeAlias = Mapping[str, Any]
231
+
232
+ @pulumi.input_type
233
+ class ConnectionInstallationStateArgs:
234
+ def __init__(__self__, *,
235
+ action_uri: Optional[pulumi.Input[str]] = None,
236
+ message: Optional[pulumi.Input[str]] = None,
237
+ stage: Optional[pulumi.Input[str]] = None):
238
+ """
239
+ :param pulumi.Input[str] action_uri: Output only. Link to follow for next action. Empty string if the
240
+ installation is already complete.
241
+ :param pulumi.Input[str] message: Output only. Message of what the user should do next to continue
242
+ the installation.Empty string if the installation is already complete.
243
+ :param pulumi.Input[str] stage: (Output)
244
+ Output only. Current step of the installation process.
245
+ Possible values:
246
+ STAGE_UNSPECIFIED
247
+ PENDING_CREATE_APP
248
+ PENDING_USER_OAUTH
249
+ PENDING_INSTALL_APP
250
+ COMPLETE
251
+ """
252
+ if action_uri is not None:
253
+ pulumi.set(__self__, "action_uri", action_uri)
254
+ if message is not None:
255
+ pulumi.set(__self__, "message", message)
256
+ if stage is not None:
257
+ pulumi.set(__self__, "stage", stage)
258
+
259
+ @property
260
+ @pulumi.getter(name="actionUri")
261
+ def action_uri(self) -> Optional[pulumi.Input[str]]:
262
+ """
263
+ Output only. Link to follow for next action. Empty string if the
264
+ installation is already complete.
265
+ """
266
+ return pulumi.get(self, "action_uri")
267
+
268
+ @action_uri.setter
269
+ def action_uri(self, value: Optional[pulumi.Input[str]]):
270
+ pulumi.set(self, "action_uri", value)
271
+
272
+ @property
273
+ @pulumi.getter
274
+ def message(self) -> Optional[pulumi.Input[str]]:
275
+ """
276
+ Output only. Message of what the user should do next to continue
277
+ the installation.Empty string if the installation is already complete.
278
+ """
279
+ return pulumi.get(self, "message")
280
+
281
+ @message.setter
282
+ def message(self, value: Optional[pulumi.Input[str]]):
283
+ pulumi.set(self, "message", value)
284
+
285
+ @property
286
+ @pulumi.getter
287
+ def stage(self) -> Optional[pulumi.Input[str]]:
288
+ """
289
+ (Output)
290
+ Output only. Current step of the installation process.
291
+ Possible values:
292
+ STAGE_UNSPECIFIED
293
+ PENDING_CREATE_APP
294
+ PENDING_USER_OAUTH
295
+ PENDING_INSTALL_APP
296
+ COMPLETE
297
+ """
298
+ return pulumi.get(self, "stage")
299
+
300
+ @stage.setter
301
+ def stage(self, value: Optional[pulumi.Input[str]]):
302
+ pulumi.set(self, "stage", value)
303
+
304
+