pulumi-gcp 7.3.0a1702567892__py3-none-any.whl → 7.3.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. pulumi_gcp/__init__.py +129 -0
  2. pulumi_gcp/artifactregistry/_inputs.py +88 -0
  3. pulumi_gcp/artifactregistry/outputs.py +148 -0
  4. pulumi_gcp/artifactregistry/repository.py +116 -16
  5. pulumi_gcp/bigquery/_inputs.py +110 -0
  6. pulumi_gcp/bigquery/connection.py +123 -3
  7. pulumi_gcp/bigquery/outputs.py +145 -0
  8. pulumi_gcp/cloudbuild/_inputs.py +241 -1
  9. pulumi_gcp/cloudbuild/outputs.py +353 -2
  10. pulumi_gcp/cloudfunctionsv2/_inputs.py +6 -2
  11. pulumi_gcp/cloudfunctionsv2/outputs.py +6 -2
  12. pulumi_gcp/cloudidentity/_inputs.py +54 -5
  13. pulumi_gcp/cloudidentity/group_membership.py +0 -8
  14. pulumi_gcp/cloudidentity/outputs.py +99 -4
  15. pulumi_gcp/cloudrunv2/_inputs.py +8 -4
  16. pulumi_gcp/cloudrunv2/job.py +44 -0
  17. pulumi_gcp/cloudrunv2/outputs.py +8 -4
  18. pulumi_gcp/cloudrunv2/service.py +42 -0
  19. pulumi_gcp/cloudtasks/queue.py +0 -10
  20. pulumi_gcp/composer/_inputs.py +17 -4
  21. pulumi_gcp/composer/outputs.py +20 -4
  22. pulumi_gcp/compute/_inputs.py +46 -0
  23. pulumi_gcp/compute/get_global_forwarding_rule.py +11 -1
  24. pulumi_gcp/compute/global_forwarding_rule.py +69 -0
  25. pulumi_gcp/compute/outputs.py +75 -0
  26. pulumi_gcp/config/__init__.pyi +6 -0
  27. pulumi_gcp/config/vars.py +12 -0
  28. pulumi_gcp/container/_inputs.py +58 -0
  29. pulumi_gcp/container/node_pool.py +68 -14
  30. pulumi_gcp/container/outputs.py +68 -0
  31. pulumi_gcp/dataform/__init__.py +4 -0
  32. pulumi_gcp/dataform/_inputs.py +80 -0
  33. pulumi_gcp/dataform/get_repository_iam_policy.py +144 -0
  34. pulumi_gcp/dataform/outputs.py +56 -0
  35. pulumi_gcp/dataform/repository_iam_binding.py +325 -0
  36. pulumi_gcp/dataform/repository_iam_member.py +325 -0
  37. pulumi_gcp/dataform/repository_iam_policy.py +254 -0
  38. pulumi_gcp/dataloss/_inputs.py +29 -26
  39. pulumi_gcp/dataloss/outputs.py +28 -25
  40. pulumi_gcp/dataloss/prevention_job_trigger.py +78 -0
  41. pulumi_gcp/datastream/connection_profile.py +82 -4
  42. pulumi_gcp/datastream/stream.py +32 -22
  43. pulumi_gcp/firestore/database.py +146 -28
  44. pulumi_gcp/gkehub/_inputs.py +821 -3
  45. pulumi_gcp/gkehub/feature.py +176 -0
  46. pulumi_gcp/gkehub/feature_membership.py +105 -59
  47. pulumi_gcp/gkehub/fleet.py +70 -2
  48. pulumi_gcp/gkehub/outputs.py +819 -3
  49. pulumi_gcp/gkehub/scope.py +2 -2
  50. pulumi_gcp/iam/_inputs.py +72 -0
  51. pulumi_gcp/iam/outputs.py +79 -0
  52. pulumi_gcp/iam/workforce_pool.py +75 -0
  53. pulumi_gcp/identityplatform/project_default_config.py +4 -0
  54. pulumi_gcp/logging/__init__.py +3 -0
  55. pulumi_gcp/logging/get_folder_settings.py +197 -0
  56. pulumi_gcp/logging/get_organization_settings.py +197 -0
  57. pulumi_gcp/logging/get_project_settings.py +197 -0
  58. pulumi_gcp/migrationcenter/__init__.py +8 -0
  59. pulumi_gcp/migrationcenter/group.py +652 -0
  60. pulumi_gcp/netapp/__init__.py +8 -0
  61. pulumi_gcp/netapp/storage_pool.py +970 -0
  62. pulumi_gcp/projects/iam_custom_role.py +7 -7
  63. pulumi_gcp/provider.py +60 -0
  64. pulumi_gcp/securesourcemanager/__init__.py +14 -0
  65. pulumi_gcp/securesourcemanager/_inputs.py +94 -0
  66. pulumi_gcp/securesourcemanager/get_instance_iam_policy.py +168 -0
  67. pulumi_gcp/securesourcemanager/instance.py +607 -0
  68. pulumi_gcp/securesourcemanager/instance_iam_binding.py +325 -0
  69. pulumi_gcp/securesourcemanager/instance_iam_member.py +325 -0
  70. pulumi_gcp/securesourcemanager/instance_iam_policy.py +254 -0
  71. pulumi_gcp/securesourcemanager/outputs.py +70 -0
  72. pulumi_gcp/securitycenter/__init__.py +1 -0
  73. pulumi_gcp/securitycenter/event_threat_detection_custom_module.py +528 -0
  74. pulumi_gcp/sql/_inputs.py +2 -2
  75. pulumi_gcp/sql/database_instance.py +4 -4
  76. pulumi_gcp/sql/outputs.py +2 -2
  77. pulumi_gcp/storage/_inputs.py +16 -0
  78. pulumi_gcp/storage/outputs.py +21 -0
  79. pulumi_gcp/vertex/__init__.py +4 -0
  80. pulumi_gcp/vertex/_inputs.py +80 -0
  81. pulumi_gcp/vertex/ai_endpoint_iam_binding.py +325 -0
  82. pulumi_gcp/vertex/ai_endpoint_iam_member.py +325 -0
  83. pulumi_gcp/vertex/ai_endpoint_iam_policy.py +254 -0
  84. pulumi_gcp/vertex/get_ai_endpoint_iam_policy.py +140 -0
  85. pulumi_gcp/vertex/outputs.py +56 -0
  86. pulumi_gcp/vmwareengine/__init__.py +5 -0
  87. pulumi_gcp/vmwareengine/_inputs.py +104 -2
  88. pulumi_gcp/vmwareengine/get_network.py +14 -4
  89. pulumi_gcp/vmwareengine/get_network_peering.py +260 -0
  90. pulumi_gcp/vmwareengine/get_network_policy.py +228 -0
  91. pulumi_gcp/vmwareengine/get_nsx_credentials.py +133 -0
  92. pulumi_gcp/vmwareengine/get_private_cloud.py +14 -4
  93. pulumi_gcp/vmwareengine/network.py +41 -7
  94. pulumi_gcp/vmwareengine/network_peering.py +959 -0
  95. pulumi_gcp/vmwareengine/network_policy.py +836 -0
  96. pulumi_gcp/vmwareengine/outputs.py +133 -2
  97. pulumi_gcp/vmwareengine/private_cloud.py +20 -68
  98. {pulumi_gcp-7.3.0a1702567892.dist-info → pulumi_gcp-7.3.1.dist-info}/METADATA +1 -1
  99. {pulumi_gcp-7.3.0a1702567892.dist-info → pulumi_gcp-7.3.1.dist-info}/RECORD +101 -72
  100. {pulumi_gcp-7.3.0a1702567892.dist-info → pulumi_gcp-7.3.1.dist-info}/WHEEL +0 -0
  101. {pulumi_gcp-7.3.0a1702567892.dist-info → pulumi_gcp-7.3.1.dist-info}/top_level.txt +0 -0
