google-apis-storagetransfer_v1 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/storagetransfer_v1/classes.rb +42 -27
- data/lib/google/apis/storagetransfer_v1/gem_version.rb +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f036a9eedfc626c70010332128eaf04f6f57b913424b45cb87bb51932b078db
|
4
|
+
data.tar.gz: 50a11bcb9834731fb062368e19eef3b4b412898ecc208d6917a13295bbeb8081
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70b49f9adf6b184fa71231b53d2dd60a6fa03d89d5ecb1bed1f665ec854a2d399444a46c1e8c2636b7e7ffd185cfb3719feca8b12baebde609f87125744ab40a
|
7
|
+
data.tar.gz: ed9c59eb15eb554eddd3930d02f4ce0eeba4e4e6d919b65188a79c9ea708d9c7ca7ee93c972774e93b7a65611787ef2fc5c2a79534c950fd7cd5b3e26a0ee976
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-storagetransfer_v1
|
2
2
|
|
3
|
+
### v0.2.0 (2021-02-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210128
|
6
|
+
* Regenerated using generator version 0.1.2
|
7
|
+
|
3
8
|
### v0.1.0 (2021-01-07)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.1.1
|
@@ -24,8 +24,8 @@ module Google
|
|
24
24
|
|
25
25
|
# AWS access key (see [AWS Security Credentials](https://docs.aws.amazon.com/
|
26
26
|
# general/latest/gr/aws-security-credentials.html)). For information on our data
|
27
|
-
# retention policy for user credentials, see [User credentials](
|
28
|
-
# user-credentials).
|
27
|
+
# retention policy for user credentials, see [User credentials](/storage-
|
28
|
+
# transfer/docs/data-retention#user-credentials).
|
29
29
|
class AwsAccessKey
|
30
30
|
include Google::Apis::Core::Hashable
|
31
31
|
|
@@ -57,8 +57,8 @@ module Google
|
|
57
57
|
|
58
58
|
# AWS access key (see [AWS Security Credentials](https://docs.aws.amazon.com/
|
59
59
|
# general/latest/gr/aws-security-credentials.html)). For information on our data
|
60
|
-
# retention policy for user credentials, see [User credentials](
|
61
|
-
# user-credentials).
|
60
|
+
# retention policy for user credentials, see [User credentials](/storage-
|
61
|
+
# transfer/docs/data-retention#user-credentials).
|
62
62
|
# Corresponds to the JSON property `awsAccessKey`
|
63
63
|
# @return [Google::Apis::StoragetransferV1::AwsAccessKey]
|
64
64
|
attr_accessor :aws_access_key
|
@@ -99,7 +99,8 @@ module Google
|
|
99
99
|
include Google::Apis::Core::Hashable
|
100
100
|
|
101
101
|
# Azure credentials For information on our data retention policy for user
|
102
|
-
# credentials, see [User credentials](data-retention#user-
|
102
|
+
# credentials, see [User credentials](/storage-transfer/docs/data-retention#user-
|
103
|
+
# credentials).
|
103
104
|
# Corresponds to the JSON property `azureCredentials`
|
104
105
|
# @return [Google::Apis::StoragetransferV1::AzureCredentials]
|
105
106
|
attr_accessor :azure_credentials
|
@@ -135,7 +136,8 @@ module Google
|
|
135
136
|
end
|
136
137
|
|
137
138
|
# Azure credentials For information on our data retention policy for user
|
138
|
-
# credentials, see [User credentials](data-retention#user-
|
139
|
+
# credentials, see [User credentials](/storage-transfer/docs/data-retention#user-
|
140
|
+
# credentials).
|
139
141
|
class AzureCredentials
|
140
142
|
include Google::Apis::Core::Hashable
|
141
143
|
|
@@ -479,31 +481,44 @@ module Google
|
|
479
481
|
class ObjectConditions
|
480
482
|
include Google::Apis::Core::Hashable
|
481
483
|
|
482
|
-
# `exclude_prefixes
|
483
|
-
#
|
484
|
+
# If you specify `exclude_prefixes`, Storage Transfer Service uses the items in
|
485
|
+
# the `exclude_prefixes` array to determine which objects to exclude from a
|
486
|
+
# transfer. Objects must not start with one of the matching `exclude_prefixes`
|
487
|
+
# for inclusion in a transfer. The following are requirements of `
|
488
|
+
# exclude_prefixes`: * Each exclude-prefix can contain any sequence of Unicode
|
489
|
+
# characters, to a max length of 1024 bytes when UTF8-encoded, and must not
|
490
|
+
# contain Carriage Return or Line Feed characters. Wildcard matching and regular
|
491
|
+
# expression matching are not supported. * Each exclude-prefix must omit the
|
492
|
+
# leading slash. For example, to exclude the object `s3://my-aws-bucket/logs/y=
|
493
|
+
# 2015/requests.gz`, specify the exclude-prefix as `logs/y=2015/requests.gz`. *
|
494
|
+
# None of the exclude-prefix values can be empty, if specified. * Each exclude-
|
495
|
+
# prefix must exclude a distinct portion of the object namespace. No exclude-
|
496
|
+
# prefix may be a prefix of another exclude-prefix. * If include_prefixes is
|
497
|
+
# specified, then each exclude-prefix must start with the value of a path
|
498
|
+
# explicitly included by `include_prefixes`. The max size of `exclude_prefixes`
|
499
|
+
# is 1000. For more information, see [Filtering objects from transfers](/storage-
|
500
|
+
# transfer/docs/filtering-objects-from-transfers).
|
484
501
|
# Corresponds to the JSON property `excludePrefixes`
|
485
502
|
# @return [Array<String>]
|
486
503
|
attr_accessor :exclude_prefixes
|
487
504
|
|
488
|
-
# If `include_prefixes
|
489
|
-
#
|
490
|
-
# start with
|
491
|
-
#
|
492
|
-
#
|
493
|
-
#
|
494
|
-
# characters, to a max length of 1024
|
495
|
-
# contain Carriage Return or Line Feed
|
496
|
-
#
|
497
|
-
# prefix must omit the leading slash. For example, to
|
498
|
-
#
|
499
|
-
#
|
500
|
-
#
|
501
|
-
#
|
502
|
-
# prefix
|
503
|
-
#
|
504
|
-
#
|
505
|
-
# each exclude-prefix must start with the value of a path explicitly included by
|
506
|
-
# `include_prefixes`. The max size of `include_prefixes` is 1000.
|
505
|
+
# If you specify `include_prefixes`, Storage Transfer Service uses the items in
|
506
|
+
# the `include_prefixes` array to determine which objects to include in a
|
507
|
+
# transfer. Objects must start with one of the matching `include_prefixes` for
|
508
|
+
# inclusion in the transfer. If exclude_prefixes is specified, objects must not
|
509
|
+
# start with any of the `exclude_prefixes` specified for inclusion in the
|
510
|
+
# transfer. The following are requirements of `include_prefixes`: * Each include-
|
511
|
+
# prefix can contain any sequence of Unicode characters, to a max length of 1024
|
512
|
+
# bytes when UTF8-encoded, and must not contain Carriage Return or Line Feed
|
513
|
+
# characters. Wildcard matching and regular expression matching are not
|
514
|
+
# supported. * Each include-prefix must omit the leading slash. For example, to
|
515
|
+
# include the object `s3://my-aws-bucket/logs/y=2015/requests.gz`, specify the
|
516
|
+
# include-prefix as `logs/y=2015/requests.gz`. * None of the include-prefix
|
517
|
+
# values can be empty, if specified. * Each include-prefix must include a
|
518
|
+
# distinct portion of the object namespace. No include-prefix may be a prefix of
|
519
|
+
# another include-prefix. The max size of `include_prefixes` is 1000. For more
|
520
|
+
# information, see [Filtering objects from transfers](/storage-transfer/docs/
|
521
|
+
# filtering-objects-from-transfers).
|
507
522
|
# Corresponds to the JSON property `includePrefixes`
|
508
523
|
# @return [Array<String>]
|
509
524
|
attr_accessor :include_prefixes
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module StoragetransferV1
|
18
18
|
# Version of the google-apis-storagetransfer_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.2.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.1.
|
22
|
+
GENERATOR_VERSION = "0.1.2"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210128"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-storagetransfer_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.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-02-08 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-storagetransfer_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.2.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-storagetransfer_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.
|
72
|
+
rubygems_version: 3.2.6
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Storage Transfer API V1
|