google-apis-file_v1 0.54.0 → 0.56.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/file_v1/classes.rb +24 -0
- data/lib/google/apis/file_v1/gem_version.rb +3 -3
- data/lib/google/apis/file_v1/representations.rb +4 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f05d5d933d0beae858e8377c57c4c4f71f091fc7a600073f3666645e6962e7a
|
4
|
+
data.tar.gz: 3d9a5ab3cb0d176464b0cce26f2179adba037873b09aec5a35d6044d5f18ecfa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7da8e0fe895f18e4a89154a340d228d33a5bb24ec11042d993bed5906b45478657822c4a68b128a25c383087103843420b7933567e5183615787cf109584f5a4
|
7
|
+
data.tar.gz: bb659c8a801a40383a371333d6f8b5507bab1890ff3090304b10735e0fc91a24a7336740c9da4a3bd240e1f308082cf52635bcccab97bf431dec43629f52c4d1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-file_v1
|
2
2
|
|
3
|
+
### v0.56.0 (2025-08-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250810
|
6
|
+
|
7
|
+
### v0.55.0 (2025-07-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250716
|
10
|
+
* Regenerated using generator version 0.18.0
|
11
|
+
|
3
12
|
### v0.54.0 (2025-05-04)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
@@ -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)
|
@@ -1635,6 +1653,11 @@ module Google
|
|
1635
1653
|
# @return [Array<String>]
|
1636
1654
|
attr_accessor :state_reasons
|
1637
1655
|
|
1656
|
+
# Output only. The time when the replica state was updated.
|
1657
|
+
# Corresponds to the JSON property `stateUpdateTime`
|
1658
|
+
# @return [String]
|
1659
|
+
attr_accessor :state_update_time
|
1660
|
+
|
1638
1661
|
def initialize(**args)
|
1639
1662
|
update!(**args)
|
1640
1663
|
end
|
@@ -1645,6 +1668,7 @@ module Google
|
|
1645
1668
|
@peer_instance = args[:peer_instance] if args.key?(:peer_instance)
|
1646
1669
|
@state = args[:state] if args.key?(:state)
|
1647
1670
|
@state_reasons = args[:state_reasons] if args.key?(:state_reasons)
|
1671
|
+
@state_update_time = args[:state_update_time] if args.key?(:state_update_time)
|
1648
1672
|
end
|
1649
1673
|
end
|
1650
1674
|
|
@@ -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.56.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250810"
|
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
|
|
@@ -675,6 +678,7 @@ module Google
|
|
675
678
|
property :peer_instance, as: 'peerInstance'
|
676
679
|
property :state, as: 'state'
|
677
680
|
collection :state_reasons, as: 'stateReasons'
|
681
|
+
property :state_update_time, as: 'stateUpdateTime'
|
678
682
|
end
|
679
683
|
end
|
680
684
|
|
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.
|
4
|
+
version: 0.56.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.56.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:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Cloud Filestore API V1
|
79
79
|
test_files: []
|