google-apis-file_v1 0.47.0 → 0.49.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 94d7e8b0d2e0d20e82a0b14e6a7055609d2f8b2036977a1723c9863816a360bd
4
- data.tar.gz: a00da495af2c873103e5e25ccfeaa1c896cfdf35f4d88a3c1f75c80b1125f9c1
3
+ metadata.gz: f42e27bc97f183cec68bea514f61a63959082da4e1fe249eda942a3cd3746bb7
4
+ data.tar.gz: 3773fd61419b48b810d86feef3b96c44b5c1bb0e4eb5e0039094a360c2d166cb
5
5
  SHA512:
6
- metadata.gz: 8b77bb6e3244d55beacdbda92ebf0426e424a4fb28edd9afa3650025cb5b286a869af4566f5b47e78cbe1005b71276e9ca985b3efb49e836ff603193ba6dc2a5
7
- data.tar.gz: c6367209f02caa54507885aef8579deeeb461a54ed2e1a39418d570531fc4b4d2bd12eb4b1b950268ff3df8b6becd230ef134d985c58617c03973948845600c8
6
+ metadata.gz: 709b1b26a1655248d9bea297e0ecf1f954d1414d1825221a9bba4ee80d256537b5c0dbd75f6d1703a39d1e3550d4ce75817c3b496cee5010cf8cffeaea572a61
7
+ data.tar.gz: 057047ad0857fd409ce72a6f47d45763a888b9ba414e6cf27dad7d491befaf2d6800695695902e4768c79195fd8a18eeddd1452aab0aeac018fe094ff06881e3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-file_v1
2
2
 
3
+ ### v0.49.0 (2024-11-17)
4
+
5
+ * Regenerated from discovery document revision 20241104
6
+
7
+ ### v0.48.0 (2024-10-27)
8
+
9
+ * Regenerated from discovery document revision 20241015
10
+
3
11
  ### v0.47.0 (2024-09-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20240905
@@ -336,7 +336,13 @@ module Google
336
336
  class FixedIops
337
337
  include Google::Apis::Core::Hashable
338
338
 
339
- # Required. Maximum raw read IOPS.
339
+ # Required. Maximum IOPS.
340
+ # Corresponds to the JSON property `maxIops`
341
+ # @return [Fixnum]
342
+ attr_accessor :max_iops
343
+
344
+ # Optional. Deprecated: `max_iops` should be used instead of this parameter.
345
+ # Maximum read IOPS.
340
346
  # Corresponds to the JSON property `maxReadIops`
341
347
  # @return [Fixnum]
342
348
  attr_accessor :max_read_iops
@@ -347,6 +353,7 @@ module Google
347
353
 
348
354
  # Update properties of this object
349
355
  def update!(**args)
356
+ @max_iops = args[:max_iops] if args.key?(:max_iops)
350
357
  @max_read_iops = args[:max_read_iops] if args.key?(:max_read_iops)
351
358
  end
352
359
  end
@@ -789,7 +796,13 @@ module Google
789
796
  class IopsPerTb
790
797
  include Google::Apis::Core::Hashable
791
798
 
792
- # Required. Maximum read IOPS per TiB.
799
+ # Required. Maximum IOPS per TiB.
800
+ # Corresponds to the JSON property `maxIopsPerTb`
801
+ # @return [Fixnum]
802
+ attr_accessor :max_iops_per_tb
803
+
804
+ # Optional. Deprecated: `max_iops_per_tb` should be used instead of this
805
+ # parameter. Maximum read IOPS per TiB.
793
806
  # Corresponds to the JSON property `maxReadIopsPerTb`
794
807
  # @return [Fixnum]
795
808
  attr_accessor :max_read_iops_per_tb
@@ -800,6 +813,7 @@ module Google
800
813
 
801
814
  # Update properties of this object
802
815
  def update!(**args)
816
+ @max_iops_per_tb = args[:max_iops_per_tb] if args.key?(:max_iops_per_tb)
803
817
  @max_read_iops_per_tb = args[:max_read_iops_per_tb] if args.key?(:max_read_iops_per_tb)
804
818
  end
805
819
  end
@@ -1823,24 +1837,28 @@ module Google
1823
1837
  class TimeOfDay
1824
1838
  include Google::Apis::Core::Hashable
1825
1839
 
1826
- # Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to
1827
- # allow the value "24:00:00" for scenarios like business closing time.
1840
+ # Hours of a day in 24 hour format. Must be greater than or equal to 0 and
1841
+ # typically must be less than or equal to 23. An API may choose to allow the
1842
+ # value "24:00:00" for scenarios like business closing time.
1828
1843
  # Corresponds to the JSON property `hours`
1829
1844
  # @return [Fixnum]
1830
1845
  attr_accessor :hours
1831
1846
 
1832
- # Minutes of hour of day. Must be from 0 to 59.
1847
+ # Minutes of an hour. Must be greater than or equal to 0 and less than or equal
1848
+ # to 59.
1833
1849
  # Corresponds to the JSON property `minutes`
1834
1850
  # @return [Fixnum]
1835
1851
  attr_accessor :minutes
1836
1852
 
1837
- # Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
1853
+ # Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and
1854
+ # less than or equal to 999,999,999.
1838
1855
  # Corresponds to the JSON property `nanos`
1839
1856
  # @return [Fixnum]
1840
1857
  attr_accessor :nanos
1841
1858
 
1842
- # Seconds of minutes of the time. Must normally be from 0 to 59. An API may
1843
- # allow the value 60 if it allows leap-seconds.
1859
+ # Seconds of a minute. Must be greater than or equal to 0 and typically must be
1860
+ # less than or equal to 59. An API may allow the value 60 if it allows leap-
1861
+ # seconds.
1844
1862
  # Corresponds to the JSON property `seconds`
1845
1863
  # @return [Fixnum]
1846
1864
  attr_accessor :seconds
@@ -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.47.0"
19
+ GEM_VERSION = "0.49.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240905"
25
+ REVISION = "20241104"
26
26
  end
27
27
  end
28
28
  end
@@ -364,6 +364,7 @@ module Google
364
364
  class FixedIops
365
365
  # @private
366
366
  class Representation < Google::Apis::Core::JsonRepresentation
367
+ property :max_iops, :numeric_string => true, as: 'maxIops'
367
368
  property :max_read_iops, :numeric_string => true, as: 'maxReadIops'
368
369
  end
369
370
  end
@@ -472,6 +473,7 @@ module Google
472
473
  class IopsPerTb
473
474
  # @private
474
475
  class Representation < Google::Apis::Core::JsonRepresentation
476
+ property :max_iops_per_tb, :numeric_string => true, as: 'maxIopsPerTb'
475
477
  property :max_read_iops_per_tb, :numeric_string => true, as: 'maxReadIopsPerTb'
476
478
  end
477
479
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-file_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.47.0
4
+ version: 0.49.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-09-15 00:00:00.000000000 Z
11
+ date: 2024-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-file_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.47.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.49.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-file_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Filestore API V1