pulumi-gcp 8.13.0a1736231082__py3-none-any.whl → 8.13.0a1736263433__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (90) hide show
  1. pulumi_gcp/__init__.py +43 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +3 -3
  3. pulumi_gcp/accesscontextmanager/outputs.py +2 -2
  4. pulumi_gcp/artifactregistry/_inputs.py +83 -0
  5. pulumi_gcp/artifactregistry/get_repository.py +15 -4
  6. pulumi_gcp/artifactregistry/outputs.py +112 -0
  7. pulumi_gcp/artifactregistry/repository.py +93 -7
  8. pulumi_gcp/backupdisasterrecovery/get_backup.py +38 -2
  9. pulumi_gcp/backupdisasterrecovery/get_data_source.py +38 -2
  10. pulumi_gcp/backupdisasterrecovery/outputs.py +8 -8
  11. pulumi_gcp/bigquery/_inputs.py +369 -0
  12. pulumi_gcp/bigquery/dataset_access.py +61 -0
  13. pulumi_gcp/bigquery/job.py +6 -18
  14. pulumi_gcp/bigquery/outputs.py +350 -0
  15. pulumi_gcp/bigquery/table.py +47 -0
  16. pulumi_gcp/chronicle/__init__.py +10 -0
  17. pulumi_gcp/chronicle/_inputs.py +169 -0
  18. pulumi_gcp/chronicle/outputs.py +107 -0
  19. pulumi_gcp/chronicle/watchlist.py +776 -0
  20. pulumi_gcp/cloudrunv2/_inputs.py +6 -3
  21. pulumi_gcp/cloudrunv2/outputs.py +10 -6
  22. pulumi_gcp/composer/_inputs.py +80 -5
  23. pulumi_gcp/composer/outputs.py +111 -4
  24. pulumi_gcp/compute/_inputs.py +181 -87
  25. pulumi_gcp/compute/firewall_policy_association.py +50 -39
  26. pulumi_gcp/compute/get_network.py +17 -2
  27. pulumi_gcp/compute/get_subnetwork.py +18 -4
  28. pulumi_gcp/compute/network.py +39 -2
  29. pulumi_gcp/compute/outputs.py +157 -58
  30. pulumi_gcp/compute/region_network_endpoint_group.py +1 -1
  31. pulumi_gcp/compute/resize_request.py +26 -40
  32. pulumi_gcp/config/__init__.pyi +2 -0
  33. pulumi_gcp/config/vars.py +4 -0
  34. pulumi_gcp/dataproc/batch.py +4 -18
  35. pulumi_gcp/datastream/_inputs.py +68 -0
  36. pulumi_gcp/datastream/outputs.py +41 -1
  37. pulumi_gcp/developerconnect/connection.py +58 -12
  38. pulumi_gcp/diagflow/_inputs.py +3 -3
  39. pulumi_gcp/diagflow/outputs.py +2 -2
  40. pulumi_gcp/filestore/backup.py +71 -3
  41. pulumi_gcp/firebase/hosting_custom_domain.py +4 -4
  42. pulumi_gcp/firestore/_inputs.py +3 -3
  43. pulumi_gcp/firestore/outputs.py +2 -2
  44. pulumi_gcp/gkehub/__init__.py +1 -0
  45. pulumi_gcp/gkehub/get_feature.py +226 -0
  46. pulumi_gcp/gkehub/outputs.py +1153 -0
  47. pulumi_gcp/gkeonprem/__init__.py +1 -0
  48. pulumi_gcp/gkeonprem/_inputs.py +2364 -0
  49. pulumi_gcp/gkeonprem/outputs.py +1780 -0
  50. pulumi_gcp/gkeonprem/vmware_admin_cluster.py +1715 -0
  51. pulumi_gcp/integrationconnectors/_inputs.py +6 -6
  52. pulumi_gcp/integrationconnectors/connection.py +7 -7
  53. pulumi_gcp/integrationconnectors/outputs.py +4 -4
  54. pulumi_gcp/kms/__init__.py +2 -0
  55. pulumi_gcp/kms/get_autokey_config.py +121 -0
  56. pulumi_gcp/kms/get_key_handle.py +185 -0
  57. pulumi_gcp/netapp/kmsconfig.py +2 -14
  58. pulumi_gcp/networkconnectivity/hub.py +108 -0
  59. pulumi_gcp/networkconnectivity/spoke.py +195 -0
  60. pulumi_gcp/networkmanagement/vpc_flow_logs_config.py +4 -0
  61. pulumi_gcp/networksecurity/__init__.py +2 -0
  62. pulumi_gcp/networksecurity/_inputs.py +78 -0
  63. pulumi_gcp/networksecurity/intercept_endpoint_group.py +723 -0
  64. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +815 -0
  65. pulumi_gcp/networksecurity/outputs.py +48 -0
  66. pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
  67. pulumi_gcp/orgpolicy/policy.py +2 -2
  68. pulumi_gcp/parallelstore/instance.py +149 -0
  69. pulumi_gcp/projects/usage_export_bucket.py +42 -110
  70. pulumi_gcp/provider.py +20 -0
  71. pulumi_gcp/pubsub/subscription.py +6 -6
  72. pulumi_gcp/pulumi-plugin.json +1 -1
  73. pulumi_gcp/securesourcemanager/instance.py +4 -16
  74. pulumi_gcp/spanner/instance_iam_binding.py +14 -0
  75. pulumi_gcp/spanner/instance_iam_member.py +14 -0
  76. pulumi_gcp/sql/database_instance.py +7 -7
  77. pulumi_gcp/storage/__init__.py +1 -0
  78. pulumi_gcp/storage/_inputs.py +431 -0
  79. pulumi_gcp/storage/folder.py +483 -0
  80. pulumi_gcp/storage/outputs.py +363 -0
  81. pulumi_gcp/storage/transfer_job.py +84 -38
  82. pulumi_gcp/vertex/_inputs.py +26 -25
  83. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  84. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  85. pulumi_gcp/vertex/outputs.py +15 -14
  86. pulumi_gcp/workstations/workstation.py +55 -1
  87. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/METADATA +1 -1
  88. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/RECORD +90 -79
  89. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/WHEEL +0 -0
  90. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/top_level.txt +0 -0
@@ -88,6 +88,37 @@ __all__ = [
88
88
  'ScopeRbacRoleBindingRole',
89
89
  'ScopeRbacRoleBindingState',
90
90
  'ScopeState',
91
+ 'GetFeatureFleetDefaultMemberConfigResult',
92
+ 'GetFeatureFleetDefaultMemberConfigConfigmanagementResult',
93
+ 'GetFeatureFleetDefaultMemberConfigConfigmanagementConfigSyncResult',
94
+ 'GetFeatureFleetDefaultMemberConfigConfigmanagementConfigSyncGitResult',
95
+ 'GetFeatureFleetDefaultMemberConfigConfigmanagementConfigSyncOciResult',
96
+ 'GetFeatureFleetDefaultMemberConfigMeshResult',
97
+ 'GetFeatureFleetDefaultMemberConfigPolicycontrollerResult',
98
+ 'GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigResult',
99
+ 'GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigResult',
100
+ 'GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourceResult',
101
+ 'GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourceLimitResult',
102
+ 'GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourceRequestResult',
103
+ 'GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationResult',
104
+ 'GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigMonitoringResult',
105
+ 'GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentResult',
106
+ 'GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleResult',
107
+ 'GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryResult',
108
+ 'GetFeatureResourceStateResult',
109
+ 'GetFeatureSpecResult',
110
+ 'GetFeatureSpecClusterupgradeResult',
111
+ 'GetFeatureSpecClusterupgradeGkeUpgradeOverrideResult',
112
+ 'GetFeatureSpecClusterupgradeGkeUpgradeOverridePostConditionResult',
113
+ 'GetFeatureSpecClusterupgradeGkeUpgradeOverrideUpgradeResult',
114
+ 'GetFeatureSpecClusterupgradePostConditionResult',
115
+ 'GetFeatureSpecFleetobservabilityResult',
116
+ 'GetFeatureSpecFleetobservabilityLoggingConfigResult',
117
+ 'GetFeatureSpecFleetobservabilityLoggingConfigDefaultConfigResult',
118
+ 'GetFeatureSpecFleetobservabilityLoggingConfigFleetScopeLogsConfigResult',
119
+ 'GetFeatureSpecMulticlusteringressResult',
120
+ 'GetFeatureStateResult',
121
+ 'GetFeatureStateStateResult',
91
122
  'GetMembershipBindingStateResult',
92
123
  ]
