Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

feat: support for NodeAutoprovisioning ImageType #107

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions google/cloud/container_v1/types/cluster_service.py
Expand Up @@ -2993,6 +2993,8 @@ class AutoprovisioningNodePoolDefaults(proto.Message):
For more information about protecting resources with Cloud
KMS Keys please see:
https://cloud.google.com/compute/docs/disks/customer-managed-encryption
image_type (str):
The image type to use for NAP created node.
"""

oauth_scopes = proto.RepeatedField(proto.STRING, number=1,)
Expand All @@ -3008,6 +3010,7 @@ class AutoprovisioningNodePoolDefaults(proto.Message):
proto.MESSAGE, number=8, message="ShieldedInstanceConfig",
)
boot_disk_kms_key = proto.Field(proto.STRING, number=9,)
image_type = proto.Field(proto.STRING, number=10,)


class ResourceLimit(proto.Message):
Expand Down
4 changes: 4 additions & 0 deletions google/cloud/container_v1beta1/types/cluster_service.py
Expand Up @@ -3359,6 +3359,9 @@ class AutoprovisioningNodePoolDefaults(proto.Message):
For more information about protecting resources with Cloud
KMS Keys please see:
https://cloud.google.com/compute/docs/disks/customer-managed-encryption
image_type (str):
The image type to use for node created by
NodeAutoprovisioning.
"""

oauth_scopes = proto.RepeatedField(proto.STRING, number=1,)
Expand All @@ -3374,6 +3377,7 @@ class AutoprovisioningNodePoolDefaults(proto.Message):
proto.MESSAGE, number=8, message="ShieldedInstanceConfig",
)
boot_disk_kms_key = proto.Field(proto.STRING, number=9,)
image_type = proto.Field(proto.STRING, number=10,)


class ResourceLimit(proto.Message):
Expand Down