pulumi-gcp 8.13.0a1736231082__py3-none-any.whl → 8.13.0a1736263433__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 (90) hide show
  1. pulumi_gcp/__init__.py +43 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +3 -3
  3. pulumi_gcp/accesscontextmanager/outputs.py +2 -2
  4. pulumi_gcp/artifactregistry/_inputs.py +83 -0
  5. pulumi_gcp/artifactregistry/get_repository.py +15 -4
  6. pulumi_gcp/artifactregistry/outputs.py +112 -0
  7. pulumi_gcp/artifactregistry/repository.py +93 -7
  8. pulumi_gcp/backupdisasterrecovery/get_backup.py +38 -2
  9. pulumi_gcp/backupdisasterrecovery/get_data_source.py +38 -2
  10. pulumi_gcp/backupdisasterrecovery/outputs.py +8 -8
  11. pulumi_gcp/bigquery/_inputs.py +369 -0
  12. pulumi_gcp/bigquery/dataset_access.py +61 -0
  13. pulumi_gcp/bigquery/job.py +6 -18
  14. pulumi_gcp/bigquery/outputs.py +350 -0
  15. pulumi_gcp/bigquery/table.py +47 -0
  16. pulumi_gcp/chronicle/__init__.py +10 -0
  17. pulumi_gcp/chronicle/_inputs.py +169 -0
  18. pulumi_gcp/chronicle/outputs.py +107 -0
  19. pulumi_gcp/chronicle/watchlist.py +776 -0
  20. pulumi_gcp/cloudrunv2/_inputs.py +6 -3
  21. pulumi_gcp/cloudrunv2/outputs.py +10 -6
  22. pulumi_gcp/composer/_inputs.py +80 -5
  23. pulumi_gcp/composer/outputs.py +111 -4
  24. pulumi_gcp/compute/_inputs.py +181 -87
  25. pulumi_gcp/compute/firewall_policy_association.py +50 -39
  26. pulumi_gcp/compute/get_network.py +17 -2
  27. pulumi_gcp/compute/get_subnetwork.py +18 -4
  28. pulumi_gcp/compute/network.py +39 -2
  29. pulumi_gcp/compute/outputs.py +157 -58
  30. pulumi_gcp/compute/region_network_endpoint_group.py +1 -1
  31. pulumi_gcp/compute/resize_request.py +26 -40
  32. pulumi_gcp/config/__init__.pyi +2 -0
  33. pulumi_gcp/config/vars.py +4 -0
  34. pulumi_gcp/dataproc/batch.py +4 -18
  35. pulumi_gcp/datastream/_inputs.py +68 -0
  36. pulumi_gcp/datastream/outputs.py +41 -1
  37. pulumi_gcp/developerconnect/connection.py +58 -12
  38. pulumi_gcp/diagflow/_inputs.py +3 -3
  39. pulumi_gcp/diagflow/outputs.py +2 -2
  40. pulumi_gcp/filestore/backup.py +71 -3
  41. pulumi_gcp/firebase/hosting_custom_domain.py +4 -4
  42. pulumi_gcp/firestore/_inputs.py +3 -3
  43. pulumi_gcp/firestore/outputs.py +2 -2
  44. pulumi_gcp/gkehub/__init__.py +1 -0
  45. pulumi_gcp/gkehub/get_feature.py +226 -0
  46. pulumi_gcp/gkehub/outputs.py +1153 -0
  47. pulumi_gcp/gkeonprem/__init__.py +1 -0
  48. pulumi_gcp/gkeonprem/_inputs.py +2364 -0
  49. pulumi_gcp/gkeonprem/outputs.py +1780 -0
  50. pulumi_gcp/gkeonprem/vmware_admin_cluster.py +1715 -0
  51. pulumi_gcp/integrationconnectors/_inputs.py +6 -6
  52. pulumi_gcp/integrationconnectors/connection.py +7 -7
  53. pulumi_gcp/integrationconnectors/outputs.py +4 -4
  54. pulumi_gcp/kms/__init__.py +2 -0
  55. pulumi_gcp/kms/get_autokey_config.py +121 -0
  56. pulumi_gcp/kms/get_key_handle.py +185 -0
  57. pulumi_gcp/netapp/kmsconfig.py +2 -14
  58. pulumi_gcp/networkconnectivity/hub.py +108 -0
  59. pulumi_gcp/networkconnectivity/spoke.py +195 -0
  60. pulumi_gcp/networkmanagement/vpc_flow_logs_config.py +4 -0
  61. pulumi_gcp/networksecurity/__init__.py +2 -0
  62. pulumi_gcp/networksecurity/_inputs.py +78 -0
  63. pulumi_gcp/networksecurity/intercept_endpoint_group.py +723 -0
  64. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +815 -0
  65. pulumi_gcp/networksecurity/outputs.py +48 -0
  66. pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
  67. pulumi_gcp/orgpolicy/policy.py +2 -2
  68. pulumi_gcp/parallelstore/instance.py +149 -0
  69. pulumi_gcp/projects/usage_export_bucket.py +42 -110
  70. pulumi_gcp/provider.py +20 -0
  71. pulumi_gcp/pubsub/subscription.py +6 -6
  72. pulumi_gcp/pulumi-plugin.json +1 -1
  73. pulumi_gcp/securesourcemanager/instance.py +4 -16
  74. pulumi_gcp/spanner/instance_iam_binding.py +14 -0
  75. pulumi_gcp/spanner/instance_iam_member.py +14 -0
  76. pulumi_gcp/sql/database_instance.py +7 -7
  77. pulumi_gcp/storage/__init__.py +1 -0
  78. pulumi_gcp/storage/_inputs.py +431 -0
  79. pulumi_gcp/storage/folder.py +483 -0
  80. pulumi_gcp/storage/outputs.py +363 -0
  81. pulumi_gcp/storage/transfer_job.py +84 -38
  82. pulumi_gcp/vertex/_inputs.py +26 -25
  83. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  84. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  85. pulumi_gcp/vertex/outputs.py +15 -14
  86. pulumi_gcp/workstations/workstation.py +55 -1
  87. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/METADATA +1 -1
  88. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/RECORD +90 -79
  89. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/WHEEL +0 -0
  90. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,226 @@
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
+ 'GetFeatureResult',
20
+ 'AwaitableGetFeatureResult',
21
+ 'get_feature',
22
+ 'get_feature_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetFeatureResult:
27
+ """
28
+ A collection of values returned by getFeature.
29
+ """
30
+ def __init__(__self__, create_time=None, delete_time=None, effective_labels=None, fleet_default_member_configs=None, id=None, labels=None, location=None, name=None, project=None, pulumi_labels=None, resource_states=None, specs=None, states=None, update_time=None):
31
+ if create_time and not isinstance(create_time, str):
32
+ raise TypeError("Expected argument 'create_time' to be a str")
33
+ pulumi.set(__self__, "create_time", create_time)
34
+ if delete_time and not isinstance(delete_time, str):
35
+ raise TypeError("Expected argument 'delete_time' to be a str")
36
+ pulumi.set(__self__, "delete_time", delete_time)
37
+ if effective_labels and not isinstance(effective_labels, dict):
38
+ raise TypeError("Expected argument 'effective_labels' to be a dict")
39
+ pulumi.set(__self__, "effective_labels", effective_labels)
40
+ if fleet_default_member_configs and not isinstance(fleet_default_member_configs, list):
41
+ raise TypeError("Expected argument 'fleet_default_member_configs' to be a list")
42
+ pulumi.set(__self__, "fleet_default_member_configs", fleet_default_member_configs)
43
+ if id and not isinstance(id, str):
44
+ raise TypeError("Expected argument 'id' to be a str")
45
+ pulumi.set(__self__, "id", id)
46
+ if labels and not isinstance(labels, dict):
47
+ raise TypeError("Expected argument 'labels' to be a dict")
48
+ pulumi.set(__self__, "labels", labels)
49
+ if location and not isinstance(location, str):
50
+ raise TypeError("Expected argument 'location' to be a str")
51
+ pulumi.set(__self__, "location", location)
52
+ if name and not isinstance(name, str):
53
+ raise TypeError("Expected argument 'name' to be a str")
54
+ pulumi.set(__self__, "name", name)
55
+ if project and not isinstance(project, str):
56
+ raise TypeError("Expected argument 'project' to be a str")
57
+ pulumi.set(__self__, "project", project)
58
+ if pulumi_labels and not isinstance(pulumi_labels, dict):
59
+ raise TypeError("Expected argument 'pulumi_labels' to be a dict")
60
+ pulumi.set(__self__, "pulumi_labels", pulumi_labels)
61
+ if resource_states and not isinstance(resource_states, list):
62
+ raise TypeError("Expected argument 'resource_states' to be a list")
63
+ pulumi.set(__self__, "resource_states", resource_states)
64
+ if specs and not isinstance(specs, list):
65
+ raise TypeError("Expected argument 'specs' to be a list")
66
+ pulumi.set(__self__, "specs", specs)
67
+ if states and not isinstance(states, list):
68
+ raise TypeError("Expected argument 'states' to be a list")
69
+ pulumi.set(__self__, "states", states)
70
+ if update_time and not isinstance(update_time, str):
71
+ raise TypeError("Expected argument 'update_time' to be a str")
72
+ pulumi.set(__self__, "update_time", update_time)
73
+
74
+ @property
75
+ @pulumi.getter(name="createTime")
76
+ def create_time(self) -> str:
77
+ return pulumi.get(self, "create_time")
78
+
79
+ @property
80
+ @pulumi.getter(name="deleteTime")
81
+ def delete_time(self) -> str:
82
+ return pulumi.get(self, "delete_time")
83
+
84
+ @property
85
+ @pulumi.getter(name="effectiveLabels")
86
+ def effective_labels(self) -> Mapping[str, str]:
87
+ return pulumi.get(self, "effective_labels")
88
+
89
+ @property
90
+ @pulumi.getter(name="fleetDefaultMemberConfigs")
91
+ def fleet_default_member_configs(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigResult']:
92
+ return pulumi.get(self, "fleet_default_member_configs")
93
+
94
+ @property
95
+ @pulumi.getter
96
+ def id(self) -> str:
97
+ """
98
+ The provider-assigned unique ID for this managed resource.
99
+ """
100
+ return pulumi.get(self, "id")
101
+
102
+ @property
103
+ @pulumi.getter
104
+ def labels(self) -> Mapping[str, str]:
105
+ return pulumi.get(self, "labels")
106
+
107
+ @property
108
+ @pulumi.getter
109
+ def location(self) -> str:
110
+ return pulumi.get(self, "location")
111
+
112
+ @property
113
+ @pulumi.getter
114
+ def name(self) -> str:
115
+ return pulumi.get(self, "name")
116
+
117
+ @property
118
+ @pulumi.getter
119
+ def project(self) -> Optional[str]:
120
+ return pulumi.get(self, "project")
121
+
122
+ @property
123
+ @pulumi.getter(name="pulumiLabels")
124
+ def pulumi_labels(self) -> Mapping[str, str]:
125
+ return pulumi.get(self, "pulumi_labels")
126
+
127
+ @property
128
+ @pulumi.getter(name="resourceStates")
129
+ def resource_states(self) -> Sequence['outputs.GetFeatureResourceStateResult']:
130
+ return pulumi.get(self, "resource_states")
131
+
132
+ @property
133
+ @pulumi.getter
134
+ def specs(self) -> Sequence['outputs.GetFeatureSpecResult']:
135
+ return pulumi.get(self, "specs")
136
+
137
+ @property
138
+ @pulumi.getter
139
+ def states(self) -> Sequence['outputs.GetFeatureStateResult']:
140
+ return pulumi.get(self, "states")
141
+
142
+ @property
143
+ @pulumi.getter(name="updateTime")
144
+ def update_time(self) -> str:
145
+ return pulumi.get(self, "update_time")
146
+
147
+
148
+ class AwaitableGetFeatureResult(GetFeatureResult):
149
+ # pylint: disable=using-constant-test
150
+ def __await__(self):
151
+ if False:
152
+ yield self
153
+ return GetFeatureResult(
154
+ create_time=self.create_time,
155
+ delete_time=self.delete_time,
156
+ effective_labels=self.effective_labels,
157
+ fleet_default_member_configs=self.fleet_default_member_configs,
158
+ id=self.id,
159
+ labels=self.labels,
160
+ location=self.location,
161
+ name=self.name,
162
+ project=self.project,
163
+ pulumi_labels=self.pulumi_labels,
164
+ resource_states=self.resource_states,
165
+ specs=self.specs,
166
+ states=self.states,
167
+ update_time=self.update_time)
168
+
169
+
170
+ def get_feature(location: Optional[str] = None,
171
+ name: Optional[str] = None,
172
+ project: Optional[str] = None,
173
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFeatureResult:
174
+ """
175
+ Use this data source to access information about an existing resource.
176
+ """
177
+ __args__ = dict()
178
+ __args__['location'] = location
179
+ __args__['name'] = name
180
+ __args__['project'] = project
181
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
182
+ __ret__ = pulumi.runtime.invoke('gcp:gkehub/getFeature:getFeature', __args__, opts=opts, typ=GetFeatureResult).value
183
+
184
+ return AwaitableGetFeatureResult(
185
+ create_time=pulumi.get(__ret__, 'create_time'),
186
+ delete_time=pulumi.get(__ret__, 'delete_time'),
187
+ effective_labels=pulumi.get(__ret__, 'effective_labels'),
188
+ fleet_default_member_configs=pulumi.get(__ret__, 'fleet_default_member_configs'),
189
+ id=pulumi.get(__ret__, 'id'),
190
+ labels=pulumi.get(__ret__, 'labels'),
191
+ location=pulumi.get(__ret__, 'location'),
192
+ name=pulumi.get(__ret__, 'name'),
193
+ project=pulumi.get(__ret__, 'project'),
194
+ pulumi_labels=pulumi.get(__ret__, 'pulumi_labels'),
195
+ resource_states=pulumi.get(__ret__, 'resource_states'),
196
+ specs=pulumi.get(__ret__, 'specs'),
197
+ states=pulumi.get(__ret__, 'states'),
198
+ update_time=pulumi.get(__ret__, 'update_time'))
199
+ def get_feature_output(location: Optional[pulumi.Input[str]] = None,
200
+ name: Optional[pulumi.Input[str]] = None,
201
+ project: Optional[pulumi.Input[Optional[str]]] = None,
202
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFeatureResult]:
203
+ """
204
+ Use this data source to access information about an existing resource.
205
+ """
206
+ __args__ = dict()
207
+ __args__['location'] = location
208
+ __args__['name'] = name
209
+ __args__['project'] = project
210
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
211
+ __ret__ = pulumi.runtime.invoke_output('gcp:gkehub/getFeature:getFeature', __args__, opts=opts, typ=GetFeatureResult)
212
+ return __ret__.apply(lambda __response__: GetFeatureResult(
213
+ create_time=pulumi.get(__response__, 'create_time'),
214
+ delete_time=pulumi.get(__response__, 'delete_time'),
215
+ effective_labels=pulumi.get(__response__, 'effective_labels'),
216
+ fleet_default_member_configs=pulumi.get(__response__, 'fleet_default_member_configs'),
217
+ id=pulumi.get(__response__, 'id'),
218
+ labels=pulumi.get(__response__, 'labels'),
219
+ location=pulumi.get(__response__, 'location'),
220
+ name=pulumi.get(__response__, 'name'),
221
+ project=pulumi.get(__response__, 'project'),
222
+ pulumi_labels=pulumi.get(__response__, 'pulumi_labels'),
223
+ resource_states=pulumi.get(__response__, 'resource_states'),
224
+ specs=pulumi.get(__response__, 'specs'),
225
+ states=pulumi.get(__response__, 'states'),
226
+ update_time=pulumi.get(__response__, 'update_time')))