93
124
 
@@ -3657,6 +3688,1128 @@ class ScopeState(dict):
3657
3688
  return pulumi.get(self, "code")
3658
3689
 
3659
3690
 
3691
+ @pulumi.output_type
3692
+ class GetFeatureFleetDefaultMemberConfigResult(dict):
3693
+ def __init__(__self__, *,
3694
+ configmanagements: Sequence['outputs.GetFeatureFleetDefaultMemberConfigConfigmanagementResult'],
3695
+ meshes: Sequence['outputs.GetFeatureFleetDefaultMemberConfigMeshResult'],
3696
+ policycontrollers: Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerResult']):
3697
+ """
3698
+ :param Sequence['GetFeatureFleetDefaultMemberConfigConfigmanagementArgs'] configmanagements: Config Management spec
3699
+ :param Sequence['GetFeatureFleetDefaultMemberConfigMeshArgs'] meshes: Service Mesh spec
3700
+ :param Sequence['GetFeatureFleetDefaultMemberConfigPolicycontrollerArgs'] policycontrollers: Policy Controller spec
3701
+ """
3702
+ pulumi.set(__self__, "configmanagements", configmanagements)
3703
+ pulumi.set(__self__, "meshes", meshes)
3704
+ pulumi.set(__self__, "policycontrollers", policycontrollers)
3705
+
3706
+ @property
3707
+ @pulumi.getter
3708
+ def configmanagements(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigConfigmanagementResult']:
3709
+ """
3710
+ Config Management spec
3711
+ """
3712
+ return pulumi.get(self, "configmanagements")
3713
+
3714
+ @property
3715
+ @pulumi.getter
3716
+ def meshes(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigMeshResult']:
3717
+ """
3718
+ Service Mesh spec
3719
+ """
3720
+ return pulumi.get(self, "meshes")
3721
+
3722
+ @property
3723
+ @pulumi.getter
3724
+ def policycontrollers(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerResult']:
3725
+ """
3726
+ Policy Controller spec
3727
+ """
3728
+ return pulumi.get(self, "policycontrollers")
3729
+
3730
+
3731
+ @pulumi.output_type
3732
+ class GetFeatureFleetDefaultMemberConfigConfigmanagementResult(dict):
3733
+ def __init__(__self__, *,
3734
+ config_syncs: Sequence['outputs.GetFeatureFleetDefaultMemberConfigConfigmanagementConfigSyncResult'],
3735
+ management: str,
3736
+ version: str):
3737
+ """
3738
+ :param Sequence['GetFeatureFleetDefaultMemberConfigConfigmanagementConfigSyncArgs'] config_syncs: ConfigSync configuration for the cluster
3739
+ :param str management: Set this field to MANAGEMENT_AUTOMATIC to enable Config Sync auto-upgrades, and set this field to MANAGEMENT_MANUAL or MANAGEMENT_UNSPECIFIED to disable Config Sync auto-upgrades. Possible values: ["MANAGEMENT_UNSPECIFIED", "MANAGEMENT_AUTOMATIC", "MANAGEMENT_MANUAL"]
3740
+ :param str version: Version of Config Sync installed
3741
+ """
3742
+ pulumi.set(__self__, "config_syncs", config_syncs)
3743
+ pulumi.set(__self__, "management", management)
3744
+ pulumi.set(__self__, "version", version)
3745
+
3746
+ @property
3747
+ @pulumi.getter(name="configSyncs")
3748
+ def config_syncs(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigConfigmanagementConfigSyncResult']:
3749
+ """
3750
+ ConfigSync configuration for the cluster
3751
+ """
3752
+ return pulumi.get(self, "config_syncs")
3753
+
3754
+ @property
3755
+ @pulumi.getter
3756
+ def management(self) -> str:
3757
+ """
3758
+ Set this field to MANAGEMENT_AUTOMATIC to enable Config Sync auto-upgrades, and set this field to MANAGEMENT_MANUAL or MANAGEMENT_UNSPECIFIED to disable Config Sync auto-upgrades. Possible values: ["MANAGEMENT_UNSPECIFIED", "MANAGEMENT_AUTOMATIC", "MANAGEMENT_MANUAL"]
3759
+ """
3760
+ return pulumi.get(self, "management")
3761
+
3762
+ @property
3763
+ @pulumi.getter
3764
+ def version(self) -> str:
3765
+ """
3766
+ Version of Config Sync installed
3767
+ """
3768
+ return pulumi.get(self, "version")
3769
+
3770
+
3771
+ @pulumi.output_type
3772
+ class GetFeatureFleetDefaultMemberConfigConfigmanagementConfigSyncResult(dict):
3773
+ def __init__(__self__, *,
3774
+ enabled: bool,
3775
+ gits: Sequence['outputs.GetFeatureFleetDefaultMemberConfigConfigmanagementConfigSyncGitResult'],
3776
+ ocis: Sequence['outputs.GetFeatureFleetDefaultMemberConfigConfigmanagementConfigSyncOciResult'],
3777
+ prevent_drift: bool,
3778
+ source_format: str):
3779
+ """
3780
+ :param bool enabled: Enables the installation of ConfigSync. If set to true, ConfigSync resources will be created and the other ConfigSync fields will be applied if exist. If set to false, all other ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync resources will be managed depends on the presence of the git or oci field.
3781
+ :param Sequence['GetFeatureFleetDefaultMemberConfigConfigmanagementConfigSyncGitArgs'] gits: Git repo configuration for the cluster
3782
+ :param Sequence['GetFeatureFleetDefaultMemberConfigConfigmanagementConfigSyncOciArgs'] ocis: OCI repo configuration for the cluster
3783
+ :param bool prevent_drift: Set to true to enable the Config Sync admission webhook to prevent drifts. If set to 'false', disables the Config Sync admission webhook and does not prevent drifts.
3784
+ :param str source_format: Specifies whether the Config Sync Repo is in hierarchical or unstructured mode
3785
+ """
3786
+ pulumi.set(__self__, "enabled", enabled)
3787
+ pulumi.set(__self__, "gits", gits)
3788
+ pulumi.set(__self__, "ocis", ocis)
3789
+ pulumi.set(__self__, "prevent_drift", prevent_drift)
3790
+ pulumi.set(__self__, "source_format", source_format)
3791
+
3792
+ @property
3793
+ @pulumi.getter
3794
+ def enabled(self) -> bool:
3795
+ """
3796
+ Enables the installation of ConfigSync. If set to true, ConfigSync resources will be created and the other ConfigSync fields will be applied if exist. If set to false, all other ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync resources will be managed depends on the presence of the git or oci field.
3797
+ """
3798
+ return pulumi.get(self, "enabled")
3799
+
3800
+ @property
3801
+ @pulumi.getter
3802
+ def gits(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigConfigmanagementConfigSyncGitResult']:
3803
+ """
3804
+ Git repo configuration for the cluster
3805
+ """
3806
+ return pulumi.get(self, "gits")
3807
+
3808
+ @property
3809
+ @pulumi.getter
3810
+ def ocis(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigConfigmanagementConfigSyncOciResult']:
3811
+ """
3812
+ OCI repo configuration for the cluster
3813
+ """
3814
+ return pulumi.get(self, "ocis")
3815
+
3816
+ @property
3817
+ @pulumi.getter(name="preventDrift")
3818
+ def prevent_drift(self) -> bool:
3819
+ """
3820
+ Set to true to enable the Config Sync admission webhook to prevent drifts. If set to 'false', disables the Config Sync admission webhook and does not prevent drifts.
3821
+ """
3822
+ return pulumi.get(self, "prevent_drift")
3823
+
3824
+ @property
3825
+ @pulumi.getter(name="sourceFormat")
3826
+ def source_format(self) -> str:
3827
+ """
3828
+ Specifies whether the Config Sync Repo is in hierarchical or unstructured mode
3829
+ """
3830
+ return pulumi.get(self, "source_format")
3831
+
3832
+
3833
+ @pulumi.output_type
3834
+ class GetFeatureFleetDefaultMemberConfigConfigmanagementConfigSyncGitResult(dict):
3835
+ def __init__(__self__, *,
3836
+ gcp_service_account_email: str,
3837
+ https_proxy: str,
3838
+ policy_dir: str,
3839
+ secret_type: str,
3840
+ sync_branch: str,
3841
+ sync_repo: str,
3842
+ sync_rev: str,
3843
+ sync_wait_secs: str):
3844
+ """
3845
+ :param str gcp_service_account_email: The Google Cloud Service Account Email used for auth when secretType is gcpServiceAccount
3846
+ :param str https_proxy: URL for the HTTPS Proxy to be used when communicating with the Git repo
3847
+ :param str policy_dir: The path within the Git repository that represents the top level of the repo to sync
3848
+ :param str secret_type: Type of secret configured for access to the Git repo
3849
+ :param str sync_branch: The branch of the repository to sync from. Default: master
3850
+ :param str sync_repo: The URL of the Git repository to use as the source of truth
3851
+ :param str sync_rev: Git revision (tag or hash) to check out. Default HEAD
3852
+ :param str sync_wait_secs: Period in seconds between consecutive syncs. Default: 15
3853
+ """
3854
+ pulumi.set(__self__, "gcp_service_account_email", gcp_service_account_email)
3855
+ pulumi.set(__self__, "https_proxy", https_proxy)
3856
+ pulumi.set(__self__, "policy_dir", policy_dir)
3857
+ pulumi.set(__self__, "secret_type", secret_type)
3858
+ pulumi.set(__self__, "sync_branch", sync_branch)
3859
+ pulumi.set(__self__, "sync_repo", sync_repo)
3860
+ pulumi.set(__self__, "sync_rev", sync_rev)
3861
+ pulumi.set(__self__, "sync_wait_secs", sync_wait_secs)
3862
+
3863
+ @property
3864
+ @pulumi.getter(name="gcpServiceAccountEmail")
3865
+ def gcp_service_account_email(self) -> str:
3866
+ """
3867
+ The Google Cloud Service Account Email used for auth when secretType is gcpServiceAccount
3868
+ """
3869
+ return pulumi.get(self, "gcp_service_account_email")
3870
+
3871
+ @property
3872
+ @pulumi.getter(name="httpsProxy")
3873
+ def https_proxy(self) -> str:
3874
+ """
3875
+ URL for the HTTPS Proxy to be used when communicating with the Git repo
3876
+ """
3877
+ return pulumi.get(self, "https_proxy")
3878
+
3879
+ @property
3880
+ @pulumi.getter(name="policyDir")
3881
+ def policy_dir(self) -> str:
3882
+ """
3883
+ The path within the Git repository that represents the top level of the repo to sync
3884
+ """
3885
+ return pulumi.get(self, "policy_dir")
3886
+
3887
+ @property
3888
+ @pulumi.getter(name="secretType")
3889
+ def secret_type(self) -> str:
3890
+ """
3891
+ Type of secret configured for access to the Git repo
3892
+ """
3893
+ return pulumi.get(self, "secret_type")
3894
+
3895
+ @property
3896
+ @pulumi.getter(name="syncBranch")
3897
+ def sync_branch(self) -> str:
3898
+ """
3899
+ The branch of the repository to sync from. Default: master
3900
+ """
3901
+ return pulumi.get(self, "sync_branch")
3902
+
3903
+ @property
3904
+ @pulumi.getter(name="syncRepo")
3905
+ def sync_repo(self) -> str:
3906
+ """
3907
+ The URL of the Git repository to use as the source of truth
3908
+ """
3909
+ return pulumi.get(self, "sync_repo")
3910
+
3911
+ @property
3912
+ @pulumi.getter(name="syncRev")
3913
+ def sync_rev(self) -> str:
3914
+ """
3915
+ Git revision (tag or hash) to check out. Default HEAD
3916
+ """
3917
+ return pulumi.get(self, "sync_rev")
3918
+
3919
+ @property
3920
+ @pulumi.getter(name="syncWaitSecs")
3921
+ def sync_wait_secs(self) -> str:
3922
+ """
3923
+ Period in seconds between consecutive syncs. Default: 15
3924
+ """
3925
+ return pulumi.get(self, "sync_wait_secs")
3926
+
3927
+
3928
+ @pulumi.output_type
3929
+ class GetFeatureFleetDefaultMemberConfigConfigmanagementConfigSyncOciResult(dict):
3930
+ def __init__(__self__, *,
3931
+ gcp_service_account_email: str,
3932
+ policy_dir: str,
3933
+ secret_type: str,
3934
+ sync_repo: str,
3935
+ sync_wait_secs: str,
3936
+ version: str):
3937
+ """
3938
+ :param str gcp_service_account_email: The Google Cloud Service Account Email used for auth when secretType is gcpServiceAccount
3939
+ :param str policy_dir: The absolute path of the directory that contains the local resources. Default: the root directory of the image
3940
+ :param str secret_type: Type of secret configured for access to the Git repo
3941
+ :param str sync_repo: The OCI image repository URL for the package to sync from
3942
+ :param str sync_wait_secs: Period in seconds between consecutive syncs. Default: 15
3943
+ :param str version: Version of Config Sync installed
3944
+ """
3945
+ pulumi.set(__self__, "gcp_service_account_email", gcp_service_account_email)
3946
+ pulumi.set(__self__, "policy_dir", policy_dir)
3947
+ pulumi.set(__self__, "secret_type", secret_type)
3948
+ pulumi.set(__self__, "sync_repo", sync_repo)
3949
+ pulumi.set(__self__, "sync_wait_secs", sync_wait_secs)
3950
+ pulumi.set(__self__, "version", version)
3951
+
3952
+ @property
3953
+ @pulumi.getter(name="gcpServiceAccountEmail")
3954
+ def gcp_service_account_email(self) -> str:
3955
+ """
3956
+ The Google Cloud Service Account Email used for auth when secretType is gcpServiceAccount
3957
+ """
3958
+ return pulumi.get(self, "gcp_service_account_email")
3959
+
3960
+ @property
3961
+ @pulumi.getter(name="policyDir")
3962
+ def policy_dir(self) -> str:
3963
+ """
3964
+ The absolute path of the directory that contains the local resources. Default: the root directory of the image
3965
+ """
3966
+ return pulumi.get(self, "policy_dir")
3967
+
3968
+ @property
3969
+ @pulumi.getter(name="secretType")
3970
+ def secret_type(self) -> str:
3971
+ """
3972
+ Type of secret configured for access to the Git repo
3973
+ """
3974
+ return pulumi.get(self, "secret_type")
3975
+
3976
+ @property
3977
+ @pulumi.getter(name="syncRepo")
3978
+ def sync_repo(self) -> str:
3979
+ """
3980
+ The OCI image repository URL for the package to sync from
3981
+ """
3982
+ return pulumi.get(self, "sync_repo")
3983
+
3984
+ @property
3985
+ @pulumi.getter(name="syncWaitSecs")
3986
+ def sync_wait_secs(self) -> str:
3987
+ """
3988
+ Period in seconds between consecutive syncs. Default: 15
3989
+ """
3990
+ return pulumi.get(self, "sync_wait_secs")
3991
+
3992
+ @property
3993
+ @pulumi.getter
3994
+ def version(self) -> str:
3995
+ """
3996
+ Version of Config Sync installed
3997
+ """
3998
+ return pulumi.get(self, "version")
3999
+
4000
+
4001
+ @pulumi.output_type
4002
+ class GetFeatureFleetDefaultMemberConfigMeshResult(dict):
4003
+ def __init__(__self__, *,
4004
+ management: str):
4005
+ """
4006
+ :param str management: Whether to automatically manage Service Mesh Possible values: ["MANAGEMENT_UNSPECIFIED", "MANAGEMENT_AUTOMATIC", "MANAGEMENT_MANUAL"]
4007
+ """
4008
+ pulumi.set(__self__, "management", management)
4009
+
4010
+ @property
4011
+ @pulumi.getter
4012
+ def management(self) -> str:
4013
+ """
4014
+ Whether to automatically manage Service Mesh Possible values: ["MANAGEMENT_UNSPECIFIED", "MANAGEMENT_AUTOMATIC", "MANAGEMENT_MANUAL"]
4015
+ """
4016
+ return pulumi.get(self, "management")
4017
+
4018
+
4019
+ @pulumi.output_type
4020
+ class GetFeatureFleetDefaultMemberConfigPolicycontrollerResult(dict):
4021
+ def __init__(__self__, *,
4022
+ policy_controller_hub_configs: Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigResult'],
4023
+ version: str):
4024
+ """
4025
+ :param Sequence['GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigArgs'] policy_controller_hub_configs: Configuration of Policy Controller
4026
+ :param str version: Configures the version of Policy Controller
4027
+ """
4028
+ pulumi.set(__self__, "policy_controller_hub_configs", policy_controller_hub_configs)
4029
+ pulumi.set(__self__, "version", version)
4030
+
4031
+ @property
4032
+ @pulumi.getter(name="policyControllerHubConfigs")
4033
+ def policy_controller_hub_configs(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigResult']:
4034
+ """
4035
+ Configuration of Policy Controller
4036
+ """
4037
+ return pulumi.get(self, "policy_controller_hub_configs")
4038
+
4039
+ @property
4040
+ @pulumi.getter
4041
+ def version(self) -> str:
4042
+ """
4043
+ Configures the version of Policy Controller
4044
+ """
4045
+ return pulumi.get(self, "version")
4046
+
4047
+
4048
+ @pulumi.output_type
4049
+ class GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigResult(dict):
4050
+ def __init__(__self__, *,
4051
+ audit_interval_seconds: int,
4052
+ constraint_violation_limit: int,
4053
+ deployment_configs: Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigResult'],
4054
+ exemptable_namespaces: Sequence[str],
4055
+ install_spec: str,
4056
+ log_denies_enabled: bool,
4057
+ monitorings: Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigMonitoringResult'],
4058
+ mutation_enabled: bool,
4059
+ policy_contents: Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentResult'],
4060
+ referential_rules_enabled: bool):
4061
+ """
4062
+ :param int audit_interval_seconds: Interval for Policy Controller Audit scans (in seconds). When set to 0, this disables audit functionality altogether.
4063
+ :param 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.
4064
+ :param Sequence['GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigArgs'] deployment_configs: Map of deployment configs to deployments ("admission", "audit", "mutation").
4065
+ :param Sequence[str] exemptable_namespaces: The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster.
4066
+ :param str install_spec: Configures the mode of the Policy Controller installation Possible values: ["INSTALL_SPEC_UNSPECIFIED", "INSTALL_SPEC_NOT_INSTALLED", "INSTALL_SPEC_ENABLED", "INSTALL_SPEC_SUSPENDED", "INSTALL_SPEC_DETACHED"]
4067
+ :param bool log_denies_enabled: Logs all denies and dry run failures.
4068
+ :param Sequence['GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigMonitoringArgs'] monitorings: Monitoring specifies the configuration of monitoring Policy Controller.
4069
+ :param bool mutation_enabled: Enables the ability to mutate resources using Policy Controller.
4070
+ :param Sequence['GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentArgs'] policy_contents: Specifies the desired policy content on the cluster.
4071
+ :param bool referential_rules_enabled: Enables the ability to use Constraint Templates that reference to objects other than the object currently being evaluated.
4072
+ """
4073
+ pulumi.set(__self__, "audit_interval_seconds", audit_interval_seconds)
4074
+ pulumi.set(__self__, "constraint_violation_limit", constraint_violation_limit)
4075
+ pulumi.set(__self__, "deployment_configs", deployment_configs)
4076
+ pulumi.set(__self__, "exemptable_namespaces", exemptable_namespaces)
4077
+ pulumi.set(__self__, "install_spec", install_spec)
4078
+ pulumi.set(__self__, "log_denies_enabled", log_denies_enabled)
4079
+ pulumi.set(__self__, "monitorings", monitorings)
4080
+ pulumi.set(__self__, "mutation_enabled", mutation_enabled)
4081
+ pulumi.set(__self__, "policy_contents", policy_contents)
4082
+ pulumi.set(__self__, "referential_rules_enabled", referential_rules_enabled)
4083
+
4084
+ @property
4085
+ @pulumi.getter(name="auditIntervalSeconds")
4086
+ def audit_interval_seconds(self) -> int:
4087
+ """
4088
+ Interval for Policy Controller Audit scans (in seconds). When set to 0, this disables audit functionality altogether.
4089
+ """
4090
+ return pulumi.get(self, "audit_interval_seconds")
4091
+
4092
+ @property
4093
+ @pulumi.getter(name="constraintViolationLimit")
4094
+ def constraint_violation_limit(self) -> int:
4095
+ """
4096
+ The maximum number of audit violations to be stored in a constraint. If not set, the internal default of 20 will be used.
4097
+ """
4098
+ return pulumi.get(self, "constraint_violation_limit")
4099
+
4100
+ @property
4101
+ @pulumi.getter(name="deploymentConfigs")
4102
+ def deployment_configs(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigResult']:
4103
+ """
4104
+ Map of deployment configs to deployments ("admission", "audit", "mutation").
4105
+ """
4106
+ return pulumi.get(self, "deployment_configs")
4107
+
4108
+ @property
4109
+ @pulumi.getter(name="exemptableNamespaces")
4110
+ def exemptable_namespaces(self) -> Sequence[str]:
4111
+ """
4112
+ The set of namespaces that are excluded from Policy Controller checks. Namespaces do not need to currently exist on the cluster.
4113
+ """
4114
+ return pulumi.get(self, "exemptable_namespaces")
4115
+
4116
+ @property
4117
+ @pulumi.getter(name="installSpec")
4118
+ def install_spec(self) -> str:
4119
+ """
4120
+ Configures the mode of the Policy Controller installation Possible values: ["INSTALL_SPEC_UNSPECIFIED", "INSTALL_SPEC_NOT_INSTALLED", "INSTALL_SPEC_ENABLED", "INSTALL_SPEC_SUSPENDED", "INSTALL_SPEC_DETACHED"]
4121
+ """
4122
+ return pulumi.get(self, "install_spec")
4123
+
4124
+ @property
4125
+ @pulumi.getter(name="logDeniesEnabled")
4126
+ def log_denies_enabled(self) -> bool:
4127
+ """
4128
+ Logs all denies and dry run failures.
4129
+ """
4130
+ return pulumi.get(self, "log_denies_enabled")
4131
+
4132
+ @property
4133
+ @pulumi.getter
4134
+ def monitorings(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigMonitoringResult']:
4135
+ """
4136
+ Monitoring specifies the configuration of monitoring Policy Controller.
4137
+ """
4138
+ return pulumi.get(self, "monitorings")
4139
+
4140
+ @property
4141
+ @pulumi.getter(name="mutationEnabled")
4142
+ def mutation_enabled(self) -> bool:
4143
+ """
4144
+ Enables the ability to mutate resources using Policy Controller.
4145
+ """
4146
+ return pulumi.get(self, "mutation_enabled")
4147
+
4148
+ @property
4149
+ @pulumi.getter(name="policyContents")
4150
+ def policy_contents(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentResult']:
4151
+ """
4152
+ Specifies the desired policy content on the cluster.
4153
+ """
4154
+ return pulumi.get(self, "policy_contents")
4155
+
4156
+ @property
4157
+ @pulumi.getter(name="referentialRulesEnabled")
4158
+ def referential_rules_enabled(self) -> bool:
4159
+ """
4160
+ Enables the ability to use Constraint Templates that reference to objects other than the object currently being evaluated.
4161
+ """
4162
+ return pulumi.get(self, "referential_rules_enabled")
4163
+
4164
+
4165
+ @pulumi.output_type
4166
+ class GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigResult(dict):
4167
+ def __init__(__self__, *,
4168
+ component: str,
4169
+ container_resources: Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourceResult'],
4170
+ pod_affinity: str,
4171
+ pod_tolerations: Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationResult'],
4172
+ replica_count: int):
4173
+ """
4174
+ :param Sequence['GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourceArgs'] container_resources: Container resource requirements.
4175
+ :param str pod_affinity: Pod affinity configuration. Possible values: ["AFFINITY_UNSPECIFIED", "NO_AFFINITY", "ANTI_AFFINITY"]
4176
+ :param Sequence['GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationArgs'] pod_tolerations: Pod tolerations of node taints.
4177
+ :param int replica_count: Pod replica count.
4178
+ """
4179
+ pulumi.set(__self__, "component", component)
4180
+ pulumi.set(__self__, "container_resources", container_resources)
4181
+ pulumi.set(__self__, "pod_affinity", pod_affinity)
4182
+ pulumi.set(__self__, "pod_tolerations", pod_tolerations)
4183
+ pulumi.set(__self__, "replica_count", replica_count)
4184
+
4185
+ @property
4186
+ @pulumi.getter
4187
+ def component(self) -> str:
4188
+ return pulumi.get(self, "component")
4189
+
4190
+ @property
4191
+ @pulumi.getter(name="containerResources")
4192
+ def container_resources(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourceResult']:
4193
+ """
4194
+ Container resource requirements.
4195
+ """
4196
+ return pulumi.get(self, "container_resources")
4197
+
4198
+ @property
4199
+ @pulumi.getter(name="podAffinity")
4200
+ def pod_affinity(self) -> str:
4201
+ """
4202
+ Pod affinity configuration. Possible values: ["AFFINITY_UNSPECIFIED", "NO_AFFINITY", "ANTI_AFFINITY"]
4203
+ """
4204
+ return pulumi.get(self, "pod_affinity")
4205
+
4206
+ @property
4207
+ @pulumi.getter(name="podTolerations")
4208
+ def pod_tolerations(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationResult']:
4209
+ """
4210
+ Pod tolerations of node taints.
4211
+ """
4212
+ return pulumi.get(self, "pod_tolerations")
4213
+
4214
+ @property
4215
+ @pulumi.getter(name="replicaCount")
4216
+ def replica_count(self) -> int:
4217
+ """
4218
+ Pod replica count.
4219
+ """
4220
+ return pulumi.get(self, "replica_count")
4221
+
4222
+
4223
+ @pulumi.output_type
4224
+ class GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourceResult(dict):
4225
+ def __init__(__self__, *,
4226
+ limits: Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourceLimitResult'],
4227
+ requests: Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourceRequestResult']):
4228
+ """
4229
+ :param Sequence['GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourceLimitArgs'] limits: Limits describes the maximum amount of compute resources allowed for use by the running container.
4230
+ :param Sequence['GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourceRequestArgs'] requests: Requests describes the amount of compute resources reserved for the container by the kube-scheduler.
4231
+ """
4232
+ pulumi.set(__self__, "limits", limits)
4233
+ pulumi.set(__self__, "requests", requests)
4234
+
4235
+ @property
4236
+ @pulumi.getter
4237
+ def limits(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourceLimitResult']:
4238
+ """
4239
+ Limits describes the maximum amount of compute resources allowed for use by the running container.
4240
+ """
4241
+ return pulumi.get(self, "limits")
4242
+
4243
+ @property
4244
+ @pulumi.getter
4245
+ def requests(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourceRequestResult']:
4246
+ """
4247
+ Requests describes the amount of compute resources reserved for the container by the kube-scheduler.
4248
+ """
4249
+ return pulumi.get(self, "requests")
4250
+
4251
+
4252
+ @pulumi.output_type
4253
+ class GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourceLimitResult(dict):
4254
+ def __init__(__self__, *,
4255
+ cpu: str,
4256
+ memory: str):
4257
+ """
4258
+ :param str cpu: CPU requirement expressed in Kubernetes resource units.
4259
+ :param str memory: Memory requirement expressed in Kubernetes resource units.
4260
+ """
4261
+ pulumi.set(__self__, "cpu", cpu)
4262
+ pulumi.set(__self__, "memory", memory)
4263
+
4264
+ @property
4265
+ @pulumi.getter
4266
+ def cpu(self) -> str:
4267
+ """
4268
+ CPU requirement expressed in Kubernetes resource units.
4269
+ """
4270
+ return pulumi.get(self, "cpu")
4271
+
4272
+ @property
4273
+ @pulumi.getter
4274
+ def memory(self) -> str:
4275
+ """
4276
+ Memory requirement expressed in Kubernetes resource units.
4277
+ """
4278
+ return pulumi.get(self, "memory")
4279
+
4280
+
4281
+ @pulumi.output_type
4282
+ class GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigContainerResourceRequestResult(dict):
4283
+ def __init__(__self__, *,
4284
+ cpu: str,
4285
+ memory: str):
4286
+ """
4287
+ :param str cpu: CPU requirement expressed in Kubernetes resource units.
4288
+ :param str memory: Memory requirement expressed in Kubernetes resource units.
4289
+ """
4290
+ pulumi.set(__self__, "cpu", cpu)
4291
+ pulumi.set(__self__, "memory", memory)
4292
+
4293
+ @property
4294
+ @pulumi.getter
4295
+ def cpu(self) -> str:
4296
+ """
4297
+ CPU requirement expressed in Kubernetes resource units.
4298
+ """
4299
+ return pulumi.get(self, "cpu")
4300
+
4301
+ @property
4302
+ @pulumi.getter
4303
+ def memory(self) -> str:
4304
+ """
4305
+ Memory requirement expressed in Kubernetes resource units.
4306
+ """
4307
+ return pulumi.get(self, "memory")
4308
+
4309
+
4310
+ @pulumi.output_type
4311
+ class GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigDeploymentConfigPodTolerationResult(dict):
4312
+ def __init__(__self__, *,
4313
+ effect: str,
4314
+ key: str,
4315
+ operator: str,
4316
+ value: str):
4317
+ """
4318
+ :param str effect: Matches a taint effect.
4319
+ :param str key: Matches a taint key (not necessarily unique).
4320
+ :param str operator: Matches a taint operator.
4321
+ :param str value: Matches a taint value.
4322
+ """
4323
+ pulumi.set(__self__, "effect", effect)
4324
+ pulumi.set(__self__, "key", key)
4325
+ pulumi.set(__self__, "operator", operator)
4326
+ pulumi.set(__self__, "value", value)
4327
+
4328
+ @property
4329
+ @pulumi.getter
4330
+ def effect(self) -> str:
4331
+ """
4332
+ Matches a taint effect.
4333
+ """
4334
+ return pulumi.get(self, "effect")
4335
+
4336
+ @property
4337
+ @pulumi.getter
4338
+ def key(self) -> str:
4339
+ """
4340
+ Matches a taint key (not necessarily unique).
4341
+ """
4342
+ return pulumi.get(self, "key")
4343
+
4344
+ @property
4345
+ @pulumi.getter
4346
+ def operator(self) -> str:
4347
+ """
4348
+ Matches a taint operator.
4349
+ """
4350
+ return pulumi.get(self, "operator")
4351
+
4352
+ @property
4353
+ @pulumi.getter
4354
+ def value(self) -> str:
4355
+ """
4356
+ Matches a taint value.
4357
+ """
4358
+ return pulumi.get(self, "value")
4359
+
4360
+
4361
+ @pulumi.output_type
4362
+ class GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigMonitoringResult(dict):
4363
+ def __init__(__self__, *,
4364
+ backends: Sequence[str]):
4365
+ """
4366
+ :param Sequence[str] backends: Specifies the list of backends Policy Controller will export to. An empty list would effectively disable metrics export. Possible values: ["MONITORING_BACKEND_UNSPECIFIED", "PROMETHEUS", "CLOUD_MONITORING"]
4367
+ """
4368
+ pulumi.set(__self__, "backends", backends)
4369
+
4370
+ @property
4371
+ @pulumi.getter
4372
+ def backends(self) -> Sequence[str]:
4373
+ """
4374
+ Specifies the list of backends Policy Controller will export to. An empty list would effectively disable metrics export. Possible values: ["MONITORING_BACKEND_UNSPECIFIED", "PROMETHEUS", "CLOUD_MONITORING"]
4375
+ """
4376
+ return pulumi.get(self, "backends")
4377
+
4378
+
4379
+ @pulumi.output_type
4380
+ class GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentResult(dict):
4381
+ def __init__(__self__, *,
4382
+ bundles: Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleResult'],
4383
+ template_libraries: Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryResult']):
4384
+ """
4385
+ :param Sequence['GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleArgs'] bundles: Configures which bundles to install and their corresponding install specs.
4386
+ :param Sequence['GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryArgs'] template_libraries: Configures the installation of the Template Library.
4387
+ """
4388
+ pulumi.set(__self__, "bundles", bundles)
4389
+ pulumi.set(__self__, "template_libraries", template_libraries)
4390
+
4391
+ @property
4392
+ @pulumi.getter
4393
+ def bundles(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleResult']:
4394
+ """
4395
+ Configures which bundles to install and their corresponding install specs.
4396
+ """
4397
+ return pulumi.get(self, "bundles")
4398
+
4399
+ @property
4400
+ @pulumi.getter(name="templateLibraries")
4401
+ def template_libraries(self) -> Sequence['outputs.GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryResult']:
4402
+ """
4403
+ Configures the installation of the Template Library.
4404
+ """
4405
+ return pulumi.get(self, "template_libraries")
4406
+
4407
+
4408
+ @pulumi.output_type
4409
+ class GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentBundleResult(dict):
4410
+ def __init__(__self__, *,
4411
+ bundle: str,
4412
+ exempted_namespaces: Sequence[str]):
4413
+ """
4414
+ :param Sequence[str] exempted_namespaces: The set of namespaces to be exempted from the bundle.
4415
+ """
4416
+ pulumi.set(__self__, "bundle", bundle)
4417
+ pulumi.set(__self__, "exempted_namespaces", exempted_namespaces)
4418
+
4419
+ @property
4420
+ @pulumi.getter
4421
+ def bundle(self) -> str:
4422
+ return pulumi.get(self, "bundle")
4423
+
4424
+ @property
4425
+ @pulumi.getter(name="exemptedNamespaces")
4426
+ def exempted_namespaces(self) -> Sequence[str]:
4427
+ """
4428
+ The set of namespaces to be exempted from the bundle.
4429
+ """
4430
+ return pulumi.get(self, "exempted_namespaces")
4431
+
4432
+
4433
+ @pulumi.output_type
4434
+ class GetFeatureFleetDefaultMemberConfigPolicycontrollerPolicyControllerHubConfigPolicyContentTemplateLibraryResult(dict):
4435
+ def __init__(__self__, *,
4436
+ installation: str):
4437
+ """
4438
+ :param str installation: Configures the manner in which the template library is installed on the cluster. Possible values: ["INSTALLATION_UNSPECIFIED", "NOT_INSTALLED", "ALL"]
4439
+ """
4440
+ pulumi.set(__self__, "installation", installation)
4441
+
4442
+ @property
4443
+ @pulumi.getter
4444
+ def installation(self) -> str:
4445
+ """
4446
+ Configures the manner in which the template library is installed on the cluster. Possible values: ["INSTALLATION_UNSPECIFIED", "NOT_INSTALLED", "ALL"]
4447
+ """
4448
+ return pulumi.get(self, "installation")
4449
+
4450
+
4451
+ @pulumi.output_type
4452
+ class GetFeatureResourceStateResult(dict):
4453
+ def __init__(__self__, *,
4454
+ has_resources: bool,
4455
+ state: str):
4456
+ """
4457
+ :param bool has_resources: Whether this Feature has outstanding resources that need to be cleaned up before it can be disabled.
4458
+ :param str state: The current state of the Feature resource in the Hub API.
4459
+ """
4460
+ pulumi.set(__self__, "has_resources", has_resources)
4461
+ pulumi.set(__self__, "state", state)
4462
+
4463
+ @property
4464
+ @pulumi.getter(name="hasResources")
4465
+ def has_resources(self) -> bool:
4466
+ """
4467
+ Whether this Feature has outstanding resources that need to be cleaned up before it can be disabled.
4468
+ """
4469
+ return pulumi.get(self, "has_resources")
4470
+
4471
+ @property
4472
+ @pulumi.getter
4473
+ def state(self) -> str:
4474
+ """
4475
+ The current state of the Feature resource in the Hub API.
4476
+ """
4477
+ return pulumi.get(self, "state")
4478
+
4479
+
4480
+ @pulumi.output_type
4481
+ class GetFeatureSpecResult(dict):
4482
+ def __init__(__self__, *,
4483
+ clusterupgrades: Sequence['outputs.GetFeatureSpecClusterupgradeResult'],
4484
+ fleetobservabilities: Sequence['outputs.GetFeatureSpecFleetobservabilityResult'],
4485
+ multiclusteringresses: Sequence['outputs.GetFeatureSpecMulticlusteringressResult']):
4486
+ """
4487
+ :param Sequence['GetFeatureSpecClusterupgradeArgs'] clusterupgrades: Clusterupgrade feature spec.
4488
+ :param Sequence['GetFeatureSpecFleetobservabilityArgs'] fleetobservabilities: Fleet Observability feature spec.
4489
+ :param Sequence['GetFeatureSpecMulticlusteringressArgs'] multiclusteringresses: Multicluster Ingress-specific spec.
4490
+ """
4491
+ pulumi.set(__self__, "clusterupgrades", clusterupgrades)
4492
+ pulumi.set(__self__, "fleetobservabilities", fleetobservabilities)
4493
+ pulumi.set(__self__, "multiclusteringresses", multiclusteringresses)
4494
+
4495
+ @property
4496
+ @pulumi.getter
4497
+ def clusterupgrades(self) -> Sequence['outputs.GetFeatureSpecClusterupgradeResult']:
4498
+ """
4499
+ Clusterupgrade feature spec.
4500
+ """
4501
+ return pulumi.get(self, "clusterupgrades")
4502
+
4503
+ @property
4504
+ @pulumi.getter
4505
+ def fleetobservabilities(self) -> Sequence['outputs.GetFeatureSpecFleetobservabilityResult']:
4506
+ """
4507
+ Fleet Observability feature spec.
4508
+ """
4509
+ return pulumi.get(self, "fleetobservabilities")
4510
+
4511
+ @property
4512
+ @pulumi.getter
4513
+ def multiclusteringresses(self) -> Sequence['outputs.GetFeatureSpecMulticlusteringressResult']:
4514
+ """
4515
+ Multicluster Ingress-specific spec.
4516
+ """
4517
+ return pulumi.get(self, "multiclusteringresses")
4518
+
4519
+
4520
+ @pulumi.output_type
4521
+ class GetFeatureSpecClusterupgradeResult(dict):
4522
+ def __init__(__self__, *,
4523
+ gke_upgrade_overrides: Sequence['outputs.GetFeatureSpecClusterupgradeGkeUpgradeOverrideResult'],
4524
+ post_conditions: Sequence['outputs.GetFeatureSpecClusterupgradePostConditionResult'],
4525
+ upstream_fleets: Sequence[str]):
4526
+ """
4527
+ :param Sequence['GetFeatureSpecClusterupgradeGkeUpgradeOverrideArgs'] gke_upgrade_overrides: Configuration overrides for individual upgrades.
4528
+ :param Sequence['GetFeatureSpecClusterupgradePostConditionArgs'] post_conditions: Post conditions to override for the specified upgrade.
4529
+ :param Sequence[str] upstream_fleets: Specified if other fleet should be considered as a source of upgrades. Currently, at most one upstream fleet is allowed. The fleet name should be either fleet project number or id.
4530
+ """
4531
+ pulumi.set(__self__, "gke_upgrade_overrides", gke_upgrade_overrides)
4532
+ pulumi.set(__self__, "post_conditions", post_conditions)
4533
+ pulumi.set(__self__, "upstream_fleets", upstream_fleets)
4534
+
4535
+ @property
4536
+ @pulumi.getter(name="gkeUpgradeOverrides")
4537
+ def gke_upgrade_overrides(self) -> Sequence['outputs.GetFeatureSpecClusterupgradeGkeUpgradeOverrideResult']:
4538
+ """
4539
+ Configuration overrides for individual upgrades.
4540
+ """
4541
+ return pulumi.get(self, "gke_upgrade_overrides")
4542
+
4543
+ @property
4544
+ @pulumi.getter(name="postConditions")
4545
+ def post_conditions(self) -> Sequence['outputs.GetFeatureSpecClusterupgradePostConditionResult']:
4546
+ """
4547
+ Post conditions to override for the specified upgrade.
4548
+ """
4549
+ return pulumi.get(self, "post_conditions")
4550
+
4551
+ @property
4552
+ @pulumi.getter(name="upstreamFleets")
4553
+ def upstream_fleets(self) -> Sequence[str]:
4554
+ """
4555
+ Specified if other fleet should be considered as a source of upgrades. Currently, at most one upstream fleet is allowed. The fleet name should be either fleet project number or id.
4556
+ """
4557
+ return pulumi.get(self, "upstream_fleets")
4558
+
4559
+
4560
+ @pulumi.output_type
4561
+ class GetFeatureSpecClusterupgradeGkeUpgradeOverrideResult(dict):
4562
+ def __init__(__self__, *,
4563
+ post_conditions: Sequence['outputs.GetFeatureSpecClusterupgradeGkeUpgradeOverridePostConditionResult'],
4564
+ upgrades: Sequence['outputs.GetFeatureSpecClusterupgradeGkeUpgradeOverrideUpgradeResult']):
4565
+ """
4566
+ :param Sequence['GetFeatureSpecClusterupgradeGkeUpgradeOverridePostConditionArgs'] post_conditions: Post conditions to override for the specified upgrade.
4567
+ :param Sequence['GetFeatureSpecClusterupgradeGkeUpgradeOverrideUpgradeArgs'] upgrades: Which upgrade to override.
4568
+ """
4569
+ pulumi.set(__self__, "post_conditions", post_conditions)
4570
+ pulumi.set(__self__, "upgrades", upgrades)
4571
+
4572
+ @property
4573
+ @pulumi.getter(name="postConditions")
4574
+ def post_conditions(self) -> Sequence['outputs.GetFeatureSpecClusterupgradeGkeUpgradeOverridePostConditionResult']:
4575
+ """
4576
+ Post conditions to override for the specified upgrade.
4577
+ """
4578
+ return pulumi.get(self, "post_conditions")
4579
+
4580
+ @property
4581
+ @pulumi.getter
4582
+ def upgrades(self) -> Sequence['outputs.GetFeatureSpecClusterupgradeGkeUpgradeOverrideUpgradeResult']:
4583
+ """
4584
+ Which upgrade to override.
4585
+ """
4586
+ return pulumi.get(self, "upgrades")
4587
+
4588
+
4589
+ @pulumi.output_type
4590
+ class GetFeatureSpecClusterupgradeGkeUpgradeOverridePostConditionResult(dict):
4591
+ def __init__(__self__, *,
4592
+ soaking: str):
4593
+ """
4594
+ :param str soaking: Amount of time to "soak" after a rollout has been finished before marking it COMPLETE. Cannot exceed 30 days.
4595
+ """
4596
+ pulumi.set(__self__, "soaking", soaking)
4597
+
4598
+ @property
4599
+ @pulumi.getter
4600
+ def soaking(self) -> str:
4601
+ """
4602
+ Amount of time to "soak" after a rollout has been finished before marking it COMPLETE. Cannot exceed 30 days.
4603
+ """
4604
+ return pulumi.get(self, "soaking")
4605
+
4606
+
4607
+ @pulumi.output_type
4608
+ class GetFeatureSpecClusterupgradeGkeUpgradeOverrideUpgradeResult(dict):
4609
+ def __init__(__self__, *,
4610
+ name: str,
4611
+ version: str):
4612
+ """
4613
+ :param str name: Name of the upgrade, e.g., "k8s_control_plane". It should be a valid upgrade name. It must not exceet 99 characters.
4614
+ :param str version: Version of the upgrade, e.g., "1.22.1-gke.100". It should be a valid version. It must not exceet 99 characters.
4615
+ """
4616
+ pulumi.set(__self__, "name", name)
4617
+ pulumi.set(__self__, "version", version)
4618
+
4619
+ @property
4620
+ @pulumi.getter
4621
+ def name(self) -> str:
4622
+ """
4623
+ Name of the upgrade, e.g., "k8s_control_plane". It should be a valid upgrade name. It must not exceet 99 characters.
4624
+ """
4625
+ return pulumi.get(self, "name")
4626
+
4627
+ @property
4628
+ @pulumi.getter
4629
+ def version(self) -> str:
4630
+ """
4631
+ Version of the upgrade, e.g., "1.22.1-gke.100". It should be a valid version. It must not exceet 99 characters.
4632
+ """
4633
+ return pulumi.get(self, "version")
4634
+
4635
+
4636
+ @pulumi.output_type
4637
+ class GetFeatureSpecClusterupgradePostConditionResult(dict):
4638
+ def __init__(__self__, *,
4639
+ soaking: str):
4640
+ """
4641
+ :param str soaking: Amount of time to "soak" after a rollout has been finished before marking it COMPLETE. Cannot exceed 30 days.
4642
+ """
4643
+ pulumi.set(__self__, "soaking", soaking)
4644
+
4645
+ @property
4646
+ @pulumi.getter
4647
+ def soaking(self) -> str:
4648
+ """
4649
+ Amount of time to "soak" after a rollout has been finished before marking it COMPLETE. Cannot exceed 30 days.
4650
+ """
4651
+ return pulumi.get(self, "soaking")
4652
+
4653
+
4654
+ @pulumi.output_type
4655
+ class GetFeatureSpecFleetobservabilityResult(dict):
4656
+ def __init__(__self__, *,
4657
+ logging_configs: Sequence['outputs.GetFeatureSpecFleetobservabilityLoggingConfigResult']):
4658
+ """
4659
+ :param Sequence['GetFeatureSpecFleetobservabilityLoggingConfigArgs'] logging_configs: Specified if fleet logging feature is enabled for the entire fleet. If UNSPECIFIED, fleet logging feature is disabled for the entire fleet.
4660
+ """
4661
+ pulumi.set(__self__, "logging_configs", logging_configs)
4662
+
4663
+ @property
4664
+ @pulumi.getter(name="loggingConfigs")
4665
+ def logging_configs(self) -> Sequence['outputs.GetFeatureSpecFleetobservabilityLoggingConfigResult']:
4666
+ """
4667
+ Specified if fleet logging feature is enabled for the entire fleet. If UNSPECIFIED, fleet logging feature is disabled for the entire fleet.
4668
+ """
4669
+ return pulumi.get(self, "logging_configs")
4670
+
4671
+
4672
+ @pulumi.output_type
4673
+ class GetFeatureSpecFleetobservabilityLoggingConfigResult(dict):
4674
+ def __init__(__self__, *,
4675
+ default_configs: Sequence['outputs.GetFeatureSpecFleetobservabilityLoggingConfigDefaultConfigResult'],
4676
+ fleet_scope_logs_configs: Sequence['outputs.GetFeatureSpecFleetobservabilityLoggingConfigFleetScopeLogsConfigResult']):
4677
+ """
4678
+ :param Sequence['GetFeatureSpecFleetobservabilityLoggingConfigDefaultConfigArgs'] default_configs: Specified if applying the default routing config to logs not specified in other configs.
4679
+ :param Sequence['GetFeatureSpecFleetobservabilityLoggingConfigFleetScopeLogsConfigArgs'] fleet_scope_logs_configs: Specified if applying the routing config to all logs for all fleet scopes.
4680
+ """
4681
+ pulumi.set(__self__, "default_configs", default_configs)
4682
+ pulumi.set(__self__, "fleet_scope_logs_configs", fleet_scope_logs_configs)
4683
+
4684
+ @property
4685
+ @pulumi.getter(name="defaultConfigs")
4686
+ def default_configs(self) -> Sequence['outputs.GetFeatureSpecFleetobservabilityLoggingConfigDefaultConfigResult']:
4687
+ """
4688
+ Specified if applying the default routing config to logs not specified in other configs.
4689
+ """
4690
+ return pulumi.get(self, "default_configs")
4691
+
4692
+ @property
4693
+ @pulumi.getter(name="fleetScopeLogsConfigs")
4694
+ def fleet_scope_logs_configs(self) -> Sequence['outputs.GetFeatureSpecFleetobservabilityLoggingConfigFleetScopeLogsConfigResult']:
4695
+ """
4696
+ Specified if applying the routing config to all logs for all fleet scopes.
4697
+ """
4698
+ return pulumi.get(self, "fleet_scope_logs_configs")
4699
+
4700
+
4701
+ @pulumi.output_type
4702
+ class GetFeatureSpecFleetobservabilityLoggingConfigDefaultConfigResult(dict):
4703
+ def __init__(__self__, *,
4704
+ mode: str):
4705
+ """
4706
+ :param str mode: Specified if fleet logging feature is enabled. Possible values: ["MODE_UNSPECIFIED", "COPY", "MOVE"]
4707
+ """
4708
+ pulumi.set(__self__, "mode", mode)
4709
+
4710
+ @property
4711
+ @pulumi.getter
4712
+ def mode(self) -> str:
4713
+ """
4714
+ Specified if fleet logging feature is enabled. Possible values: ["MODE_UNSPECIFIED", "COPY", "MOVE"]
4715
+ """
4716
+ return pulumi.get(self, "mode")
4717
+
4718
+
4719
+ @pulumi.output_type
4720
+ class GetFeatureSpecFleetobservabilityLoggingConfigFleetScopeLogsConfigResult(dict):
4721
+ def __init__(__self__, *,
4722
+ mode: str):
4723
+ """
4724
+ :param str mode: Specified if fleet logging feature is enabled. Possible values: ["MODE_UNSPECIFIED", "COPY", "MOVE"]
4725
+ """
4726
+ pulumi.set(__self__, "mode", mode)
4727
+
4728
+ @property
4729
+ @pulumi.getter
4730
+ def mode(self) -> str:
4731
+ """
4732
+ Specified if fleet logging feature is enabled. Possible values: ["MODE_UNSPECIFIED", "COPY", "MOVE"]
4733
+ """
4734
+ return pulumi.get(self, "mode")
4735
+
4736
+
4737
+ @pulumi.output_type
4738
+ class GetFeatureSpecMulticlusteringressResult(dict):
4739
+ def __init__(__self__, *,
4740
+ config_membership: str):
4741
+ """
4742
+ :param str config_membership: Fully-qualified Membership name which hosts the MultiClusterIngress CRD. Example: 'projects/foo-proj/locations/global/memberships/bar'
4743
+ """
4744
+ pulumi.set(__self__, "config_membership", config_membership)
4745
+
4746
+ @property
4747
+ @pulumi.getter(name="configMembership")
4748
+ def config_membership(self) -> str:
4749
+ """
4750
+ Fully-qualified Membership name which hosts the MultiClusterIngress CRD. Example: 'projects/foo-proj/locations/global/memberships/bar'
4751
+ """
4752
+ return pulumi.get(self, "config_membership")
4753
+
4754
+
4755
+ @pulumi.output_type
4756
+ class GetFeatureStateResult(dict):
4757
+ def __init__(__self__, *,
4758
+ states: Sequence['outputs.GetFeatureStateStateResult']):
4759
+ """
4760
+ :param Sequence['GetFeatureStateStateArgs'] states: Output only. The "running state" of the Feature in this Hub.
4761
+ """
4762
+ pulumi.set(__self__, "states", states)
4763
+
4764
+ @property
4765
+ @pulumi.getter
4766
+ def states(self) -> Sequence['outputs.GetFeatureStateStateResult']:
4767
+ """
4768
+ Output only. The "running state" of the Feature in this Hub.
4769
+ """
4770
+ return pulumi.get(self, "states")
4771
+
4772
+
4773
+ @pulumi.output_type
4774
+ class GetFeatureStateStateResult(dict):
4775
+ def __init__(__self__, *,
4776
+ code: str,
4777
+ description: str,
4778
+ update_time: str):
4779
+ """
4780
+ :param str code: The high-level, machine-readable status of this Feature.
4781
+ :param str description: A human-readable description of the current status.
4782
+ :param str update_time: The time this status and any related Feature-specific details were updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z"
4783
+ """
4784
+ pulumi.set(__self__, "code", code)
4785
+ pulumi.set(__self__, "description", description)
4786
+ pulumi.set(__self__, "update_time", update_time)
4787
+
4788
+ @property
4789
+ @pulumi.getter
4790
+ def code(self) -> str:
4791
+ """
4792
+ The high-level, machine-readable status of this Feature.
4793
+ """
4794
+ return pulumi.get(self, "code")
4795
+
4796
+ @property
4797
+ @pulumi.getter
4798
+ def description(self) -> str:
4799
+ """
4800
+ A human-readable description of the current status.
4801
+ """
4802
+ return pulumi.get(self, "description")
4803
+
4804
+ @property
4805
+ @pulumi.getter(name="updateTime")
4806
+ def update_time(self) -> str:
4807
+ """
4808
+ The time this status and any related Feature-specific details were updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z"
4809
+ """
4810
+ return pulumi.get(self, "update_time")
4811
+
4812
+
3660
4813
  @pulumi.output_type
3661
4814
  class GetMembershipBindingStateResult(dict):
3662
4815
  def __init__(__self__, *,