google-apis-file_v1 0.55.0 → 0.57.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5db74f7f9b7165db7f5ee2afecae62653675dfa674bc230aca2bc98eaefe78e0
4
- data.tar.gz: f1c73e831cd7cb7b32a5fc4d3c6e9f3eca62d17da20516ff1ffe46b670968eda
3
+ metadata.gz: ef74a6541c29eaa06db8974f24087d42b4123feeaf5a41be7d53d41688a5d0dd
4
+ data.tar.gz: efb99a585883a020194b35ef6fbcf1269a7026cd365733f2e39399f02eb5ac85
5
5
  SHA512:
6
- metadata.gz: 8816f9101dbae59c9d67282754edbe96a22f12bc556441234f19f44c95d61dd997e9477726ec0350f3b07da14aa3c92cb5615f8f560740b3cd24dc329d9e907c
7
- data.tar.gz: 7a9764e1c881e9b8e7295a3fc23f6ee54dc0a749a519345f9f6127990ad6edddb902cbb21875240ae70b08d055ac642fca0b48a63e5d4dc2c09c8ecb8dc82ffc
6
+ metadata.gz: 0d3db1ca3bcd26896a91bfd80442258adc44f5c7eea7c57b2a1d5668b70b26fa0b3cc26154d6839adefe8990d40fc9030c951cc4a399a2ee4c37ed561b6ed5c8
7
+ data.tar.gz: 614db71f13ff205ec681a34347d1f13752123260b8b29c9ecc9919c16837fa23b5797cfe34732c0bf1b32554fb44a901f768edc04c0f61ea5498a574b2df4475
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-file_v1
2
2
 
3
+ ### v0.57.0 (2025-08-31)
4
+
5
+ * Regenerated from discovery document revision 20250819
6
+
7
+ ### v0.56.0 (2025-08-24)
8
+
9
+ * Regenerated from discovery document revision 20250810
10
+
3
11
  ### v0.55.0 (2025-07-27)
4
12
 
5
13
  * Regenerated from discovery document revision 20250716
@@ -824,6 +824,11 @@ module Google
824
824
  class Instance
825
825
  include Google::Apis::Core::Hashable
826
826
 
827
+ # Output only. The increase/decrease capacity step size in GB.
828
+ # Corresponds to the JSON property `capacityStepSizeGb`
829
+ # @return [Fixnum]
830
+ attr_accessor :capacity_step_size_gb
831
+
827
832
  # Output only. The time when the instance was created.
828
833
  # Corresponds to the JSON property `createTime`
829
834
  # @return [String]
@@ -875,6 +880,16 @@ module Google
875
880
  # @return [Hash<String,String>]
876
881
  attr_accessor :labels
877
882
 
883
+ # Output only. The max capacity of the instance in GB.
884
+ # Corresponds to the JSON property `maxCapacityGb`
885
+ # @return [Fixnum]
886
+ attr_accessor :max_capacity_gb
887
+
888
+ # Output only. The min capacity of the instance in GB.
889
+ # Corresponds to the JSON property `minCapacityGb`
890
+ # @return [Fixnum]
891
+ attr_accessor :min_capacity_gb
892
+
878
893
  # Output only. The resource name of the instance, in the format `projects/`
879
894
  # project`/locations/`location`/instances/`instance``.
880
895
  # Corresponds to the JSON property `name`
@@ -965,6 +980,7 @@ module Google
965
980
 
966
981
  # Update properties of this object
967
982
  def update!(**args)
983
+ @capacity_step_size_gb = args[:capacity_step_size_gb] if args.key?(:capacity_step_size_gb)
968
984
  @create_time = args[:create_time] if args.key?(:create_time)
969
985
  @custom_performance_supported = args[:custom_performance_supported] if args.key?(:custom_performance_supported)
970
986
  @deletion_protection_enabled = args[:deletion_protection_enabled] if args.key?(:deletion_protection_enabled)
@@ -974,6 +990,8 @@ module Google
974
990
  @file_shares = args[:file_shares] if args.key?(:file_shares)
975
991
  @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
976
992
  @labels = args[:labels] if args.key?(:labels)
993
+ @max_capacity_gb = args[:max_capacity_gb] if args.key?(:max_capacity_gb)
994
+ @min_capacity_gb = args[:min_capacity_gb] if args.key?(:min_capacity_gb)
977
995
  @name = args[:name] if args.key?(:name)
978
996
  @networks = args[:networks] if args.key?(:networks)
979
997
  @performance_config = args[:performance_config] if args.key?(:performance_config)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FileV1
18
18
  # Version of the google-apis-file_v1 gem
19
- GEM_VERSION = "0.55.0"
19
+ GEM_VERSION = "0.57.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250716"
25
+ REVISION = "20250819"
26
26
  end
27
27
  end
28
28
  end
@@ -480,6 +480,7 @@ module Google
480
480
  class Instance
481
481
  # @private
482
482
  class Representation < Google::Apis::Core::JsonRepresentation
483
+ property :capacity_step_size_gb, :numeric_string => true, as: 'capacityStepSizeGb'
483
484
  property :create_time, as: 'createTime'
484
485
  property :custom_performance_supported, as: 'customPerformanceSupported'
485
486
  property :deletion_protection_enabled, as: 'deletionProtectionEnabled'
@@ -490,6 +491,8 @@ module Google
490
491
 
491
492
  property :kms_key_name, as: 'kmsKeyName'
492
493
  hash :labels, as: 'labels'
494
+ property :max_capacity_gb, :numeric_string => true, as: 'maxCapacityGb'
495
+ property :min_capacity_gb, :numeric_string => true, as: 'minCapacityGb'
493
496
  property :name, as: 'name'
494
497
  collection :networks, as: 'networks', class: Google::Apis::FileV1::NetworkConfig, decorator: Google::Apis::FileV1::NetworkConfig::Representation
495
498
 
@@ -85,8 +85,8 @@ module Google
85
85
  # @param [String] name
86
86
  # The resource that owns the locations collection, if applicable.
87
87
  # @param [Array<String>, String] extra_location_types
88
- # Optional. A list of extra location types that should be used as conditions for
89
- # controlling the visibility of the locations.
88
+ # Optional. Do not use this field. It is unsupported and is ignored unless
89
+ # explicitly documented otherwise. This is primarily for internal usage.
90
90
  # @param [String] filter
91
91
  # A filter to narrow down results to a preferred subset. The filtering language
92
92
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-file_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.55.0
4
+ version: 0.57.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-file_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.55.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.57.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-file_v1
62
62
  rdoc_options: []
63
63
  require_paths: