google-apis-file_v1 0.5.0 → 0.6.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: f878f38d26379dc1e5cb4d5ad681c2f4af37554773f5bd2cd1ca394e18fb92f7
|
|
4
|
+
data.tar.gz: 57e28f7eff6f4cf4eaf2a2b32a6bee87eab564e71012269580f3da1a44cf38fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 74806f5612990f83327a9f43a9f21e89df1184dc2e23cee05066c4c0be27e4344d6468028a07948b5b0146e720b5624d211cd854acdd46686f81e3d42481b6d7
|
|
7
|
+
data.tar.gz: f4c36012ff7ee8e088e776ac6cf25e4a7312ddf0621e95570c7b7e4678a624e4f19911783a4b9069885fdf1f0972be0eb1531ae60b7acdc3c5a0adb69d13a94d
|
data/CHANGELOG.md
CHANGED
|
@@ -60,6 +60,12 @@ module Google
|
|
|
60
60
|
# @return [String]
|
|
61
61
|
attr_accessor :name
|
|
62
62
|
|
|
63
|
+
# Output only. Reserved for future use.
|
|
64
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
|
65
|
+
# @return [Boolean]
|
|
66
|
+
attr_accessor :satisfies_pzs
|
|
67
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
|
68
|
+
|
|
63
69
|
# Name of the file share in the source Cloud Filestore instance that the backup
|
|
64
70
|
# is created from.
|
|
65
71
|
# Corresponds to the JSON property `sourceFileShare`
|
|
@@ -102,6 +108,7 @@ module Google
|
|
|
102
108
|
@download_bytes = args[:download_bytes] if args.key?(:download_bytes)
|
|
103
109
|
@labels = args[:labels] if args.key?(:labels)
|
|
104
110
|
@name = args[:name] if args.key?(:name)
|
|
111
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
105
112
|
@source_file_share = args[:source_file_share] if args.key?(:source_file_share)
|
|
106
113
|
@source_instance = args[:source_instance] if args.key?(:source_instance)
|
|
107
114
|
@source_instance_tier = args[:source_instance_tier] if args.key?(:source_instance_tier)
|
|
@@ -340,8 +347,10 @@ module Google
|
|
|
340
347
|
# @return [Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings]
|
|
341
348
|
attr_accessor :maintenance_settings
|
|
342
349
|
|
|
343
|
-
# Unique name of the resource. It uses the form: `projects/`project_id
|
|
344
|
-
# locations/`location_id`/instances/`instance_id``
|
|
350
|
+
# Unique name of the resource. It uses the form: `projects/`project_id|
|
|
351
|
+
# project_number`/locations/`location_id`/instances/`instance_id`` Note: Either
|
|
352
|
+
# project_id or project_number can be used, but keep it consistent with other
|
|
353
|
+
# APIs (e.g. RescheduleUpdate)
|
|
345
354
|
# Corresponds to the JSON property `name`
|
|
346
355
|
# @return [String]
|
|
347
356
|
attr_accessor :name
|
|
@@ -786,6 +795,12 @@ module Google
|
|
|
786
795
|
# @return [Array<Google::Apis::FileV1::NetworkConfig>]
|
|
787
796
|
attr_accessor :networks
|
|
788
797
|
|
|
798
|
+
# Output only. Reserved for future use.
|
|
799
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
|
800
|
+
# @return [Boolean]
|
|
801
|
+
attr_accessor :satisfies_pzs
|
|
802
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
|
803
|
+
|
|
789
804
|
# Output only. The instance state.
|
|
790
805
|
# Corresponds to the JSON property `state`
|
|
791
806
|
# @return [String]
|
|
@@ -814,6 +829,7 @@ module Google
|
|
|
814
829
|
@labels = args[:labels] if args.key?(:labels)
|
|
815
830
|
@name = args[:name] if args.key?(:name)
|
|
816
831
|
@networks = args[:networks] if args.key?(:networks)
|
|
832
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
817
833
|
@state = args[:state] if args.key?(:state)
|
|
818
834
|
@status_message = args[:status_message] if args.key?(:status_message)
|
|
819
835
|
@tier = args[:tier] if args.key?(:tier)
|
|
@@ -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.6.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210422"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -235,6 +235,7 @@ module Google
|
|
|
235
235
|
property :download_bytes, :numeric_string => true, as: 'downloadBytes'
|
|
236
236
|
hash :labels, as: 'labels'
|
|
237
237
|
property :name, as: 'name'
|
|
238
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
238
239
|
property :source_file_share, as: 'sourceFileShare'
|
|
239
240
|
property :source_instance, as: 'sourceInstance'
|
|
240
241
|
property :source_instance_tier, as: 'sourceInstanceTier'
|
|
@@ -413,6 +414,7 @@ module Google
|
|
|
413
414
|
property :name, as: 'name'
|
|
414
415
|
collection :networks, as: 'networks', class: Google::Apis::FileV1::NetworkConfig, decorator: Google::Apis::FileV1::NetworkConfig::Representation
|
|
415
416
|
|
|
417
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
416
418
|
property :state, as: 'state'
|
|
417
419
|
property :status_message, as: 'statusMessage'
|
|
418
420
|
property :tier, as: 'tier'
|
|
@@ -89,7 +89,7 @@ module Google
|
|
|
89
89
|
# @param [Boolean] include_unrevealed_locations
|
|
90
90
|
# If true, the returned list will include locations which are not yet revealed.
|
|
91
91
|
# @param [Fixnum] page_size
|
|
92
|
-
# The maximum number of results to return. If not set, the service
|
|
92
|
+
# The maximum number of results to return. If not set, the service selects a
|
|
93
93
|
# default.
|
|
94
94
|
# @param [String] page_token
|
|
95
95
|
# A page token received from the `next_page_token` field in the response. Send
|
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.6.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: 2021-
|
|
11
|
+
date: 2021-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -52,7 +52,7 @@ licenses:
|
|
|
52
52
|
metadata:
|
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-file_v1/CHANGELOG.md
|
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.
|
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.6.0
|
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-file_v1
|
|
57
57
|
post_install_message:
|
|
58
58
|
rdoc_options: []
|
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
70
|
version: '0'
|
|
71
71
|
requirements: []
|
|
72
|
-
rubygems_version: 3.2.
|
|
72
|
+
rubygems_version: 3.2.17
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: Simple REST client for Cloud Filestore API V1
|