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
@@ -0,0 +1,249 @@
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
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'ConnectionGithubConfig',
20
+ 'ConnectionGithubConfigAuthorizerCredential',
21
+ 'ConnectionInstallationState',
22
+ ]
23
+
24
+ @pulumi.output_type
25
+ class ConnectionGithubConfig(dict):
26
+ @staticmethod
27
+ def __key_warning(key: str):
28
+ suggest = None
29
+ if key == "githubApp":
30
+ suggest = "github_app"
31
+ elif key == "appInstallationId":
32
+ suggest = "app_installation_id"
33
+ elif key == "authorizerCredential":
34
+ suggest = "authorizer_credential"
35
+ elif key == "installationUri":
36
+ suggest = "installation_uri"
37
+
38
+ if suggest:
39
+ pulumi.log.warn(f"Key '{key}' not found in ConnectionGithubConfig. Access the value via the '{suggest}' property getter instead.")
40
+
41
+ def __getitem__(self, key: str) -> Any:
42
+ ConnectionGithubConfig.__key_warning(key)
43
+ return super().__getitem__(key)
44
+
45
+ def get(self, key: str, default = None) -> Any:
46
+ ConnectionGithubConfig.__key_warning(key)
47
+ return super().get(key, default)
48
+
49
+ def __init__(__self__, *,
50
+ github_app: str,
51
+ app_installation_id: Optional[str] = None,
52
+ authorizer_credential: Optional['outputs.ConnectionGithubConfigAuthorizerCredential'] = None,
53
+ installation_uri: Optional[str] = None):
54
+ """
55
+ :param str github_app: Required. Immutable. The GitHub Application that was installed to
56
+ the GitHub user or organization.
57
+ Possible values:
58
+ GIT_HUB_APP_UNSPECIFIED
59
+ DEVELOPER_CONNECT
60
+ FIREBASE"
61
+ :param str app_installation_id: Optional. GitHub App installation id.
62
+ :param 'ConnectionGithubConfigAuthorizerCredentialArgs' authorizer_credential: Represents an OAuth token of the account that authorized the Connection,and
63
+ associated metadata.
64
+ Structure is documented below.
65
+ :param str installation_uri: (Output)
66
+ Output only. The URI to navigate to in order to manage the installation
67
+ associated with this GitHubConfig.
68
+ """
69
+ pulumi.set(__self__, "github_app", github_app)
70
+ if app_installation_id is not None:
71
+ pulumi.set(__self__, "app_installation_id", app_installation_id)
72
+ if authorizer_credential is not None:
73
+ pulumi.set(__self__, "authorizer_credential", authorizer_credential)
74
+ if installation_uri is not None:
75
+ pulumi.set(__self__, "installation_uri", installation_uri)
76
+
77
+ @property
78
+ @pulumi.getter(name="githubApp")
79
+ def github_app(self) -> str:
80
+ """
81
+ Required. Immutable. The GitHub Application that was installed to
82
+ the GitHub user or organization.
83
+ Possible values:
84
+ GIT_HUB_APP_UNSPECIFIED
85
+ DEVELOPER_CONNECT
86
+ FIREBASE"
87
+ """
88
+ return pulumi.get(self, "github_app")
89
+
90
+ @property
91
+ @pulumi.getter(name="appInstallationId")
92
+ def app_installation_id(self) -> Optional[str]:
93
+ """
94
+ Optional. GitHub App installation id.
95
+ """
96
+ return pulumi.get(self, "app_installation_id")
97
+
98
+ @property
99
+ @pulumi.getter(name="authorizerCredential")
100
+ def authorizer_credential(self) -> Optional['outputs.ConnectionGithubConfigAuthorizerCredential']:
101
+ """
102
+ Represents an OAuth token of the account that authorized the Connection,and
103
+ associated metadata.
104
+ Structure is documented below.
105
+ """
106
+ return pulumi.get(self, "authorizer_credential")
107
+
108
+ @property
109
+ @pulumi.getter(name="installationUri")
110
+ def installation_uri(self) -> Optional[str]:
111
+ """
112
+ (Output)
113
+ Output only. The URI to navigate to in order to manage the installation
114
+ associated with this GitHubConfig.
115
+ """
116
+ return pulumi.get(self, "installation_uri")
117
+
118
+
119
+ @pulumi.output_type
120
+ class ConnectionGithubConfigAuthorizerCredential(dict):
121
+ @staticmethod
122
+ def __key_warning(key: str):
123
+ suggest = None
124
+ if key == "oauthTokenSecretVersion":
125
+ suggest = "oauth_token_secret_version"
126
+
127
+ if suggest:
128
+ pulumi.log.warn(f"Key '{key}' not found in ConnectionGithubConfigAuthorizerCredential. Access the value via the '{suggest}' property getter instead.")
129
+
130
+ def __getitem__(self, key: str) -> Any:
131
+ ConnectionGithubConfigAuthorizerCredential.__key_warning(key)
132
+ return super().__getitem__(key)
133
+
134
+ def get(self, key: str, default = None) -> Any:
135
+ ConnectionGithubConfigAuthorizerCredential.__key_warning(key)
136
+ return super().get(key, default)
137
+
138
+ def __init__(__self__, *,
139
+ oauth_token_secret_version: str,
140
+ username: Optional[str] = None):
141
+ """
142
+ :param str oauth_token_secret_version: Required. A SecretManager resource containing the OAuth token
143
+ that authorizes the connection.
144
+ Format: `projects/*/secrets/*/versions/*`.
145
+ :param str username: (Output)
146
+ Output only. The username associated with this token.
147
+ """
148
+ pulumi.set(__self__, "oauth_token_secret_version", oauth_token_secret_version)
149
+ if username is not None:
150
+ pulumi.set(__self__, "username", username)
151
+
152
+ @property
153
+ @pulumi.getter(name="oauthTokenSecretVersion")
154
+ def oauth_token_secret_version(self) -> str:
155
+ """
156
+ Required. A SecretManager resource containing the OAuth token
157
+ that authorizes the connection.
158
+ Format: `projects/*/secrets/*/versions/*`.
159
+ """
160
+ return pulumi.get(self, "oauth_token_secret_version")
161
+
162
+ @property
163
+ @pulumi.getter
164
+ def username(self) -> Optional[str]:
165
+ """
166
+ (Output)
167
+ Output only. The username associated with this token.
168
+ """
169
+ return pulumi.get(self, "username")
170
+
171
+
172
+ @pulumi.output_type
173
+ class ConnectionInstallationState(dict):
174
+ @staticmethod
175
+ def __key_warning(key: str):
176
+ suggest = None
177
+ if key == "actionUri":
178
+ suggest = "action_uri"
179
+
180
+ if suggest:
181
+ pulumi.log.warn(f"Key '{key}' not found in ConnectionInstallationState. Access the value via the '{suggest}' property getter instead.")
182
+
183
+ def __getitem__(self, key: str) -> Any:
184
+ ConnectionInstallationState.__key_warning(key)
185
+ return super().__getitem__(key)
186
+
187
+ def get(self, key: str, default = None) -> Any:
188
+ ConnectionInstallationState.__key_warning(key)
189
+ return super().get(key, default)
190
+
191
+ def __init__(__self__, *,
192
+ action_uri: Optional[str] = None,
193
+ message: Optional[str] = None,
194
+ stage: Optional[str] = None):
195
+ """
196
+ :param str action_uri: Output only. Link to follow for next action. Empty string if the
197
+ installation is already complete.
198
+ :param str message: Output only. Message of what the user should do next to continue
199
+ the installation.Empty string if the installation is already complete.
200
+ :param str stage: (Output)
201
+ Output only. Current step of the installation process.
202
+ Possible values:
203
+ STAGE_UNSPECIFIED
204
+ PENDING_CREATE_APP
205
+ PENDING_USER_OAUTH
206
+ PENDING_INSTALL_APP
207
+ COMPLETE
208
+ """
209
+ if action_uri is not None:
210
+ pulumi.set(__self__, "action_uri", action_uri)
211
+ if message is not None:
212
+ pulumi.set(__self__, "message", message)
213
+ if stage is not None:
214
+ pulumi.set(__self__, "stage", stage)
215
+
216
+ @property
217
+ @pulumi.getter(name="actionUri")
218
+ def action_uri(self) -> Optional[str]:
219
+ """
220
+ Output only. Link to follow for next action. Empty string if the
221
+ installation is already complete.
222
+ """
223
+ return pulumi.get(self, "action_uri")
224
+
225
+ @property
226
+ @pulumi.getter
227
+ def message(self) -> Optional[str]:
228
+ """
229
+ Output only. Message of what the user should do next to continue
230
+ the installation.Empty string if the installation is already complete.
231
+ """
232
+ return pulumi.get(self, "message")
233
+
234
+ @property
235
+ @pulumi.getter
236
+ def stage(self) -> Optional[str]:
237
+ """
238
+ (Output)
239
+ Output only. Current step of the installation process.
240
+ Possible values:
241
+ STAGE_UNSPECIFIED
242
+ PENDING_CREATE_APP
243
+ PENDING_USER_OAUTH
244
+ PENDING_INSTALL_APP
245
+ COMPLETE
246
+ """
247
+ return pulumi.get(self, "stage")
248
+
249
+
@@ -9,5 +9,6 @@ from .chat_engine import *
9
9
  from .data_store import *
