google-apis-file_v1 0.47.0 → 0.48.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/file_v1/classes.rb +26 -8
- data/lib/google/apis/file_v1/gem_version.rb +2 -2
- data/lib/google/apis/file_v1/representations.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7f8fc62e8714068babd9dc93fa49f2a163a296fefb32a3bc2ac3d7761321db39
|
4
|
+
data.tar.gz: 5bcc6fd562b6fcb4277cd0f657205acda7976d391b96cbb993c806ad4ed26626
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19e3dc5b669510f4c04d51e28583593c0d42d3dbb22a1da9f394cfc092361ab6778ef7ae888a88855c7b4ec4c044e2e9625f8ea4f83c9535e1f4e5ce069506ca
|
7
|
+
data.tar.gz: a3f84b7402b6da8392dc9891ad3134f66d2aba04708e97154a6b6e875afbc4e760e5199b1733cf6e4fafff94db27421eb382dbd26c43a011c093a857c77ab59c
|
data/CHANGELOG.md
CHANGED
@@ -336,7 +336,13 @@ module Google
|
|
336
336
|
class FixedIops
|
337
337
|
include Google::Apis::Core::Hashable
|
338
338
|
|
339
|
-
# Required. Maximum
|
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 raw 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
|
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.
|
1827
|
-
#
|
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
|
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
|
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
|
1843
|
-
# allow the value 60 if it allows leap-
|
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.
|
19
|
+
GEM_VERSION = "0.48.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 = "
|
25
|
+
REVISION = "20241015"
|
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.
|
4
|
+
version: 0.48.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-
|
11
|
+
date: 2024-10-27 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.48.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.
|
78
|
+
rubygems_version: 3.5.21
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Filestore API V1
|