google-cloud-vmware_engine-v1 0.7.1 → 0.9.0

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.
@@ -250,6 +250,9 @@ module Google
250
250
  # Output only. True if the cluster is a management cluster; false otherwise.
251
251
  # There can only be one management cluster in a private cloud
252
252
  # and it has to be the first one.
253
+ # @!attribute [rw] autoscaling_settings
254
+ # @return [::Google::Cloud::VmwareEngine::V1::AutoscalingSettings]
255
+ # Optional. Configuration of the autoscaling applied to this cluster.
253
256
  # @!attribute [r] uid
254
257
  # @return [::String]
255
258
  # Output only. System-generated unique identifier for the resource.
@@ -633,6 +636,15 @@ module Google
633
636
 
634
637
  # TCP
635
638
  TCP = 2
639
+
640
+ # TLS
641
+ TLS = 3
642
+
643
+ # SSL
644
+ SSL = 4
645
+
646
+ # RELP
647
+ RELP = 5
636
648
  end
637
649
 
638
650
  # Defines possible types of component that produces logs.
@@ -803,6 +815,9 @@ module Google
803
815
 
804
816
  # The appliance is being deployed.
805
817
  CREATING = 2
818
+
819
+ # The appliance is being activated.
820
+ ACTIVATING = 3
806
821
  end
807
822
  end
808
823
 
@@ -866,6 +881,98 @@ module Google
866
881
  end
867
882
  end
868
883
 
884
+ # Autoscaling settings define the rules used by VMware Engine to
885
+ # automatically scale-out and scale-in the clusters in a private cloud.
886
+ # @!attribute [rw] autoscaling_policies
887
+ # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::AutoscalingSettings::AutoscalingPolicy}]
888
+ # Required. The map with autoscaling policies applied to the cluster.
889
+ # The key is the identifier of the policy.
890
+ # It must meet the following requirements:
891
+ #
892
+ # * Only contains 1-63 alphanumeric characters and hyphens
893
+ # * Begins with an alphabetical character
894
+ # * Ends with a non-hyphen character
895
+ # * Not formatted as a UUID
896
+ # * Complies with [RFC
897
+ # 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
898
+ #
899
+ # Currently there map must contain only one element
900
+ # that describes the autoscaling policy for compute nodes.
901
+ # @!attribute [rw] min_cluster_node_count
902
+ # @return [::Integer]
903
+ # Optional. Minimum number of nodes of any type in a cluster.
904
+ # If not specified the default limits apply.
905
+ # @!attribute [rw] max_cluster_node_count
906
+ # @return [::Integer]
907
+ # Optional. Maximum number of nodes of any type in a cluster.
908
+ # If not specified the default limits apply.
909
+ # @!attribute [rw] cool_down_period
910
+ # @return [::Google::Protobuf::Duration]
911
+ # Optional. The minimum duration between consecutive autoscale operations.
912
+ # It starts once addition or removal of nodes is fully completed.
913
+ # Defaults to 30 minutes if not specified. Cool down period must be in whole
914
+ # minutes (for example, 30, 31, 50, 180 minutes).
915
+ class AutoscalingSettings
916
+ include ::Google::Protobuf::MessageExts
917
+ extend ::Google::Protobuf::MessageExts::ClassMethods
918
+
919
+ # Thresholds define the utilization of resources triggering
920
+ # scale-out and scale-in operations.
921
+ # @!attribute [rw] scale_out
922
+ # @return [::Integer]
923
+ # Required. The utilization triggering the scale-out operation in percent.
924
+ # @!attribute [rw] scale_in
925
+ # @return [::Integer]
926
+ # Required. The utilization triggering the scale-in operation in percent.
927
+ class Thresholds
928
+ include ::Google::Protobuf::MessageExts
929
+ extend ::Google::Protobuf::MessageExts::ClassMethods
930
+ end
931
+
932
+ # Autoscaling policy describes the behavior of the autoscaling
933
+ # with respect to the resource utilization.
934
+ # The scale-out operation is initiated if the utilization
935
+ # exceeds ANY of the respective thresholds.
936
+ # The scale-in operation is initiated if the utilization
937
+ # is below ALL of the respective thresholds.
938
+ # @!attribute [rw] node_type_id
939
+ # @return [::String]
940
+ # Required. The canonical identifier of the node type to add or remove.
941
+ # Corresponds to the `NodeType`.
942
+ # @!attribute [rw] scale_out_size
943
+ # @return [::Integer]
944
+ # Required. Number of nodes to add to a cluster during a scale-out
945
+ # operation. Must be divisible by 2 for stretched clusters. During a
946
+ # scale-in operation only one node (or 2 for stretched clusters) are
947
+ # removed in a single iteration.
948
+ # @!attribute [rw] cpu_thresholds
949
+ # @return [::Google::Cloud::VmwareEngine::V1::AutoscalingSettings::Thresholds]
950
+ # Optional. Utilization thresholds pertaining to CPU utilization.
951
+ # @!attribute [rw] granted_memory_thresholds
952
+ # @return [::Google::Cloud::VmwareEngine::V1::AutoscalingSettings::Thresholds]
953
+ # Optional. Utilization thresholds pertaining to amount of granted memory.
954
+ # @!attribute [rw] consumed_memory_thresholds
955
+ # @return [::Google::Cloud::VmwareEngine::V1::AutoscalingSettings::Thresholds]
956
+ # Optional. Utilization thresholds pertaining to amount of consumed memory.
957
+ # @!attribute [rw] storage_thresholds
958
+ # @return [::Google::Cloud::VmwareEngine::V1::AutoscalingSettings::Thresholds]
959
+ # Optional. Utilization thresholds pertaining to amount of consumed
960
+ # storage.
961
+ class AutoscalingPolicy
962
+ include ::Google::Protobuf::MessageExts
963
+ extend ::Google::Protobuf::MessageExts::ClassMethods
964
+ end
965
+
966
+ # @!attribute [rw] key
967
+ # @return [::String]
968
+ # @!attribute [rw] value
969
+ # @return [::Google::Cloud::VmwareEngine::V1::AutoscalingSettings::AutoscalingPolicy]
970
+ class AutoscalingPoliciesEntry
971
+ include ::Google::Protobuf::MessageExts
972
+ extend ::Google::Protobuf::MessageExts::ClassMethods
973
+ end
974
+ end
975
+
869
976
  # DNS forwarding config.
