pulumi-gcp 7.5.0a1704283083__py3-none-any.whl → 7.6.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_gcp/__init__.py +99 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +40 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +117 -3
- pulumi_gcp/bigqueryanalyticshub/outputs.py +49 -0
- pulumi_gcp/clouddeploy/__init__.py +1 -0
- pulumi_gcp/clouddeploy/_inputs.py +239 -0
- pulumi_gcp/clouddeploy/automation.py +1103 -0
- pulumi_gcp/clouddeploy/outputs.py +246 -0
- pulumi_gcp/clouddomains/__init__.py +10 -0
- pulumi_gcp/clouddomains/_inputs.py +1098 -0
- pulumi_gcp/clouddomains/outputs.py +1156 -0
- pulumi_gcp/clouddomains/registration.py +1068 -0
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/composer/_inputs.py +79 -1
- pulumi_gcp/composer/outputs.py +131 -4
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +180 -0
- pulumi_gcp/compute/get_instance_template.py +11 -1
- pulumi_gcp/compute/get_region_instance_template.py +11 -1
- pulumi_gcp/compute/get_reservation.py +212 -0
- pulumi_gcp/compute/instance_template.py +47 -0
- pulumi_gcp/compute/network_firewall_policy.py +20 -22
- pulumi_gcp/compute/outputs.py +325 -0
- pulumi_gcp/compute/region_instance_template.py +47 -0
- pulumi_gcp/compute/region_network_firewall_policy.py +31 -35
- pulumi_gcp/compute/router_peer.py +54 -0
- pulumi_gcp/compute/vpn_tunnel.py +8 -4
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +23 -0
- pulumi_gcp/container/aws_node_pool.py +7 -7
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +11 -1
- pulumi_gcp/container/outputs.py +49 -0
- pulumi_gcp/dataflow/pipeline.py +1 -1
- pulumi_gcp/dataproc/_inputs.py +413 -39
- pulumi_gcp/dataproc/metastore_service.py +63 -0
- pulumi_gcp/dataproc/outputs.py +461 -39
- pulumi_gcp/dns/__init__.py +1 -0
- pulumi_gcp/dns/_inputs.py +94 -0
- pulumi_gcp/dns/get_managed_zones.py +89 -0
- pulumi_gcp/dns/outputs.py +62 -0
- pulumi_gcp/edgecontainer/vpn_connection.py +10 -10
- pulumi_gcp/filestore/__init__.py +1 -0
- pulumi_gcp/filestore/get_instance.py +258 -0
- pulumi_gcp/filestore/instance.py +7 -7
- pulumi_gcp/filestore/outputs.py +126 -0
- pulumi_gcp/gkebackup/backup_plan.py +24 -8
- pulumi_gcp/gkebackup/restore_plan.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +36 -12
- pulumi_gcp/gkehub/_inputs.py +502 -2
- pulumi_gcp/gkehub/feature.py +34 -0
- pulumi_gcp/gkehub/feature_membership.py +177 -0
- pulumi_gcp/gkehub/membership.py +18 -6
- pulumi_gcp/gkehub/outputs.py +502 -2
- pulumi_gcp/gkeonprem/_inputs.py +21 -25
- pulumi_gcp/gkeonprem/outputs.py +34 -25
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +34 -0
- pulumi_gcp/integrationconnectors/__init__.py +1 -0
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +669 -0
- pulumi_gcp/kms/_inputs.py +42 -0
- pulumi_gcp/kms/crypto_key.py +36 -0
- pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
- pulumi_gcp/kms/outputs.py +62 -0
- pulumi_gcp/logging/__init__.py +2 -0
- pulumi_gcp/logging/folder_settings.py +490 -0
- pulumi_gcp/logging/folder_sink.py +21 -21
- pulumi_gcp/logging/organization_settings.py +484 -0
- pulumi_gcp/logging/organization_sink.py +21 -21
- pulumi_gcp/logging/project_sink.py +7 -14
- pulumi_gcp/netapp/__init__.py +3 -0
- pulumi_gcp/netapp/active_directory.py +1413 -0
- pulumi_gcp/netapp/backup_vault.py +593 -0
- pulumi_gcp/netapp/kmsconfig.py +649 -0
- pulumi_gcp/orgpolicy/policy.py +28 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +29 -37
- pulumi_gcp/serviceaccount/account.py +47 -0
- pulumi_gcp/servicenetworking/connection.py +55 -1
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/ssl_cert.py +1 -1
- pulumi_gcp/sql/user.py +7 -7
- pulumi_gcp/storage/transfer_job.py +24 -5
- pulumi_gcp/vertex/__init__.py +3 -0
- pulumi_gcp/vertex/_inputs.py +339 -0
- pulumi_gcp/vertex/ai_feature_group.py +710 -0
- pulumi_gcp/vertex/ai_feature_online_store.py +962 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +804 -0
- pulumi_gcp/vertex/outputs.py +406 -0
- pulumi_gcp/vmwareengine/__init__.py +2 -0
- pulumi_gcp/vmwareengine/_inputs.py +84 -0
- pulumi_gcp/vmwareengine/external_access_rule.py +947 -0
- pulumi_gcp/vmwareengine/get_external_access_rule.py +245 -0
- pulumi_gcp/vmwareengine/outputs.py +146 -0
- pulumi_gcp/workflows/workflow.py +7 -7
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/RECORD +101 -82
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/outputs.py
CHANGED
@@ -401,6 +401,7 @@ __all__ = [
|
|
401
401
|
'RouterNatSubnetwork',
|
402
402
|
'RouterPeerAdvertisedIpRange',
|
403
403
|
'RouterPeerBfd',
|
404
|
+
'RouterPeerMd5AuthenticationKey',
|
404
405
|
'RouterStatusBestRouteResult',
|
405
406
|
'RouterStatusBestRoutesForRouterResult',
|
406
407
|
'SecurityPolicyAdaptiveProtectionConfig',
|
@@ -653,6 +654,12 @@ __all__ = [
|
|
653
654
|
'GetRegionNetworkEndpointGroupCloudFunctionResult',
|
654
655
|
'GetRegionNetworkEndpointGroupCloudRunResult',
|
655
656
|
'GetRegionNetworkEndpointGroupServerlessDeploymentResult',
|
657
|
+
'GetReservationShareSettingResult',
|
658
|
+
'GetReservationShareSettingProjectMapResult',
|
659
|
+
'GetReservationSpecificReservationResult',
|
660
|
+
'GetReservationSpecificReservationInstancePropertyResult',
|
661
|
+
'GetReservationSpecificReservationInstancePropertyGuestAcceleratorResult',
|
662
|
+
'GetReservationSpecificReservationInstancePropertyLocalSsdResult',
|
656
663
|
'GetResourcePolicyDiskConsistencyGroupPolicyResult',
|
657
664
|
'GetResourcePolicyGroupPlacementPolicyResult',
|
658
665
|
'GetResourcePolicyInstanceSchedulePolicyResult',
|
@@ -5966,6 +5973,10 @@ class InstanceBootDiskInitializeParams(dict):
|
|
5966
5973
|
suggest = None
|
5967
5974
|
if key == "enableConfidentialCompute":
|
5968
5975
|
suggest = "enable_confidential_compute"
|
5976
|
+
elif key == "provisionedIops":
|
5977
|
+
suggest = "provisioned_iops"
|
5978
|
+
elif key == "provisionedThroughput":
|
5979
|
+
suggest = "provisioned_throughput"
|
5969
5980
|
elif key == "resourceManagerTags":
|
5970
5981
|
suggest = "resource_manager_tags"
|
5971
5982
|
|
@@ -5984,6 +5995,8 @@ class InstanceBootDiskInitializeParams(dict):
|
|
5984
5995
|
enable_confidential_compute: Optional[bool] = None,
|
5985
5996
|
image: Optional[str] = None,
|
5986
5997
|
labels: Optional[Mapping[str, Any]] = None,
|
5998
|
+
provisioned_iops: Optional[int] = None,
|
5999
|
+
provisioned_throughput: Optional[int] = None,
|
5987
6000
|
resource_manager_tags: Optional[Mapping[str, Any]] = None,
|
5988
6001
|
size: Optional[int] = None,
|
5989
6002
|
type: Optional[str] = None):
|
@@ -6000,6 +6013,20 @@ class InstanceBootDiskInitializeParams(dict):
|
|
6000
6013
|
These images can be referred by family name here.
|
6001
6014
|
:param Mapping[str, Any] labels: A set of key/value label pairs assigned to the disk. This
|
6002
6015
|
field is only applicable for persistent disks.
|
6016
|
+
:param int provisioned_iops: Indicates how many IOPS to provision for the disk.
|
6017
|
+
This sets the number of I/O operations per second that the disk can handle.
|
6018
|
+
Values must be between 10,000 and 120,000. For more details,see the
|
6019
|
+
[Extreme persistent disk documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk).
|
6020
|
+
Note: Updating currently is only supported for hyperdisk skus via disk update
|
6021
|
+
api/gcloud without the need to delete and recreate the disk, hyperdisk allows
|
6022
|
+
for an update of IOPS every 4 hours. To update your hyperdisk more frequently,
|
6023
|
+
you'll need to manually delete and recreate it.
|
6024
|
+
:param int provisioned_throughput: Indicates how much throughput to provision for the disk.
|
6025
|
+
This sets the number of throughput mb per second that the disk can handle.
|
6026
|
+
Values must be between 1 and 7,124. Note: Updating currently is only supported
|
6027
|
+
for hyperdisk skus via disk update api/gcloud without the need to delete and
|
6028
|
+
recreate the disk, hyperdisk allows for an update of throughput every 4 hours.
|
6029
|
+
To update your hyperdisk more frequently, you'll need to manually delete and recreate it.
|
6003
6030
|
:param int size: The size of the image in gigabytes. If not specified, it
|
6004
6031
|
will inherit the size of its base image.
|
6005
6032
|
:param str type: The GCE disk type. Such as pd-standard, pd-balanced or pd-ssd.
|
@@ -6010,6 +6037,10 @@ class InstanceBootDiskInitializeParams(dict):
|
|
6010
6037
|
pulumi.set(__self__, "image", image)
|
6011
6038
|
if labels is not None:
|
6012
6039
|
pulumi.set(__self__, "labels", labels)
|
6040
|
+
if provisioned_iops is not None:
|
6041
|
+
pulumi.set(__self__, "provisioned_iops", provisioned_iops)
|
6042
|
+
if provisioned_throughput is not None:
|
6043
|
+
pulumi.set(__self__, "provisioned_throughput", provisioned_throughput)
|
6013
6044
|
if resource_manager_tags is not None:
|
6014
6045
|
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
6015
6046
|
if size is not None:
|
@@ -6050,6 +6081,34 @@ class InstanceBootDiskInitializeParams(dict):
|
|
6050
6081
|
"""
|
6051
6082
|
return pulumi.get(self, "labels")
|
6052
6083
|
|
6084
|
+
@property
|
6085
|
+
@pulumi.getter(name="provisionedIops")
|
6086
|
+
def provisioned_iops(self) -> Optional[int]:
|
6087
|
+
"""
|
6088
|
+
Indicates how many IOPS to provision for the disk.
|
6089
|
+
This sets the number of I/O operations per second that the disk can handle.
|
6090
|
+
Values must be between 10,000 and 120,000. For more details,see the
|
6091
|
+
[Extreme persistent disk documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk).
|
6092
|
+
Note: Updating currently is only supported for hyperdisk skus via disk update
|
6093
|
+
api/gcloud without the need to delete and recreate the disk, hyperdisk allows
|
6094
|
+
for an update of IOPS every 4 hours. To update your hyperdisk more frequently,
|
6095
|
+
you'll need to manually delete and recreate it.
|
6096
|
+
"""
|
6097
|
+
return pulumi.get(self, "provisioned_iops")
|
6098
|
+
|
6099
|
+
@property
|
6100
|
+
@pulumi.getter(name="provisionedThroughput")
|
6101
|
+
def provisioned_throughput(self) -> Optional[int]:
|
6102
|
+
"""
|
6103
|
+
Indicates how much throughput to provision for the disk.
|
6104
|
+
This sets the number of throughput mb per second that the disk can handle.
|
6105
|
+
Values must be between 1 and 7,124. Note: Updating currently is only supported
|
6106
|
+
for hyperdisk skus via disk update api/gcloud without the need to delete and
|
6107
|
+
recreate the disk, hyperdisk allows for an update of throughput every 4 hours.
|
6108
|
+
To update your hyperdisk more frequently, you'll need to manually delete and recreate it.
|
6109
|
+
"""
|
6110
|
+
return pulumi.get(self, "provisioned_throughput")
|
6111
|
+
|
6053
6112
|
@property
|
6054
6113
|
@pulumi.getter(name="resourceManagerTags")
|
6055
6114
|
def resource_manager_tags(self) -> Optional[Mapping[str, Any]]:
|
@@ -6336,6 +6395,10 @@ class InstanceFromMachineImageBootDiskInitializeParams(dict):
|
|
6336
6395
|
suggest = None
|
6337
6396
|
if key == "enableConfidentialCompute":
|
6338
6397
|
suggest = "enable_confidential_compute"
|
6398
|
+
elif key == "provisionedIops":
|
6399
|
+
suggest = "provisioned_iops"
|
6400
|
+
elif key == "provisionedThroughput":
|
6401
|
+
suggest = "provisioned_throughput"
|
6339
6402
|
elif key == "resourceManagerTags":
|
6340
6403
|
suggest = "resource_manager_tags"
|
6341
6404
|
|
@@ -6354,6 +6417,8 @@ class InstanceFromMachineImageBootDiskInitializeParams(dict):
|
|
6354
6417
|
enable_confidential_compute: Optional[bool] = None,
|
6355
6418
|
image: Optional[str] = None,
|
6356
6419
|
labels: Optional[Mapping[str, Any]] = None,
|
6420
|
+
provisioned_iops: Optional[int] = None,
|
6421
|
+
provisioned_throughput: Optional[int] = None,
|
6357
6422
|
resource_manager_tags: Optional[Mapping[str, Any]] = None,
|
6358
6423
|
size: Optional[int] = None,
|
6359
6424
|
type: Optional[str] = None):
|
@@ -6363,6 +6428,10 @@ class InstanceFromMachineImageBootDiskInitializeParams(dict):
|
|
6363
6428
|
pulumi.set(__self__, "image", image)
|
6364
6429
|
if labels is not None:
|
6365
6430
|
pulumi.set(__self__, "labels", labels)
|
6431
|
+
if provisioned_iops is not None:
|
6432
|
+
pulumi.set(__self__, "provisioned_iops", provisioned_iops)
|
6433
|
+
if provisioned_throughput is not None:
|
6434
|
+
pulumi.set(__self__, "provisioned_throughput", provisioned_throughput)
|
6366
6435
|
if resource_manager_tags is not None:
|
6367
6436
|
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
6368
6437
|
if size is not None:
|
@@ -6385,6 +6454,16 @@ class InstanceFromMachineImageBootDiskInitializeParams(dict):
|
|
6385
6454
|
def labels(self) -> Optional[Mapping[str, Any]]:
|
6386
6455
|
return pulumi.get(self, "labels")
|
6387
6456
|
|
6457
|
+
@property
|
6458
|
+
@pulumi.getter(name="provisionedIops")
|
6459
|
+
def provisioned_iops(self) -> Optional[int]:
|
6460
|
+
return pulumi.get(self, "provisioned_iops")
|
6461
|
+
|
6462
|
+
@property
|
6463
|
+
@pulumi.getter(name="provisionedThroughput")
|
6464
|
+
def provisioned_throughput(self) -> Optional[int]:
|
6465
|
+
return pulumi.get(self, "provisioned_throughput")
|
6466
|
+
|
6388
6467
|
@property
|
6389
6468
|
@pulumi.getter(name="resourceManagerTags")
|
6390
6469
|
def resource_manager_tags(self) -> Optional[Mapping[str, Any]]:
|
@@ -7457,6 +7536,10 @@ class InstanceFromTemplateBootDiskInitializeParams(dict):
|
|
7457
7536
|
suggest = None
|
7458
7537
|
if key == "enableConfidentialCompute":
|
7459
7538
|
suggest = "enable_confidential_compute"
|
7539
|
+
elif key == "provisionedIops":
|
7540
|
+
suggest = "provisioned_iops"
|
7541
|
+
elif key == "provisionedThroughput":
|
7542
|
+
suggest = "provisioned_throughput"
|
7460
7543
|
elif key == "resourceManagerTags":
|
7461
7544
|
suggest = "resource_manager_tags"
|
7462
7545
|
|
@@ -7475,6 +7558,8 @@ class InstanceFromTemplateBootDiskInitializeParams(dict):
|
|
7475
7558
|
enable_confidential_compute: Optional[bool] = None,
|
7476
7559
|
image: Optional[str] = None,
|
7477
7560
|
labels: Optional[Mapping[str, Any]] = None,
|
7561
|
+
provisioned_iops: Optional[int] = None,
|
7562
|
+
provisioned_throughput: Optional[int] = None,
|
7478
7563
|
resource_manager_tags: Optional[Mapping[str, Any]] = None,
|
7479
7564
|
size: Optional[int] = None,
|
7480
7565
|
type: Optional[str] = None):
|
@@ -7484,6 +7569,10 @@ class InstanceFromTemplateBootDiskInitializeParams(dict):
|
|
7484
7569
|
pulumi.set(__self__, "image", image)
|
7485
7570
|
if labels is not None:
|
7486
7571
|
pulumi.set(__self__, "labels", labels)
|
7572
|
+
if provisioned_iops is not None:
|
7573
|
+
pulumi.set(__self__, "provisioned_iops", provisioned_iops)
|
7574
|
+
if provisioned_throughput is not None:
|
7575
|
+
pulumi.set(__self__, "provisioned_throughput", provisioned_throughput)
|
7487
7576
|
if resource_manager_tags is not None:
|
7488
7577
|
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
7489
7578
|
if size is not None:
|
@@ -7506,6 +7595,16 @@ class InstanceFromTemplateBootDiskInitializeParams(dict):
|
|
7506
7595
|
def labels(self) -> Optional[Mapping[str, Any]]:
|
7507
7596
|
return pulumi.get(self, "labels")
|
7508
7597
|
|
7598
|
+
@property
|
7599
|
+
@pulumi.getter(name="provisionedIops")
|
7600
|
+
def provisioned_iops(self) -> Optional[int]:
|
7601
|
+
return pulumi.get(self, "provisioned_iops")
|
7602
|
+
|
7603
|
+
@property
|
7604
|
+
@pulumi.getter(name="provisionedThroughput")
|
7605
|
+
def provisioned_throughput(self) -> Optional[int]:
|
7606
|
+
return pulumi.get(self, "provisioned_throughput")
|
7607
|
+
|
7509
7608
|
@property
|
7510
7609
|
@pulumi.getter(name="resourceManagerTags")
|
7511
7610
|
def resource_manager_tags(self) -> Optional[Mapping[str, Any]]:
|
@@ -10525,6 +10624,8 @@ class InstanceTemplateDisk(dict):
|
|
10525
10624
|
suggest = "disk_type"
|
10526
10625
|
elif key == "provisionedIops":
|
10527
10626
|
suggest = "provisioned_iops"
|
10627
|
+
elif key == "resourceManagerTags":
|
10628
|
+
suggest = "resource_manager_tags"
|
10528
10629
|
elif key == "resourcePolicies":
|
10529
10630
|
suggest = "resource_policies"
|
10530
10631
|
elif key == "sourceImage":
|
@@ -10559,6 +10660,7 @@ class InstanceTemplateDisk(dict):
|
|
10559
10660
|
labels: Optional[Mapping[str, str]] = None,
|
10560
10661
|
mode: Optional[str] = None,
|
10561
10662
|
provisioned_iops: Optional[int] = None,
|
10663
|
+
resource_manager_tags: Optional[Mapping[str, str]] = None,
|
10562
10664
|
resource_policies: Optional[str] = None,
|
10563
10665
|
source: Optional[str] = None,
|
10564
10666
|
source_image: Optional[str] = None,
|
@@ -10602,6 +10704,7 @@ class InstanceTemplateDisk(dict):
|
|
10602
10704
|
sets the number of I/O operations per second that the disk can handle.
|
10603
10705
|
Values must be between 10,000 and 120,000. For more details, see the
|
10604
10706
|
[Extreme persistent disk documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk).
|
10707
|
+
:param Mapping[str, str] resource_manager_tags: A set of key/value resource manager tag pairs to bind to this disk. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
|
10605
10708
|
:param str resource_policies: - A list (short name or id) of resource policies to attach to this disk for automatic snapshot creations. Currently a max of 1 resource policy is supported.
|
10606
10709
|
:param str source: The name (**not self_link**)
|
10607
10710
|
of the disk (such as those managed by `compute.Disk`) to attach.
|
@@ -10651,6 +10754,8 @@ class InstanceTemplateDisk(dict):
|
|
10651
10754
|
pulumi.set(__self__, "mode", mode)
|
10652
10755
|
if provisioned_iops is not None:
|
10653
10756
|
pulumi.set(__self__, "provisioned_iops", provisioned_iops)
|
10757
|
+
if resource_manager_tags is not None:
|
10758
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
10654
10759
|
if resource_policies is not None:
|
10655
10760
|
pulumi.set(__self__, "resource_policies", resource_policies)
|
10656
10761
|
if source is not None:
|
@@ -10778,6 +10883,14 @@ class InstanceTemplateDisk(dict):
|
|
10778
10883
|
"""
|
10779
10884
|
return pulumi.get(self, "provisioned_iops")
|
10780
10885
|
|
10886
|
+
@property
|
10887
|
+
@pulumi.getter(name="resourceManagerTags")
|
10888
|
+
def resource_manager_tags(self) -> Optional[Mapping[str, str]]:
|
10889
|
+
"""
|
10890
|
+
A set of key/value resource manager tag pairs to bind to this disk. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
|
10891
|
+
"""
|
10892
|
+
return pulumi.get(self, "resource_manager_tags")
|
10893
|
+
|
10781
10894
|
@property
|
10782
10895
|
@pulumi.getter(name="resourcePolicies")
|
10783
10896
|
def resource_policies(self) -> Optional[str]:
|
@@ -18266,6 +18379,8 @@ class RegionInstanceTemplateDisk(dict):
|
|
18266
18379
|
suggest = "disk_type"
|
18267
18380
|
elif key == "provisionedIops":
|
18268
18381
|
suggest = "provisioned_iops"
|
18382
|
+
elif key == "resourceManagerTags":
|
18383
|
+
suggest = "resource_manager_tags"
|
18269
18384
|
elif key == "resourcePolicies":
|
18270
18385
|
suggest = "resource_policies"
|
18271
18386
|
elif key == "sourceImage":
|
@@ -18300,6 +18415,7 @@ class RegionInstanceTemplateDisk(dict):
|
|
18300
18415
|
labels: Optional[Mapping[str, str]] = None,
|
18301
18416
|
mode: Optional[str] = None,
|
18302
18417
|
provisioned_iops: Optional[int] = None,
|
18418
|
+
resource_manager_tags: Optional[Mapping[str, str]] = None,
|
18303
18419
|
resource_policies: Optional[str] = None,
|
18304
18420
|
source: Optional[str] = None,
|
18305
18421
|
source_image: Optional[str] = None,
|
@@ -18343,6 +18459,7 @@ class RegionInstanceTemplateDisk(dict):
|
|
18343
18459
|
sets the number of I/O operations per second that the disk can handle.
|
18344
18460
|
Values must be between 10,000 and 120,000. For more details, see the
|
18345
18461
|
[Extreme persistent disk documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk).
|
18462
|
+
:param Mapping[str, str] resource_manager_tags: A set of key/value resource manager tag pairs to bind to this disk. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
|
18346
18463
|
:param str resource_policies: - A list (short name or id) of resource policies to attach to this disk for automatic snapshot creations. Currently a max of 1 resource policy is supported.
|
18347
18464
|
:param str source: The name (**not self_link**)
|
18348
18465
|
of the disk (such as those managed by `compute.Disk`) to attach.
|
@@ -18392,6 +18509,8 @@ class RegionInstanceTemplateDisk(dict):
|
|
18392
18509
|
pulumi.set(__self__, "mode", mode)
|
18393
18510
|
if provisioned_iops is not None:
|
18394
18511
|
pulumi.set(__self__, "provisioned_iops", provisioned_iops)
|
18512
|
+
if resource_manager_tags is not None:
|
18513
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
18395
18514
|
if resource_policies is not None:
|
18396
18515
|
pulumi.set(__self__, "resource_policies", resource_policies)
|
18397
18516
|
if source is not None:
|
@@ -18519,6 +18638,14 @@ class RegionInstanceTemplateDisk(dict):
|
|
18519
18638
|
"""
|
18520
18639
|
return pulumi.get(self, "provisioned_iops")
|
18521
18640
|
|
18641
|
+
@property
|
18642
|
+
@pulumi.getter(name="resourceManagerTags")
|
18643
|
+
def resource_manager_tags(self) -> Optional[Mapping[str, str]]:
|
18644
|
+
"""
|
18645
|
+
A set of key/value resource manager tag pairs to bind to this disk. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
|
18646
|
+
"""
|
18647
|
+
return pulumi.get(self, "resource_manager_tags")
|
18648
|
+
|
18522
18649
|
@property
|
18523
18650
|
@pulumi.getter(name="resourcePolicies")
|
18524
18651
|
def resource_policies(self) -> Optional[str]:
|
@@ -27662,6 +27789,41 @@ class RouterPeerBfd(dict):
|
|
27662
27789
|
return pulumi.get(self, "multiplier")
|
27663
27790
|
|
27664
27791
|
|
27792
|
+
@pulumi.output_type
|
27793
|
+
class RouterPeerMd5AuthenticationKey(dict):
|
27794
|
+
def __init__(__self__, *,
|
27795
|
+
key: str,
|
27796
|
+
name: str):
|
27797
|
+
"""
|
27798
|
+
:param str name: Name of this BGP peer. The name must be 1-63 characters long,
|
27799
|
+
and comply with RFC1035. Specifically, the name must be 1-63 characters
|
27800
|
+
long and match the regular expression `a-z?` which
|
27801
|
+
means the first character must be a lowercase letter, and all
|
27802
|
+
following characters must be a dash, lowercase letter, or digit,
|
27803
|
+
except the last character, which cannot be a dash.
|
27804
|
+
"""
|
27805
|
+
pulumi.set(__self__, "key", key)
|
27806
|
+
pulumi.set(__self__, "name", name)
|
27807
|
+
|
27808
|
+
@property
|
27809
|
+
@pulumi.getter
|
27810
|
+
def key(self) -> str:
|
27811
|
+
return pulumi.get(self, "key")
|
27812
|
+
|
27813
|
+
@property
|
27814
|
+
@pulumi.getter
|
27815
|
+
def name(self) -> str:
|
27816
|
+
"""
|
27817
|
+
Name of this BGP peer. The name must be 1-63 characters long,
|
27818
|
+
and comply with RFC1035. Specifically, the name must be 1-63 characters
|
27819
|
+
long and match the regular expression `a-z?` which
|
27820
|
+
means the first character must be a lowercase letter, and all
|
27821
|
+
following characters must be a dash, lowercase letter, or digit,
|
27822
|
+
except the last character, which cannot be a dash.
|
27823
|
+
"""
|
27824
|
+
return pulumi.get(self, "name")
|
27825
|
+
|
27826
|
+
|
27665
27827
|
@pulumi.output_type
|
27666
27828
|
class RouterStatusBestRouteResult(dict):
|
27667
27829
|
def __init__(__self__, *,
|
@@ -38145,6 +38307,8 @@ class GetInstanceBootDiskInitializeParamResult(dict):
|
|
38145
38307
|
enable_confidential_compute: bool,
|
38146
38308
|
image: str,
|
38147
38309
|
labels: Mapping[str, Any],
|
38310
|
+
provisioned_iops: int,
|
38311
|
+
provisioned_throughput: int,
|
38148
38312
|
resource_manager_tags: Mapping[str, Any],
|
38149
38313
|
size: int,
|
38150
38314
|
type: str):
|
@@ -38157,6 +38321,8 @@ class GetInstanceBootDiskInitializeParamResult(dict):
|
|
38157
38321
|
pulumi.set(__self__, "enable_confidential_compute", enable_confidential_compute)
|
38158
38322
|
pulumi.set(__self__, "image", image)
|
38159
38323
|
pulumi.set(__self__, "labels", labels)
|
38324
|
+
pulumi.set(__self__, "provisioned_iops", provisioned_iops)
|
38325
|
+
pulumi.set(__self__, "provisioned_throughput", provisioned_throughput)
|
38160
38326
|
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
38161
38327
|
pulumi.set(__self__, "size", size)
|
38162
38328
|
pulumi.set(__self__, "type", type)
|
@@ -38182,6 +38348,16 @@ class GetInstanceBootDiskInitializeParamResult(dict):
|
|
38182
38348
|
"""
|
38183
38349
|
return pulumi.get(self, "labels")
|
38184
38350
|
|
38351
|
+
@property
|
38352
|
+
@pulumi.getter(name="provisionedIops")
|
38353
|
+
def provisioned_iops(self) -> int:
|
38354
|
+
return pulumi.get(self, "provisioned_iops")
|
38355
|
+
|
38356
|
+
@property
|
38357
|
+
@pulumi.getter(name="provisionedThroughput")
|
38358
|
+
def provisioned_throughput(self) -> int:
|
38359
|
+
return pulumi.get(self, "provisioned_throughput")
|
38360
|
+
|
38185
38361
|
@property
|
38186
38362
|
@pulumi.getter(name="resourceManagerTags")
|
38187
38363
|
def resource_manager_tags(self) -> Mapping[str, Any]:
|
@@ -39311,6 +39487,7 @@ class GetInstanceTemplateDiskResult(dict):
|
|
39311
39487
|
labels: Mapping[str, str],
|
39312
39488
|
mode: str,
|
39313
39489
|
provisioned_iops: int,
|
39490
|
+
resource_manager_tags: Mapping[str, str],
|
39314
39491
|
resource_policies: Sequence[str],
|
39315
39492
|
source: str,
|
39316
39493
|
source_image: str,
|
@@ -39370,6 +39547,7 @@ class GetInstanceTemplateDiskResult(dict):
|
|
39370
39547
|
pulumi.set(__self__, "labels", labels)
|
39371
39548
|
pulumi.set(__self__, "mode", mode)
|
39372
39549
|
pulumi.set(__self__, "provisioned_iops", provisioned_iops)
|
39550
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
39373
39551
|
pulumi.set(__self__, "resource_policies", resource_policies)
|
39374
39552
|
pulumi.set(__self__, "source", source)
|
39375
39553
|
pulumi.set(__self__, "source_image", source_image)
|
@@ -39482,6 +39660,11 @@ class GetInstanceTemplateDiskResult(dict):
|
|
39482
39660
|
"""
|
39483
39661
|
return pulumi.get(self, "provisioned_iops")
|
39484
39662
|
|
39663
|
+
@property
|
39664
|
+
@pulumi.getter(name="resourceManagerTags")
|
39665
|
+
def resource_manager_tags(self) -> Mapping[str, str]:
|
39666
|
+
return pulumi.get(self, "resource_manager_tags")
|
39667
|
+
|
39485
39668
|
@property
|
39486
39669
|
@pulumi.getter(name="resourcePolicies")
|
39487
39670
|
def resource_policies(self) -> Sequence[str]:
|
@@ -40479,6 +40662,7 @@ class GetRegionInstanceTemplateDiskResult(dict):
|
|
40479
40662
|
labels: Mapping[str, str],
|
40480
40663
|
mode: str,
|
40481
40664
|
provisioned_iops: int,
|
40665
|
+
resource_manager_tags: Mapping[str, str],
|
40482
40666
|
resource_policies: Sequence[str],
|
40483
40667
|
source: str,
|
40484
40668
|
source_image: str,
|
@@ -40538,6 +40722,7 @@ class GetRegionInstanceTemplateDiskResult(dict):
|
|
40538
40722
|
pulumi.set(__self__, "labels", labels)
|
40539
40723
|
pulumi.set(__self__, "mode", mode)
|
40540
40724
|
pulumi.set(__self__, "provisioned_iops", provisioned_iops)
|
40725
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
40541
40726
|
pulumi.set(__self__, "resource_policies", resource_policies)
|
40542
40727
|
pulumi.set(__self__, "source", source)
|
40543
40728
|
pulumi.set(__self__, "source_image", source_image)
|
@@ -40650,6 +40835,11 @@ class GetRegionInstanceTemplateDiskResult(dict):
|
|
40650
40835
|
"""
|
40651
40836
|
return pulumi.get(self, "provisioned_iops")
|
40652
40837
|
|
40838
|
+
@property
|
40839
|
+
@pulumi.getter(name="resourceManagerTags")
|
40840
|
+
def resource_manager_tags(self) -> Mapping[str, str]:
|
40841
|
+
return pulumi.get(self, "resource_manager_tags")
|
40842
|
+
|
40653
40843
|
@property
|
40654
40844
|
@pulumi.getter(name="resourcePolicies")
|
40655
40845
|
def resource_policies(self) -> Sequence[str]:
|
@@ -41527,6 +41717,141 @@ class GetRegionNetworkEndpointGroupServerlessDeploymentResult(dict):
|
|
41527
41717
|
return pulumi.get(self, "version")
|
41528
41718
|
|
41529
41719
|
|
41720
|
+
@pulumi.output_type
|
41721
|
+
class GetReservationShareSettingResult(dict):
|
41722
|
+
def __init__(__self__, *,
|
41723
|
+
project_maps: Sequence['outputs.GetReservationShareSettingProjectMapResult'],
|
41724
|
+
share_type: str):
|
41725
|
+
pulumi.set(__self__, "project_maps", project_maps)
|
41726
|
+
pulumi.set(__self__, "share_type", share_type)
|
41727
|
+
|
41728
|
+
@property
|
41729
|
+
@pulumi.getter(name="projectMaps")
|
41730
|
+
def project_maps(self) -> Sequence['outputs.GetReservationShareSettingProjectMapResult']:
|
41731
|
+
return pulumi.get(self, "project_maps")
|
41732
|
+
|
41733
|
+
@property
|
41734
|
+
@pulumi.getter(name="shareType")
|
41735
|
+
def share_type(self) -> str:
|
41736
|
+
return pulumi.get(self, "share_type")
|
41737
|
+
|
41738
|
+
|
41739
|
+
@pulumi.output_type
|
41740
|
+
class GetReservationShareSettingProjectMapResult(dict):
|
41741
|
+
def __init__(__self__, *,
|
41742
|
+
id: str,
|
41743
|
+
project_id: str):
|
41744
|
+
pulumi.set(__self__, "id", id)
|
41745
|
+
pulumi.set(__self__, "project_id", project_id)
|
41746
|
+
|
41747
|
+
@property
|
41748
|
+
@pulumi.getter
|
41749
|
+
def id(self) -> str:
|
41750
|
+
return pulumi.get(self, "id")
|
41751
|
+
|
41752
|
+
@property
|
41753
|
+
@pulumi.getter(name="projectId")
|
41754
|
+
def project_id(self) -> str:
|
41755
|
+
return pulumi.get(self, "project_id")
|
41756
|
+
|
41757
|
+
|
41758
|
+
@pulumi.output_type
|
41759
|
+
class GetReservationSpecificReservationResult(dict):
|
41760
|
+
def __init__(__self__, *,
|
41761
|
+
count: int,
|
41762
|
+
in_use_count: int,
|
41763
|
+
instance_properties: Sequence['outputs.GetReservationSpecificReservationInstancePropertyResult']):
|
41764
|
+
pulumi.set(__self__, "count", count)
|
41765
|
+
pulumi.set(__self__, "in_use_count", in_use_count)
|
41766
|
+
pulumi.set(__self__, "instance_properties", instance_properties)
|
41767
|
+
|
41768
|
+
@property
|
41769
|
+
@pulumi.getter
|
41770
|
+
def count(self) -> int:
|
41771
|
+
return pulumi.get(self, "count")
|
41772
|
+
|
41773
|
+
@property
|
41774
|
+
@pulumi.getter(name="inUseCount")
|
41775
|
+
def in_use_count(self) -> int:
|
41776
|
+
return pulumi.get(self, "in_use_count")
|
41777
|
+
|
41778
|
+
@property
|
41779
|
+
@pulumi.getter(name="instanceProperties")
|
41780
|
+
def instance_properties(self) -> Sequence['outputs.GetReservationSpecificReservationInstancePropertyResult']:
|
41781
|
+
return pulumi.get(self, "instance_properties")
|
41782
|
+
|
41783
|
+
|
41784
|
+
@pulumi.output_type
|
41785
|
+
class GetReservationSpecificReservationInstancePropertyResult(dict):
|
41786
|
+
def __init__(__self__, *,
|
41787
|
+
guest_accelerators: Sequence['outputs.GetReservationSpecificReservationInstancePropertyGuestAcceleratorResult'],
|
41788
|
+
local_ssds: Sequence['outputs.GetReservationSpecificReservationInstancePropertyLocalSsdResult'],
|
41789
|
+
machine_type: str,
|
41790
|
+
min_cpu_platform: str):
|
41791
|
+
pulumi.set(__self__, "guest_accelerators", guest_accelerators)
|
41792
|
+
pulumi.set(__self__, "local_ssds", local_ssds)
|
41793
|
+
pulumi.set(__self__, "machine_type", machine_type)
|
41794
|
+
pulumi.set(__self__, "min_cpu_platform", min_cpu_platform)
|
41795
|
+
|
41796
|
+
@property
|
41797
|
+
@pulumi.getter(name="guestAccelerators")
|
41798
|
+
def guest_accelerators(self) -> Sequence['outputs.GetReservationSpecificReservationInstancePropertyGuestAcceleratorResult']:
|
41799
|
+
return pulumi.get(self, "guest_accelerators")
|
41800
|
+
|
41801
|
+
@property
|
41802
|
+
@pulumi.getter(name="localSsds")
|
41803
|
+
def local_ssds(self) -> Sequence['outputs.GetReservationSpecificReservationInstancePropertyLocalSsdResult']:
|
41804
|
+
return pulumi.get(self, "local_ssds")
|
41805
|
+
|
41806
|
+
@property
|
41807
|
+
@pulumi.getter(name="machineType")
|
41808
|
+
def machine_type(self) -> str:
|
41809
|
+
return pulumi.get(self, "machine_type")
|
41810
|
+
|
41811
|
+
@property
|
41812
|
+
@pulumi.getter(name="minCpuPlatform")
|
41813
|
+
def min_cpu_platform(self) -> str:
|
41814
|
+
return pulumi.get(self, "min_cpu_platform")
|
41815
|
+
|
41816
|
+
|
41817
|
+
@pulumi.output_type
|
41818
|
+
class GetReservationSpecificReservationInstancePropertyGuestAcceleratorResult(dict):
|
41819
|
+
def __init__(__self__, *,
|
41820
|
+
accelerator_count: int,
|
41821
|
+
accelerator_type: str):
|
41822
|
+
pulumi.set(__self__, "accelerator_count", accelerator_count)
|
41823
|
+
pulumi.set(__self__, "accelerator_type", accelerator_type)
|
41824
|
+
|
41825
|
+
@property
|
41826
|
+
@pulumi.getter(name="acceleratorCount")
|
41827
|
+
def accelerator_count(self) -> int:
|
41828
|
+
return pulumi.get(self, "accelerator_count")
|
41829
|
+
|
41830
|
+
@property
|
41831
|
+
@pulumi.getter(name="acceleratorType")
|
41832
|
+
def accelerator_type(self) -> str:
|
41833
|
+
return pulumi.get(self, "accelerator_type")
|
41834
|
+
|
41835
|
+
|
41836
|
+
@pulumi.output_type
|
41837
|
+
class GetReservationSpecificReservationInstancePropertyLocalSsdResult(dict):
|
41838
|
+
def __init__(__self__, *,
|
41839
|
+
disk_size_gb: int,
|
41840
|
+
interface: str):
|
41841
|
+
pulumi.set(__self__, "disk_size_gb", disk_size_gb)
|
41842
|
+
pulumi.set(__self__, "interface", interface)
|
41843
|
+
|
41844
|
+
@property
|
41845
|
+
@pulumi.getter(name="diskSizeGb")
|
41846
|
+
def disk_size_gb(self) -> int:
|
41847
|
+
return pulumi.get(self, "disk_size_gb")
|
41848
|
+
|
41849
|
+
@property
|
41850
|
+
@pulumi.getter
|
41851
|
+
def interface(self) -> str:
|
41852
|
+
return pulumi.get(self, "interface")
|
41853
|
+
|
41854
|
+
|
41530
41855
|
@pulumi.output_type
|
41531
41856
|
class GetResourcePolicyDiskConsistencyGroupPolicyResult(dict):
|
41532
41857
|
def __init__(__self__, *,
|