10
10
  from .schema import *
11
11
  from .search_engine import *
12
+ from .target_site import *
12
13
  from ._inputs import *
13
14
  from . import outputs
@@ -49,6 +49,12 @@ __all__ = [
49
49
  'SearchEngineCommonConfigArgsDict',
50
50
  'SearchEngineSearchEngineConfigArgs',
51
51
  'SearchEngineSearchEngineConfigArgsDict',
52
+ 'TargetSiteFailureReasonArgs',
53
+ 'TargetSiteFailureReasonArgsDict',
54
+ 'TargetSiteFailureReasonQuotaFailureArgs',
55
+ 'TargetSiteFailureReasonQuotaFailureArgsDict',
56
+ 'TargetSiteSiteVerificationInfoArgs',
57
+ 'TargetSiteSiteVerificationInfoArgsDict',
52
58
  ]
53
59
 
54
60
  MYPY = False
@@ -833,3 +839,128 @@ class SearchEngineSearchEngineConfigArgs:
833
839
  pulumi.set(self, "search_tier", value)
834
840
 
835
841
 
842
+ if not MYPY:
843
+ class TargetSiteFailureReasonArgsDict(TypedDict):
844
+ quota_failure: NotRequired[pulumi.Input['TargetSiteFailureReasonQuotaFailureArgsDict']]
845
+ """
846
+ Site verification state indicating the ownership and validity.
847
+ Structure is documented below.
848
+ """
849
+ elif False:
850
+ TargetSiteFailureReasonArgsDict: TypeAlias = Mapping[str, Any]
851
+
852
+ @pulumi.input_type
853
+ class TargetSiteFailureReasonArgs:
854
+ def __init__(__self__, *,
855
+ quota_failure: Optional[pulumi.Input['TargetSiteFailureReasonQuotaFailureArgs']] = None):
856
+ """
857
+ :param pulumi.Input['TargetSiteFailureReasonQuotaFailureArgs'] quota_failure: Site verification state indicating the ownership and validity.
858
+ Structure is documented below.
859
+ """
860
+ if quota_failure is not None:
861
+ pulumi.set(__self__, "quota_failure", quota_failure)
862
+
863
+ @property
864
+ @pulumi.getter(name="quotaFailure")
865
+ def quota_failure(self) -> Optional[pulumi.Input['TargetSiteFailureReasonQuotaFailureArgs']]:
866
+ """
867
+ Site verification state indicating the ownership and validity.
868
+ Structure is documented below.
869
+ """
870
+ return pulumi.get(self, "quota_failure")
871
+
872
+ @quota_failure.setter
873
+ def quota_failure(self, value: Optional[pulumi.Input['TargetSiteFailureReasonQuotaFailureArgs']]):
874
+ pulumi.set(self, "quota_failure", value)
875
+
876
+
877
+ if not MYPY:
878
+ class TargetSiteFailureReasonQuotaFailureArgsDict(TypedDict):
879
+ total_required_quota: NotRequired[pulumi.Input[int]]
880
+ """
881
+ This number is an estimation on how much total quota this project
882
+ needs to successfully complete indexing.
883
+ """
884
+ elif False:
885
+ TargetSiteFailureReasonQuotaFailureArgsDict: TypeAlias = Mapping[str, Any]
886
+
887
+ @pulumi.input_type
888
+ class TargetSiteFailureReasonQuotaFailureArgs:
889
+ def __init__(__self__, *,
890
+ total_required_quota: Optional[pulumi.Input[int]] = None):
891
+ """
892
+ :param pulumi.Input[int] total_required_quota: This number is an estimation on how much total quota this project
893
+ needs to successfully complete indexing.
894
+ """
895
+ if total_required_quota is not None:
896
+ pulumi.set(__self__, "total_required_quota", total_required_quota)
897
+
898
+ @property
899
+ @pulumi.getter(name="totalRequiredQuota")
900
+ def total_required_quota(self) -> Optional[pulumi.Input[int]]:
901
+ """
902
+ This number is an estimation on how much total quota this project
903
+ needs to successfully complete indexing.
904
+ """
905
+ return pulumi.get(self, "total_required_quota")
906
+
907
+ @total_required_quota.setter
908
+ def total_required_quota(self, value: Optional[pulumi.Input[int]]):
909
+ pulumi.set(self, "total_required_quota", value)
910
+
911
+
912
+ if not MYPY:
913
+ class TargetSiteSiteVerificationInfoArgsDict(TypedDict):
914
+ site_verification_state: NotRequired[pulumi.Input[str]]
915
+ """
916
+ Site verification state indicating the ownership and validity.
917
+ Possible values are: `VERIFIED`, `UNVERIFIED`, `EXEMPTED`.
918
+ """
919
+ verify_time: NotRequired[pulumi.Input[str]]
920
+ """
921
+ Latest site verification time.
922
+ """
923
+ elif False:
924
+ TargetSiteSiteVerificationInfoArgsDict: TypeAlias = Mapping[str, Any]
925
+
926
+ @pulumi.input_type
927
+ class TargetSiteSiteVerificationInfoArgs:
928
+ def __init__(__self__, *,
929
+ site_verification_state: Optional[pulumi.Input[str]] = None,
930
+ verify_time: Optional[pulumi.Input[str]] = None):
931
+ """
932
+ :param pulumi.Input[str] site_verification_state: Site verification state indicating the ownership and validity.
933
+ Possible values are: `VERIFIED`, `UNVERIFIED`, `EXEMPTED`.
934
+ :param pulumi.Input[str] verify_time: Latest site verification time.
935
+ """
936
+ if site_verification_state is not None:
937
+ pulumi.set(__self__, "site_verification_state", site_verification_state)
938
+ if verify_time is not None:
939
+ pulumi.set(__self__, "verify_time", verify_time)
940
+
941
+ @property
942
+ @pulumi.getter(name="siteVerificationState")
943
+ def site_verification_state(self) -> Optional[pulumi.Input[str]]:
944
+ """
945
+ Site verification state indicating the ownership and validity.
946
+ Possible values are: `VERIFIED`, `UNVERIFIED`, `EXEMPTED`.
947
+ """
948
+ return pulumi.get(self, "site_verification_state")
949
+
950
+ @site_verification_state.setter
951
+ def site_verification_state(self, value: Optional[pulumi.Input[str]]):
952
+ pulumi.set(self, "site_verification_state", value)
953
+
954
+ @property
955
+ @pulumi.getter(name="verifyTime")
956
+ def verify_time(self) -> Optional[pulumi.Input[str]]:
957
+ """
958
+ Latest site verification time.
959
+ """
960
+ return pulumi.get(self, "verify_time")
961
+
962
+ @verify_time.setter
963
+ def verify_time(self, value: Optional[pulumi.Input[str]]):
964
+ pulumi.set(self, "verify_time", value)
965
+
966
+
@@ -33,6 +33,9 @@ __all__ = [
33
33
  'DataStoreDocumentProcessingConfigParsingConfigOverrideOcrParsingConfig',
34
34
  'SearchEngineCommonConfig',
35
35
  'SearchEngineSearchEngineConfig',
36
+ 'TargetSiteFailureReason',
37
+ 'TargetSiteFailureReasonQuotaFailure',
38
+ 'TargetSiteSiteVerificationInfo',
36
39
  ]
