pulumi-gcp 8.13.0a1736231082__py3-none-any.whl → 8.13.1__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.1.dist-info}/METADATA +2 -2
  88. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.1.dist-info}/RECORD +90 -79
  89. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.1.dist-info}/WHEEL +1 -1
  90. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,169 @@
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
+ 'WatchlistEntityCountArgs',
19
+ 'WatchlistEntityCountArgsDict',
20
+ 'WatchlistEntityPopulationMechanismArgs',
21
+ 'WatchlistEntityPopulationMechanismArgsDict',
22
+ 'WatchlistEntityPopulationMechanismManualArgs',
23
+ 'WatchlistEntityPopulationMechanismManualArgsDict',
24
+ 'WatchlistWatchlistUserPreferencesArgs',
25
+ 'WatchlistWatchlistUserPreferencesArgsDict',
26
+ ]
27
+
28
+ MYPY = False
29
+
30
+ if not MYPY:
31
+ class WatchlistEntityCountArgsDict(TypedDict):
32
+ asset: NotRequired[pulumi.Input[int]]
33
+ """
34
+ (Output)
35
+ Output only. Count of asset type entities in the watchlist.
36
+ """
37
+ user: NotRequired[pulumi.Input[int]]
38
+ """
39
+ (Output)
40
+ Output only. Count of user type entities in the watchlist.
41
+ """
42
+ elif False:
43
+ WatchlistEntityCountArgsDict: TypeAlias = Mapping[str, Any]
44
+
45
+ @pulumi.input_type
46
+ class WatchlistEntityCountArgs:
47
+ def __init__(__self__, *,
48
+ asset: Optional[pulumi.Input[int]] = None,
49
+ user: Optional[pulumi.Input[int]] = None):
50
+ """
51
+ :param pulumi.Input[int] asset: (Output)
52
+ Output only. Count of asset type entities in the watchlist.
53
+ :param pulumi.Input[int] user: (Output)
54
+ Output only. Count of user type entities in the watchlist.
55
+ """
56
+ if asset is not None:
57
+ pulumi.set(__self__, "asset", asset)
58
+ if user is not None:
59
+ pulumi.set(__self__, "user", user)
60
+
61
+ @property
62
+ @pulumi.getter
63
+ def asset(self) -> Optional[pulumi.Input[int]]:
64
+ """
65
+ (Output)
66
+ Output only. Count of asset type entities in the watchlist.
67
+ """
68
+ return pulumi.get(self, "asset")
69
+
70
+ @asset.setter
71
+ def asset(self, value: Optional[pulumi.Input[int]]):
72
+ pulumi.set(self, "asset", value)
73
+
74
+ @property
75
+ @pulumi.getter
76
+ def user(self) -> Optional[pulumi.Input[int]]:
77
+ """
78
+ (Output)
79
+ Output only. Count of user type entities in the watchlist.
80
+ """
81
+ return pulumi.get(self, "user")
82
+
83
+ @user.setter
84
+ def user(self, value: Optional[pulumi.Input[int]]):
85
+ pulumi.set(self, "user", value)
86
+
87
+
88
+ if not MYPY:
89
+ class WatchlistEntityPopulationMechanismArgsDict(TypedDict):
90
+ manual: NotRequired[pulumi.Input['WatchlistEntityPopulationMechanismManualArgsDict']]
91
+ """
92
+ Entities are added manually.
93
+
94
+ - - -
95
+ """
96
+ elif False:
97
+ WatchlistEntityPopulationMechanismArgsDict: TypeAlias = Mapping[str, Any]
98
+
99
+ @pulumi.input_type
100
+ class WatchlistEntityPopulationMechanismArgs:
101
+ def __init__(__self__, *,
102
+ manual: Optional[pulumi.Input['WatchlistEntityPopulationMechanismManualArgs']] = None):
103
+ """
104
+ :param pulumi.Input['WatchlistEntityPopulationMechanismManualArgs'] manual: Entities are added manually.
105
+
106
+ - - -
107
+ """
108
+ if manual is not None:
109
+ pulumi.set(__self__, "manual", manual)
110
+
111
+ @property
112
+ @pulumi.getter
113
+ def manual(self) -> Optional[pulumi.Input['WatchlistEntityPopulationMechanismManualArgs']]:
114
+ """
115
+ Entities are added manually.
116
+
117
+ - - -
118
+ """
119
+ return pulumi.get(self, "manual")
120
+
121
+ @manual.setter
122
+ def manual(self, value: Optional[pulumi.Input['WatchlistEntityPopulationMechanismManualArgs']]):
123
+ pulumi.set(self, "manual", value)
124
+
125
+
126
+ if not MYPY:
127
+ class WatchlistEntityPopulationMechanismManualArgsDict(TypedDict):
128
+ pass
129
+ elif False:
130
+ WatchlistEntityPopulationMechanismManualArgsDict: TypeAlias = Mapping[str, Any]
131
+
132
+ @pulumi.input_type
133
+ class WatchlistEntityPopulationMechanismManualArgs:
134
+ def __init__(__self__):
135
+ pass
136
+
137
+
138
+ if not MYPY:
139
+ class WatchlistWatchlistUserPreferencesArgsDict(TypedDict):
140
+ pinned: NotRequired[pulumi.Input[bool]]
141
+ """
142
+ Optional. Whether the watchlist is pinned on the dashboard.
143
+ """
144
+ elif False:
145
+ WatchlistWatchlistUserPreferencesArgsDict: TypeAlias = Mapping[str, Any]
146
+
147
+ @pulumi.input_type
148
+ class WatchlistWatchlistUserPreferencesArgs:
149
+ def __init__(__self__, *,
150
+ pinned: Optional[pulumi.Input[bool]] = None):
151
+ """
152
+ :param pulumi.Input[bool] pinned: Optional. Whether the watchlist is pinned on the dashboard.
153
+ """
154
+ if pinned is not None:
155
+ pulumi.set(__self__, "pinned", pinned)
156
+
157
+ @property
158
+ @pulumi.getter
159
+ def pinned(self) -> Optional[pulumi.Input[bool]]:
160
+ """
161
+ Optional. Whether the watchlist is pinned on the dashboard.
162
+ """
163
+ return pulumi.get(self, "pinned")
164
+
165
+ @pinned.setter
166
+ def pinned(self, value: Optional[pulumi.Input[bool]]):
167
+ pulumi.set(self, "pinned", value)
168
+
169
+
@@ -0,0 +1,107 @@
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
+ 'WatchlistEntityCount',
20
+ 'WatchlistEntityPopulationMechanism',
21
+ 'WatchlistEntityPopulationMechanismManual',
22
+ 'WatchlistWatchlistUserPreferences',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class WatchlistEntityCount(dict):
27
+ def __init__(__self__, *,
28
+ asset: Optional[int] = None,
29
+ user: Optional[int] = None):
30
+ """
31
+ :param int asset: (Output)
32
+ Output only. Count of asset type entities in the watchlist.
33
+ :param int user: (Output)
34
+ Output only. Count of user type entities in the watchlist.
35
+ """
36
+ if asset is not None:
37
+ pulumi.set(__self__, "asset", asset)
38
+ if user is not None:
39
+ pulumi.set(__self__, "user", user)
40
+
41
+ @property
42
+ @pulumi.getter
43
+ def asset(self) -> Optional[int]:
44
+ """
45
+ (Output)
46
+ Output only. Count of asset type entities in the watchlist.
47
+ """
48
+ return pulumi.get(self, "asset")
49
+
50
+ @property
51
+ @pulumi.getter
52
+ def user(self) -> Optional[int]:
53
+ """
54
+ (Output)
55
+ Output only. Count of user type entities in the watchlist.
56
+ """
57
+ return pulumi.get(self, "user")
58
+
59
+
60
+ @pulumi.output_type
61
+ class WatchlistEntityPopulationMechanism(dict):
62
+ def __init__(__self__, *,
63
+ manual: Optional['outputs.WatchlistEntityPopulationMechanismManual'] = None):
64
+ """
65
+ :param 'WatchlistEntityPopulationMechanismManualArgs' manual: Entities are added manually.
66
+
67
+ - - -
68
+ """
69
+ if manual is not None:
70
+ pulumi.set(__self__, "manual", manual)
71
+
72
+ @property
73
+ @pulumi.getter
74
+ def manual(self) -> Optional['outputs.WatchlistEntityPopulationMechanismManual']:
75
+ """
76
+ Entities are added manually.
77
+
78
+ - - -
79
+ """
80
+ return pulumi.get(self, "manual")
81
+
82
+
83
+ @pulumi.output_type
84
+ class WatchlistEntityPopulationMechanismManual(dict):
85
+ def __init__(__self__):
86
+ pass
87
+
88
+
89
+ @pulumi.output_type
90
+ class WatchlistWatchlistUserPreferences(dict):
91
+ def __init__(__self__, *,
92
+ pinned: Optional[bool] = None):
93
+ """
94
+ :param bool pinned: Optional. Whether the watchlist is pinned on the dashboard.
95
+ """
96
+ if pinned is not None:
97
+ pulumi.set(__self__, "pinned", pinned)
98
+
99
+ @property
100
+ @pulumi.getter
101
+ def pinned(self) -> Optional[bool]:
102
+ """
103
+ Optional. Whether the watchlist is pinned on the dashboard.
104
+ """
105
+ return pulumi.get(self, "pinned")
106
+
107
+