870
977
  # This config defines a list of domain to name server mappings,
871
978
  # and is attached to the private cloud for custom domain resolution.
@@ -1035,6 +1142,9 @@ module Google
1035
1142
 
1036
1143
  # Peering connection used for connecting to Dell PowerScale Filers
1037
1144
  DELL_POWERSCALE = 6
1145
+
1146
+ # Peering connection used for connecting to Google Cloud NetApp Volumes.
1147
+ GOOGLE_CLOUD_NETAPP_VOLUMES = 7
1038
1148
  end
1039
1149
  end
1040
1150
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-vmware_engine-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-01 00:00:00.000000000 Z
11
+ date: 2024-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -84,118 +84,6 @@ dependencies:
84
84
  - - "<"
85
85
  - !ruby/object:Gem::Version
86
86
  version: 2.a
87
- - !ruby/object:Gem::Dependency
88
- name: google-style
89
- requirement: !ruby/object:Gem::Requirement
90
- requirements:
91
- - - "~>"
92
- - !ruby/object:Gem::Version
93
- version: 1.26.3
94
- type: :development
95
- prerelease: false
96
- version_requirements: !ruby/object:Gem::Requirement
97
- requirements:
98
- - - "~>"
99
- - !ruby/object:Gem::Version
100
- version: 1.26.3
101
- - !ruby/object:Gem::Dependency
102
- name: minitest
103
- requirement: !ruby/object:Gem::Requirement
104
- requirements:
105
- - - "~>"
106
- - !ruby/object:Gem::Version
107
- version: '5.16'
108
- type: :development
109
- prerelease: false
110
- version_requirements: !ruby/object:Gem::Requirement
111
- requirements:
112
- - - "~>"
113
- - !ruby/object:Gem::Version
114
- version: '5.16'
115
- - !ruby/object:Gem::Dependency
116
- name: minitest-focus
117
- requirement: !ruby/object:Gem::Requirement
118
- requirements:
119
- - - "~>"
120
- - !ruby/object:Gem::Version
121
- version: '1.1'
122
- type: :development
123
- prerelease: false
124
- version_requirements: !ruby/object:Gem::Requirement
125
- requirements:
126
- - - "~>"
127
- - !ruby/object:Gem::Version
128
- version: '1.1'
129
- - !ruby/object:Gem::Dependency
130
- name: minitest-rg
131
- requirement: !ruby/object:Gem::Requirement
132
- requirements:
133
- - - "~>"
134
- - !ruby/object:Gem::Version
135
- version: '5.2'
136
- type: :development
137
- prerelease: false
138
- version_requirements: !ruby/object:Gem::Requirement
139
- requirements:
140
- - - "~>"
141
- - !ruby/object:Gem::Version
142
- version: '5.2'
143
- - !ruby/object:Gem::Dependency
144
- name: rake
145
- requirement: !ruby/object:Gem::Requirement
146
- requirements:
147
- - - ">="
148
- - !ruby/object:Gem::Version
149
- version: '13.0'
150
- type: :development
151
- prerelease: false
152
- version_requirements: !ruby/object:Gem::Requirement
153
- requirements:
154
- - - ">="
155
- - !ruby/object:Gem::Version
156
- version: '13.0'
157
- - !ruby/object:Gem::Dependency
158
- name: redcarpet
159
- requirement: !ruby/object:Gem::Requirement
160
- requirements:
161
- - - "~>"
162
- - !ruby/object:Gem::Version
163
- version: '3.0'
164
- type: :development
165
- prerelease: false
166
- version_requirements: !ruby/object:Gem::Requirement
167
- requirements:
168
- - - "~>"
169
- - !ruby/object:Gem::Version
170
- version: '3.0'
171
- - !ruby/object:Gem::Dependency
172
- name: simplecov
173
- requirement: !ruby/object:Gem::Requirement
174
- requirements:
175
- - - "~>"
176
- - !ruby/object:Gem::Version
177
- version: '0.18'
178
- type: :development
179
- prerelease: false
180
- version_requirements: !ruby/object:Gem::Requirement
181
- requirements:
182
- - - "~>"
183
- - !ruby/object:Gem::Version
184
- version: '0.18'
185
- - !ruby/object:Gem::Dependency
186
- name: yard
187
- requirement: !ruby/object:Gem::Requirement
188
- requirements:
189
- - - "~>"
190
- - !ruby/object:Gem::Version
191
- version: '0.9'
192
- type: :development
193
- prerelease: false
194
- version_requirements: !ruby/object:Gem::Requirement
195
- requirements:
196
- - - "~>"
197
- - !ruby/object:Gem::Version
198
- version: '0.9'
199
87
  description: Google Cloud VMware Engine is a fully managed service that lets you run
200
88
  the VMware platform in Google Cloud. VMware Engine provides you with VMware operational
201
89
  continuity so you can benefit from a cloud consumption model and lower your total
@@ -257,14 +145,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
257
145
  requirements:
258
146
  - - ">="
259
147
  - !ruby/object:Gem::Version
260
- version: '2.6'
148
+ version: '2.7'
261
149
  required_rubygems_version: !ruby/object:Gem::Requirement
262
150
  requirements:
263
151
  - - ">="
264
152
  - !ruby/object:Gem::Version
265
153
  version: '0'
266
154
  requirements: []
267
- rubygems_version: 3.5.3
155
+ rubygems_version: 3.5.6
268
156
  signing_key:
269
157
  specification_version: 4
270
158
  summary: The Google VMware Engine API lets you programmatically manage VMware environments.