google-apis-file_v1beta1 0.3.0 → 0.8.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 +22 -0
- data/lib/google/apis/file_v1beta1.rb +1 -1
- data/lib/google/apis/file_v1beta1/classes.rb +21 -13
- data/lib/google/apis/file_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/file_v1beta1/representations.rb +2 -2
- data/lib/google/apis/file_v1beta1/service.rb +7 -3
- metadata +15 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b128a35e2cbd56e0747a7659beb4985fdb4e85b45dce1730af65d3ffafa2333
|
4
|
+
data.tar.gz: 96498291133a7338b7261d7b6d77732dbde22595655c5bbfaa5617046718530d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ef67e5987bedfbb226f2023c04ea188510aefa966789667c05754040bb989f2317c1e9b63ba93ce3f38f695c62581f26bd8886884d8100db674bcfe42997c5a
|
7
|
+
data.tar.gz: ed3de2b82b85763c7af69f0fbf05ee28dc5b18c8f15ec500a33f16bf646a85efe7a0eee549b7576f6adc4dfd7b94cc883e35266ff36d3eef18eeb3cf0479acd3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release history for google-apis-file_v1beta1
|
2
2
|
|
3
|
+
### v0.8.0 (2021-06-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210524
|
6
|
+
* Regenerated using generator version 0.3.0
|
7
|
+
|
8
|
+
### v0.7.0 (2021-05-19)
|
9
|
+
|
10
|
+
* Unspecified changes
|
11
|
+
|
12
|
+
### v0.6.0 (2021-04-30)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20210422
|
15
|
+
|
16
|
+
### v0.5.0 (2021-03-31)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210323
|
19
|
+
* Regenerated using generator version 0.2.0
|
20
|
+
|
21
|
+
### v0.4.0 (2021-03-04)
|
22
|
+
|
23
|
+
* Unspecified changes
|
24
|
+
|
3
25
|
### v0.3.0 (2021-02-18)
|
4
26
|
|
5
27
|
* Regenerated from discovery document revision 20210211
|
@@ -29,7 +29,7 @@ module Google
|
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1beta1'
|
31
31
|
|
32
|
-
#
|
32
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
33
33
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
34
34
|
end
|
35
35
|
end
|
@@ -58,6 +58,12 @@ module Google
|
|
58
58
|
# @return [String]
|
59
59
|
attr_accessor :name
|
60
60
|
|
61
|
+
# Output only. Reserved for future use.
|
62
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
63
|
+
# @return [Boolean]
|
64
|
+
attr_accessor :satisfies_pzs
|
65
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
66
|
+
|
61
67
|
# Name of the file share in the source Cloud Filestore instance that the backup
|
62
68
|
# is created from.
|
63
69
|
# Corresponds to the JSON property `sourceFileShare`
|
@@ -100,6 +106,7 @@ module Google
|
|
100
106
|
@download_bytes = args[:download_bytes] if args.key?(:download_bytes)
|
101
107
|
@labels = args[:labels] if args.key?(:labels)
|
102
108
|
@name = args[:name] if args.key?(:name)
|
109
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
103
110
|
@source_file_share = args[:source_file_share] if args.key?(:source_file_share)
|
104
111
|
@source_instance = args[:source_instance] if args.key?(:source_instance)
|
105
112
|
@source_instance_tier = args[:source_instance_tier] if args.key?(:source_instance_tier)
|
@@ -337,8 +344,10 @@ module Google
|
|
337
344
|
# @return [Google::Apis::FileV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSettings]
|
338
345
|
attr_accessor :maintenance_settings
|
339
346
|
|
340
|
-
# Unique name of the resource. It uses the form: `projects/`project_id
|
341
|
-
# locations/`location_id`/instances/`instance_id``
|
347
|
+
# Unique name of the resource. It uses the form: `projects/`project_id|
|
348
|
+
# project_number`/locations/`location_id`/instances/`instance_id`` Note: Either
|
349
|
+
# project_id or project_number can be used, but keep it consistent with other
|
350
|
+
# APIs (e.g. RescheduleUpdate)
|
342
351
|
# Corresponds to the JSON property `name`
|
343
352
|
# @return [String]
|
344
353
|
attr_accessor :name
|
@@ -421,9 +430,9 @@ module Google
|
|
421
430
|
class GoogleCloudSaasacceleratorManagementProvidersV1MaintenanceSchedule
|
422
431
|
include Google::Apis::Core::Hashable
|
423
432
|
|
424
|
-
#
|
425
|
-
#
|
426
|
-
#
|
433
|
+
# This field is deprecated, and will be always set to true since reschedule can
|
434
|
+
# happen multiple times now. This field should not be removed until all service
|
435
|
+
# producers remove this for their customers.
|
427
436
|
# Corresponds to the JSON property `canReschedule`
|
428
437
|
# @return [Boolean]
|
429
438
|
attr_accessor :can_reschedule
|
@@ -685,13 +694,6 @@ module Google
|
|
685
694
|
class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
|
686
695
|
include Google::Apis::Core::Hashable
|
687
696
|
|
688
|
-
# SloEligibility is a tuple containing eligibility value: true if an instance is
|
689
|
-
# eligible for SLO calculation or false if it should be excluded from all SLO-
|
690
|
-
# related calculations along with a user-defined reason.
|
691
|
-
# Corresponds to the JSON property `eligibility`
|
692
|
-
# @return [Google::Apis::FileV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility]
|
693
|
-
attr_accessor :eligibility
|
694
|
-
|
695
697
|
# List of SLO exclusion windows. When multiple entries in the list match (
|
696
698
|
# matching the exclusion time-window against current time point) the exclusion
|
697
699
|
# reason used in the first matching entry will be published. It is not needed to
|
@@ -732,7 +734,6 @@ module Google
|
|
732
734
|
|
733
735
|
# Update properties of this object
|
734
736
|
def update!(**args)
|
735
|
-
@eligibility = args[:eligibility] if args.key?(:eligibility)
|
736
737
|
@exclusions = args[:exclusions] if args.key?(:exclusions)
|
737
738
|
@nodes = args[:nodes] if args.key?(:nodes)
|
738
739
|
@per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
|
@@ -783,6 +784,12 @@ module Google
|
|
783
784
|
# @return [Array<Google::Apis::FileV1beta1::NetworkConfig>]
|
784
785
|
attr_accessor :networks
|
785
786
|
|
787
|
+
# Output only. Reserved for future use.
|
788
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
789
|
+
# @return [Boolean]
|
790
|
+
attr_accessor :satisfies_pzs
|
791
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
792
|
+
|
786
793
|
# Output only. The instance state.
|
787
794
|
# Corresponds to the JSON property `state`
|
788
795
|
# @return [String]
|
@@ -811,6 +818,7 @@ module Google
|
|
811
818
|
@labels = args[:labels] if args.key?(:labels)
|
812
819
|
@name = args[:name] if args.key?(:name)
|
813
820
|
@networks = args[:networks] if args.key?(:networks)
|
821
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
814
822
|
@state = args[:state] if args.key?(:state)
|
815
823
|
@status_message = args[:status_message] if args.key?(:status_message)
|
816
824
|
@tier = args[:tier] if args.key?(:tier)
|
@@ -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.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210524"
|
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'
|
@@ -389,8 +390,6 @@ module Google
|
|
389
390
|
class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
|
390
391
|
# @private
|
391
392
|
class Representation < Google::Apis::Core::JsonRepresentation
|
392
|
-
property :eligibility, as: 'eligibility', class: Google::Apis::FileV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility, decorator: Google::Apis::FileV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility::Representation
|
393
|
-
|
394
393
|
collection :exclusions, as: 'exclusions', class: Google::Apis::FileV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::FileV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion::Representation
|
395
394
|
|
396
395
|
collection :nodes, as: 'nodes', class: Google::Apis::FileV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata, decorator: Google::Apis::FileV1beta1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata::Representation
|
@@ -413,6 +412,7 @@ module Google
|
|
413
412
|
property :name, as: 'name'
|
414
413
|
collection :networks, as: 'networks', class: Google::Apis::FileV1beta1::NetworkConfig, decorator: Google::Apis::FileV1beta1::NetworkConfig::Representation
|
415
414
|
|
415
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
416
416
|
property :state, as: 'state'
|
417
417
|
property :status_message, as: 'statusMessage'
|
418
418
|
property :tier, as: 'tier'
|
@@ -83,13 +83,17 @@ module Google
|
|
83
83
|
# @param [String] name
|
84
84
|
# The resource that owns the locations collection, if applicable.
|
85
85
|
# @param [String] filter
|
86
|
-
#
|
86
|
+
# A filter to narrow down results to a preferred subset. The filtering language
|
87
|
+
# accepts strings like "displayName=tokyo", and is documented in more detail in [
|
88
|
+
# AIP-160](https://google.aip.dev/160).
|
87
89
|
# @param [Boolean] include_unrevealed_locations
|
88
90
|
# If true, the returned list will include locations which are not yet revealed.
|
89
91
|
# @param [Fixnum] page_size
|
90
|
-
# The
|
92
|
+
# The maximum number of results to return. If not set, the service selects a
|
93
|
+
# default.
|
91
94
|
# @param [String] page_token
|
92
|
-
#
|
95
|
+
# A page token received from the `next_page_token` field in the response. Send
|
96
|
+
# that page token to receive the subsequent page.
|
93
97
|
# @param [String] fields
|
94
98
|
# Selector specifying which fields to include in a partial response.
|
95
99
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.8.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-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.3'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.3'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Cloud Filestore API V1beta1. Simple
|
28
34
|
REST clients are Ruby client libraries that provide access to Google services via
|
29
35
|
their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-file_v1beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1beta1/v0.8.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-file_v1beta1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -62,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
68
|
requirements:
|
63
69
|
- - ">="
|
64
70
|
- !ruby/object:Gem::Version
|
65
|
-
version: '2.
|
71
|
+
version: '2.5'
|
66
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
73
|
requirements:
|
68
74
|
- - ">="
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for Cloud Filestore API V1beta1
|