pulumi-gcp 8.11.0a1734348982__py3-none-any.whl → 8.12.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +123 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +6 -0
- pulumi_gcp/apigee/app_group.py +7 -7
- pulumi_gcp/applicationintegration/client.py +8 -6
- pulumi_gcp/artifactregistry/_inputs.py +24 -15
- pulumi_gcp/artifactregistry/get_repository_iam_policy.py +12 -4
- pulumi_gcp/artifactregistry/outputs.py +32 -20
- pulumi_gcp/artifactregistry/repository.py +214 -39
- pulumi_gcp/artifactregistry/repository_iam_binding.py +42 -14
- pulumi_gcp/artifactregistry/repository_iam_member.py +42 -14
- pulumi_gcp/artifactregistry/repository_iam_policy.py +42 -14
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/backupdisasterrecovery/__init__.py +2 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +2 -2
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +12 -8
- pulumi_gcp/backupdisasterrecovery/get_backup.py +153 -0
- pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +415 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +63 -0
- pulumi_gcp/bigquery/app_profile.py +75 -0
- pulumi_gcp/billing/_inputs.py +6 -6
- pulumi_gcp/billing/outputs.py +4 -4
- pulumi_gcp/certificateauthority/_inputs.py +9 -9
- pulumi_gcp/certificateauthority/outputs.py +8 -8
- pulumi_gcp/cloudbuild/_inputs.py +53 -0
- pulumi_gcp/cloudbuild/outputs.py +50 -0
- pulumi_gcp/cloudbuild/worker_pool.py +47 -0
- pulumi_gcp/clouddeploy/_inputs.py +254 -0
- pulumi_gcp/clouddeploy/outputs.py +211 -0
- pulumi_gcp/clouddeploy/target.py +47 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +6 -6
- pulumi_gcp/cloudfunctionsv2/outputs.py +8 -8
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/cloudrunv2/service.py +4 -4
- pulumi_gcp/composer/get_user_workloads_config_map.py +4 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +4 -0
- pulumi_gcp/composer/user_workloads_config_map.py +14 -0
- pulumi_gcp/composer/user_workloads_secret.py +6 -0
- pulumi_gcp/compute/_inputs.py +566 -25
- pulumi_gcp/compute/disk.py +21 -7
- pulumi_gcp/compute/firewall_policy_rule.py +12 -0
- pulumi_gcp/compute/get_forwarding_rules.py +2 -2
- pulumi_gcp/compute/get_global_forwarding_rule.py +23 -1
- pulumi_gcp/compute/get_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_network.py +35 -1
- pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_region_network_endpoint_group.py +12 -1
- pulumi_gcp/compute/global_forwarding_rule.py +142 -2
- pulumi_gcp/compute/instance_group_manager.py +28 -0
- pulumi_gcp/compute/network.py +75 -0
- pulumi_gcp/compute/outputs.py +655 -26
- pulumi_gcp/compute/project_cloud_armor_tier.py +7 -7
- pulumi_gcp/compute/region_health_check.py +28 -0
- pulumi_gcp/compute/region_instance_group_manager.py +28 -0
- pulumi_gcp/compute/region_network_endpoint.py +28 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +70 -2
- pulumi_gcp/compute/subnetwork.py +30 -2
- pulumi_gcp/compute/url_map.py +7 -7
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +201 -3
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +249 -3
- pulumi_gcp/dataproc/_inputs.py +209 -1
- pulumi_gcp/dataproc/batch.py +76 -0
- pulumi_gcp/dataproc/outputs.py +169 -3
- pulumi_gcp/diagflow/_inputs.py +3 -3
- pulumi_gcp/diagflow/outputs.py +2 -2
- pulumi_gcp/discoveryengine/search_engine.py +7 -7
- pulumi_gcp/firebase/_inputs.py +99 -0
- pulumi_gcp/firebase/database_instance.py +24 -6
- pulumi_gcp/firebase/hosting_version.py +96 -0
- pulumi_gcp/firebase/outputs.py +59 -0
- pulumi_gcp/firebase/project.py +6 -6
- pulumi_gcp/firebaserules/release.py +76 -0
- pulumi_gcp/firestore/field.py +4 -4
- pulumi_gcp/gemini/__init__.py +15 -0
- pulumi_gcp/gemini/_inputs.py +183 -0
- pulumi_gcp/gemini/code_repository_index.py +659 -0
- pulumi_gcp/gemini/get_repository_group_iam_policy.py +171 -0
- pulumi_gcp/gemini/outputs.py +130 -0
- pulumi_gcp/gemini/repository_group.py +586 -0
- pulumi_gcp/gemini/repository_group_iam_binding.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_member.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_policy.py +443 -0
- pulumi_gcp/gkehub/_inputs.py +30 -10
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/outputs.py +21 -7
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iam/__init__.py +1 -0
- pulumi_gcp/iam/_inputs.py +137 -0
- pulumi_gcp/iam/folders_policy_binding.py +16 -0
- pulumi_gcp/iam/organizations_policy_binding.py +16 -0
- pulumi_gcp/iam/outputs.py +99 -0
- pulumi_gcp/iam/principal_access_boundary_policy.py +16 -0
- pulumi_gcp/iam/projects_policy_binding.py +917 -0
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/identityplatform/_inputs.py +6 -6
- pulumi_gcp/identityplatform/config.py +2 -2
- pulumi_gcp/identityplatform/outputs.py +4 -4
- pulumi_gcp/integrationconnectors/_inputs.py +15 -15
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/integrationconnectors/outputs.py +10 -10
- pulumi_gcp/looker/instance.py +35 -14
- pulumi_gcp/monitoring/_inputs.py +13 -6
- pulumi_gcp/monitoring/outputs.py +10 -4
- pulumi_gcp/netapp/_inputs.py +3 -3
- pulumi_gcp/netapp/active_directory.py +7 -7
- pulumi_gcp/netapp/outputs.py +2 -2
- pulumi_gcp/netapp/volume.py +11 -11
- pulumi_gcp/networkconnectivity/_inputs.py +10 -12
- pulumi_gcp/networkconnectivity/outputs.py +6 -8
- pulumi_gcp/networkconnectivity/spoke.py +10 -10
- pulumi_gcp/networksecurity/__init__.py +7 -0
- pulumi_gcp/networksecurity/_inputs.py +2018 -0
- pulumi_gcp/networksecurity/authz_policy.py +1008 -0
- pulumi_gcp/networksecurity/intercept_deployment.py +846 -0
- pulumi_gcp/networksecurity/intercept_deployment_group.py +752 -0
- pulumi_gcp/networksecurity/mirroring_deployment.py +848 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +752 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +737 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +840 -0
- pulumi_gcp/networksecurity/outputs.py +1463 -0
- pulumi_gcp/networkservices/__init__.py +1 -0
- pulumi_gcp/networkservices/authz_extension.py +1080 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +46 -8
- pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +42 -4
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +50 -8
- pulumi_gcp/oracledatabase/get_autonomous_database.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +12 -1
- pulumi_gcp/oracledatabase/outputs.py +21 -0
- pulumi_gcp/orgpolicy/_inputs.py +40 -0
- pulumi_gcp/orgpolicy/outputs.py +24 -0
- pulumi_gcp/orgpolicy/policy.py +66 -10
- pulumi_gcp/parallelstore/instance.py +4 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +435 -3
- pulumi_gcp/redis/cluster.py +287 -16
- pulumi_gcp/redis/outputs.py +304 -2
- pulumi_gcp/serviceaccount/get_account_id_token.py +2 -2
- pulumi_gcp/serviceaccount/get_account_key.py +2 -2
- pulumi_gcp/sql/_inputs.py +3 -3
- pulumi_gcp/sql/database_instance.py +14 -14
- pulumi_gcp/sql/outputs.py +2 -2
- pulumi_gcp/storage/_inputs.py +53 -6
- pulumi_gcp/storage/get_bucket.py +2 -2
- pulumi_gcp/storage/get_bucket_object_content.py +2 -2
- pulumi_gcp/storage/outputs.py +33 -4
- pulumi_gcp/tpu/__init__.py +1 -0
- pulumi_gcp/tpu/_inputs.py +214 -24
- pulumi_gcp/tpu/outputs.py +182 -16
- pulumi_gcp/tpu/v2_queued_resource.py +434 -0
- pulumi_gcp/tpu/v2_vm.py +63 -0
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/RECORD +168 -147
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/top_level.txt +0 -0
@@ -253,7 +253,7 @@ class TunnelDestGroup(pulumi.CustomResource):
|
|
253
253
|
|
254
254
|
dest_group = gcp.iap.TunnelDestGroup("dest_group",
|
255
255
|
region="us-central1",
|
256
|
-
group_name="
|
256
|
+
group_name="testgroup_2067",
|
257
257
|
cidrs=[
|
258
258
|
"10.1.0.0/16",
|
259
259
|
"192.168.10.0/24",
|
@@ -339,7 +339,7 @@ class TunnelDestGroup(pulumi.CustomResource):
|
|
339
339
|
|
340
340
|
dest_group = gcp.iap.TunnelDestGroup("dest_group",
|
341
341
|
region="us-central1",
|
342
|
-
group_name="
|
342
|
+
group_name="testgroup_2067",
|
343
343
|
cidrs=[
|
344
344
|
"10.1.0.0/16",
|
345
345
|
"192.168.10.0/24",
|
@@ -718,7 +718,7 @@ if not MYPY:
|
|
718
718
|
class ConfigQuotaArgsDict(TypedDict):
|
719
719
|
sign_up_quota_config: NotRequired[pulumi.Input['ConfigQuotaSignUpQuotaConfigArgsDict']]
|
720
720
|
"""
|
721
|
-
Quota for the Signup endpoint, if overwritten. Signup quota is measured in sign ups per project per hour per IP.
|
721
|
+
Quota for the Signup endpoint, if overwritten. Signup quota is measured in sign ups per project per hour per IP. None of quota, startTime, or quotaDuration can be skipped.
|
722
722
|
Structure is documented below.
|
723
723
|
"""
|
724
724
|
elif False:
|
@@ -729,7 +729,7 @@ class ConfigQuotaArgs:
|
|
729
729
|
def __init__(__self__, *,
|
730
730
|
sign_up_quota_config: Optional[pulumi.Input['ConfigQuotaSignUpQuotaConfigArgs']] = None):
|
731
731
|
"""
|
732
|
-
:param pulumi.Input['ConfigQuotaSignUpQuotaConfigArgs'] sign_up_quota_config: Quota for the Signup endpoint, if overwritten. Signup quota is measured in sign ups per project per hour per IP.
|
732
|
+
:param pulumi.Input['ConfigQuotaSignUpQuotaConfigArgs'] sign_up_quota_config: Quota for the Signup endpoint, if overwritten. Signup quota is measured in sign ups per project per hour per IP. None of quota, startTime, or quotaDuration can be skipped.
|
733
733
|
Structure is documented below.
|
734
734
|
"""
|
735
735
|
if sign_up_quota_config is not None:
|
@@ -739,7 +739,7 @@ class ConfigQuotaArgs:
|
|
739
739
|
@pulumi.getter(name="signUpQuotaConfig")
|
740
740
|
def sign_up_quota_config(self) -> Optional[pulumi.Input['ConfigQuotaSignUpQuotaConfigArgs']]:
|
741
741
|
"""
|
742
|
-
Quota for the Signup endpoint, if overwritten. Signup quota is measured in sign ups per project per hour per IP.
|
742
|
+
Quota for the Signup endpoint, if overwritten. Signup quota is measured in sign ups per project per hour per IP. None of quota, startTime, or quotaDuration can be skipped.
|
743
743
|
Structure is documented below.
|
744
744
|
"""
|
745
745
|
return pulumi.get(self, "sign_up_quota_config")
|
@@ -753,7 +753,7 @@ if not MYPY:
|
|
753
753
|
class ConfigQuotaSignUpQuotaConfigArgsDict(TypedDict):
|
754
754
|
quota: NotRequired[pulumi.Input[int]]
|
755
755
|
"""
|
756
|
-
A sign up APIs quota that customers can override temporarily.
|
756
|
+
A sign up APIs quota that customers can override temporarily. Value can be in between 1 and 1000.
|
757
757
|
"""
|
758
758
|
quota_duration: NotRequired[pulumi.Input[str]]
|
759
759
|
"""
|
@@ -773,7 +773,7 @@ class ConfigQuotaSignUpQuotaConfigArgs:
|
|
773
773
|
quota_duration: Optional[pulumi.Input[str]] = None,
|
774
774
|
start_time: Optional[pulumi.Input[str]] = None):
|
775
775
|
"""
|
776
|
-
:param pulumi.Input[int] quota: A sign up APIs quota that customers can override temporarily.
|
776
|
+
:param pulumi.Input[int] quota: A sign up APIs quota that customers can override temporarily. Value can be in between 1 and 1000.
|
777
777
|
:param pulumi.Input[str] quota_duration: How long this quota will be active for. It is measurred in seconds, e.g., Example: "9.615s".
|
778
778
|
:param pulumi.Input[str] start_time: When this quota will take affect.
|
779
779
|
"""
|
@@ -788,7 +788,7 @@ class ConfigQuotaSignUpQuotaConfigArgs:
|
|
788
788
|
@pulumi.getter
|
789
789
|
def quota(self) -> Optional[pulumi.Input[int]]:
|
790
790
|
"""
|
791
|
-
A sign up APIs quota that customers can override temporarily.
|
791
|
+
A sign up APIs quota that customers can override temporarily. Value can be in between 1 and 1000.
|
792
792
|
"""
|
793
793
|
return pulumi.get(self, "quota")
|
794
794
|
|
@@ -531,7 +531,7 @@ class Config(pulumi.CustomResource):
|
|
531
531
|
quota={
|
532
532
|
"sign_up_quota_config": {
|
533
533
|
"quota": 1000,
|
534
|
-
"start_time": "",
|
534
|
+
"start_time": "2014-10-02T15:01:23Z",
|
535
535
|
"quota_duration": "7200s",
|
536
536
|
},
|
537
537
|
},
|
@@ -671,7 +671,7 @@ class Config(pulumi.CustomResource):
|
|
671
671
|
quota={
|
672
672
|
"sign_up_quota_config": {
|
673
673
|
"quota": 1000,
|
674
|
-
"start_time": "",
|
674
|
+
"start_time": "2014-10-02T15:01:23Z",
|
675
675
|
"quota_duration": "7200s",
|
676
676
|
},
|
677
677
|
},
|
@@ -637,7 +637,7 @@ class ConfigQuota(dict):
|
|
637
637
|
def __init__(__self__, *,
|
638
638
|
sign_up_quota_config: Optional['outputs.ConfigQuotaSignUpQuotaConfig'] = None):
|
639
639
|
"""
|
640
|
-
:param 'ConfigQuotaSignUpQuotaConfigArgs' sign_up_quota_config: Quota for the Signup endpoint, if overwritten. Signup quota is measured in sign ups per project per hour per IP.
|
640
|
+
:param 'ConfigQuotaSignUpQuotaConfigArgs' sign_up_quota_config: Quota for the Signup endpoint, if overwritten. Signup quota is measured in sign ups per project per hour per IP. None of quota, startTime, or quotaDuration can be skipped.
|
641
641
|
Structure is documented below.
|
642
642
|
"""
|
643
643
|
if sign_up_quota_config is not None:
|
@@ -647,7 +647,7 @@ class ConfigQuota(dict):
|
|
647
647
|
@pulumi.getter(name="signUpQuotaConfig")
|
648
648
|
def sign_up_quota_config(self) -> Optional['outputs.ConfigQuotaSignUpQuotaConfig']:
|
649
649
|
"""
|
650
|
-
Quota for the Signup endpoint, if overwritten. Signup quota is measured in sign ups per project per hour per IP.
|
650
|
+
Quota for the Signup endpoint, if overwritten. Signup quota is measured in sign ups per project per hour per IP. None of quota, startTime, or quotaDuration can be skipped.
|
651
651
|
Structure is documented below.
|
652
652
|
"""
|
653
653
|
return pulumi.get(self, "sign_up_quota_config")
|
@@ -679,7 +679,7 @@ class ConfigQuotaSignUpQuotaConfig(dict):
|
|
679
679
|
quota_duration: Optional[str] = None,
|
680
680
|
start_time: Optional[str] = None):
|
681
681
|
"""
|
682
|
-
:param int quota: A sign up APIs quota that customers can override temporarily.
|
682
|
+
:param int quota: A sign up APIs quota that customers can override temporarily. Value can be in between 1 and 1000.
|
683
683
|
:param str quota_duration: How long this quota will be active for. It is measurred in seconds, e.g., Example: "9.615s".
|
684
684
|
:param str start_time: When this quota will take affect.
|
685
685
|
"""
|
@@ -694,7 +694,7 @@ class ConfigQuotaSignUpQuotaConfig(dict):
|
|
694
694
|
@pulumi.getter
|
695
695
|
def quota(self) -> Optional[int]:
|
696
696
|
"""
|
697
|
-
A sign up APIs quota that customers can override temporarily.
|
697
|
+
A sign up APIs quota that customers can override temporarily. Value can be in between 1 and 1000.
|
698
698
|
"""
|
699
699
|
return pulumi.get(self, "quota")
|
700
700
|
|
@@ -319,7 +319,7 @@ if not MYPY:
|
|
319
319
|
"""
|
320
320
|
encryption_key_value: NotRequired[pulumi.Input['ConnectionAuthConfigAdditionalVariableEncryptionKeyValueArgsDict']]
|
321
321
|
"""
|
322
|
-
|
322
|
+
Encryption key value of configVariable.
|
323
323
|
Structure is documented below.
|
324
324
|
"""
|
325
325
|
integer_value: NotRequired[pulumi.Input[int]]
|
@@ -350,7 +350,7 @@ class ConnectionAuthConfigAdditionalVariableArgs:
|
|
350
350
|
"""
|
351
351
|
:param pulumi.Input[str] key: Key for the configVariable
|
352
352
|
:param pulumi.Input[bool] boolean_value: Boolean Value of configVariable.
|
353
|
-
:param pulumi.Input['ConnectionAuthConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value:
|
353
|
+
:param pulumi.Input['ConnectionAuthConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value: Encryption key value of configVariable.
|
354
354
|
Structure is documented below.
|
355
355
|
:param pulumi.Input[int] integer_value: Integer Value of configVariable.
|
356
356
|
:param pulumi.Input['ConnectionAuthConfigAdditionalVariableSecretValueArgs'] secret_value: Secret value of configVariable
|
@@ -397,7 +397,7 @@ class ConnectionAuthConfigAdditionalVariableArgs:
|
|
397
397
|
@pulumi.getter(name="encryptionKeyValue")
|
398
398
|
def encryption_key_value(self) -> Optional[pulumi.Input['ConnectionAuthConfigAdditionalVariableEncryptionKeyValueArgs']]:
|
399
399
|
"""
|
400
|
-
|
400
|
+
Encryption key value of configVariable.
|
401
401
|
Structure is documented below.
|
402
402
|
"""
|
403
403
|
return pulumi.get(self, "encryption_key_value")
|
@@ -1207,7 +1207,7 @@ if not MYPY:
|
|
1207
1207
|
"""
|
1208
1208
|
encryption_key_value: NotRequired[pulumi.Input['ConnectionConfigVariableEncryptionKeyValueArgsDict']]
|
1209
1209
|
"""
|
1210
|
-
|
1210
|
+
Encryption key value of configVariable.
|
1211
1211
|
Structure is documented below.
|
1212
1212
|
"""
|
1213
1213
|
integer_value: NotRequired[pulumi.Input[int]]
|
@@ -1238,7 +1238,7 @@ class ConnectionConfigVariableArgs:
|
|
1238
1238
|
"""
|
1239
1239
|
:param pulumi.Input[str] key: Key for the configVariable
|
1240
1240
|
:param pulumi.Input[bool] boolean_value: Boolean Value of configVariable
|
1241
|
-
:param pulumi.Input['ConnectionConfigVariableEncryptionKeyValueArgs'] encryption_key_value:
|
1241
|
+
:param pulumi.Input['ConnectionConfigVariableEncryptionKeyValueArgs'] encryption_key_value: Encryption key value of configVariable.
|
1242
1242
|
Structure is documented below.
|
1243
1243
|
:param pulumi.Input[int] integer_value: Integer Value of configVariable
|
1244
1244
|
:param pulumi.Input['ConnectionConfigVariableSecretValueArgs'] secret_value: Secret value of configVariable.
|
@@ -1285,7 +1285,7 @@ class ConnectionConfigVariableArgs:
|
|
1285
1285
|
@pulumi.getter(name="encryptionKeyValue")
|
1286
1286
|
def encryption_key_value(self) -> Optional[pulumi.Input['ConnectionConfigVariableEncryptionKeyValueArgs']]:
|
1287
1287
|
"""
|
1288
|
-
|
1288
|
+
Encryption key value of configVariable.
|
1289
1289
|
Structure is documented below.
|
1290
1290
|
"""
|
1291
1291
|
return pulumi.get(self, "encryption_key_value")
|
@@ -1696,7 +1696,7 @@ if not MYPY:
|
|
1696
1696
|
"""
|
1697
1697
|
encryption_key_value: NotRequired[pulumi.Input['ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgsDict']]
|
1698
1698
|
"""
|
1699
|
-
|
1699
|
+
Encryption key value of configVariable.
|
1700
1700
|
Structure is documented below.
|
1701
1701
|
"""
|
1702
1702
|
integer_value: NotRequired[pulumi.Input[int]]
|
@@ -1727,7 +1727,7 @@ class ConnectionEventingConfigAdditionalVariableArgs:
|
|
1727
1727
|
"""
|
1728
1728
|
:param pulumi.Input[str] key: Key for the configVariable
|
1729
1729
|
:param pulumi.Input[bool] boolean_value: Boolean Value of configVariable.
|
1730
|
-
:param pulumi.Input['ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value:
|
1730
|
+
:param pulumi.Input['ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value: Encryption key value of configVariable.
|
1731
1731
|
Structure is documented below.
|
1732
1732
|
:param pulumi.Input[int] integer_value: Integer Value of configVariable.
|
1733
1733
|
:param pulumi.Input['ConnectionEventingConfigAdditionalVariableSecretValueArgs'] secret_value: Secret value of configVariable
|
@@ -1774,7 +1774,7 @@ class ConnectionEventingConfigAdditionalVariableArgs:
|
|
1774
1774
|
@pulumi.getter(name="encryptionKeyValue")
|
1775
1775
|
def encryption_key_value(self) -> Optional[pulumi.Input['ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs']]:
|
1776
1776
|
"""
|
1777
|
-
|
1777
|
+
Encryption key value of configVariable.
|
1778
1778
|
Structure is documented below.
|
1779
1779
|
"""
|
1780
1780
|
return pulumi.get(self, "encryption_key_value")
|
@@ -2024,7 +2024,7 @@ if not MYPY:
|
|
2024
2024
|
"""
|
2025
2025
|
encryption_key_value: NotRequired[pulumi.Input['ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgsDict']]
|
2026
2026
|
"""
|
2027
|
-
|
2027
|
+
Encryption key value of configVariable.
|
2028
2028
|
Structure is documented below.
|
2029
2029
|
"""
|
2030
2030
|
integer_value: NotRequired[pulumi.Input[int]]
|
@@ -2055,7 +2055,7 @@ class ConnectionEventingConfigAuthConfigAdditionalVariableArgs:
|
|
2055
2055
|
"""
|
2056
2056
|
:param pulumi.Input[str] key: Key for the configVariable
|
2057
2057
|
:param pulumi.Input[bool] boolean_value: Boolean Value of configVariable.
|
2058
|
-
:param pulumi.Input['ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value:
|
2058
|
+
:param pulumi.Input['ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value: Encryption key value of configVariable.
|
2059
2059
|
Structure is documented below.
|
2060
2060
|
:param pulumi.Input[int] integer_value: Integer Value of configVariable.
|
2061
2061
|
:param pulumi.Input['ConnectionEventingConfigAuthConfigAdditionalVariableSecretValueArgs'] secret_value: Secret value of configVariable
|
@@ -2102,7 +2102,7 @@ class ConnectionEventingConfigAuthConfigAdditionalVariableArgs:
|
|
2102
2102
|
@pulumi.getter(name="encryptionKeyValue")
|
2103
2103
|
def encryption_key_value(self) -> Optional[pulumi.Input['ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs']]:
|
2104
2104
|
"""
|
2105
|
-
|
2105
|
+
Encryption key value of configVariable.
|
2106
2106
|
Structure is documented below.
|
2107
2107
|
"""
|
2108
2108
|
return pulumi.get(self, "encryption_key_value")
|
@@ -2954,7 +2954,7 @@ if not MYPY:
|
|
2954
2954
|
"""
|
2955
2955
|
encryption_key_value: NotRequired[pulumi.Input['ConnectionSslConfigAdditionalVariableEncryptionKeyValueArgsDict']]
|
2956
2956
|
"""
|
2957
|
-
|
2957
|
+
Encryption key value of configVariable.
|
2958
2958
|
Structure is documented below.
|
2959
2959
|
"""
|
2960
2960
|
integer_value: NotRequired[pulumi.Input[int]]
|
@@ -2985,7 +2985,7 @@ class ConnectionSslConfigAdditionalVariableArgs:
|
|
2985
2985
|
"""
|
2986
2986
|
:param pulumi.Input[str] key: Key for the configVariable
|
2987
2987
|
:param pulumi.Input[bool] boolean_value: Boolean Value of configVariable.
|
2988
|
-
:param pulumi.Input['ConnectionSslConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value:
|
2988
|
+
:param pulumi.Input['ConnectionSslConfigAdditionalVariableEncryptionKeyValueArgs'] encryption_key_value: Encryption key value of configVariable.
|
2989
2989
|
Structure is documented below.
|
2990
2990
|
:param pulumi.Input[int] integer_value: Integer Value of configVariable.
|
2991
2991
|
:param pulumi.Input['ConnectionSslConfigAdditionalVariableSecretValueArgs'] secret_value: Secret value of configVariable
|
@@ -3032,7 +3032,7 @@ class ConnectionSslConfigAdditionalVariableArgs:
|
|
3032
3032
|
@pulumi.getter(name="encryptionKeyValue")
|
3033
3033
|
def encryption_key_value(self) -> Optional[pulumi.Input['ConnectionSslConfigAdditionalVariableEncryptionKeyValueArgs']]:
|
3034
3034
|
"""
|
3035
|
-
|
3035
|
+
Encryption key value of configVariable.
|
3036
3036
|
Structure is documented below.
|
3037
3037
|
"""
|
3038
3038
|
return pulumi.get(self, "encryption_key_value")
|
@@ -378,8 +378,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
378
378
|
import pulumi_gcp as gcp
|
379
379
|
|
380
380
|
target_project = gcp.organizations.Project("target_project",
|
381
|
-
project_id="tf-
|
382
|
-
name="tf-
|
381
|
+
project_id="tf-test_40785",
|
382
|
+
name="tf-test_79169",
|
383
383
|
org_id="123456789",
|
384
384
|
billing_account="000000-0000000-0000000-000000",
|
385
385
|
deletion_policy="DELETE")
|
@@ -400,8 +400,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
400
400
|
auto_create_subnetworks=False,
|
401
401
|
opts = pulumi.ResourceOptions(depends_on=[compute]))
|
402
402
|
zone = gcp.dns.ManagedZone("zone",
|
403
|
-
name="tf-test-
|
404
|
-
dns_name="
|
403
|
+
name="tf-test-dns_56529",
|
404
|
+
dns_name="private_75413.example.com.",
|
405
405
|
visibility="private",
|
406
406
|
private_visibility_config={
|
407
407
|
"networks": [{
|
@@ -489,8 +489,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
489
489
|
import pulumi_gcp as gcp
|
490
490
|
|
491
491
|
target_project = gcp.organizations.Project("target_project",
|
492
|
-
project_id="tf-
|
493
|
-
name="tf-
|
492
|
+
project_id="tf-test_40785",
|
493
|
+
name="tf-test_79169",
|
494
494
|
org_id="123456789",
|
495
495
|
billing_account="000000-0000000-0000000-000000",
|
496
496
|
deletion_policy="DELETE")
|
@@ -511,8 +511,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
511
511
|
auto_create_subnetworks=False,
|
512
512
|
opts = pulumi.ResourceOptions(depends_on=[compute]))
|
513
513
|
zone = gcp.dns.ManagedZone("zone",
|
514
|
-
name="tf-test-
|
515
|
-
dns_name="
|
514
|
+
name="tf-test-dns_56529",
|
515
|
+
dns_name="private_75413.example.com.",
|
516
516
|
visibility="private",
|
517
517
|
private_visibility_config={
|
518
518
|
"networks": [{
|
@@ -250,7 +250,7 @@ class ConnectionAuthConfigAdditionalVariable(dict):
|
|
250
250
|
"""
|
251
251
|
:param str key: Key for the configVariable
|
252
252
|
:param bool boolean_value: Boolean Value of configVariable.
|
253
|
-
:param 'ConnectionAuthConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value:
|
253
|
+
:param 'ConnectionAuthConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value: Encryption key value of configVariable.
|
254
254
|
Structure is documented below.
|
255
255
|
:param int integer_value: Integer Value of configVariable.
|
256
256
|
:param 'ConnectionAuthConfigAdditionalVariableSecretValueArgs' secret_value: Secret value of configVariable
|
@@ -289,7 +289,7 @@ class ConnectionAuthConfigAdditionalVariable(dict):
|
|
289
289
|
@pulumi.getter(name="encryptionKeyValue")
|
290
290
|
def encryption_key_value(self) -> Optional['outputs.ConnectionAuthConfigAdditionalVariableEncryptionKeyValue']:
|
291
291
|
"""
|
292
|
-
|
292
|
+
Encryption key value of configVariable.
|
293
293
|
Structure is documented below.
|
294
294
|
"""
|
295
295
|
return pulumi.get(self, "encryption_key_value")
|
@@ -1022,7 +1022,7 @@ class ConnectionConfigVariable(dict):
|
|
1022
1022
|
"""
|
1023
1023
|
:param str key: Key for the configVariable
|
1024
1024
|
:param bool boolean_value: Boolean Value of configVariable
|
1025
|
-
:param 'ConnectionConfigVariableEncryptionKeyValueArgs' encryption_key_value:
|
1025
|
+
:param 'ConnectionConfigVariableEncryptionKeyValueArgs' encryption_key_value: Encryption key value of configVariable.
|
1026
1026
|
Structure is documented below.
|
1027
1027
|
:param int integer_value: Integer Value of configVariable
|
1028
1028
|
:param 'ConnectionConfigVariableSecretValueArgs' secret_value: Secret value of configVariable.
|
@@ -1061,7 +1061,7 @@ class ConnectionConfigVariable(dict):
|
|
1061
1061
|
@pulumi.getter(name="encryptionKeyValue")
|
1062
1062
|
def encryption_key_value(self) -> Optional['outputs.ConnectionConfigVariableEncryptionKeyValue']:
|
1063
1063
|
"""
|
1064
|
-
|
1064
|
+
Encryption key value of configVariable.
|
1065
1065
|
Structure is documented below.
|
1066
1066
|
"""
|
1067
1067
|
return pulumi.get(self, "encryption_key_value")
|
@@ -1430,7 +1430,7 @@ class ConnectionEventingConfigAdditionalVariable(dict):
|
|
1430
1430
|
"""
|
1431
1431
|
:param str key: Key for the configVariable
|
1432
1432
|
:param bool boolean_value: Boolean Value of configVariable.
|
1433
|
-
:param 'ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value:
|
1433
|
+
:param 'ConnectionEventingConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value: Encryption key value of configVariable.
|
1434
1434
|
Structure is documented below.
|
1435
1435
|
:param int integer_value: Integer Value of configVariable.
|
1436
1436
|
:param 'ConnectionEventingConfigAdditionalVariableSecretValueArgs' secret_value: Secret value of configVariable
|
@@ -1469,7 +1469,7 @@ class ConnectionEventingConfigAdditionalVariable(dict):
|
|
1469
1469
|
@pulumi.getter(name="encryptionKeyValue")
|
1470
1470
|
def encryption_key_value(self) -> Optional['outputs.ConnectionEventingConfigAdditionalVariableEncryptionKeyValue']:
|
1471
1471
|
"""
|
1472
|
-
|
1472
|
+
Encryption key value of configVariable.
|
1473
1473
|
Structure is documented below.
|
1474
1474
|
"""
|
1475
1475
|
return pulumi.get(self, "encryption_key_value")
|
@@ -1708,7 +1708,7 @@ class ConnectionEventingConfigAuthConfigAdditionalVariable(dict):
|
|
1708
1708
|
"""
|
1709
1709
|
:param str key: Key for the configVariable
|
1710
1710
|
:param bool boolean_value: Boolean Value of configVariable.
|
1711
|
-
:param 'ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value:
|
1711
|
+
:param 'ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value: Encryption key value of configVariable.
|
1712
1712
|
Structure is documented below.
|
1713
1713
|
:param int integer_value: Integer Value of configVariable.
|
1714
1714
|
:param 'ConnectionEventingConfigAuthConfigAdditionalVariableSecretValueArgs' secret_value: Secret value of configVariable
|
@@ -1747,7 +1747,7 @@ class ConnectionEventingConfigAuthConfigAdditionalVariable(dict):
|
|
1747
1747
|
@pulumi.getter(name="encryptionKeyValue")
|
1748
1748
|
def encryption_key_value(self) -> Optional['outputs.ConnectionEventingConfigAuthConfigAdditionalVariableEncryptionKeyValue']:
|
1749
1749
|
"""
|
1750
|
-
|
1750
|
+
Encryption key value of configVariable.
|
1751
1751
|
Structure is documented below.
|
1752
1752
|
"""
|
1753
1753
|
return pulumi.get(self, "encryption_key_value")
|
@@ -2427,7 +2427,7 @@ class ConnectionSslConfigAdditionalVariable(dict):
|
|
2427
2427
|
"""
|
2428
2428
|
:param str key: Key for the configVariable
|
2429
2429
|
:param bool boolean_value: Boolean Value of configVariable.
|
2430
|
-
:param 'ConnectionSslConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value:
|
2430
|
+
:param 'ConnectionSslConfigAdditionalVariableEncryptionKeyValueArgs' encryption_key_value: Encryption key value of configVariable.
|
2431
2431
|
Structure is documented below.
|
2432
2432
|
:param int integer_value: Integer Value of configVariable.
|
2433
2433
|
:param 'ConnectionSslConfigAdditionalVariableSecretValueArgs' secret_value: Secret value of configVariable
|
@@ -2466,7 +2466,7 @@ class ConnectionSslConfigAdditionalVariable(dict):
|
|
2466
2466
|
@pulumi.getter(name="encryptionKeyValue")
|
2467
2467
|
def encryption_key_value(self) -> Optional['outputs.ConnectionSslConfigAdditionalVariableEncryptionKeyValue']:
|
2468
2468
|
"""
|
2469
|
-
|
2469
|
+
Encryption key value of configVariable.
|
2470
2470
|
Structure is documented below.
|
2471
2471
|
"""
|
2472
2472
|
return pulumi.get(self, "encryption_key_value")
|
pulumi_gcp/looker/instance.py
CHANGED
@@ -62,8 +62,11 @@ class InstanceArgs:
|
|
62
62
|
these values: - LOOKER_CORE_TRIAL: trial instance (Currently Unavailable) - LOOKER_CORE_STANDARD: pay as you go standard
|
63
63
|
instance (Currently Unavailable) - LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance -
|
64
64
|
LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance - LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
|
65
|
-
|
66
|
-
|
65
|
+
- LOOKER_CORE_NONPROD_STANDARD_ANNUAL: nonprod subscription standard instance - LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL:
|
66
|
+
nonprod subscription enterprise instance - LOOKER_CORE_NONPROD_EMBED_ANNUAL: nonprod subscription embed instance Default
|
67
|
+
value: "LOOKER_CORE_TRIAL" Possible values: ["LOOKER_CORE_TRIAL", "LOOKER_CORE_STANDARD", "LOOKER_CORE_STANDARD_ANNUAL",
|
68
|
+
"LOOKER_CORE_ENTERPRISE_ANNUAL", "LOOKER_CORE_EMBED_ANNUAL", "LOOKER_CORE_NONPROD_STANDARD_ANNUAL",
|
69
|
+
"LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL", "LOOKER_CORE_NONPROD_EMBED_ANNUAL"]
|
67
70
|
:param pulumi.Input[bool] private_ip_enabled: Whether private IP is enabled on the Looker instance.
|
68
71
|
:param pulumi.Input['InstancePscConfigArgs'] psc_config: Information for Private Service Connect (PSC) setup for a Looker instance.
|
69
72
|
:param pulumi.Input[bool] psc_enabled: Whether Public Service Connect (PSC) is enabled on the Looker instance
|
@@ -249,8 +252,11 @@ class InstanceArgs:
|
|
249
252
|
these values: - LOOKER_CORE_TRIAL: trial instance (Currently Unavailable) - LOOKER_CORE_STANDARD: pay as you go standard
|
250
253
|
instance (Currently Unavailable) - LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance -
|
251
254
|
LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance - LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
|
252
|
-
|
253
|
-
|
255
|
+
- LOOKER_CORE_NONPROD_STANDARD_ANNUAL: nonprod subscription standard instance - LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL:
|
256
|
+
nonprod subscription enterprise instance - LOOKER_CORE_NONPROD_EMBED_ANNUAL: nonprod subscription embed instance Default
|
257
|
+
value: "LOOKER_CORE_TRIAL" Possible values: ["LOOKER_CORE_TRIAL", "LOOKER_CORE_STANDARD", "LOOKER_CORE_STANDARD_ANNUAL",
|
258
|
+
"LOOKER_CORE_ENTERPRISE_ANNUAL", "LOOKER_CORE_EMBED_ANNUAL", "LOOKER_CORE_NONPROD_STANDARD_ANNUAL",
|
259
|
+
"LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL", "LOOKER_CORE_NONPROD_EMBED_ANNUAL"]
|
254
260
|
"""
|
255
261
|
return pulumi.get(self, "platform_edition")
|
256
262
|
|
@@ -415,8 +421,11 @@ class _InstanceState:
|
|
415
421
|
these values: - LOOKER_CORE_TRIAL: trial instance (Currently Unavailable) - LOOKER_CORE_STANDARD: pay as you go standard
|
416
422
|
instance (Currently Unavailable) - LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance -
|
417
423
|
LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance - LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
|
418
|
-
|
419
|
-
|
424
|
+
- LOOKER_CORE_NONPROD_STANDARD_ANNUAL: nonprod subscription standard instance - LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL:
|
425
|
+
nonprod subscription enterprise instance - LOOKER_CORE_NONPROD_EMBED_ANNUAL: nonprod subscription embed instance Default
|
426
|
+
value: "LOOKER_CORE_TRIAL" Possible values: ["LOOKER_CORE_TRIAL", "LOOKER_CORE_STANDARD", "LOOKER_CORE_STANDARD_ANNUAL",
|
427
|
+
"LOOKER_CORE_ENTERPRISE_ANNUAL", "LOOKER_CORE_EMBED_ANNUAL", "LOOKER_CORE_NONPROD_STANDARD_ANNUAL",
|
428
|
+
"LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL", "LOOKER_CORE_NONPROD_EMBED_ANNUAL"]
|
420
429
|
:param pulumi.Input[bool] private_ip_enabled: Whether private IP is enabled on the Looker instance.
|
421
430
|
:param pulumi.Input['InstancePscConfigArgs'] psc_config: Information for Private Service Connect (PSC) setup for a Looker instance.
|
422
431
|
:param pulumi.Input[bool] psc_enabled: Whether Public Service Connect (PSC) is enabled on the Looker instance
|
@@ -692,8 +701,11 @@ class _InstanceState:
|
|
692
701
|
these values: - LOOKER_CORE_TRIAL: trial instance (Currently Unavailable) - LOOKER_CORE_STANDARD: pay as you go standard
|
693
702
|
instance (Currently Unavailable) - LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance -
|
694
703
|
LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance - LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
|
695
|
-
|
696
|
-
|
704
|
+
- LOOKER_CORE_NONPROD_STANDARD_ANNUAL: nonprod subscription standard instance - LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL:
|
705
|
+
nonprod subscription enterprise instance - LOOKER_CORE_NONPROD_EMBED_ANNUAL: nonprod subscription embed instance Default
|
706
|
+
value: "LOOKER_CORE_TRIAL" Possible values: ["LOOKER_CORE_TRIAL", "LOOKER_CORE_STANDARD", "LOOKER_CORE_STANDARD_ANNUAL",
|
707
|
+
"LOOKER_CORE_ENTERPRISE_ANNUAL", "LOOKER_CORE_EMBED_ANNUAL", "LOOKER_CORE_NONPROD_STANDARD_ANNUAL",
|
708
|
+
"LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL", "LOOKER_CORE_NONPROD_EMBED_ANNUAL"]
|
697
709
|
"""
|
698
710
|
return pulumi.get(self, "platform_edition")
|
699
711
|
|
@@ -1106,8 +1118,11 @@ class Instance(pulumi.CustomResource):
|
|
1106
1118
|
these values: - LOOKER_CORE_TRIAL: trial instance (Currently Unavailable) - LOOKER_CORE_STANDARD: pay as you go standard
|
1107
1119
|
instance (Currently Unavailable) - LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance -
|
1108
1120
|
LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance - LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
|
1109
|
-
|
1110
|
-
|
1121
|
+
- LOOKER_CORE_NONPROD_STANDARD_ANNUAL: nonprod subscription standard instance - LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL:
|
1122
|
+
nonprod subscription enterprise instance - LOOKER_CORE_NONPROD_EMBED_ANNUAL: nonprod subscription embed instance Default
|
1123
|
+
value: "LOOKER_CORE_TRIAL" Possible values: ["LOOKER_CORE_TRIAL", "LOOKER_CORE_STANDARD", "LOOKER_CORE_STANDARD_ANNUAL",
|
1124
|
+
"LOOKER_CORE_ENTERPRISE_ANNUAL", "LOOKER_CORE_EMBED_ANNUAL", "LOOKER_CORE_NONPROD_STANDARD_ANNUAL",
|
1125
|
+
"LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL", "LOOKER_CORE_NONPROD_EMBED_ANNUAL"]
|
1111
1126
|
:param pulumi.Input[bool] private_ip_enabled: Whether private IP is enabled on the Looker instance.
|
1112
1127
|
:param pulumi.Input[Union['InstancePscConfigArgs', 'InstancePscConfigArgsDict']] psc_config: Information for Private Service Connect (PSC) setup for a Looker instance.
|
1113
1128
|
:param pulumi.Input[bool] psc_enabled: Whether Public Service Connect (PSC) is enabled on the Looker instance
|
@@ -1514,8 +1529,11 @@ class Instance(pulumi.CustomResource):
|
|
1514
1529
|
these values: - LOOKER_CORE_TRIAL: trial instance (Currently Unavailable) - LOOKER_CORE_STANDARD: pay as you go standard
|
1515
1530
|
instance (Currently Unavailable) - LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance -
|
1516
1531
|
LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance - LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
|
1517
|
-
|
1518
|
-
|
1532
|
+
- LOOKER_CORE_NONPROD_STANDARD_ANNUAL: nonprod subscription standard instance - LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL:
|
1533
|
+
nonprod subscription enterprise instance - LOOKER_CORE_NONPROD_EMBED_ANNUAL: nonprod subscription embed instance Default
|
1534
|
+
value: "LOOKER_CORE_TRIAL" Possible values: ["LOOKER_CORE_TRIAL", "LOOKER_CORE_STANDARD", "LOOKER_CORE_STANDARD_ANNUAL",
|
1535
|
+
"LOOKER_CORE_ENTERPRISE_ANNUAL", "LOOKER_CORE_EMBED_ANNUAL", "LOOKER_CORE_NONPROD_STANDARD_ANNUAL",
|
1536
|
+
"LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL", "LOOKER_CORE_NONPROD_EMBED_ANNUAL"]
|
1519
1537
|
:param pulumi.Input[bool] private_ip_enabled: Whether private IP is enabled on the Looker instance.
|
1520
1538
|
:param pulumi.Input[Union['InstancePscConfigArgs', 'InstancePscConfigArgsDict']] psc_config: Information for Private Service Connect (PSC) setup for a Looker instance.
|
1521
1539
|
:param pulumi.Input[bool] psc_enabled: Whether Public Service Connect (PSC) is enabled on the Looker instance
|
@@ -1706,8 +1724,11 @@ class Instance(pulumi.CustomResource):
|
|
1706
1724
|
these values: - LOOKER_CORE_TRIAL: trial instance (Currently Unavailable) - LOOKER_CORE_STANDARD: pay as you go standard
|
1707
1725
|
instance (Currently Unavailable) - LOOKER_CORE_STANDARD_ANNUAL: subscription standard instance -
|
1708
1726
|
LOOKER_CORE_ENTERPRISE_ANNUAL: subscription enterprise instance - LOOKER_CORE_EMBED_ANNUAL: subscription embed instance
|
1709
|
-
|
1710
|
-
|
1727
|
+
- LOOKER_CORE_NONPROD_STANDARD_ANNUAL: nonprod subscription standard instance - LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL:
|
1728
|
+
nonprod subscription enterprise instance - LOOKER_CORE_NONPROD_EMBED_ANNUAL: nonprod subscription embed instance Default
|
1729
|
+
value: "LOOKER_CORE_TRIAL" Possible values: ["LOOKER_CORE_TRIAL", "LOOKER_CORE_STANDARD", "LOOKER_CORE_STANDARD_ANNUAL",
|
1730
|
+
"LOOKER_CORE_ENTERPRISE_ANNUAL", "LOOKER_CORE_EMBED_ANNUAL", "LOOKER_CORE_NONPROD_STANDARD_ANNUAL",
|
1731
|
+
"LOOKER_CORE_NONPROD_ENTERPRISE_ANNUAL", "LOOKER_CORE_NONPROD_EMBED_ANNUAL"]
|
1711
1732
|
"""
|
1712
1733
|
return pulumi.get(self, "platform_edition")
|
1713
1734
|
|
pulumi_gcp/monitoring/_inputs.py
CHANGED
@@ -1419,9 +1419,8 @@ if not MYPY:
|
|
1419
1419
|
in the future.
|
1420
1420
|
This field is optional. If this field is not empty, then it must be a
|
1421
1421
|
valid Prometheus label name.
|
1422
|
-
|
1423
|
-
- - -
|
1424
1422
|
"""
|
1423
|
+
disable_metric_validation: NotRequired[pulumi.Input[bool]]
|
1425
1424
|
duration: NotRequired[pulumi.Input[str]]
|
1426
1425
|
"""
|
1427
1426
|
Alerts are considered firing once their PromQL expression evaluated
|
@@ -1464,6 +1463,7 @@ class AlertPolicyConditionConditionPrometheusQueryLanguageArgs:
|
|
1464
1463
|
def __init__(__self__, *,
|
1465
1464
|
query: pulumi.Input[str],
|
1466
1465
|
alert_rule: Optional[pulumi.Input[str]] = None,
|
1466
|
+
disable_metric_validation: Optional[pulumi.Input[bool]] = None,
|
1467
1467
|
duration: Optional[pulumi.Input[str]] = None,
|
1468
1468
|
evaluation_interval: Optional[pulumi.Input[str]] = None,
|
1469
1469
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1481,8 +1481,6 @@ class AlertPolicyConditionConditionPrometheusQueryLanguageArgs:
|
|
1481
1481
|
in the future.
|
1482
1482
|
This field is optional. If this field is not empty, then it must be a
|
1483
1483
|
valid Prometheus label name.
|
1484
|
-
|
1485
|
-
- - -
|
1486
1484
|
:param pulumi.Input[str] duration: Alerts are considered firing once their PromQL expression evaluated
|
1487
1485
|
to be "true" for this long. Alerts whose PromQL expression was not
|
1488
1486
|
evaluated to be "true" for long enough are considered pending. The
|
@@ -1509,6 +1507,8 @@ class AlertPolicyConditionConditionPrometheusQueryLanguageArgs:
|
|
1509
1507
|
pulumi.set(__self__, "query", query)
|
1510
1508
|
if alert_rule is not None:
|
1511
1509
|
pulumi.set(__self__, "alert_rule", alert_rule)
|
1510
|
+
if disable_metric_validation is not None:
|
1511
|
+
pulumi.set(__self__, "disable_metric_validation", disable_metric_validation)
|
1512
1512
|
if duration is not None:
|
1513
1513
|
pulumi.set(__self__, "duration", duration)
|
1514
1514
|
if evaluation_interval is not None:
|
@@ -1545,8 +1545,6 @@ class AlertPolicyConditionConditionPrometheusQueryLanguageArgs:
|
|
1545
1545
|
in the future.
|
1546
1546
|
This field is optional. If this field is not empty, then it must be a
|
1547
1547
|
valid Prometheus label name.
|
1548
|
-
|
1549
|
-
- - -
|
1550
1548
|
"""
|
1551
1549
|
return pulumi.get(self, "alert_rule")
|
1552
1550
|
|
@@ -1554,6 +1552,15 @@ class AlertPolicyConditionConditionPrometheusQueryLanguageArgs:
|
|
1554
1552
|
def alert_rule(self, value: Optional[pulumi.Input[str]]):
|
1555
1553
|
pulumi.set(self, "alert_rule", value)
|
1556
1554
|
|
1555
|
+
@property
|
1556
|
+
@pulumi.getter(name="disableMetricValidation")
|
1557
|
+
def disable_metric_validation(self) -> Optional[pulumi.Input[bool]]:
|
1558
|
+
return pulumi.get(self, "disable_metric_validation")
|
1559
|
+
|
1560
|
+
@disable_metric_validation.setter
|
1561
|
+
def disable_metric_validation(self, value: Optional[pulumi.Input[bool]]):
|
1562
|
+
pulumi.set(self, "disable_metric_validation", value)
|
1563
|
+
|
1557
1564
|
@property
|
1558
1565
|
@pulumi.getter
|
1559
1566
|
def duration(self) -> Optional[pulumi.Input[str]]:
|
pulumi_gcp/monitoring/outputs.py
CHANGED
@@ -1004,6 +1004,8 @@ class AlertPolicyConditionConditionPrometheusQueryLanguage(dict):
|
|
1004
1004
|
suggest = None
|
1005
1005
|
if key == "alertRule":
|
1006
1006
|
suggest = "alert_rule"
|
1007
|
+
elif key == "disableMetricValidation":
|
1008
|
+
suggest = "disable_metric_validation"
|
1007
1009
|
elif key == "evaluationInterval":
|
1008
1010
|
suggest = "evaluation_interval"
|
1009
1011
|
elif key == "ruleGroup":
|
@@ -1023,6 +1025,7 @@ class AlertPolicyConditionConditionPrometheusQueryLanguage(dict):
|
|
1023
1025
|
def __init__(__self__, *,
|
1024
1026
|
query: str,
|
1025
1027
|
alert_rule: Optional[str] = None,
|
1028
|
+
disable_metric_validation: Optional[bool] = None,
|
1026
1029
|
duration: Optional[str] = None,
|
1027
1030
|
evaluation_interval: Optional[str] = None,
|
1028
1031
|
labels: Optional[Mapping[str, str]] = None,
|
@@ -1040,8 +1043,6 @@ class AlertPolicyConditionConditionPrometheusQueryLanguage(dict):
|
|
1040
1043
|
in the future.
|
1041
1044
|
This field is optional. If this field is not empty, then it must be a
|
1042
1045
|
valid Prometheus label name.
|
1043
|
-
|
1044
|
-
- - -
|
1045
1046
|
:param str duration: Alerts are considered firing once their PromQL expression evaluated
|
1046
1047
|
to be "true" for this long. Alerts whose PromQL expression was not
|
1047
1048
|
evaluated to be "true" for long enough are considered pending. The
|
@@ -1068,6 +1069,8 @@ class AlertPolicyConditionConditionPrometheusQueryLanguage(dict):
|
|
1068
1069
|
pulumi.set(__self__, "query", query)
|
1069
1070
|
if alert_rule is not None:
|
1070
1071
|
pulumi.set(__self__, "alert_rule", alert_rule)
|
1072
|
+
if disable_metric_validation is not None:
|
1073
|
+
pulumi.set(__self__, "disable_metric_validation", disable_metric_validation)
|
1071
1074
|
if duration is not None:
|
1072
1075
|
pulumi.set(__self__, "duration", duration)
|
1073
1076
|
if evaluation_interval is not None:
|
@@ -1100,11 +1103,14 @@ class AlertPolicyConditionConditionPrometheusQueryLanguage(dict):
|
|
1100
1103
|
in the future.
|
1101
1104
|
This field is optional. If this field is not empty, then it must be a
|
1102
1105
|
valid Prometheus label name.
|
1103
|
-
|
1104
|
-
- - -
|
1105
1106
|
"""
|
1106
1107
|
return pulumi.get(self, "alert_rule")
|
1107
1108
|
|
1109
|
+
@property
|
1110
|
+
@pulumi.getter(name="disableMetricValidation")
|
1111
|
+
def disable_metric_validation(self) -> Optional[bool]:
|
1112
|
+
return pulumi.get(self, "disable_metric_validation")
|
1113
|
+
|
1108
1114
|
@property
|
1109
1115
|
@pulumi.getter
|
1110
1116
|
def duration(self) -> Optional[str]:
|
pulumi_gcp/netapp/_inputs.py
CHANGED
@@ -163,7 +163,7 @@ if not MYPY:
|
|
163
163
|
"""
|
164
164
|
allowed_clients: NotRequired[pulumi.Input[str]]
|
165
165
|
"""
|
166
|
-
Defines the client ingress specification (allowed clients) as a comma
|
166
|
+
Defines the client ingress specification (allowed clients) as a comma separated list with IPv4 CIDRs or IPv4 host addresses.
|
167
167
|
"""
|
168
168
|
has_root_access: NotRequired[pulumi.Input[str]]
|
169
169
|
"""
|
@@ -221,7 +221,7 @@ class VolumeExportPolicyRuleArgs:
|
|
221
221
|
"""
|
222
222
|
:param pulumi.Input[str] access_type: Defines the access type for clients matching the `allowedClients` specification.
|
223
223
|
Possible values are: `READ_ONLY`, `READ_WRITE`, `READ_NONE`.
|
224
|
-
:param pulumi.Input[str] allowed_clients: Defines the client ingress specification (allowed clients) as a comma
|
224
|
+
:param pulumi.Input[str] allowed_clients: Defines the client ingress specification (allowed clients) as a comma separated list with IPv4 CIDRs or IPv4 host addresses.
|
225
225
|
:param pulumi.Input[str] has_root_access: If enabled, the root user (UID = 0) of the specified clients doesn't get mapped to nobody (UID = 65534). This is also known as no_root_squash.
|
226
226
|
:param pulumi.Input[bool] kerberos5_read_only: If enabled (true) the rule defines a read only access for clients matching the 'allowedClients' specification. It enables nfs clients to mount using 'authentication' kerberos security mode.
|
227
227
|
:param pulumi.Input[bool] kerberos5_read_write: If enabled (true) the rule defines read and write access for clients matching the 'allowedClients' specification. It enables nfs clients to mount using 'authentication' kerberos security mode. The 'kerberos5ReadOnly' value is ignored if this is enabled.
|
@@ -272,7 +272,7 @@ class VolumeExportPolicyRuleArgs:
|
|
272
272
|
@pulumi.getter(name="allowedClients")
|
273
273
|
def allowed_clients(self) -> Optional[pulumi.Input[str]]:
|
274
274
|
"""
|
275
|
-
Defines the client ingress specification (allowed clients) as a comma
|
275
|
+
Defines the client ingress specification (allowed clients) as a comma separated list with IPv4 CIDRs or IPv4 host addresses.
|
276
276
|
"""
|
277
277
|
return pulumi.get(self, "allowed_clients")
|
278
278
|
|