google-apis-file_v1 0.7.0 → 0.11.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 +17 -0
- data/lib/google/apis/file_v1/classes.rb +14 -17
- data/lib/google/apis/file_v1/gem_version.rb +3 -3
- data/lib/google/apis/file_v1/representations.rb +2 -2
- metadata +13 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95f9dab6f2e5f92af2c16bd1ffd2ea62c51f50148f89f101f9099dbda65b0862
|
4
|
+
data.tar.gz: 6d626eb702dff766c4db43bb1f83bb7230a1052557b0d1b28cd68180a65fbf06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 295cf0bc33eeccaf8bdfd75502ada65b9d704acad09d11990f4b9d6092b2197f811a9af0578e67bfa49bd5b9ad73ed815c029e14fca09447f3aed30fe77d4b95
|
7
|
+
data.tar.gz: 7e0178913cd98cc0dacb843b0f39f6059de05b3257dea9336c72453615565495ad07643659ea148c88e12b437a924ca78446080a8010eb4d5a95a963303a73f7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-file_v1
|
2
2
|
|
3
|
+
### v0.11.0 (2021-07-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210721
|
6
|
+
|
7
|
+
### v0.10.0 (2021-07-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210708
|
10
|
+
|
11
|
+
### v0.9.0 (2021-06-29)
|
12
|
+
|
13
|
+
* Regenerated using generator version 0.4.0
|
14
|
+
|
15
|
+
### v0.8.0 (2021-06-24)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210524
|
18
|
+
* Regenerated using generator version 0.3.0
|
19
|
+
|
3
20
|
### v0.7.0 (2021-05-19)
|
4
21
|
|
5
22
|
* Unspecified changes
|
@@ -546,6 +546,11 @@ module Google
|
|
546
546
|
# @return [String]
|
547
547
|
attr_accessor :node_id
|
548
548
|
|
549
|
+
# PerSliSloEligibility is a mapping from an SLI name to eligibility.
|
550
|
+
# Corresponds to the JSON property `perSliEligibility`
|
551
|
+
# @return [Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility]
|
552
|
+
attr_accessor :per_sli_eligibility
|
553
|
+
|
549
554
|
def initialize(**args)
|
550
555
|
update!(**args)
|
551
556
|
end
|
@@ -555,6 +560,7 @@ module Google
|
|
555
560
|
@exclusions = args[:exclusions] if args.key?(:exclusions)
|
556
561
|
@location = args[:location] if args.key?(:location)
|
557
562
|
@node_id = args[:node_id] if args.key?(:node_id)
|
563
|
+
@per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
|
558
564
|
end
|
559
565
|
end
|
560
566
|
|
@@ -697,13 +703,6 @@ module Google
|
|
697
703
|
class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
|
698
704
|
include Google::Apis::Core::Hashable
|
699
705
|
|
700
|
-
# SloEligibility is a tuple containing eligibility value: true if an instance is
|
701
|
-
# eligible for SLO calculation or false if it should be excluded from all SLO-
|
702
|
-
# related calculations along with a user-defined reason.
|
703
|
-
# Corresponds to the JSON property `eligibility`
|
704
|
-
# @return [Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility]
|
705
|
-
attr_accessor :eligibility
|
706
|
-
|
707
706
|
# List of SLO exclusion windows. When multiple entries in the list match (
|
708
707
|
# matching the exclusion time-window against current time point) the exclusion
|
709
708
|
# reason used in the first matching entry will be published. It is not needed to
|
@@ -744,7 +743,6 @@ module Google
|
|
744
743
|
|
745
744
|
# Update properties of this object
|
746
745
|
def update!(**args)
|
747
|
-
@eligibility = args[:eligibility] if args.key?(:eligibility)
|
748
746
|
@exclusions = args[:exclusions] if args.key?(:exclusions)
|
749
747
|
@nodes = args[:nodes] if args.key?(:nodes)
|
750
748
|
@per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
|
@@ -1258,12 +1256,12 @@ module Google
|
|
1258
1256
|
class OperationMetadata
|
1259
1257
|
include Google::Apis::Core::Hashable
|
1260
1258
|
|
1261
|
-
#
|
1259
|
+
# Output only. API version used to start the operation.
|
1262
1260
|
# Corresponds to the JSON property `apiVersion`
|
1263
1261
|
# @return [String]
|
1264
1262
|
attr_accessor :api_version
|
1265
1263
|
|
1266
|
-
#
|
1264
|
+
# Output only. Identifies whether the user has requested cancellation of the
|
1267
1265
|
# operation. Operations that have successfully been cancelled have Operation.
|
1268
1266
|
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
1269
1267
|
# CANCELLED`.
|
@@ -1272,27 +1270,27 @@ module Google
|
|
1272
1270
|
attr_accessor :cancel_requested
|
1273
1271
|
alias_method :cancel_requested?, :cancel_requested
|
1274
1272
|
|
1275
|
-
#
|
1273
|
+
# Output only. The time the operation was created.
|
1276
1274
|
# Corresponds to the JSON property `createTime`
|
1277
1275
|
# @return [String]
|
1278
1276
|
attr_accessor :create_time
|
1279
1277
|
|
1280
|
-
#
|
1278
|
+
# Output only. The time the operation finished running.
|
1281
1279
|
# Corresponds to the JSON property `endTime`
|
1282
1280
|
# @return [String]
|
1283
1281
|
attr_accessor :end_time
|
1284
1282
|
|
1285
|
-
#
|
1283
|
+
# Output only. Human-readable status of the operation, if any.
|
1286
1284
|
# Corresponds to the JSON property `statusDetail`
|
1287
1285
|
# @return [String]
|
1288
1286
|
attr_accessor :status_detail
|
1289
1287
|
|
1290
|
-
#
|
1288
|
+
# Output only. Server-defined resource path for the target of the operation.
|
1291
1289
|
# Corresponds to the JSON property `target`
|
1292
1290
|
# @return [String]
|
1293
1291
|
attr_accessor :target
|
1294
1292
|
|
1295
|
-
#
|
1293
|
+
# Output only. Name of the verb executed by the operation.
|
1296
1294
|
# Corresponds to the JSON property `verb`
|
1297
1295
|
# @return [String]
|
1298
1296
|
attr_accessor :verb
|
@@ -1465,8 +1463,7 @@ module Google
|
|
1465
1463
|
|
1466
1464
|
# Deny Maintenance Period that is applied to resource to indicate when
|
1467
1465
|
# maintenance is forbidden. User can specify zero or more non-overlapping deny
|
1468
|
-
# periods.
|
1469
|
-
# one.
|
1466
|
+
# periods. Maximum number of deny_maintenance_periods expected is one.
|
1470
1467
|
# Corresponds to the JSON property `denyMaintenancePeriods`
|
1471
1468
|
# @return [Array<Google::Apis::FileV1::DenyMaintenancePeriod>]
|
1472
1469
|
attr_accessor :deny_maintenance_periods
|
@@ -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.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210721"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -350,6 +350,8 @@ module Google
|
|
350
350
|
|
351
351
|
property :location, as: 'location'
|
352
352
|
property :node_id, as: 'nodeId'
|
353
|
+
property :per_sli_eligibility, as: 'perSliEligibility', class: Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility, decorator: Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility::Representation
|
354
|
+
|
353
355
|
end
|
354
356
|
end
|
355
357
|
|
@@ -390,8 +392,6 @@ module Google
|
|
390
392
|
class GoogleCloudSaasacceleratorManagementProvidersV1SloMetadata
|
391
393
|
# @private
|
392
394
|
class Representation < Google::Apis::Core::JsonRepresentation
|
393
|
-
property :eligibility, as: 'eligibility', class: Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility, decorator: Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1SloEligibility::Representation
|
394
|
-
|
395
395
|
collection :exclusions, as: 'exclusions', class: Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion, decorator: Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion::Representation
|
396
396
|
|
397
397
|
collection :nodes, as: 'nodes', class: Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata, decorator: Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata::Representation
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.11.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-08-02 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.4'
|
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.4'
|
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 V1. Simple REST
|
28
34
|
clients are Ruby client libraries that provide access to Google services via their
|
29
35
|
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_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.11.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-file_v1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|