Skip to content

Commit 2ff4726

Browse files
feat: add ScaleType for Storage Pools and LargeCapacityConfig for Volumes (#33881)
* feat: add ScaleType for Storage Pools and LargeCapacityConfig for Volumes docs: A comment for field `large_capacity` in message `.google.cloud.netapp.v1.Volume` is changed PiperOrigin-RevId: 902801207 Source-Link: googleapis/googleapis@4ad1b67 Source-Link: googleapis/googleapis-gen@8befb12 Copy-Tag: eyJwIjoiZ29vZ2xlLWNsb3VkLW5ldGFwcC12MS8uT3dsQm90LnlhbWwiLCJoIjoiOGJlZmIxMjYzMjUwYWM3ZThmNjJkZDM0Mzk5MDkwYWNhNWU3YWZhYSJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 2694190 commit 2ff4726

7 files changed

Lines changed: 49 additions & 4 deletions

File tree

google-cloud-netapp-v1/lib/google/cloud/netapp/v1/common_pb.rb

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

google-cloud-netapp-v1/lib/google/cloud/netapp/v1/storage_pool_pb.rb

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

google-cloud-netapp-v1/lib/google/cloud/netapp/v1/volume_pb.rb

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

google-cloud-netapp-v1/proto_docs/google/api/client.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ module Api
3131
# @!attribute [rw] selective_gapic_generation
3232
# @return [::Google::Api::SelectiveGapicGeneration]
3333
# Configuration for which RPCs should be generated in the GAPIC client.
34+
#
35+
# Note: This field should not be used in most cases.
3436
class CommonLanguageSettings
3537
include ::Google::Protobuf::MessageExts
3638
extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -441,6 +443,8 @@ class LongRunning
441443

442444
# This message is used to configure the generation of a subset of the RPCs in
443445
# a service for client libraries.
446+
#
447+
# Note: This feature should not be used in most cases.
444448
# @!attribute [rw] methods
445449
# @return [::Array<::String>]
446450
# An allowlist of the fully qualified names of RPCs that should be included

google-cloud-netapp-v1/proto_docs/google/cloud/netapp/v1/common.rb

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,20 @@ module StoragePoolType
112112
UNIFIED = 2
113113
end
114114

115+
# Defines the scale-type of a UNIFIED Storage Pool.
116+
module ScaleType
117+
# Unspecified scale type.
118+
SCALE_TYPE_UNSPECIFIED = 0
119+
120+
# Represents standard capacity and performance scale-type.
121+
# Suitable for general purpose workloads.
122+
SCALE_TYPE_DEFAULT = 1
123+
124+
# Represents higher capacity and performance scale-type.
125+
# Suitable for more demanding workloads.
126+
SCALE_TYPE_SCALEOUT = 2
127+
end
128+
115129
# Schedule for Hybrid Replication.
116130
# New enum values may be added in future to support different frequency of
117131
# replication.

google-cloud-netapp-v1/proto_docs/google/cloud/netapp/v1/storage_pool.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,10 @@ class SwitchActiveReplicaZoneRequest
245245
# the user can perform the ONTAP operations on the storage pool using the
246246
# GCNV ONTAP Mode APIs. If not specified during creation, it defaults to
247247
# `DEFAULT`.
248+
# @!attribute [rw] scale_type
249+
# @return [::Google::Cloud::NetApp::V1::ScaleType]
250+
# Optional. The scale type of the storage pool. Defaults to
251+
# `SCALE_TYPE_DEFAULT` if not specified.
248252
class StoragePool
249253
include ::Google::Protobuf::MessageExts
250254
extend ::Google::Protobuf::MessageExts::ClassMethods

0 commit comments

Comments
 (0)