google-apis-file_v1beta1 0.52.0 → 0.53.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d82fdcab39e0a13f937c7afd1e7fa7514822bd37f13c9ae19c8267a53b590c1
|
4
|
+
data.tar.gz: ce612db38590b770569c5b2814f3f4f7c7c8d36f3e18978adf8da146efb32dc1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38efceb1369fb0d16d80efffe0bd35818554621aaa5b4f7dd96825d659ec09cbcbf94e9a70e5c06cc0f01fb8ba3238da298418fd8c21790d8240f8aa18c19f1c
|
7
|
+
data.tar.gz: 9cfda7d3907865b9510eccaefd566d103edd17c7bba053e4b631ac67ca0e57888c580ca9dd9d1f013833e10fcdbe8fe4f06c257e32b151a44472cf6cee4168de
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-file_v1beta1
|
2
2
|
|
3
|
+
### v0.53.0 (2025-02-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250205
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.52.0 (2024-12-15)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20241204
|
@@ -842,18 +842,19 @@ module Google
|
|
842
842
|
# @return [Fixnum]
|
843
843
|
attr_accessor :capacity_step_size_gb
|
844
844
|
|
845
|
-
# Output only. Indicates whether this instance's performance is configurable. If
|
846
|
-
# enabled, adjust it using the 'performance_config' field.
|
847
|
-
# Corresponds to the JSON property `configurablePerformanceEnabled`
|
848
|
-
# @return [Boolean]
|
849
|
-
attr_accessor :configurable_performance_enabled
|
850
|
-
alias_method :configurable_performance_enabled?, :configurable_performance_enabled
|
851
|
-
|
852
845
|
# Output only. The time when the instance was created.
|
853
846
|
# Corresponds to the JSON property `createTime`
|
854
847
|
# @return [String]
|
855
848
|
attr_accessor :create_time
|
856
849
|
|
850
|
+
# Output only. Indicates whether this instance supports configuring its
|
851
|
+
# performance. If true, the user can configure the instance's performance by
|
852
|
+
# using the 'performance_config' field.
|
853
|
+
# Corresponds to the JSON property `customPerformanceSupported`
|
854
|
+
# @return [Boolean]
|
855
|
+
attr_accessor :custom_performance_supported
|
856
|
+
alias_method :custom_performance_supported?, :custom_performance_supported
|
857
|
+
|
857
858
|
# Optional. Indicates whether the instance is protected against deletion.
|
858
859
|
# Corresponds to the JSON property `deletionProtectionEnabled`
|
859
860
|
# @return [Boolean]
|
@@ -1007,8 +1008,8 @@ module Google
|
|
1007
1008
|
def update!(**args)
|
1008
1009
|
@capacity_gb = args[:capacity_gb] if args.key?(:capacity_gb)
|
1009
1010
|
@capacity_step_size_gb = args[:capacity_step_size_gb] if args.key?(:capacity_step_size_gb)
|
1010
|
-
@configurable_performance_enabled = args[:configurable_performance_enabled] if args.key?(:configurable_performance_enabled)
|
1011
1011
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1012
|
+
@custom_performance_supported = args[:custom_performance_supported] if args.key?(:custom_performance_supported)
|
1012
1013
|
@deletion_protection_enabled = args[:deletion_protection_enabled] if args.key?(:deletion_protection_enabled)
|
1013
1014
|
@deletion_protection_reason = args[:deletion_protection_reason] if args.key?(:deletion_protection_reason)
|
1014
1015
|
@description = args[:description] if args.key?(:description)
|
@@ -1663,6 +1664,11 @@ module Google
|
|
1663
1664
|
class PerformanceLimits
|
1664
1665
|
include Google::Apis::Core::Hashable
|
1665
1666
|
|
1667
|
+
# Output only. The max IOPS.
|
1668
|
+
# Corresponds to the JSON property `maxIops`
|
1669
|
+
# @return [Fixnum]
|
1670
|
+
attr_accessor :max_iops
|
1671
|
+
|
1666
1672
|
# Output only. The max read IOPS.
|
1667
1673
|
# Corresponds to the JSON property `maxReadIops`
|
1668
1674
|
# @return [Fixnum]
|
@@ -1689,6 +1695,7 @@ module Google
|
|
1689
1695
|
|
1690
1696
|
# Update properties of this object
|
1691
1697
|
def update!(**args)
|
1698
|
+
@max_iops = args[:max_iops] if args.key?(:max_iops)
|
1692
1699
|
@max_read_iops = args[:max_read_iops] if args.key?(:max_read_iops)
|
1693
1700
|
@max_read_throughput_bps = args[:max_read_throughput_bps] if args.key?(:max_read_throughput_bps)
|
1694
1701
|
@max_write_iops = args[:max_write_iops] if args.key?(:max_write_iops)
|
@@ -1700,12 +1707,20 @@ module Google
|
|
1700
1707
|
class PromoteReplicaRequest
|
1701
1708
|
include Google::Apis::Core::Hashable
|
1702
1709
|
|
1710
|
+
# Optional. The resource name of the peer instance to promote, in the format `
|
1711
|
+
# projects/`project_id`/locations/`location_id`/instances/`instance_id``. The
|
1712
|
+
# peer instance is required if the operation is called on an active instance.
|
1713
|
+
# Corresponds to the JSON property `peerInstance`
|
1714
|
+
# @return [String]
|
1715
|
+
attr_accessor :peer_instance
|
1716
|
+
|
1703
1717
|
def initialize(**args)
|
1704
1718
|
update!(**args)
|
1705
1719
|
end
|
1706
1720
|
|
1707
1721
|
# Update properties of this object
|
1708
1722
|
def update!(**args)
|
1723
|
+
@peer_instance = args[:peer_instance] if args.key?(:peer_instance)
|
1709
1724
|
end
|
1710
1725
|
end
|
1711
1726
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FileV1beta1
|
18
18
|
# Version of the google-apis-file_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.53.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250205"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -513,8 +513,8 @@ module Google
|
|
513
513
|
class Representation < Google::Apis::Core::JsonRepresentation
|
514
514
|
property :capacity_gb, :numeric_string => true, as: 'capacityGb'
|
515
515
|
property :capacity_step_size_gb, :numeric_string => true, as: 'capacityStepSizeGb'
|
516
|
-
property :configurable_performance_enabled, as: 'configurablePerformanceEnabled'
|
517
516
|
property :create_time, as: 'createTime'
|
517
|
+
property :custom_performance_supported, as: 'customPerformanceSupported'
|
518
518
|
property :deletion_protection_enabled, as: 'deletionProtectionEnabled'
|
519
519
|
property :deletion_protection_reason, as: 'deletionProtectionReason'
|
520
520
|
property :description, as: 'description'
|
@@ -710,6 +710,7 @@ module Google
|
|
710
710
|
class PerformanceLimits
|
711
711
|
# @private
|
712
712
|
class Representation < Google::Apis::Core::JsonRepresentation
|
713
|
+
property :max_iops, :numeric_string => true, as: 'maxIops'
|
713
714
|
property :max_read_iops, :numeric_string => true, as: 'maxReadIops'
|
714
715
|
property :max_read_throughput_bps, :numeric_string => true, as: 'maxReadThroughputBps'
|
715
716
|
property :max_write_iops, :numeric_string => true, as: 'maxWriteIops'
|
@@ -720,6 +721,7 @@ module Google
|
|
720
721
|
class PromoteReplicaRequest
|
721
722
|
# @private
|
722
723
|
class Representation < Google::Apis::Core::JsonRepresentation
|
724
|
+
property :peer_instance, as: 'peerInstance'
|
723
725
|
end
|
724
726
|
end
|
725
727
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-file_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.53.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-file_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1beta1/v0.53.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-file_v1beta1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Cloud Filestore API V1beta1
|
82
79
|
test_files: []
|