@@ -16,6 +16,17 @@ __all__ = [
16
16
  'FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncGitArgs',
17
17
  'FeatureFleetDefaultMemberConfigConfigmanagementConfigSyncOciArgs',
18
18
  'FeatureFleetDefaultMemberConfigMeshArgs',
19
+ 'FeatureFleetDefaultMemberConfigPolicycontrollerArgs',
20
+ 'FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigArgs',
21
+ 'FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigArgs',
22
+ 'FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesArgs',
23
+ 'FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimitsArgs',
24
+ 'FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequestsArgs',
25
+ 'FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationArgs',
26
+ 'FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigMonitoringArgs',
27
+ 'FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentArgs',
28
+ 'FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs',
29
+ 'FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryArgs',
19
30
  'FeatureIamBindingConditionArgs',
20
31
  'FeatureIamMemberConditionArgs',
21
32
  'FeatureMembershipConfigmanagementArgs',
@@ -36,6 +47,10 @@ __all__ = [
36
47
  'FeatureSpecMulticlusteringressArgs',
37
48
  'FeatureStateArgs',
38
49
  'FeatureStateStateArgs',
50
+ 'FleetDefaultClusterConfigArgs',
51
+ 'FleetDefaultClusterConfigBinaryAuthorizationConfigArgs',
52
+ 'FleetDefaultClusterConfigBinaryAuthorizationConfigPolicyBindingArgs',
53
+ 'FleetDefaultClusterConfigSecurityPostureConfigArgs',
39
54
  'FleetStateArgs',
40
55
  'MembershipAuthorityArgs',
41
56
  'MembershipBindingStateArgs',
@@ -57,17 +72,22 @@ __all__ = [
57
72
  class FeatureFleetDefaultMemberConfigArgs:
58
73
  def __init__(__self__, *,
59
74
  configmanagement: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigConfigmanagementArgs']] = None,
60
- mesh: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigMeshArgs']] = None):
75
+ mesh: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigMeshArgs']] = None,
76
+ policycontroller: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerArgs']] = None):
61
77
  """
62
78
  :param pulumi.Input['FeatureFleetDefaultMemberConfigConfigmanagementArgs'] configmanagement: Config Management spec
63
79
  Structure is documented below.
64
80
  :param pulumi.Input['FeatureFleetDefaultMemberConfigMeshArgs'] mesh: Service Mesh spec
65
81
  Structure is documented below.
82
+ :param pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerArgs'] policycontroller: Policy Controller spec
83
+ Structure is documented below.
66
84
  """
67
85
  if configmanagement is not None:
68
86
  pulumi.set(__self__, "configmanagement", configmanagement)
69
87
  if mesh is not None:
70
88
  pulumi.set(__self__, "mesh", mesh)
89
+ if policycontroller is not None:
90
+ pulumi.set(__self__, "policycontroller", policycontroller)
71
91
 
72
92
  @property
73
93
  @pulumi.getter
@@ -95,6 +115,19 @@ class FeatureFleetDefaultMemberConfigArgs:
95
115
  def mesh(self, value: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigMeshArgs']]):
96
116
  pulumi.set(self, "mesh", value)
97
117
 
118
+ @property
119
+ @pulumi.getter
120
+ def policycontroller(self) -> Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerArgs']]:
121
+ """
122
+ Policy Controller spec
123
+ Structure is documented below.
124
+ """
125
+ return pulumi.get(self, "policycontroller")
126
+
127
+ @policycontroller.setter
128
+ def policycontroller(self, value: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerArgs']]):
129
+ pulumi.set(self, "policycontroller", value)
130
+
98
131
 
99
132
  @pulumi.input_type
100
133
  class FeatureFleetDefaultMemberConfigConfigmanagementArgs:
@@ -440,6 +473,635 @@ class FeatureFleetDefaultMemberConfigMeshArgs:
440
473
  pulumi.set(self, "management", value)
441
474
 
442
475
 
476
+ @pulumi.input_type
477
+ class FeatureFleetDefaultMemberConfigPolicycontrollerArgs:
478
+ def __init__(__self__, *,
479
+ policy_controller_hub_config: pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigArgs'],
480
+ version: Optional[pulumi.Input[str]] = None):
481
+ """
482
+ :param pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigArgs'] policy_controller_hub_config: Configuration of Policy Controller
483
+ Structure is documented below.
484
+ :param pulumi.Input[str] version: Configures the version of Policy Controller
485
+ """
486
+ pulumi.set(__self__, "policy_controller_hub_config", policy_controller_hub_config)
487
+ if version is not None:
488
+ pulumi.set(__self__, "version", version)
489
+
490
+ @property
491
+ @pulumi.getter(name="policyControllerHubConfig")
492
+ def policy_controller_hub_config(self) -> pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigArgs']:
493
+ """
494
+ Configuration of Policy Controller
495
+ Structure is documented below.
496
+ """
497
+ return pulumi.get(self, "policy_controller_hub_config")
498
+
499
+ @policy_controller_hub_config.setter
500
+ def policy_controller_hub_config(self, value: pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigArgs']):
501
+ pulumi.set(self, "policy_controller_hub_config", value)
502
+
503
+ @property
504
+ @pulumi.getter
505
+ def version(self) -> Optional[pulumi.Input[str]]:
506
+ """
507
+ Configures the version of Policy Controller
508
+ """
509
+ return pulumi.get(self, "version")
510
+
511
+ @version.setter
512
+ def version(self, value: Optional[pulumi.Input[str]]):
513
+ pulumi.set(self, "version", value)
514
+
515
+
516
+ @pulumi.input_type
517
+ class FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigArgs:
518
+ def __init__(__self__, *,
519
+ install_spec: pulumi.Input[str],
520
+ audit_interval_seconds: Optional[pulumi.Input[int]] = None,
521
+ constraint_violation_limit: Optional[pulumi.Input[int]] = None,
522
+ deployment_configs: Optional[pulumi.Input[Sequence[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigArgs']]]] = None,
523
+ exemptable_namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
524
+ log_denies_enabled: Optional[pulumi.Input[bool]] = None,
525
+ monitoring: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigMonitoringArgs']] = None,
526
+ mutation_enabled: Optional[pulumi.Input[bool]] = None,
527
+ policy_content: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentArgs']] = None,
528
+ referential_rules_enabled: Optional[pulumi.Input[bool]] = None):
529
+ """
530
+ :param pulumi.Input[str] install_spec: Configures the mode of the Policy Controller installation
531
+ Possible values are: `INSTALL_SPEC_UNSPECIFIED`, `INSTALL_SPEC_NOT_INSTALLED`, `INSTALL_SPEC_ENABLED`, `INSTALL_SPEC_SUSPENDED`, `INSTALL_SPEC_DETACHED`.
532
+ :param pulumi.Input[int] audit_interval_seconds: Interval for Policy Controller Audit scans (in seconds). When set to 0, this disables audit functionality altogether.
533
+ :param pulumi.Input[int] constraint_violation_limit: The maximum number of audit violations to be stored in a constraint. If not set, the internal default of 20 will be used.
534
+ :param pulumi.Input[Sequence[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigArgs']]] deployment_configs: Map of deployment configs to deployments ("admission", "audit", "mutation").
535
+ Structure is documented below.
536
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] exemptable_namespaces: The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster.
537
+ :param pulumi.Input[bool] log_denies_enabled: Logs all denies and dry run failures.
538
+ :param pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigMonitoringArgs'] monitoring: Monitoring specifies the configuration of monitoring Policy Controller.
539
+ Structure is documented below.
540
+ :param pulumi.Input[bool] mutation_enabled: Enables the ability to mutate resources using Policy Controller.
541
+ :param pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentArgs'] policy_content: Specifies the desired policy content on the cluster.
542
+ Structure is documented below.
543
+ :param pulumi.Input[bool] referential_rules_enabled: Enables the ability to use Constraint Templates that reference to objects other than the object currently being evaluated.
544
+ """
545
+ pulumi.set(__self__, "install_spec", install_spec)
546
+ if audit_interval_seconds is not None:
547
+ pulumi.set(__self__, "audit_interval_seconds", audit_interval_seconds)
548
+ if constraint_violation_limit is not None:
549
+ pulumi.set(__self__, "constraint_violation_limit", constraint_violation_limit)
550
+ if deployment_configs is not None:
551
+ pulumi.set(__self__, "deployment_configs", deployment_configs)
552
+ if exemptable_namespaces is not None:
553
+ pulumi.set(__self__, "exemptable_namespaces", exemptable_namespaces)
554
+ if log_denies_enabled is not None:
555
+ pulumi.set(__self__, "log_denies_enabled", log_denies_enabled)
556
+ if monitoring is not None:
557
+ pulumi.set(__self__, "monitoring", monitoring)
558
+ if mutation_enabled is not None:
559
+ pulumi.set(__self__, "mutation_enabled", mutation_enabled)
560
+ if policy_content is not None:
561
+ pulumi.set(__self__, "policy_content", policy_content)
562
+ if referential_rules_enabled is not None:
563
+ pulumi.set(__self__, "referential_rules_enabled", referential_rules_enabled)
564
+
565
+ @property
566
+ @pulumi.getter(name="installSpec")
567
+ def install_spec(self) -> pulumi.Input[str]:
568
+ """
569
+ Configures the mode of the Policy Controller installation
570
+ Possible values are: `INSTALL_SPEC_UNSPECIFIED`, `INSTALL_SPEC_NOT_INSTALLED`, `INSTALL_SPEC_ENABLED`, `INSTALL_SPEC_SUSPENDED`, `INSTALL_SPEC_DETACHED`.
571
+ """
572
+ return pulumi.get(self, "install_spec")
573
+
574
+ @install_spec.setter
575
+ def install_spec(self, value: pulumi.Input[str]):
576
+ pulumi.set(self, "install_spec", value)
577
+
578
+ @property
579
+ @pulumi.getter(name="auditIntervalSeconds")
580
+ def audit_interval_seconds(self) -> Optional[pulumi.Input[int]]:
581
+ """
582
+ Interval for Policy Controller Audit scans (in seconds). When set to 0, this disables audit functionality altogether.
583
+ """
584
+ return pulumi.get(self, "audit_interval_seconds")
585
+
586
+ @audit_interval_seconds.setter
587
+ def audit_interval_seconds(self, value: Optional[pulumi.Input[int]]):
588
+ pulumi.set(self, "audit_interval_seconds", value)
589
+
590
+ @property
591
+ @pulumi.getter(name="constraintViolationLimit")
592
+ def constraint_violation_limit(self) -> Optional[pulumi.Input[int]]:
593
+ """
594
+ The maximum number of audit violations to be stored in a constraint. If not set, the internal default of 20 will be used.
595
+ """
596
+ return pulumi.get(self, "constraint_violation_limit")
597
+
598
+ @constraint_violation_limit.setter
599
+ def constraint_violation_limit(self, value: Optional[pulumi.Input[int]]):
600
+ pulumi.set(self, "constraint_violation_limit", value)
601
+
602
+ @property
603
+ @pulumi.getter(name="deploymentConfigs")
604
+ def deployment_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigArgs']]]]:
605
+ """
606
+ Map of deployment configs to deployments ("admission", "audit", "mutation").
607
+ Structure is documented below.
608
+ """
609
+ return pulumi.get(self, "deployment_configs")
610
+
611
+ @deployment_configs.setter
612
+ def deployment_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigArgs']]]]):
613
+ pulumi.set(self, "deployment_configs", value)
614
+
615
+ @property
616
+ @pulumi.getter(name="exemptableNamespaces")
617
+ def exemptable_namespaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
618
+ """
619
+ The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster.
620
+ """
621
+ return pulumi.get(self, "exemptable_namespaces")
622
+
623
+ @exemptable_namespaces.setter
624
+ def exemptable_namespaces(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
625
+ pulumi.set(self, "exemptable_namespaces", value)
626
+
627
+ @property
628
+ @pulumi.getter(name="logDeniesEnabled")
629
+ def log_denies_enabled(self) -> Optional[pulumi.Input[bool]]:
630
+ """
631
+ Logs all denies and dry run failures.
632
+ """
633
+ return pulumi.get(self, "log_denies_enabled")
634
+
635
+ @log_denies_enabled.setter
636
+ def log_denies_enabled(self, value: Optional[pulumi.Input[bool]]):
637
+ pulumi.set(self, "log_denies_enabled", value)
638
+
639
+ @property
640
+ @pulumi.getter
641
+ def monitoring(self) -> Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigMonitoringArgs']]:
642
+ """
643
+ Monitoring specifies the configuration of monitoring Policy Controller.
644
+ Structure is documented below.
645
+ """
646
+ return pulumi.get(self, "monitoring")
647
+
648
+ @monitoring.setter
649
+ def monitoring(self, value: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigMonitoringArgs']]):
650
+ pulumi.set(self, "monitoring", value)
651
+
652
+ @property
653
+ @pulumi.getter(name="mutationEnabled")
654
+ def mutation_enabled(self) -> Optional[pulumi.Input[bool]]:
655
+ """
656
+ Enables the ability to mutate resources using Policy Controller.
657
+ """
658
+ return pulumi.get(self, "mutation_enabled")
659
+
660
+ @mutation_enabled.setter
661
+ def mutation_enabled(self, value: Optional[pulumi.Input[bool]]):
662
+ pulumi.set(self, "mutation_enabled", value)
663
+
664
+ @property
665
+ @pulumi.getter(name="policyContent")
666
+ def policy_content(self) -> Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentArgs']]:
667
+ """
668
+ Specifies the desired policy content on the cluster.
669
+ Structure is documented below.
670
+ """
671
+ return pulumi.get(self, "policy_content")
672
+
673
+ @policy_content.setter
674
+ def policy_content(self, value: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentArgs']]):
675
+ pulumi.set(self, "policy_content", value)
676
+
677
+ @property
678
+ @pulumi.getter(name="referentialRulesEnabled")
679
+ def referential_rules_enabled(self) -> Optional[pulumi.Input[bool]]:
680
+ """
681
+ Enables the ability to use Constraint Templates that reference to objects other than the object currently being evaluated.
682
+ """
683
+ return pulumi.get(self, "referential_rules_enabled")
684
+
685
+ @referential_rules_enabled.setter
686
+ def referential_rules_enabled(self, value: Optional[pulumi.Input[bool]]):
687
+ pulumi.set(self, "referential_rules_enabled", value)
688
+
689
+
690
+ @pulumi.input_type
691
+ class FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigArgs:
692
+ def __init__(__self__, *,
693
+ component: pulumi.Input[str],
694
+ container_resources: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesArgs']] = None,
695
+ pod_affinity: Optional[pulumi.Input[str]] = None,
696
+ pod_tolerations: Optional[pulumi.Input[Sequence[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationArgs']]]] = None,
697
+ replica_count: Optional[pulumi.Input[int]] = None):
698
+ """
699
+ :param pulumi.Input[str] component: The identifier for this object. Format specified above.
700
+ :param pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesArgs'] container_resources: Container resource requirements.
701
+ Structure is documented below.
702
+ :param pulumi.Input[str] pod_affinity: Pod affinity configuration.
703
+ Possible values are: `AFFINITY_UNSPECIFIED`, `NO_AFFINITY`, `ANTI_AFFINITY`.
704
+ :param pulumi.Input[Sequence[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationArgs']]] pod_tolerations: Pod tolerations of node taints.
705
+ Structure is documented below.
706
+ :param pulumi.Input[int] replica_count: Pod replica count.
707
+ """
708
+ pulumi.set(__self__, "component", component)
709
+ if container_resources is not None:
710
+ pulumi.set(__self__, "container_resources", container_resources)
711
+ if pod_affinity is not None:
712
+ pulumi.set(__self__, "pod_affinity", pod_affinity)
713
+ if pod_tolerations is not None:
714
+ pulumi.set(__self__, "pod_tolerations", pod_tolerations)
715
+ if replica_count is not None:
716
+ pulumi.set(__self__, "replica_count", replica_count)
717
+
718
+ @property
719
+ @pulumi.getter
720
+ def component(self) -> pulumi.Input[str]:
721
+ """
722
+ The identifier for this object. Format specified above.
723
+ """
724
+ return pulumi.get(self, "component")
725
+
726
+ @component.setter
727
+ def component(self, value: pulumi.Input[str]):
728
+ pulumi.set(self, "component", value)
729
+
730
+ @property
731
+ @pulumi.getter(name="containerResources")
732
+ def container_resources(self) -> Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesArgs']]:
733
+ """
734
+ Container resource requirements.
735
+ Structure is documented below.
736
+ """
737
+ return pulumi.get(self, "container_resources")
738
+
739
+ @container_resources.setter
740
+ def container_resources(self, value: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesArgs']]):
741
+ pulumi.set(self, "container_resources", value)
742
+
743
+ @property
744
+ @pulumi.getter(name="podAffinity")
745
+ def pod_affinity(self) -> Optional[pulumi.Input[str]]:
746
+ """
747
+ Pod affinity configuration.
748
+ Possible values are: `AFFINITY_UNSPECIFIED`, `NO_AFFINITY`, `ANTI_AFFINITY`.
749
+ """
750
+ return pulumi.get(self, "pod_affinity")
751
+
752
+ @pod_affinity.setter
753
+ def pod_affinity(self, value: Optional[pulumi.Input[str]]):
754
+ pulumi.set(self, "pod_affinity", value)
755
+
756
+ @property
757
+ @pulumi.getter(name="podTolerations")
758
+ def pod_tolerations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationArgs']]]]:
759
+ """
760
+ Pod tolerations of node taints.
761
+ Structure is documented below.
762
+ """
763
+ return pulumi.get(self, "pod_tolerations")
764
+
765
+ @pod_tolerations.setter
766
+ def pod_tolerations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationArgs']]]]):
767
+ pulumi.set(self, "pod_tolerations", value)
768
+
769
+ @property
770
+ @pulumi.getter(name="replicaCount")
771
+ def replica_count(self) -> Optional[pulumi.Input[int]]:
772
+ """
773
+ Pod replica count.
774
+ """
775
+ return pulumi.get(self, "replica_count")
776
+
777
+ @replica_count.setter
778
+ def replica_count(self, value: Optional[pulumi.Input[int]]):
779
+ pulumi.set(self, "replica_count", value)
780
+
781
+
782
+ @pulumi.input_type
783
+ class FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesArgs:
784
+ def __init__(__self__, *,
785
+ limits: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimitsArgs']] = None,
786
+ requests: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequestsArgs']] = None):
787
+ """
788
+ :param pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimitsArgs'] limits: Limits describes the maximum amount of compute resources allowed for use by the running container.
789
+ Structure is documented below.
790
+ :param pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequestsArgs'] requests: Requests describes the amount of compute resources reserved for the container by the kube-scheduler.
791
+ Structure is documented below.
792
+ """
793
+ if limits is not None:
794
+ pulumi.set(__self__, "limits", limits)
795
+ if requests is not None:
796
+ pulumi.set(__self__, "requests", requests)
797
+
798
+ @property
799
+ @pulumi.getter
800
+ def limits(self) -> Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimitsArgs']]:
801
+ """
802
+ Limits describes the maximum amount of compute resources allowed for use by the running container.
803
+ Structure is documented below.
804
+ """
805
+ return pulumi.get(self, "limits")
806
+
807
+ @limits.setter
808
+ def limits(self, value: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimitsArgs']]):
809
+ pulumi.set(self, "limits", value)
810
+
811
+ @property
812
+ @pulumi.getter
813
+ def requests(self) -> Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequestsArgs']]:
814
+ """
815
+ Requests describes the amount of compute resources reserved for the container by the kube-scheduler.
816
+ Structure is documented below.
817
+ """
818
+ return pulumi.get(self, "requests")
819
+
820
+ @requests.setter
821
+ def requests(self, value: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequestsArgs']]):
822
+ pulumi.set(self, "requests", value)
823
+
824
+
825
+ @pulumi.input_type
826
+ class FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesLimitsArgs:
827
+ def __init__(__self__, *,
828
+ cpu: Optional[pulumi.Input[str]] = None,
829
+ memory: Optional[pulumi.Input[str]] = None):
830
+ """
831
+ :param pulumi.Input[str] cpu: CPU requirement expressed in Kubernetes resource units.
832
+ :param pulumi.Input[str] memory: Memory requirement expressed in Kubernetes resource units.
833
+ """
834
+ if cpu is not None:
835
+ pulumi.set(__self__, "cpu", cpu)
836
+ if memory is not None:
837
+ pulumi.set(__self__, "memory", memory)
838
+
839
+ @property
840
+ @pulumi.getter
841
+ def cpu(self) -> Optional[pulumi.Input[str]]:
842
+ """
843
+ CPU requirement expressed in Kubernetes resource units.
844
+ """
845
+ return pulumi.get(self, "cpu")
846
+
847
+ @cpu.setter
848
+ def cpu(self, value: Optional[pulumi.Input[str]]):
849
+ pulumi.set(self, "cpu", value)
850
+
851
+ @property
852
+ @pulumi.getter
853
+ def memory(self) -> Optional[pulumi.Input[str]]:
854
+ """
855
+ Memory requirement expressed in Kubernetes resource units.
856
+ """
857
+ return pulumi.get(self, "memory")
858
+
859
+ @memory.setter
860
+ def memory(self, value: Optional[pulumi.Input[str]]):
861
+ pulumi.set(self, "memory", value)
862
+
863
+
864
+ @pulumi.input_type
865
+ class FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourcesRequestsArgs:
866
+ def __init__(__self__, *,
867
+ cpu: Optional[pulumi.Input[str]] = None,
868
+ memory: Optional[pulumi.Input[str]] = None):
869
+ """
870
+ :param pulumi.Input[str] cpu: CPU requirement expressed in Kubernetes resource units.
871
+ :param pulumi.Input[str] memory: Memory requirement expressed in Kubernetes resource units.
872
+ """
873
+ if cpu is not None:
874
+ pulumi.set(__self__, "cpu", cpu)
875
+ if memory is not None:
876
+ pulumi.set(__self__, "memory", memory)
877
+
878
+ @property
879
+ @pulumi.getter
880
+ def cpu(self) -> Optional[pulumi.Input[str]]:
881
+ """
882
+ CPU requirement expressed in Kubernetes resource units.
883
+ """
884
+ return pulumi.get(self, "cpu")
885
+
886
+ @cpu.setter
887
+ def cpu(self, value: Optional[pulumi.Input[str]]):
888
+ pulumi.set(self, "cpu", value)
889
+
890
+ @property
891
+ @pulumi.getter
892
+ def memory(self) -> Optional[pulumi.Input[str]]:
893
+ """
894
+ Memory requirement expressed in Kubernetes resource units.
895
+ """
896
+ return pulumi.get(self, "memory")
897
+
898
+ @memory.setter
899
+ def memory(self, value: Optional[pulumi.Input[str]]):
900
+ pulumi.set(self, "memory", value)
901
+
902
+
903
+ @pulumi.input_type
904
+ class FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationArgs:
905
+ def __init__(__self__, *,
906
+ effect: Optional[pulumi.Input[str]] = None,
907
+ key: Optional[pulumi.Input[str]] = None,
908
+ operator: Optional[pulumi.Input[str]] = None,
909
+ value: Optional[pulumi.Input[str]] = None):
910
+ """
911
+ :param pulumi.Input[str] effect: Matches a taint effect.
912
+ :param pulumi.Input[str] key: Matches a taint key (not necessarily unique).
913
+ :param pulumi.Input[str] operator: Matches a taint operator.
914
+ :param pulumi.Input[str] value: Matches a taint value.
915
+ """
916
+ if effect is not None:
917
+ pulumi.set(__self__, "effect", effect)
918
+ if key is not None:
919
+ pulumi.set(__self__, "key", key)
920
+ if operator is not None:
921
+ pulumi.set(__self__, "operator", operator)
922
+ if value is not None:
923
+ pulumi.set(__self__, "value", value)
924
+
925
+ @property
926
+ @pulumi.getter
927
+ def effect(self) -> Optional[pulumi.Input[str]]:
928
+ """
929
+ Matches a taint effect.
930
+ """
931
+ return pulumi.get(self, "effect")
932
+
933
+ @effect.setter
934
+ def effect(self, value: Optional[pulumi.Input[str]]):
935
+ pulumi.set(self, "effect", value)
936
+
937
+ @property
938
+ @pulumi.getter
939
+ def key(self) -> Optional[pulumi.Input[str]]:
940
+ """
941
+ Matches a taint key (not necessarily unique).
942
+ """
943
+ return pulumi.get(self, "key")
944
+
945
+ @key.setter
946
+ def key(self, value: Optional[pulumi.Input[str]]):
947
+ pulumi.set(self, "key", value)
948
+
949
+ @property
950
+ @pulumi.getter
951
+ def operator(self) -> Optional[pulumi.Input[str]]:
952
+ """
953
+ Matches a taint operator.
954
+ """
955
+ return pulumi.get(self, "operator")
956
+
957
+ @operator.setter
958
+ def operator(self, value: Optional[pulumi.Input[str]]):
959
+ pulumi.set(self, "operator", value)
960
+
961
+ @property
962
+ @pulumi.getter
963
+ def value(self) -> Optional[pulumi.Input[str]]:
964
+ """
965
+ Matches a taint value.
966
+ """
967
+ return pulumi.get(self, "value")
968
+
969
+ @value.setter
970
+ def value(self, value: Optional[pulumi.Input[str]]):
971
+ pulumi.set(self, "value", value)
972
+
973
+
974
+ @pulumi.input_type
975
+ class FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigMonitoringArgs:
976
+ def __init__(__self__, *,
977
+ backends: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
978
+ """
979
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] backends: Specifies the list of backends Policy Controller will export to. An empty list would effectively disable metrics export.
980
+ Each value may be one of: `MONITORING_BACKEND_UNSPECIFIED`, `PROMETHEUS`, `CLOUD_MONITORING`.
981
+ """
982
+ if backends is not None:
983
+ pulumi.set(__self__, "backends", backends)
984
+
985
+ @property
986
+ @pulumi.getter
987
+ def backends(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
988
+ """
989
+ Specifies the list of backends Policy Controller will export to. An empty list would effectively disable metrics export.
990
+ Each value may be one of: `MONITORING_BACKEND_UNSPECIFIED`, `PROMETHEUS`, `CLOUD_MONITORING`.
991
+ """
992
+ return pulumi.get(self, "backends")
993
+
994
+ @backends.setter
995
+ def backends(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
996
+ pulumi.set(self, "backends", value)
997
+
998
+
999
+ @pulumi.input_type
1000
+ class FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentArgs:
1001
+ def __init__(__self__, *,
1002
+ bundles: Optional[pulumi.Input[Sequence[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs']]]] = None,
1003
+ template_library: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryArgs']] = None):
1004
+ """
1005
+ :param pulumi.Input[Sequence[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs']]] bundles: Configures which bundles to install and their corresponding install specs.
1006
+ Structure is documented below.
1007
+ :param pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryArgs'] template_library: Configures the installation of the Template Library.
1008
+ Structure is documented below.
1009
+ """
1010
+ if bundles is not None:
1011
+ pulumi.set(__self__, "bundles", bundles)
1012
+ if template_library is not None:
1013
+ pulumi.set(__self__, "template_library", template_library)
1014
+
1015
+ @property
1016
+ @pulumi.getter
1017
+ def bundles(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs']]]]:
1018
+ """
1019
+ Configures which bundles to install and their corresponding install specs.
1020
+ Structure is documented below.
1021
+ """
1022
+ return pulumi.get(self, "bundles")
1023
+
1024
+ @bundles.setter
1025
+ def bundles(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs']]]]):
1026
+ pulumi.set(self, "bundles", value)
1027
+
1028
+ @property
1029
+ @pulumi.getter(name="templateLibrary")
1030
+ def template_library(self) -> Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryArgs']]:
1031
+ """
1032
+ Configures the installation of the Template Library.
1033
+ Structure is documented below.
1034
+ """
1035
+ return pulumi.get(self, "template_library")
1036
+
1037
+ @template_library.setter
1038
+ def template_library(self, value: Optional[pulumi.Input['FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryArgs']]):
1039
+ pulumi.set(self, "template_library", value)
1040
+
1041
+
1042
+ @pulumi.input_type
1043
+ class FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs:
1044
+ def __init__(__self__, *,
1045
+ bundle: pulumi.Input[str],
1046
+ exempted_namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
1047
+ """
1048
+ :param pulumi.Input[str] bundle: The identifier for this object. Format specified above.
1049
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] exempted_namespaces: The set of namespaces to be exempted from the bundle.
1050
+ """
1051
+ pulumi.set(__self__, "bundle", bundle)
1052
+ if exempted_namespaces is not None:
1053
+ pulumi.set(__self__, "exempted_namespaces", exempted_namespaces)
1054
+
1055
+ @property
1056
+ @pulumi.getter
1057
+ def bundle(self) -> pulumi.Input[str]:
1058
+ """
1059
+ The identifier for this object. Format specified above.
1060
+ """
1061
+ return pulumi.get(self, "bundle")
1062
+
1063
+ @bundle.setter
1064
+ def bundle(self, value: pulumi.Input[str]):
1065
+ pulumi.set(self, "bundle", value)
1066
+
1067
+ @property
1068
+ @pulumi.getter(name="exemptedNamespaces")
1069
+ def exempted_namespaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
1070
+ """
1071
+ The set of namespaces to be exempted from the bundle.
1072
+ """
1073
+ return pulumi.get(self, "exempted_namespaces")
1074
+
1075
+ @exempted_namespaces.setter
1076
+ def exempted_namespaces(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
1077
+ pulumi.set(self, "exempted_namespaces", value)
1078
+
1079
+
1080
+ @pulumi.input_type
1081
+ class FeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryArgs:
1082
+ def __init__(__self__, *,
1083
+ installation: Optional[pulumi.Input[str]] = None):
1084
+ """
1085
+ :param pulumi.Input[str] installation: Configures the manner in which the template library is installed on the cluster.
1086
+ Possible values are: `INSTALATION_UNSPECIFIED`, `NOT_INSTALLED`, `ALL`.
1087
+ """
1088
+ if installation is not None:
1089
+ pulumi.set(__self__, "installation", installation)
1090
+
1091
+ @property
1092
+ @pulumi.getter
1093
+ def installation(self) -> Optional[pulumi.Input[str]]:
1094
+ """
1095
+ Configures the manner in which the template library is installed on the cluster.
1096
+ Possible values are: `INSTALATION_UNSPECIFIED`, `NOT_INSTALLED`, `ALL`.
1097
+ """
1098
+ return pulumi.get(self, "installation")
1099
+
1100
+ @installation.setter
1101
+ def installation(self, value: Optional[pulumi.Input[str]]):
1102
+ pulumi.set(self, "installation", value)
1103
+
1104
+
443
1105
  @pulumi.input_type
444
1106
  class FeatureIamBindingConditionArgs:
445
1107
  def __init__(__self__, *,
@@ -1008,7 +1670,7 @@ class FeatureMembershipConfigmanagementPolicyControllerArgs:
1008
1670
  :param pulumi.Input[bool] enabled: Enables the installation of Policy Controller. If false, the rest of PolicyController fields take no effect.
1009
1671
  :param pulumi.Input[Sequence[pulumi.Input[str]]] exemptable_namespaces: The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster.
1010
1672
  :param pulumi.Input[bool] log_denies_enabled: Logs all denies and dry run failures.
1011
- :param pulumi.Input['FeatureMembershipConfigmanagementPolicyControllerMonitoringArgs'] monitoring: Specifies the backends Policy Controller should export metrics to. For example, to specify metrics should be exported to Cloud Monitoring and Prometheus, specify backends: [\\"cloudmonitoring\\", \\"prometheus\\"]. Default: [\\"cloudmonitoring\\", \\"prometheus\\"]
1673
+ :param pulumi.Input['FeatureMembershipConfigmanagementPolicyControllerMonitoringArgs'] monitoring: Specifies the backends Policy Controller should export metrics to. For example, to specify metrics should be exported to Cloud Monitoring and Prometheus, specify backends: ["cloudmonitoring", "prometheus"]. Default: ["cloudmonitoring", "prometheus"]
1012
1674
  :param pulumi.Input[bool] mutation_enabled: Enables mutation in policy controller. If true, mutation CRDs, webhook, and controller deployment will be deployed to the cluster.
1013
1675
  :param pulumi.Input[bool] referential_rules_enabled: Enables the ability to use Constraint Templates that reference to objects other than the object currently being evaluated.
1014
1676
  :param pulumi.Input[bool] template_library_installed: Installs the default template library along with Policy Controller.
@@ -1082,7 +1744,7 @@ class FeatureMembershipConfigmanagementPolicyControllerArgs:
1082
1744
  @pulumi.getter
1083
1745
  def monitoring(self) -> Optional[pulumi.Input['FeatureMembershipConfigmanagementPolicyControllerMonitoringArgs']]:
1084
1746
  """
1085
- Specifies the backends Policy Controller should export metrics to. For example, to specify metrics should be exported to Cloud Monitoring and Prometheus, specify backends: [\\"cloudmonitoring\\", \\"prometheus\\"]. Default: [\\"cloudmonitoring\\", \\"prometheus\\"]
1747
+ Specifies the backends Policy Controller should export metrics to. For example, to specify metrics should be exported to Cloud Monitoring and Prometheus, specify backends: ["cloudmonitoring", "prometheus"]. Default: ["cloudmonitoring", "prometheus"]
1086
1748
  """
1087
1749
  return pulumi.get(self, "monitoring")
1088
1750
 
@@ -1501,6 +2163,162 @@ class FeatureStateStateArgs:
1501
2163
  pulumi.set(self, "update_time", value)
1502
2164
 
1503
2165
 
2166
+ @pulumi.input_type
2167
+ class FleetDefaultClusterConfigArgs:
2168
+ def __init__(__self__, *,
2169
+ binary_authorization_config: Optional[pulumi.Input['FleetDefaultClusterConfigBinaryAuthorizationConfigArgs']] = None,
2170
+ security_posture_config: Optional[pulumi.Input['FleetDefaultClusterConfigSecurityPostureConfigArgs']] = None):
2171
+ """
2172
+ :param pulumi.Input['FleetDefaultClusterConfigBinaryAuthorizationConfigArgs'] binary_authorization_config: Enable/Disable binary authorization features for the cluster.
2173
+ Structure is documented below.
2174
+ :param pulumi.Input['FleetDefaultClusterConfigSecurityPostureConfigArgs'] security_posture_config: Enable/Disable Security Posture features for the cluster.
2175
+ Structure is documented below.
2176
+ """
2177
+ if binary_authorization_config is not None:
2178
+ pulumi.set(__self__, "binary_authorization_config", binary_authorization_config)
2179
+ if security_posture_config is not None:
2180
+ pulumi.set(__self__, "security_posture_config", security_posture_config)
2181
+
2182
+ @property
2183
+ @pulumi.getter(name="binaryAuthorizationConfig")
2184
+ def binary_authorization_config(self) -> Optional[pulumi.Input['FleetDefaultClusterConfigBinaryAuthorizationConfigArgs']]:
2185
+ """
2186
+ Enable/Disable binary authorization features for the cluster.
2187
+ Structure is documented below.
2188
+ """
2189
+ return pulumi.get(self, "binary_authorization_config")
2190
+
2191
+ @binary_authorization_config.setter
2192
+ def binary_authorization_config(self, value: Optional[pulumi.Input['FleetDefaultClusterConfigBinaryAuthorizationConfigArgs']]):
2193
+ pulumi.set(self, "binary_authorization_config", value)
2194
+
2195
+ @property
2196
+ @pulumi.getter(name="securityPostureConfig")
2197
+ def security_posture_config(self) -> Optional[pulumi.Input['FleetDefaultClusterConfigSecurityPostureConfigArgs']]:
2198
+ """
2199
+ Enable/Disable Security Posture features for the cluster.
2200
+ Structure is documented below.
2201
+ """
2202
+ return pulumi.get(self, "security_posture_config")
2203
+
2204
+ @security_posture_config.setter
2205
+ def security_posture_config(self, value: Optional[pulumi.Input['FleetDefaultClusterConfigSecurityPostureConfigArgs']]):
2206
+ pulumi.set(self, "security_posture_config", value)
2207
+
2208
+
2209
+ @pulumi.input_type
2210
+ class FleetDefaultClusterConfigBinaryAuthorizationConfigArgs:
2211
+ def __init__(__self__, *,
2212
+ evaluation_mode: Optional[pulumi.Input[str]] = None,
2213
+ policy_bindings: Optional[pulumi.Input[Sequence[pulumi.Input['FleetDefaultClusterConfigBinaryAuthorizationConfigPolicyBindingArgs']]]] = None):
2214
+ """
2215
+ :param pulumi.Input[str] evaluation_mode: Mode of operation for binauthz policy evaluation.
2216
+ Possible values are: `DISABLED`, `POLICY_BINDINGS`.
2217
+ :param pulumi.Input[Sequence[pulumi.Input['FleetDefaultClusterConfigBinaryAuthorizationConfigPolicyBindingArgs']]] policy_bindings: Binauthz policies that apply to this cluster.
2218
+ Structure is documented below.
2219
+ """
2220
+ if evaluation_mode is not None:
2221
+ pulumi.set(__self__, "evaluation_mode", evaluation_mode)
2222
+ if policy_bindings is not None:
2223
+ pulumi.set(__self__, "policy_bindings", policy_bindings)
2224
+
2225
+ @property
2226
+ @pulumi.getter(name="evaluationMode")
2227
+ def evaluation_mode(self) -> Optional[pulumi.Input[str]]:
2228
+ """
2229
+ Mode of operation for binauthz policy evaluation.
2230
+ Possible values are: `DISABLED`, `POLICY_BINDINGS`.
2231
+ """
2232
+ return pulumi.get(self, "evaluation_mode")
2233
+
2234
+ @evaluation_mode.setter
2235
+ def evaluation_mode(self, value: Optional[pulumi.Input[str]]):
2236
+ pulumi.set(self, "evaluation_mode", value)
2237
+
2238
+ @property
2239
+ @pulumi.getter(name="policyBindings")
2240
+ def policy_bindings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FleetDefaultClusterConfigBinaryAuthorizationConfigPolicyBindingArgs']]]]:
2241
+ """
2242
+ Binauthz policies that apply to this cluster.
2243
+ Structure is documented below.
2244
+ """
2245
+ return pulumi.get(self, "policy_bindings")
2246
+
2247
+ @policy_bindings.setter
2248
+ def policy_bindings(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FleetDefaultClusterConfigBinaryAuthorizationConfigPolicyBindingArgs']]]]):
2249
+ pulumi.set(self, "policy_bindings", value)
2250
+
2251
+
2252
+ @pulumi.input_type
2253
+ class FleetDefaultClusterConfigBinaryAuthorizationConfigPolicyBindingArgs:
2254
+ def __init__(__self__, *,
2255
+ name: Optional[pulumi.Input[str]] = None):
2256
+ """
2257
+ :param pulumi.Input[str] name: The relative resource name of the binauthz platform policy to audit. GKE
2258
+ platform policies have the following format:
2259
+ `projects/{project_number}/platforms/gke/policies/{policy_id}`.
2260
+ """
2261
+ if name is not None:
2262
+ pulumi.set(__self__, "name", name)
2263
+
2264
+ @property
2265
+ @pulumi.getter
2266
+ def name(self) -> Optional[pulumi.Input[str]]:
2267
+ """
2268
+ The relative resource name of the binauthz platform policy to audit. GKE
2269
+ platform policies have the following format:
2270
+ `projects/{project_number}/platforms/gke/policies/{policy_id}`.
2271
+ """
2272
+ return pulumi.get(self, "name")
2273
+
2274
+ @name.setter
2275
+ def name(self, value: Optional[pulumi.Input[str]]):
2276
+ pulumi.set(self, "name", value)
2277
+
2278
+
2279
+ @pulumi.input_type
2280
+ class FleetDefaultClusterConfigSecurityPostureConfigArgs:
2281
+ def __init__(__self__, *,
2282
+ mode: Optional[pulumi.Input[str]] = None,
2283
+ vulnerability_mode: Optional[pulumi.Input[str]] = None):
2284
+ """
2285
+ :param pulumi.Input[str] mode: Sets which mode to use for Security Posture features.
2286
+ Possible values are: `DISABLED`, `BASIC`.
2287
+ :param pulumi.Input[str] vulnerability_mode: Sets which mode to use for vulnerability scanning.
2288
+ Possible values are: `VULNERABILITY_DISABLED`, `VULNERABILITY_BASIC`, `VULNERABILITY_ENTERPRISE`.
2289
+ """
2290
+ if mode is not None:
2291
+ pulumi.set(__self__, "mode", mode)
2292
+ if vulnerability_mode is not None:
2293
+ pulumi.set(__self__, "vulnerability_mode", vulnerability_mode)
2294
+
2295
+ @property
2296
+ @pulumi.getter
2297
+ def mode(self) -> Optional[pulumi.Input[str]]:
2298
+ """
2299
+ Sets which mode to use for Security Posture features.
2300
+ Possible values are: `DISABLED`, `BASIC`.
2301
+ """
2302
+ return pulumi.get(self, "mode")
2303
+
2304
+ @mode.setter
2305
+ def mode(self, value: Optional[pulumi.Input[str]]):
2306
+ pulumi.set(self, "mode", value)
2307
+
2308
+ @property
2309
+ @pulumi.getter(name="vulnerabilityMode")
2310
+ def vulnerability_mode(self) -> Optional[pulumi.Input[str]]:
2311
+ """
2312
+ Sets which mode to use for vulnerability scanning.
2313
+ Possible values are: `VULNERABILITY_DISABLED`, `VULNERABILITY_BASIC`, `VULNERABILITY_ENTERPRISE`.
2314
+ """
2315
+ return pulumi.get(self, "vulnerability_mode")
2316
+
2317
+ @vulnerability_mode.setter
2318
+ def vulnerability_mode(self, value: Optional[pulumi.Input[str]]):
2319
+ pulumi.set(self, "vulnerability_mode", value)
2320
+
2321
+
1504
2322
  @pulumi.input_type
1505
2323
  class FleetStateArgs:
1506
2324
  def __init__(__self__, *,