pulumi-gcp 8.15.0a1737527599__py3-none-any.whl → 8.15.0a1737577694__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 +78 -0
- pulumi_gcp/accesscontextmanager/access_level_condition.py +28 -0
- pulumi_gcp/accesscontextmanager/egress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/ingress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_resource.py +56 -0
- pulumi_gcp/apigee/__init__.py +1 -0
- pulumi_gcp/apigee/environment_addons_config.py +266 -0
- pulumi_gcp/artifactregistry/repository.py +32 -2
- pulumi_gcp/bigquery/connection.py +2 -2
- pulumi_gcp/bigquery/routine.py +2 -2
- pulumi_gcp/billing/project_info.py +4 -4
- pulumi_gcp/chronicle/__init__.py +3 -0
- pulumi_gcp/chronicle/_inputs.py +379 -0
- pulumi_gcp/chronicle/data_access_label.py +21 -21
- pulumi_gcp/chronicle/outputs.py +302 -0
- pulumi_gcp/chronicle/reference_list.py +788 -0
- pulumi_gcp/chronicle/rule.py +1308 -0
- pulumi_gcp/chronicle/rule_deployment.py +849 -0
- pulumi_gcp/colab/__init__.py +10 -0
- pulumi_gcp/colab/_inputs.py +359 -0
- pulumi_gcp/colab/outputs.py +344 -0
- pulumi_gcp/colab/runtime_template.py +1160 -0
- pulumi_gcp/compute/_inputs.py +9 -9
- pulumi_gcp/compute/interconnect_attachment.py +7 -7
- pulumi_gcp/compute/outputs.py +6 -6
- pulumi_gcp/compute/route.py +8 -16
- pulumi_gcp/compute/subnetwork.py +7 -7
- pulumi_gcp/compute/target_instance.py +4 -4
- pulumi_gcp/compute/url_map.py +4 -0
- pulumi_gcp/config/__init__.pyi +6 -0
- pulumi_gcp/config/vars.py +12 -0
- pulumi_gcp/databasemigrationservice/connection_profile.py +6 -6
- pulumi_gcp/dataplex/entry_type.py +2 -2
- pulumi_gcp/dataplex/task.py +16 -16
- pulumi_gcp/dataproc/batch.py +10 -10
- pulumi_gcp/discoveryengine/_inputs.py +54 -0
- pulumi_gcp/discoveryengine/data_store.py +94 -0
- pulumi_gcp/discoveryengine/outputs.py +51 -0
- pulumi_gcp/edgenetwork/__init__.py +1 -0
- pulumi_gcp/edgenetwork/interconnect_attachment.py +941 -0
- pulumi_gcp/firestore/field.py +4 -4
- pulumi_gcp/gemini/code_repository_index.py +47 -0
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/networksecurity/authz_policy.py +0 -202
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parametermanager/__init__.py +13 -0
- pulumi_gcp/parametermanager/_inputs.py +174 -0
- pulumi_gcp/parametermanager/get_regional_parameter.py +230 -0
- pulumi_gcp/parametermanager/outputs.py +191 -0
- pulumi_gcp/parametermanager/parameter.py +706 -0
- pulumi_gcp/parametermanager/regional_parameter.py +762 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +558 -0
- pulumi_gcp/provider.py +60 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/_inputs.py +54 -0
- pulumi_gcp/sql/database_instance.py +78 -16
- pulumi_gcp/sql/get_database_instance.py +12 -1
- pulumi_gcp/sql/outputs.py +122 -0
- pulumi_gcp/sql/source_representation_instance.py +7 -14
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- {pulumi_gcp-8.15.0a1737527599.dist-info → pulumi_gcp-8.15.0a1737577694.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.15.0a1737527599.dist-info → pulumi_gcp-8.15.0a1737577694.dist-info}/RECORD +77 -61
- {pulumi_gcp-8.15.0a1737527599.dist-info → pulumi_gcp-8.15.0a1737577694.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.15.0a1737527599.dist-info → pulumi_gcp-8.15.0a1737577694.dist-info}/top_level.txt +0 -0
pulumi_gcp/chronicle/outputs.py
CHANGED
@@ -20,6 +20,12 @@ __all__ = [
|
|
20
20
|
'DataAccessScopeAllowedDataAccessLabelIngestionLabel',
|
21
21
|
'DataAccessScopeDeniedDataAccessLabel',
|
22
22
|
'DataAccessScopeDeniedDataAccessLabelIngestionLabel',
|
23
|
+
'ReferenceListEntry',
|
24
|
+
'ReferenceListScopeInfo',
|
25
|
+
'ReferenceListScopeInfoReferenceListScope',
|
26
|
+
'RuleCompilationDiagnostic',
|
27
|
+
'RuleCompilationDiagnosticPosition',
|
28
|
+
'RuleSeverity',
|
23
29
|
'WatchlistEntityCount',
|
24
30
|
'WatchlistEntityPopulationMechanism',
|
25
31
|
'WatchlistEntityPopulationMechanismManual',
|
@@ -344,6 +350,302 @@ class DataAccessScopeDeniedDataAccessLabelIngestionLabel(dict):
|
|
344
350
|
return pulumi.get(self, "ingestion_label_value")
|
345
351
|
|
346
352
|
|
353
|
+
@pulumi.output_type
|
354
|
+
class ReferenceListEntry(dict):
|
355
|
+
def __init__(__self__, *,
|
356
|
+
value: str):
|
357
|
+
"""
|
358
|
+
:param str value: Required. The value of the entry. Maximum length is 512 characters.
|
359
|
+
|
360
|
+
- - -
|
361
|
+
"""
|
362
|
+
pulumi.set(__self__, "value", value)
|
363
|
+
|
364
|
+
@property
|
365
|
+
@pulumi.getter
|
366
|
+
def value(self) -> str:
|
367
|
+
"""
|
368
|
+
Required. The value of the entry. Maximum length is 512 characters.
|
369
|
+
|
370
|
+
- - -
|
371
|
+
"""
|
372
|
+
return pulumi.get(self, "value")
|
373
|
+
|
374
|
+
|
375
|
+
@pulumi.output_type
|
376
|
+
class ReferenceListScopeInfo(dict):
|
377
|
+
@staticmethod
|
378
|
+
def __key_warning(key: str):
|
379
|
+
suggest = None
|
380
|
+
if key == "referenceListScope":
|
381
|
+
suggest = "reference_list_scope"
|
382
|
+
|
383
|
+
if suggest:
|
384
|
+
pulumi.log.warn(f"Key '{key}' not found in ReferenceListScopeInfo. Access the value via the '{suggest}' property getter instead.")
|
385
|
+
|
386
|
+
def __getitem__(self, key: str) -> Any:
|
387
|
+
ReferenceListScopeInfo.__key_warning(key)
|
388
|
+
return super().__getitem__(key)
|
389
|
+
|
390
|
+
def get(self, key: str, default = None) -> Any:
|
391
|
+
ReferenceListScopeInfo.__key_warning(key)
|
392
|
+
return super().get(key, default)
|
393
|
+
|
394
|
+
def __init__(__self__, *,
|
395
|
+
reference_list_scope: 'outputs.ReferenceListScopeInfoReferenceListScope'):
|
396
|
+
"""
|
397
|
+
:param 'ReferenceListScopeInfoReferenceListScopeArgs' reference_list_scope: ReferenceListScope specifies the list of scope names of the reference list.
|
398
|
+
Structure is documented below.
|
399
|
+
"""
|
400
|
+
pulumi.set(__self__, "reference_list_scope", reference_list_scope)
|
401
|
+
|
402
|
+
@property
|
403
|
+
@pulumi.getter(name="referenceListScope")
|
404
|
+
def reference_list_scope(self) -> 'outputs.ReferenceListScopeInfoReferenceListScope':
|
405
|
+
"""
|
406
|
+
ReferenceListScope specifies the list of scope names of the reference list.
|
407
|
+
Structure is documented below.
|
408
|
+
"""
|
409
|
+
return pulumi.get(self, "reference_list_scope")
|
410
|
+
|
411
|
+
|
412
|
+
@pulumi.output_type
|
413
|
+
class ReferenceListScopeInfoReferenceListScope(dict):
|
414
|
+
@staticmethod
|
415
|
+
def __key_warning(key: str):
|
416
|
+
suggest = None
|
417
|
+
if key == "scopeNames":
|
418
|
+
suggest = "scope_names"
|
419
|
+
|
420
|
+
if suggest:
|
421
|
+
pulumi.log.warn(f"Key '{key}' not found in ReferenceListScopeInfoReferenceListScope. Access the value via the '{suggest}' property getter instead.")
|
422
|
+
|
423
|
+
def __getitem__(self, key: str) -> Any:
|
424
|
+
ReferenceListScopeInfoReferenceListScope.__key_warning(key)
|
425
|
+
return super().__getitem__(key)
|
426
|
+
|
427
|
+
def get(self, key: str, default = None) -> Any:
|
428
|
+
ReferenceListScopeInfoReferenceListScope.__key_warning(key)
|
429
|
+
return super().get(key, default)
|
430
|
+
|
431
|
+
def __init__(__self__, *,
|
432
|
+
scope_names: Optional[Sequence[str]] = None):
|
433
|
+
"""
|
434
|
+
:param Sequence[str] scope_names: Optional. The list of scope names of the reference list. The scope names should be
|
435
|
+
full resource names and should be of the format:
|
436
|
+
"projects/{project}/locations/{location}/instances/{instance}/dataAccessScopes/{scope_name}".
|
437
|
+
"""
|
438
|
+
if scope_names is not None:
|
439
|
+
pulumi.set(__self__, "scope_names", scope_names)
|
440
|
+
|
441
|
+
@property
|
442
|
+
@pulumi.getter(name="scopeNames")
|
443
|
+
def scope_names(self) -> Optional[Sequence[str]]:
|
444
|
+
"""
|
445
|
+
Optional. The list of scope names of the reference list. The scope names should be
|
446
|
+
full resource names and should be of the format:
|
447
|
+
"projects/{project}/locations/{location}/instances/{instance}/dataAccessScopes/{scope_name}".
|
448
|
+
"""
|
449
|
+
return pulumi.get(self, "scope_names")
|
450
|
+
|
451
|
+
|
452
|
+
@pulumi.output_type
|
453
|
+
class RuleCompilationDiagnostic(dict):
|
454
|
+
def __init__(__self__, *,
|
455
|
+
message: Optional[str] = None,
|
456
|
+
position: Optional['outputs.RuleCompilationDiagnosticPosition'] = None,
|
457
|
+
severity: Optional[str] = None,
|
458
|
+
uri: Optional[str] = None):
|
459
|
+
"""
|
460
|
+
:param str message: (Output)
|
461
|
+
Output only. The diagnostic message.
|
462
|
+
:param 'RuleCompilationDiagnosticPositionArgs' position: CompilationPosition represents the location of a compilation diagnostic in
|
463
|
+
rule text.
|
464
|
+
Structure is documented below.
|
465
|
+
:param str severity: (Output)
|
466
|
+
Output only. The severity of a rule's compilation diagnostic.
|
467
|
+
Possible values:
|
468
|
+
SEVERITY_UNSPECIFIED
|
469
|
+
WARNING
|
470
|
+
ERROR
|
471
|
+
:param str uri: (Output)
|
472
|
+
Output only. Link to documentation that describes a diagnostic in more detail.
|
473
|
+
"""
|
474
|
+
if message is not None:
|
475
|
+
pulumi.set(__self__, "message", message)
|
476
|
+
if position is not None:
|
477
|
+
pulumi.set(__self__, "position", position)
|
478
|
+
if severity is not None:
|
479
|
+
pulumi.set(__self__, "severity", severity)
|
480
|
+
if uri is not None:
|
481
|
+
pulumi.set(__self__, "uri", uri)
|
482
|
+
|
483
|
+
@property
|
484
|
+
@pulumi.getter
|
485
|
+
def message(self) -> Optional[str]:
|
486
|
+
"""
|
487
|
+
(Output)
|
488
|
+
Output only. The diagnostic message.
|
489
|
+
"""
|
490
|
+
return pulumi.get(self, "message")
|
491
|
+
|
492
|
+
@property
|
493
|
+
@pulumi.getter
|
494
|
+
def position(self) -> Optional['outputs.RuleCompilationDiagnosticPosition']:
|
495
|
+
"""
|
496
|
+
CompilationPosition represents the location of a compilation diagnostic in
|
497
|
+
rule text.
|
498
|
+
Structure is documented below.
|
499
|
+
"""
|
500
|
+
return pulumi.get(self, "position")
|
501
|
+
|
502
|
+
@property
|
503
|
+
@pulumi.getter
|
504
|
+
def severity(self) -> Optional[str]:
|
505
|
+
"""
|
506
|
+
(Output)
|
507
|
+
Output only. The severity of a rule's compilation diagnostic.
|
508
|
+
Possible values:
|
509
|
+
SEVERITY_UNSPECIFIED
|
510
|
+
WARNING
|
511
|
+
ERROR
|
512
|
+
"""
|
513
|
+
return pulumi.get(self, "severity")
|
514
|
+
|
515
|
+
@property
|
516
|
+
@pulumi.getter
|
517
|
+
def uri(self) -> Optional[str]:
|
518
|
+
"""
|
519
|
+
(Output)
|
520
|
+
Output only. Link to documentation that describes a diagnostic in more detail.
|
521
|
+
"""
|
522
|
+
return pulumi.get(self, "uri")
|
523
|
+
|
524
|
+
|
525
|
+
@pulumi.output_type
|
526
|
+
class RuleCompilationDiagnosticPosition(dict):
|
527
|
+
@staticmethod
|
528
|
+
def __key_warning(key: str):
|
529
|
+
suggest = None
|
530
|
+
if key == "endColumn":
|
531
|
+
suggest = "end_column"
|
532
|
+
elif key == "endLine":
|
533
|
+
suggest = "end_line"
|
534
|
+
elif key == "startColumn":
|
535
|
+
suggest = "start_column"
|
536
|
+
elif key == "startLine":
|
537
|
+
suggest = "start_line"
|
538
|
+
|
539
|
+
if suggest:
|
540
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleCompilationDiagnosticPosition. Access the value via the '{suggest}' property getter instead.")
|
541
|
+
|
542
|
+
def __getitem__(self, key: str) -> Any:
|
543
|
+
RuleCompilationDiagnosticPosition.__key_warning(key)
|
544
|
+
return super().__getitem__(key)
|
545
|
+
|
546
|
+
def get(self, key: str, default = None) -> Any:
|
547
|
+
RuleCompilationDiagnosticPosition.__key_warning(key)
|
548
|
+
return super().get(key, default)
|
549
|
+
|
550
|
+
def __init__(__self__, *,
|
551
|
+
end_column: Optional[int] = None,
|
552
|
+
end_line: Optional[int] = None,
|
553
|
+
start_column: Optional[int] = None,
|
554
|
+
start_line: Optional[int] = None):
|
555
|
+
"""
|
556
|
+
:param int end_column: (Output)
|
557
|
+
Output only. End column number, beginning at 1.
|
558
|
+
:param int end_line: (Output)
|
559
|
+
Output only. End line number, beginning at 1.
|
560
|
+
:param int start_column: (Output)
|
561
|
+
Output only. Start column number, beginning at 1.
|
562
|
+
:param int start_line: (Output)
|
563
|
+
Output only. Start line number, beginning at 1.
|
564
|
+
"""
|
565
|
+
if end_column is not None:
|
566
|
+
pulumi.set(__self__, "end_column", end_column)
|
567
|
+
if end_line is not None:
|
568
|
+
pulumi.set(__self__, "end_line", end_line)
|
569
|
+
if start_column is not None:
|
570
|
+
pulumi.set(__self__, "start_column", start_column)
|
571
|
+
if start_line is not None:
|
572
|
+
pulumi.set(__self__, "start_line", start_line)
|
573
|
+
|
574
|
+
@property
|
575
|
+
@pulumi.getter(name="endColumn")
|
576
|
+
def end_column(self) -> Optional[int]:
|
577
|
+
"""
|
578
|
+
(Output)
|
579
|
+
Output only. End column number, beginning at 1.
|
580
|
+
"""
|
581
|
+
return pulumi.get(self, "end_column")
|
582
|
+
|
583
|
+
@property
|
584
|
+
@pulumi.getter(name="endLine")
|
585
|
+
def end_line(self) -> Optional[int]:
|
586
|
+
"""
|
587
|
+
(Output)
|
588
|
+
Output only. End line number, beginning at 1.
|
589
|
+
"""
|
590
|
+
return pulumi.get(self, "end_line")
|
591
|
+
|
592
|
+
@property
|
593
|
+
@pulumi.getter(name="startColumn")
|
594
|
+
def start_column(self) -> Optional[int]:
|
595
|
+
"""
|
596
|
+
(Output)
|
597
|
+
Output only. Start column number, beginning at 1.
|
598
|
+
"""
|
599
|
+
return pulumi.get(self, "start_column")
|
600
|
+
|
601
|
+
@property
|
602
|
+
@pulumi.getter(name="startLine")
|
603
|
+
def start_line(self) -> Optional[int]:
|
604
|
+
"""
|
605
|
+
(Output)
|
606
|
+
Output only. Start line number, beginning at 1.
|
607
|
+
"""
|
608
|
+
return pulumi.get(self, "start_line")
|
609
|
+
|
610
|
+
|
611
|
+
@pulumi.output_type
|
612
|
+
class RuleSeverity(dict):
|
613
|
+
@staticmethod
|
614
|
+
def __key_warning(key: str):
|
615
|
+
suggest = None
|
616
|
+
if key == "displayName":
|
617
|
+
suggest = "display_name"
|
618
|
+
|
619
|
+
if suggest:
|
620
|
+
pulumi.log.warn(f"Key '{key}' not found in RuleSeverity. Access the value via the '{suggest}' property getter instead.")
|
621
|
+
|
622
|
+
def __getitem__(self, key: str) -> Any:
|
623
|
+
RuleSeverity.__key_warning(key)
|
624
|
+
return super().__getitem__(key)
|
625
|
+
|
626
|
+
def get(self, key: str, default = None) -> Any:
|
627
|
+
RuleSeverity.__key_warning(key)
|
628
|
+
return super().get(key, default)
|
629
|
+
|
630
|
+
def __init__(__self__, *,
|
631
|
+
display_name: Optional[str] = None):
|
632
|
+
"""
|
633
|
+
:param str display_name: The display name of the severity level. Extracted from the meta section of
|
634
|
+
the rule text.
|
635
|
+
"""
|
636
|
+
if display_name is not None:
|
637
|
+
pulumi.set(__self__, "display_name", display_name)
|
638
|
+
|
639
|
+
@property
|
640
|
+
@pulumi.getter(name="displayName")
|
641
|
+
def display_name(self) -> Optional[str]:
|
642
|
+
"""
|
643
|
+
The display name of the severity level. Extracted from the meta section of
|
644
|
+
the rule text.
|
645
|
+
"""
|
646
|
+
return pulumi.get(self, "display_name")
|
647
|
+
|
648
|
+
|
347
649
|
@pulumi.output_type
|
348
650
|
class WatchlistEntityCount(dict):
|
349
651
|
def __init__(__self__, *,
|