37
40
 
38
41
  @pulumi.output_type
@@ -739,3 +742,131 @@ class SearchEngineSearchEngineConfig(dict):
739
742
  return pulumi.get(self, "search_tier")
740
743
 
741
744
 
745
+ @pulumi.output_type
746
+ class TargetSiteFailureReason(dict):
747
+ @staticmethod
748
+ def __key_warning(key: str):
749
+ suggest = None
750
+ if key == "quotaFailure":
751
+ suggest = "quota_failure"
752
+
753
+ if suggest:
754
+ pulumi.log.warn(f"Key '{key}' not found in TargetSiteFailureReason. Access the value via the '{suggest}' property getter instead.")
755
+
756
+ def __getitem__(self, key: str) -> Any:
757
+ TargetSiteFailureReason.__key_warning(key)
758
+ return super().__getitem__(key)
759
+
760
+ def get(self, key: str, default = None) -> Any:
761
+ TargetSiteFailureReason.__key_warning(key)
762
+ return super().get(key, default)
763
+
764
+ def __init__(__self__, *,
765
+ quota_failure: Optional['outputs.TargetSiteFailureReasonQuotaFailure'] = None):
766
+ """
767
+ :param 'TargetSiteFailureReasonQuotaFailureArgs' quota_failure: Site verification state indicating the ownership and validity.
768
+ Structure is documented below.
769
+ """
770
+ if quota_failure is not None:
771
+ pulumi.set(__self__, "quota_failure", quota_failure)
772
+
773
+ @property
774
+ @pulumi.getter(name="quotaFailure")
775
+ def quota_failure(self) -> Optional['outputs.TargetSiteFailureReasonQuotaFailure']:
776
+ """
777
+ Site verification state indicating the ownership and validity.
778
+ Structure is documented below.
779
+ """
780
+ return pulumi.get(self, "quota_failure")
781
+
782
+
783
+ @pulumi.output_type
784
+ class TargetSiteFailureReasonQuotaFailure(dict):
785
+ @staticmethod
786
+ def __key_warning(key: str):
787
+ suggest = None
788
+ if key == "totalRequiredQuota":
789
+ suggest = "total_required_quota"
790
+
791
+ if suggest:
792
+ pulumi.log.warn(f"Key '{key}' not found in TargetSiteFailureReasonQuotaFailure. Access the value via the '{suggest}' property getter instead.")
793
+
794
+ def __getitem__(self, key: str) -> Any:
795
+ TargetSiteFailureReasonQuotaFailure.__key_warning(key)
796
+ return super().__getitem__(key)
797
+
798
+ def get(self, key: str, default = None) -> Any:
799
+ TargetSiteFailureReasonQuotaFailure.__key_warning(key)
800
+ return super().get(key, default)
801
+
802
+ def __init__(__self__, *,
803
+ total_required_quota: Optional[int] = None):
804
+ """
805
+ :param int total_required_quota: This number is an estimation on how much total quota this project
806
+ needs to successfully complete indexing.
807
+ """
808
+ if total_required_quota is not None:
809
+ pulumi.set(__self__, "total_required_quota", total_required_quota)
810
+
811
+ @property
812
+ @pulumi.getter(name="totalRequiredQuota")
813
+ def total_required_quota(self) -> Optional[int]:
814
+ """
815
+ This number is an estimation on how much total quota this project
816
+ needs to successfully complete indexing.
817
+ """
818
+ return pulumi.get(self, "total_required_quota")
819
+
820
+
821
+ @pulumi.output_type
822
+ class TargetSiteSiteVerificationInfo(dict):
823
+ @staticmethod
824
+ def __key_warning(key: str):
825
+ suggest = None
826
+ if key == "siteVerificationState":
827
+ suggest = "site_verification_state"
828
+ elif key == "verifyTime":
829
+ suggest = "verify_time"
830
+
831
+ if suggest:
832
+ pulumi.log.warn(f"Key '{key}' not found in TargetSiteSiteVerificationInfo. Access the value via the '{suggest}' property getter instead.")
833
+
834
+ def __getitem__(self, key: str) -> Any:
835
+ TargetSiteSiteVerificationInfo.__key_warning(key)
836
+ return super().__getitem__(key)
837
+
838
+ def get(self, key: str, default = None) -> Any:
839
+ TargetSiteSiteVerificationInfo.__key_warning(key)
840
+ return super().get(key, default)
841
+
842
+ def __init__(__self__, *,
843
+ site_verification_state: Optional[str] = None,
844
+ verify_time: Optional[str] = None):
845
+ """
846
+ :param str site_verification_state: Site verification state indicating the ownership and validity.
847
+ Possible values are: `VERIFIED`, `UNVERIFIED`, `EXEMPTED`.
848
+ :param str verify_time: Latest site verification time.
849
+ """
850
+ if site_verification_state is not None:
851
+ pulumi.set(__self__, "site_verification_state", site_verification_state)
852
+ if verify_time is not None:
853
+ pulumi.set(__self__, "verify_time", verify_time)
854
+
855
+ @property
856
+ @pulumi.getter(name="siteVerificationState")
857
+ def site_verification_state(self) -> Optional[str]:
858
+ """
859
+ Site verification state indicating the ownership and validity.
860
+ Possible values are: `VERIFIED`, `UNVERIFIED`, `EXEMPTED`.
861
+ """
862
+ return pulumi.get(self, "site_verification_state")
863
+
864
+ @property
865
+ @pulumi.getter(name="verifyTime")
866
+ def verify_time(self) -> Optional[str]:
867
+ """
868
+ Latest site verification time.
869
+ """
870
+ return pulumi.get(self, "verify_time")
871
+
872
+