google-apis-storage_v1 0.13.0 → 0.14.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: 6b09a7a89c3359a7a7ac3b226656526bc2995ac49274c27dd7059dd0e1aa5b65
|
|
4
|
+
data.tar.gz: b587f670edbe3d16d8a35ae85e18704536fea3335760cca736f33a1f9a3501c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 942de35fa75c5ca80c2b9637e74114d3a73c0b313f73d1b0829c1f79cc165b0581d788c4bbec2cf7751726d8a7d1db567a3550b32c59cfeccbd74bd35835698c
|
|
7
|
+
data.tar.gz: 3a41e17ccbfa2ea364bfcce6c43f95c62d62bbf43a7e2e5d7abc64af16c0baf817ef5b946880905523cc0899edcd80ded09de9a279a4af891902f09782faabeb
|
data/CHANGELOG.md
CHANGED
|
@@ -574,6 +574,12 @@ module Google
|
|
|
574
574
|
# @return [String]
|
|
575
575
|
attr_accessor :matches_pattern
|
|
576
576
|
|
|
577
|
+
# List of object name prefixes. This condition will be satisfied when at least
|
|
578
|
+
# one of the prefixes exactly matches the beginning of the object name.
|
|
579
|
+
# Corresponds to the JSON property `matchesPrefix`
|
|
580
|
+
# @return [Array<String>]
|
|
581
|
+
attr_accessor :matches_prefix
|
|
582
|
+
|
|
577
583
|
# Objects having any of the storage classes specified by this condition will be
|
|
578
584
|
# matched. Values include MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, ARCHIVE,
|
|
579
585
|
# STANDARD, and DURABLE_REDUCED_AVAILABILITY.
|
|
@@ -581,6 +587,12 @@ module Google
|
|
|
581
587
|
# @return [Array<String>]
|
|
582
588
|
attr_accessor :matches_storage_class
|
|
583
589
|
|
|
590
|
+
# List of object name suffixes. This condition will be satisfied when at least
|
|
591
|
+
# one of the suffixes exactly matches the end of the object name.
|
|
592
|
+
# Corresponds to the JSON property `matchesSuffix`
|
|
593
|
+
# @return [Array<String>]
|
|
594
|
+
attr_accessor :matches_suffix
|
|
595
|
+
|
|
584
596
|
# A date in RFC 3339 format with only the date part (for instance, "2013-01-15").
|
|
585
597
|
# This condition is satisfied when the noncurrent time on an object is before
|
|
586
598
|
# this date in UTC. This condition is relevant only for versioned objects.
|
|
@@ -608,7 +620,9 @@ module Google
|
|
|
608
620
|
@days_since_noncurrent_time = args[:days_since_noncurrent_time] if args.key?(:days_since_noncurrent_time)
|
|
609
621
|
@is_live = args[:is_live] if args.key?(:is_live)
|
|
610
622
|
@matches_pattern = args[:matches_pattern] if args.key?(:matches_pattern)
|
|
623
|
+
@matches_prefix = args[:matches_prefix] if args.key?(:matches_prefix)
|
|
611
624
|
@matches_storage_class = args[:matches_storage_class] if args.key?(:matches_storage_class)
|
|
625
|
+
@matches_suffix = args[:matches_suffix] if args.key?(:matches_suffix)
|
|
612
626
|
@noncurrent_time_before = args[:noncurrent_time_before] if args.key?(:noncurrent_time_before)
|
|
613
627
|
@num_newer_versions = args[:num_newer_versions] if args.key?(:num_newer_versions)
|
|
614
628
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module StorageV1
|
|
18
18
|
# Version of the google-apis-storage_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.14.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220509"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -427,7 +427,9 @@ module Google
|
|
|
427
427
|
property :days_since_noncurrent_time, as: 'daysSinceNoncurrentTime'
|
|
428
428
|
property :is_live, as: 'isLive'
|
|
429
429
|
property :matches_pattern, as: 'matchesPattern'
|
|
430
|
+
collection :matches_prefix, as: 'matchesPrefix'
|
|
430
431
|
collection :matches_storage_class, as: 'matchesStorageClass'
|
|
432
|
+
collection :matches_suffix, as: 'matchesSuffix'
|
|
431
433
|
property :noncurrent_time_before, as: 'noncurrentTimeBefore', type: Date
|
|
432
434
|
|
|
433
435
|
property :num_newer_versions, as: 'numNewerVersions'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-storage_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.14.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: 2022-
|
|
11
|
+
date: 2022-05-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storage_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-storage_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-storage_v1/v0.14.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storage_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|