pulumi-gcp 8.14.0a1736836474__py3-none-any.whl → 8.14.0a1736952890__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_gcp/__init__.py +32 -0
- pulumi_gcp/applicationintegration/_inputs.py +3 -3
- pulumi_gcp/applicationintegration/outputs.py +2 -2
- pulumi_gcp/beyondcorp/__init__.py +1 -0
- pulumi_gcp/beyondcorp/_inputs.py +93 -0
- pulumi_gcp/beyondcorp/outputs.py +89 -0
- pulumi_gcp/beyondcorp/security_gateway.py +670 -0
- pulumi_gcp/blockchainnodeengine/_inputs.py +3 -3
- pulumi_gcp/blockchainnodeengine/outputs.py +2 -2
- pulumi_gcp/certificateauthority/_inputs.py +6 -6
- pulumi_gcp/certificateauthority/outputs.py +4 -4
- pulumi_gcp/certificatemanager/_inputs.py +3 -3
- pulumi_gcp/certificatemanager/outputs.py +2 -2
- pulumi_gcp/chronicle/__init__.py +2 -0
- pulumi_gcp/chronicle/_inputs.py +388 -0
- pulumi_gcp/chronicle/data_access_label.py +690 -0
- pulumi_gcp/chronicle/data_access_scope.py +1094 -0
- pulumi_gcp/chronicle/outputs.py +322 -0
- pulumi_gcp/chronicle/watchlist.py +68 -45
- pulumi_gcp/cloudbuild/_inputs.py +3 -3
- pulumi_gcp/cloudbuild/outputs.py +2 -2
- pulumi_gcp/cloudquota/__init__.py +1 -0
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +336 -0
- pulumi_gcp/compute/_inputs.py +33 -33
- pulumi_gcp/compute/instance_group_manager.py +9 -9
- pulumi_gcp/compute/outputs.py +22 -22
- pulumi_gcp/compute/region_instance_group_manager.py +9 -9
- pulumi_gcp/datacatalog/_inputs.py +3 -3
- pulumi_gcp/datacatalog/outputs.py +2 -2
- pulumi_gcp/developerconnect/_inputs.py +910 -42
- pulumi_gcp/developerconnect/connection.py +614 -86
- pulumi_gcp/developerconnect/git_repository_link.py +4 -0
- pulumi_gcp/developerconnect/outputs.py +717 -28
- pulumi_gcp/dns/_inputs.py +124 -20
- pulumi_gcp/dns/outputs.py +90 -16
- pulumi_gcp/dns/record_set.py +82 -0
- pulumi_gcp/edgecontainer/_inputs.py +3 -3
- pulumi_gcp/edgecontainer/outputs.py +2 -2
- pulumi_gcp/gkeonprem/_inputs.py +15 -15
- pulumi_gcp/gkeonprem/outputs.py +10 -10
- pulumi_gcp/gkeonprem/v_mware_cluster.py +1 -1
- pulumi_gcp/iap/_inputs.py +9 -3
- pulumi_gcp/iap/outputs.py +6 -2
- pulumi_gcp/iap/settings.py +63 -63
- pulumi_gcp/identityplatform/_inputs.py +9 -9
- pulumi_gcp/identityplatform/outputs.py +6 -6
- pulumi_gcp/integrationconnectors/_inputs.py +6 -6
- pulumi_gcp/integrationconnectors/outputs.py +4 -4
- pulumi_gcp/monitoring/_inputs.py +3 -3
- pulumi_gcp/monitoring/outputs.py +2 -2
- pulumi_gcp/oracledatabase/_inputs.py +3 -3
- pulumi_gcp/oracledatabase/outputs.py +2 -2
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/_inputs.py +20 -0
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/outputs.py +36 -0
- pulumi_gcp/transcoder/_inputs.py +6 -6
- pulumi_gcp/transcoder/outputs.py +4 -4
- {pulumi_gcp-8.14.0a1736836474.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.14.0a1736836474.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/RECORD +62 -58
- {pulumi_gcp-8.14.0a1736836474.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.14.0a1736836474.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/top_level.txt +0 -0
pulumi_gcp/chronicle/outputs.py
CHANGED
@@ -16,12 +16,334 @@ from .. import _utilities
|
|
16
16
|
from . import outputs
|
17
17
|
|
18
18
|
__all__ = [
|
19
|
+
'DataAccessScopeAllowedDataAccessLabel',
|
20
|
+
'DataAccessScopeAllowedDataAccessLabelIngestionLabel',
|
21
|
+
'DataAccessScopeDeniedDataAccessLabel',
|
22
|
+
'DataAccessScopeDeniedDataAccessLabelIngestionLabel',
|
19
23
|
'WatchlistEntityCount',
|
20
24
|
'WatchlistEntityPopulationMechanism',
|
21
25
|
'WatchlistEntityPopulationMechanismManual',
|
22
26
|
'WatchlistWatchlistUserPreferences',
|
23
27
|
]
|
24
28
|
|
29
|
+
@pulumi.output_type
|
30
|
+
class DataAccessScopeAllowedDataAccessLabel(dict):
|
31
|
+
@staticmethod
|
32
|
+
def __key_warning(key: str):
|
33
|
+
suggest = None
|
34
|
+
if key == "assetNamespace":
|
35
|
+
suggest = "asset_namespace"
|
36
|
+
elif key == "dataAccessLabel":
|
37
|
+
suggest = "data_access_label"
|
38
|
+
elif key == "displayName":
|
39
|
+
suggest = "display_name"
|
40
|
+
elif key == "ingestionLabel":
|
41
|
+
suggest = "ingestion_label"
|
42
|
+
elif key == "logType":
|
43
|
+
suggest = "log_type"
|
44
|
+
|
45
|
+
if suggest:
|
46
|
+
pulumi.log.warn(f"Key '{key}' not found in DataAccessScopeAllowedDataAccessLabel. Access the value via the '{suggest}' property getter instead.")
|
47
|
+
|
48
|
+
def __getitem__(self, key: str) -> Any:
|
49
|
+
DataAccessScopeAllowedDataAccessLabel.__key_warning(key)
|
50
|
+
return super().__getitem__(key)
|
51
|
+
|
52
|
+
def get(self, key: str, default = None) -> Any:
|
53
|
+
DataAccessScopeAllowedDataAccessLabel.__key_warning(key)
|
54
|
+
return super().get(key, default)
|
55
|
+
|
56
|
+
def __init__(__self__, *,
|
57
|
+
asset_namespace: Optional[str] = None,
|
58
|
+
data_access_label: Optional[str] = None,
|
59
|
+
display_name: Optional[str] = None,
|
60
|
+
ingestion_label: Optional['outputs.DataAccessScopeAllowedDataAccessLabelIngestionLabel'] = None,
|
61
|
+
log_type: Optional[str] = None):
|
62
|
+
"""
|
63
|
+
:param str asset_namespace: The asset namespace configured in the forwarder
|
64
|
+
of the customer's events.
|
65
|
+
:param str data_access_label: The name of the data access label.
|
66
|
+
:param str display_name: (Output)
|
67
|
+
Output only. The display name of the label.
|
68
|
+
Data access label and log types's name
|
69
|
+
will match the display name of the resource.
|
70
|
+
The asset namespace will match the namespace itself.
|
71
|
+
The ingestion key value pair will match the key of the tuple.
|
72
|
+
:param 'DataAccessScopeAllowedDataAccessLabelIngestionLabelArgs' ingestion_label: Representation of an ingestion label type.
|
73
|
+
Structure is documented below.
|
74
|
+
:param str log_type: The name of the log type.
|
75
|
+
"""
|
76
|
+
if asset_namespace is not None:
|
77
|
+
pulumi.set(__self__, "asset_namespace", asset_namespace)
|
78
|
+
if data_access_label is not None:
|
79
|
+
pulumi.set(__self__, "data_access_label", data_access_label)
|
80
|
+
if display_name is not None:
|
81
|
+
pulumi.set(__self__, "display_name", display_name)
|
82
|
+
if ingestion_label is not None:
|
83
|
+
pulumi.set(__self__, "ingestion_label", ingestion_label)
|
84
|
+
if log_type is not None:
|
85
|
+
pulumi.set(__self__, "log_type", log_type)
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter(name="assetNamespace")
|
89
|
+
def asset_namespace(self) -> Optional[str]:
|
90
|
+
"""
|
91
|
+
The asset namespace configured in the forwarder
|
92
|
+
of the customer's events.
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "asset_namespace")
|
95
|
+
|
96
|
+
@property
|
97
|
+
@pulumi.getter(name="dataAccessLabel")
|
98
|
+
def data_access_label(self) -> Optional[str]:
|
99
|
+
"""
|
100
|
+
The name of the data access label.
|
101
|
+
"""
|
102
|
+
return pulumi.get(self, "data_access_label")
|
103
|
+
|
104
|
+
@property
|
105
|
+
@pulumi.getter(name="displayName")
|
106
|
+
def display_name(self) -> Optional[str]:
|
107
|
+
"""
|
108
|
+
(Output)
|
109
|
+
Output only. The display name of the label.
|
110
|
+
Data access label and log types's name
|
111
|
+
will match the display name of the resource.
|
112
|
+
The asset namespace will match the namespace itself.
|
113
|
+
The ingestion key value pair will match the key of the tuple.
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "display_name")
|
116
|
+
|
117
|
+
@property
|
118
|
+
@pulumi.getter(name="ingestionLabel")
|
119
|
+
def ingestion_label(self) -> Optional['outputs.DataAccessScopeAllowedDataAccessLabelIngestionLabel']:
|
120
|
+
"""
|
121
|
+
Representation of an ingestion label type.
|
122
|
+
Structure is documented below.
|
123
|
+
"""
|
124
|
+
return pulumi.get(self, "ingestion_label")
|
125
|
+
|
126
|
+
@property
|
127
|
+
@pulumi.getter(name="logType")
|
128
|
+
def log_type(self) -> Optional[str]:
|
129
|
+
"""
|
130
|
+
The name of the log type.
|
131
|
+
"""
|
132
|
+
return pulumi.get(self, "log_type")
|
133
|
+
|
134
|
+
|
135
|
+
@pulumi.output_type
|
136
|
+
class DataAccessScopeAllowedDataAccessLabelIngestionLabel(dict):
|
137
|
+
@staticmethod
|
138
|
+
def __key_warning(key: str):
|
139
|
+
suggest = None
|
140
|
+
if key == "ingestionLabelKey":
|
141
|
+
suggest = "ingestion_label_key"
|
142
|
+
elif key == "ingestionLabelValue":
|
143
|
+
suggest = "ingestion_label_value"
|
144
|
+
|
145
|
+
if suggest:
|
146
|
+
pulumi.log.warn(f"Key '{key}' not found in DataAccessScopeAllowedDataAccessLabelIngestionLabel. Access the value via the '{suggest}' property getter instead.")
|
147
|
+
|
148
|
+
def __getitem__(self, key: str) -> Any:
|
149
|
+
DataAccessScopeAllowedDataAccessLabelIngestionLabel.__key_warning(key)
|
150
|
+
return super().__getitem__(key)
|
151
|
+
|
152
|
+
def get(self, key: str, default = None) -> Any:
|
153
|
+
DataAccessScopeAllowedDataAccessLabelIngestionLabel.__key_warning(key)
|
154
|
+
return super().get(key, default)
|
155
|
+
|
156
|
+
def __init__(__self__, *,
|
157
|
+
ingestion_label_key: str,
|
158
|
+
ingestion_label_value: Optional[str] = None):
|
159
|
+
"""
|
160
|
+
:param str ingestion_label_key: Required. The key of the ingestion label. Always required.
|
161
|
+
:param str ingestion_label_value: Optional. The value of the ingestion label. Optional. An object
|
162
|
+
with no provided value and some key provided would match
|
163
|
+
against the given key and ANY value.
|
164
|
+
"""
|
165
|
+
pulumi.set(__self__, "ingestion_label_key", ingestion_label_key)
|
166
|
+
if ingestion_label_value is not None:
|
167
|
+
pulumi.set(__self__, "ingestion_label_value", ingestion_label_value)
|
168
|
+
|
169
|
+
@property
|
170
|
+
@pulumi.getter(name="ingestionLabelKey")
|
171
|
+
def ingestion_label_key(self) -> str:
|
172
|
+
"""
|
173
|
+
Required. The key of the ingestion label. Always required.
|
174
|
+
"""
|
175
|
+
return pulumi.get(self, "ingestion_label_key")
|
176
|
+
|
177
|
+
@property
|
178
|
+
@pulumi.getter(name="ingestionLabelValue")
|
179
|
+
def ingestion_label_value(self) -> Optional[str]:
|
180
|
+
"""
|
181
|
+
Optional. The value of the ingestion label. Optional. An object
|
182
|
+
with no provided value and some key provided would match
|
183
|
+
against the given key and ANY value.
|
184
|
+
"""
|
185
|
+
return pulumi.get(self, "ingestion_label_value")
|
186
|
+
|
187
|
+
|
188
|
+
@pulumi.output_type
|
189
|
+
class DataAccessScopeDeniedDataAccessLabel(dict):
|
190
|
+
@staticmethod
|
191
|
+
def __key_warning(key: str):
|
192
|
+
suggest = None
|
193
|
+
if key == "assetNamespace":
|
194
|
+
suggest = "asset_namespace"
|
195
|
+
elif key == "dataAccessLabel":
|
196
|
+
suggest = "data_access_label"
|
197
|
+
elif key == "displayName":
|
198
|
+
suggest = "display_name"
|
199
|
+
elif key == "ingestionLabel":
|
200
|
+
suggest = "ingestion_label"
|
201
|
+
elif key == "logType":
|
202
|
+
suggest = "log_type"
|
203
|
+
|
204
|
+
if suggest:
|
205
|
+
pulumi.log.warn(f"Key '{key}' not found in DataAccessScopeDeniedDataAccessLabel. Access the value via the '{suggest}' property getter instead.")
|
206
|
+
|
207
|
+
def __getitem__(self, key: str) -> Any:
|
208
|
+
DataAccessScopeDeniedDataAccessLabel.__key_warning(key)
|
209
|
+
return super().__getitem__(key)
|
210
|
+
|
211
|
+
def get(self, key: str, default = None) -> Any:
|
212
|
+
DataAccessScopeDeniedDataAccessLabel.__key_warning(key)
|
213
|
+
return super().get(key, default)
|
214
|
+
|
215
|
+
def __init__(__self__, *,
|
216
|
+
asset_namespace: Optional[str] = None,
|
217
|
+
data_access_label: Optional[str] = None,
|
218
|
+
display_name: Optional[str] = None,
|
219
|
+
ingestion_label: Optional['outputs.DataAccessScopeDeniedDataAccessLabelIngestionLabel'] = None,
|
220
|
+
log_type: Optional[str] = None):
|
221
|
+
"""
|
222
|
+
:param str asset_namespace: The asset namespace configured in the forwarder
|
223
|
+
of the customer's events.
|
224
|
+
:param str data_access_label: The name of the data access label.
|
225
|
+
:param str display_name: (Output)
|
226
|
+
Output only. The display name of the label.
|
227
|
+
Data access label and log types's name
|
228
|
+
will match the display name of the resource.
|
229
|
+
The asset namespace will match the namespace itself.
|
230
|
+
The ingestion key value pair will match the key of the tuple.
|
231
|
+
:param 'DataAccessScopeDeniedDataAccessLabelIngestionLabelArgs' ingestion_label: Representation of an ingestion label type.
|
232
|
+
Structure is documented below.
|
233
|
+
:param str log_type: The name of the log type.
|
234
|
+
"""
|
235
|
+
if asset_namespace is not None:
|
236
|
+
pulumi.set(__self__, "asset_namespace", asset_namespace)
|
237
|
+
if data_access_label is not None:
|
238
|
+
pulumi.set(__self__, "data_access_label", data_access_label)
|
239
|
+
if display_name is not None:
|
240
|
+
pulumi.set(__self__, "display_name", display_name)
|
241
|
+
if ingestion_label is not None:
|
242
|
+
pulumi.set(__self__, "ingestion_label", ingestion_label)
|
243
|
+
if log_type is not None:
|
244
|
+
pulumi.set(__self__, "log_type", log_type)
|
245
|
+
|
246
|
+
@property
|
247
|
+
@pulumi.getter(name="assetNamespace")
|
248
|
+
def asset_namespace(self) -> Optional[str]:
|
249
|
+
"""
|
250
|
+
The asset namespace configured in the forwarder
|
251
|
+
of the customer's events.
|
252
|
+
"""
|
253
|
+
return pulumi.get(self, "asset_namespace")
|
254
|
+
|
255
|
+
@property
|
256
|
+
@pulumi.getter(name="dataAccessLabel")
|
257
|
+
def data_access_label(self) -> Optional[str]:
|
258
|
+
"""
|
259
|
+
The name of the data access label.
|
260
|
+
"""
|
261
|
+
return pulumi.get(self, "data_access_label")
|
262
|
+
|
263
|
+
@property
|
264
|
+
@pulumi.getter(name="displayName")
|
265
|
+
def display_name(self) -> Optional[str]:
|
266
|
+
"""
|
267
|
+
(Output)
|
268
|
+
Output only. The display name of the label.
|
269
|
+
Data access label and log types's name
|
270
|
+
will match the display name of the resource.
|
271
|
+
The asset namespace will match the namespace itself.
|
272
|
+
The ingestion key value pair will match the key of the tuple.
|
273
|
+
"""
|
274
|
+
return pulumi.get(self, "display_name")
|
275
|
+
|
276
|
+
@property
|
277
|
+
@pulumi.getter(name="ingestionLabel")
|
278
|
+
def ingestion_label(self) -> Optional['outputs.DataAccessScopeDeniedDataAccessLabelIngestionLabel']:
|
279
|
+
"""
|
280
|
+
Representation of an ingestion label type.
|
281
|
+
Structure is documented below.
|
282
|
+
"""
|
283
|
+
return pulumi.get(self, "ingestion_label")
|
284
|
+
|
285
|
+
@property
|
286
|
+
@pulumi.getter(name="logType")
|
287
|
+
def log_type(self) -> Optional[str]:
|
288
|
+
"""
|
289
|
+
The name of the log type.
|
290
|
+
"""
|
291
|
+
return pulumi.get(self, "log_type")
|
292
|
+
|
293
|
+
|
294
|
+
@pulumi.output_type
|
295
|
+
class DataAccessScopeDeniedDataAccessLabelIngestionLabel(dict):
|
296
|
+
@staticmethod
|
297
|
+
def __key_warning(key: str):
|
298
|
+
suggest = None
|
299
|
+
if key == "ingestionLabelKey":
|
300
|
+
suggest = "ingestion_label_key"
|
301
|
+
elif key == "ingestionLabelValue":
|
302
|
+
suggest = "ingestion_label_value"
|
303
|
+
|
304
|
+
if suggest:
|
305
|
+
pulumi.log.warn(f"Key '{key}' not found in DataAccessScopeDeniedDataAccessLabelIngestionLabel. Access the value via the '{suggest}' property getter instead.")
|
306
|
+
|
307
|
+
def __getitem__(self, key: str) -> Any:
|
308
|
+
DataAccessScopeDeniedDataAccessLabelIngestionLabel.__key_warning(key)
|
309
|
+
return super().__getitem__(key)
|
310
|
+
|
311
|
+
def get(self, key: str, default = None) -> Any:
|
312
|
+
DataAccessScopeDeniedDataAccessLabelIngestionLabel.__key_warning(key)
|
313
|
+
return super().get(key, default)
|
314
|
+
|
315
|
+
def __init__(__self__, *,
|
316
|
+
ingestion_label_key: str,
|
317
|
+
ingestion_label_value: Optional[str] = None):
|
318
|
+
"""
|
319
|
+
:param str ingestion_label_key: Required. The key of the ingestion label. Always required.
|
320
|
+
:param str ingestion_label_value: Optional. The value of the ingestion label. Optional. An object
|
321
|
+
with no provided value and some key provided would match
|
322
|
+
against the given key and ANY value.
|
323
|
+
"""
|
324
|
+
pulumi.set(__self__, "ingestion_label_key", ingestion_label_key)
|
325
|
+
if ingestion_label_value is not None:
|
326
|
+
pulumi.set(__self__, "ingestion_label_value", ingestion_label_value)
|
327
|
+
|
328
|
+
@property
|
329
|
+
@pulumi.getter(name="ingestionLabelKey")
|
330
|
+
def ingestion_label_key(self) -> str:
|
331
|
+
"""
|
332
|
+
Required. The key of the ingestion label. Always required.
|
333
|
+
"""
|
334
|
+
return pulumi.get(self, "ingestion_label_key")
|
335
|
+
|
336
|
+
@property
|
337
|
+
@pulumi.getter(name="ingestionLabelValue")
|
338
|
+
def ingestion_label_value(self) -> Optional[str]:
|
339
|
+
"""
|
340
|
+
Optional. The value of the ingestion label. Optional. An object
|
341
|
+
with no provided value and some key provided would match
|
342
|
+
against the given key and ANY value.
|
343
|
+
"""
|
344
|
+
return pulumi.get(self, "ingestion_label_value")
|
345
|
+
|
346
|
+
|
25
347
|
@pulumi.output_type
|
26
348
|
class WatchlistEntityCount(dict):
|
27
349
|
def __init__(__self__, *,
|
@@ -25,10 +25,10 @@ class WatchlistArgs:
|
|
25
25
|
entity_population_mechanism: pulumi.Input['WatchlistEntityPopulationMechanismArgs'],
|
26
26
|
instance: pulumi.Input[str],
|
27
27
|
location: pulumi.Input[str],
|
28
|
-
watchlist_id: pulumi.Input[str],
|
29
28
|
description: Optional[pulumi.Input[str]] = None,
|
30
29
|
multiplying_factor: Optional[pulumi.Input[float]] = None,
|
31
30
|
project: Optional[pulumi.Input[str]] = None,
|
31
|
+
watchlist_id: Optional[pulumi.Input[str]] = None,
|
32
32
|
watchlist_user_preferences: Optional[pulumi.Input['WatchlistWatchlistUserPreferencesArgs']] = None):
|
33
33
|
"""
|
34
34
|
The set of arguments for constructing a Watchlist resource.
|
@@ -39,25 +39,24 @@ class WatchlistArgs:
|
|
39
39
|
Structure is documented below.
|
40
40
|
:param pulumi.Input[str] instance: The unique identifier for the Chronicle instance, which is the same as the customer ID.
|
41
41
|
:param pulumi.Input[str] location: The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".
|
42
|
-
:param pulumi.Input[str] watchlist_id: Optional. The ID to use for the watchlist,
|
43
|
-
which will become the final component of the watchlist's resource name.
|
44
|
-
This value should be 4-63 characters, and valid characters
|
45
|
-
are /a-z-/.
|
46
42
|
:param pulumi.Input[str] description: Optional. Description of the watchlist.
|
47
43
|
:param pulumi.Input[float] multiplying_factor: Optional. Weight applied to the risk score for entities in this watchlist. The default is 1.0 if it is not specified.
|
44
|
+
:param pulumi.Input[str] watchlist_id: Optional. The ID to use for the watchlist, which will become the final component of the watchlist's resource name. This
|
45
|
+
value should be 4-63 characters, and valid characters are /a-z-/.
|
48
46
|
:param pulumi.Input['WatchlistWatchlistUserPreferencesArgs'] watchlist_user_preferences: A collection of user preferences for watchlist UI configuration.
|
49
47
|
"""
|
50
48
|
pulumi.set(__self__, "display_name", display_name)
|
51
49
|
pulumi.set(__self__, "entity_population_mechanism", entity_population_mechanism)
|
52
50
|
pulumi.set(__self__, "instance", instance)
|
53
51
|
pulumi.set(__self__, "location", location)
|
54
|
-
pulumi.set(__self__, "watchlist_id", watchlist_id)
|
55
52
|
if description is not None:
|
56
53
|
pulumi.set(__self__, "description", description)
|
57
54
|
if multiplying_factor is not None:
|
58
55
|
pulumi.set(__self__, "multiplying_factor", multiplying_factor)
|
59
56
|
if project is not None:
|
60
57
|
pulumi.set(__self__, "project", project)
|
58
|
+
if watchlist_id is not None:
|
59
|
+
pulumi.set(__self__, "watchlist_id", watchlist_id)
|
61
60
|
if watchlist_user_preferences is not None:
|
62
61
|
pulumi.set(__self__, "watchlist_user_preferences", watchlist_user_preferences)
|
63
62
|
|
@@ -112,21 +111,6 @@ class WatchlistArgs:
|
|
112
111
|
def location(self, value: pulumi.Input[str]):
|
113
112
|
pulumi.set(self, "location", value)
|
114
113
|
|
115
|
-
@property
|
116
|
-
@pulumi.getter(name="watchlistId")
|
117
|
-
def watchlist_id(self) -> pulumi.Input[str]:
|
118
|
-
"""
|
119
|
-
Optional. The ID to use for the watchlist,
|
120
|
-
which will become the final component of the watchlist's resource name.
|
121
|
-
This value should be 4-63 characters, and valid characters
|
122
|
-
are /a-z-/.
|
123
|
-
"""
|
124
|
-
return pulumi.get(self, "watchlist_id")
|
125
|
-
|
126
|
-
@watchlist_id.setter
|
127
|
-
def watchlist_id(self, value: pulumi.Input[str]):
|
128
|
-
pulumi.set(self, "watchlist_id", value)
|
129
|
-
|
130
114
|
@property
|
131
115
|
@pulumi.getter
|
132
116
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -160,6 +144,19 @@ class WatchlistArgs:
|
|
160
144
|
def project(self, value: Optional[pulumi.Input[str]]):
|
161
145
|
pulumi.set(self, "project", value)
|
162
146
|
|
147
|
+
@property
|
148
|
+
@pulumi.getter(name="watchlistId")
|
149
|
+
def watchlist_id(self) -> Optional[pulumi.Input[str]]:
|
150
|
+
"""
|
151
|
+
Optional. The ID to use for the watchlist, which will become the final component of the watchlist's resource name. This
|
152
|
+
value should be 4-63 characters, and valid characters are /a-z-/.
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "watchlist_id")
|
155
|
+
|
156
|
+
@watchlist_id.setter
|
157
|
+
def watchlist_id(self, value: Optional[pulumi.Input[str]]):
|
158
|
+
pulumi.set(self, "watchlist_id", value)
|
159
|
+
|
163
160
|
@property
|
164
161
|
@pulumi.getter(name="watchlistUserPreferences")
|
165
162
|
def watchlist_user_preferences(self) -> Optional[pulumi.Input['WatchlistWatchlistUserPreferencesArgs']]:
|
@@ -207,10 +204,8 @@ class _WatchlistState:
|
|
207
204
|
Format:
|
208
205
|
projects/{project}/locations/{location}/instances/{instance}/watchlists/{watchlist}
|
209
206
|
:param pulumi.Input[str] update_time: Output only. Time the watchlist was last updated.
|
210
|
-
:param pulumi.Input[str] watchlist_id: Optional. The ID to use for the watchlist,
|
211
|
-
|
212
|
-
This value should be 4-63 characters, and valid characters
|
213
|
-
are /a-z-/.
|
207
|
+
:param pulumi.Input[str] watchlist_id: Optional. The ID to use for the watchlist, which will become the final component of the watchlist's resource name. This
|
208
|
+
value should be 4-63 characters, and valid characters are /a-z-/.
|
214
209
|
:param pulumi.Input['WatchlistWatchlistUserPreferencesArgs'] watchlist_user_preferences: A collection of user preferences for watchlist UI configuration.
|
215
210
|
"""
|
216
211
|
if create_time is not None:
|
@@ -379,10 +374,8 @@ class _WatchlistState:
|
|
379
374
|
@pulumi.getter(name="watchlistId")
|
380
375
|
def watchlist_id(self) -> Optional[pulumi.Input[str]]:
|
381
376
|
"""
|
382
|
-
Optional. The ID to use for the watchlist,
|
383
|
-
|
384
|
-
This value should be 4-63 characters, and valid characters
|
385
|
-
are /a-z-/.
|
377
|
+
Optional. The ID to use for the watchlist, which will become the final component of the watchlist's resource name. This
|
378
|
+
value should be 4-63 characters, and valid characters are /a-z-/.
|
386
379
|
"""
|
387
380
|
return pulumi.get(self, "watchlist_id")
|
388
381
|
|
@@ -430,7 +423,26 @@ class Watchlist(pulumi.CustomResource):
|
|
430
423
|
example = gcp.chronicle.Watchlist("example",
|
431
424
|
location="us",
|
432
425
|
instance="00000000-0000-0000-0000-000000000000",
|
433
|
-
watchlist_id="watchlist-
|
426
|
+
watchlist_id="watchlist-id",
|
427
|
+
description="watchlist-description",
|
428
|
+
display_name="watchlist_name",
|
429
|
+
multiplying_factor=1,
|
430
|
+
entity_population_mechanism={
|
431
|
+
"manual": {},
|
432
|
+
},
|
433
|
+
watchlist_user_preferences={
|
434
|
+
"pinned": True,
|
435
|
+
})
|
436
|
+
```
|
437
|
+
### Chronicle Watchlist Without Id
|
438
|
+
|
439
|
+
```python
|
440
|
+
import pulumi
|
441
|
+
import pulumi_gcp as gcp
|
442
|
+
|
443
|
+
example = gcp.chronicle.Watchlist("example",
|
444
|
+
location="us",
|
445
|
+
instance="00000000-0000-0000-0000-000000000000",
|
434
446
|
description="watchlist-description",
|
435
447
|
display_name="watchlist-name",
|
436
448
|
multiplying_factor=1,
|
@@ -477,10 +489,8 @@ class Watchlist(pulumi.CustomResource):
|
|
477
489
|
:param pulumi.Input[str] instance: The unique identifier for the Chronicle instance, which is the same as the customer ID.
|
478
490
|
:param pulumi.Input[str] location: The location of the resource. This is the geographical region where the Chronicle instance resides, such as "us" or "europe-west2".
|
479
491
|
:param pulumi.Input[float] multiplying_factor: Optional. Weight applied to the risk score for entities in this watchlist. The default is 1.0 if it is not specified.
|
480
|
-
:param pulumi.Input[str] watchlist_id: Optional. The ID to use for the watchlist,
|
481
|
-
|
482
|
-
This value should be 4-63 characters, and valid characters
|
483
|
-
are /a-z-/.
|
492
|
+
:param pulumi.Input[str] watchlist_id: Optional. The ID to use for the watchlist, which will become the final component of the watchlist's resource name. This
|
493
|
+
value should be 4-63 characters, and valid characters are /a-z-/.
|
484
494
|
:param pulumi.Input[Union['WatchlistWatchlistUserPreferencesArgs', 'WatchlistWatchlistUserPreferencesArgsDict']] watchlist_user_preferences: A collection of user preferences for watchlist UI configuration.
|
485
495
|
"""
|
486
496
|
...
|
@@ -501,7 +511,26 @@ class Watchlist(pulumi.CustomResource):
|
|
501
511
|
example = gcp.chronicle.Watchlist("example",
|
502
512
|
location="us",
|
503
513
|
instance="00000000-0000-0000-0000-000000000000",
|
504
|
-
watchlist_id="watchlist-
|
514
|
+
watchlist_id="watchlist-id",
|
515
|
+
description="watchlist-description",
|
516
|
+
display_name="watchlist_name",
|
517
|
+
multiplying_factor=1,
|
518
|
+
entity_population_mechanism={
|
519
|
+
"manual": {},
|
520
|
+
},
|
521
|
+
watchlist_user_preferences={
|
522
|
+
"pinned": True,
|
523
|
+
})
|
524
|
+
```
|
525
|
+
### Chronicle Watchlist Without Id
|
526
|
+
|
527
|
+
```python
|
528
|
+
import pulumi
|
529
|
+
import pulumi_gcp as gcp
|
530
|
+
|
531
|
+
example = gcp.chronicle.Watchlist("example",
|
532
|
+
location="us",
|
533
|
+
instance="00000000-0000-0000-0000-000000000000",
|
505
534
|
description="watchlist-description",
|
506
535
|
display_name="watchlist-name",
|
507
536
|
multiplying_factor=1,
|
@@ -585,8 +614,6 @@ class Watchlist(pulumi.CustomResource):
|
|
585
614
|
__props__.__dict__["location"] = location
|
586
615
|
__props__.__dict__["multiplying_factor"] = multiplying_factor
|
587
616
|
__props__.__dict__["project"] = project
|
588
|
-
if watchlist_id is None and not opts.urn:
|
589
|
-
raise TypeError("Missing required property 'watchlist_id'")
|
590
617
|
__props__.__dict__["watchlist_id"] = watchlist_id
|
591
618
|
__props__.__dict__["watchlist_user_preferences"] = watchlist_user_preferences
|
592
619
|
__props__.__dict__["create_time"] = None
|
@@ -639,10 +666,8 @@ class Watchlist(pulumi.CustomResource):
|
|
639
666
|
Format:
|
640
667
|
projects/{project}/locations/{location}/instances/{instance}/watchlists/{watchlist}
|
641
668
|
:param pulumi.Input[str] update_time: Output only. Time the watchlist was last updated.
|
642
|
-
:param pulumi.Input[str] watchlist_id: Optional. The ID to use for the watchlist,
|
643
|
-
|
644
|
-
This value should be 4-63 characters, and valid characters
|
645
|
-
are /a-z-/.
|
669
|
+
:param pulumi.Input[str] watchlist_id: Optional. The ID to use for the watchlist, which will become the final component of the watchlist's resource name. This
|
670
|
+
value should be 4-63 characters, and valid characters are /a-z-/.
|
646
671
|
:param pulumi.Input[Union['WatchlistWatchlistUserPreferencesArgs', 'WatchlistWatchlistUserPreferencesArgsDict']] watchlist_user_preferences: A collection of user preferences for watchlist UI configuration.
|
647
672
|
"""
|
648
673
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -759,10 +784,8 @@ class Watchlist(pulumi.CustomResource):
|
|
759
784
|
@pulumi.getter(name="watchlistId")
|
760
785
|
def watchlist_id(self) -> pulumi.Output[str]:
|
761
786
|
"""
|
762
|
-
Optional. The ID to use for the watchlist,
|
763
|
-
|
764
|
-
This value should be 4-63 characters, and valid characters
|
765
|
-
are /a-z-/.
|
787
|
+
Optional. The ID to use for the watchlist, which will become the final component of the watchlist's resource name. This
|
788
|
+
value should be 4-63 characters, and valid characters are /a-z-/.
|
766
789
|
"""
|
767
790
|
return pulumi.get(self, "watchlist_id")
|
768
791
|
|
pulumi_gcp/cloudbuild/_inputs.py
CHANGED
@@ -1180,7 +1180,7 @@ if not MYPY:
|
|
1180
1180
|
Structure is documented below.
|
1181
1181
|
|
1182
1182
|
|
1183
|
-
<a name="
|
1183
|
+
<a name="nested_build_artifacts_objects_timing"></a>The `timing` block contains:
|
1184
1184
|
"""
|
1185
1185
|
elif False:
|
1186
1186
|
TriggerBuildArtifactsObjectsArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -1201,7 +1201,7 @@ class TriggerBuildArtifactsObjectsArgs:
|
|
1201
1201
|
Structure is documented below.
|
1202
1202
|
|
1203
1203
|
|
1204
|
-
<a name="
|
1204
|
+
<a name="nested_build_artifacts_objects_timing"></a>The `timing` block contains:
|
1205
1205
|
"""
|
1206
1206
|
if location is not None:
|
1207
1207
|
pulumi.set(__self__, "location", location)
|
@@ -1245,7 +1245,7 @@ class TriggerBuildArtifactsObjectsArgs:
|
|
1245
1245
|
Structure is documented below.
|
1246
1246
|
|
1247
1247
|
|
1248
|
-
<a name="
|
1248
|
+
<a name="nested_build_artifacts_objects_timing"></a>The `timing` block contains:
|
1249
1249
|
"""
|
1250
1250
|
return pulumi.get(self, "timings")
|
1251
1251
|
|
pulumi_gcp/cloudbuild/outputs.py
CHANGED
@@ -941,7 +941,7 @@ class TriggerBuildArtifactsObjects(dict):
|
|
941
941
|
Structure is documented below.
|
942
942
|
|
943
943
|
|
944
|
-
<a name="
|
944
|
+
<a name="nested_build_artifacts_objects_timing"></a>The `timing` block contains:
|
945
945
|
"""
|
946
946
|
if location is not None:
|
947
947
|
pulumi.set(__self__, "location", location)
|
@@ -977,7 +977,7 @@ class TriggerBuildArtifactsObjects(dict):
|
|
977
977
|
Structure is documented below.
|
978
978
|
|
979
979
|
|
980
|
-
<a name="
|
980
|
+
<a name="nested_build_artifacts_objects_timing"></a>The `timing` block contains:
|
981
981
|
"""
|
982
982
|
return pulumi.get(self, "timings")
|
983
983
|
|