google-apis-storagetransfer_v1 0.21.0 → 0.24.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 +12 -0
- data/lib/google/apis/storagetransfer_v1/classes.rb +34 -26
- data/lib/google/apis/storagetransfer_v1/gem_version.rb +2 -2
- data/lib/google/apis/storagetransfer_v1/representations.rb +1 -0
- data/lib/google/apis/storagetransfer_v1/service.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cbf498836a4496ea8a8808fb8d2075651bb6bb67fa7e5743a8f009b0305fb9bb
|
4
|
+
data.tar.gz: 437e20dcb9bebb479bea4209ca9a58df6fd1d1d590ab9d58bb28938773971406
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49761a4550e52a82d90eaa7ef1754a2bade63f1317d820709c7317cd60d794d38e1c52bb4b51fb1218d7bf231b12e5ce3078c8d57952f64cc4747fd02e27c2bc
|
7
|
+
data.tar.gz: 0a62e1c9b75c5b78ee91fd633e37c8e88a4d8e3892feafa41c7b9056ba46cb7bedad1b1f35eb3dcc3cf5a94169dd1ef6c6bbe625bb13e28c69b6989593d289b7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-storagetransfer_v1
|
2
2
|
|
3
|
+
### v0.24.0 (2022-02-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220216
|
6
|
+
|
7
|
+
### v0.23.0 (2022-02-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220210
|
10
|
+
|
11
|
+
### v0.22.0 (2022-02-08)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220203
|
14
|
+
|
3
15
|
### v0.21.0 (2022-02-01)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220127
|
@@ -245,10 +245,10 @@ module Google
|
|
245
245
|
# day and time zone are either specified elsewhere or are insignificant. The
|
246
246
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
247
247
|
# following: * A full date, with non-zero year, month, and day values * A month
|
248
|
-
# and day
|
249
|
-
#
|
250
|
-
#
|
251
|
-
# google.protobuf.Timestamp
|
248
|
+
# and day, with a zero year (e.g., an anniversary) * A year on its own, with a
|
249
|
+
# zero month and a zero day * A year and month, with a zero day (e.g., a credit
|
250
|
+
# card expiration date) Related types: * google.type.TimeOfDay * google.type.
|
251
|
+
# DateTime * google.protobuf.Timestamp
|
252
252
|
class Date
|
253
253
|
include Google::Apis::Core::Hashable
|
254
254
|
|
@@ -573,7 +573,9 @@ module Google
|
|
573
573
|
end
|
574
574
|
end
|
575
575
|
|
576
|
-
# Specifies the metadata options for running a transfer.
|
576
|
+
# Specifies the metadata options for running a transfer. These options only
|
577
|
+
# apply to transfers involving a POSIX filesystem and are ignored for other
|
578
|
+
# transfers.
|
577
579
|
class MetadataOptions
|
578
580
|
include Google::Apis::Core::Hashable
|
579
581
|
|
@@ -584,9 +586,8 @@ module Google
|
|
584
586
|
# @return [String]
|
585
587
|
attr_accessor :acl
|
586
588
|
|
587
|
-
# Specifies how each file's GID attribute should be handled by
|
588
|
-
#
|
589
|
-
# POSIX file system.
|
589
|
+
# Specifies how each file's POSIX group ID (GID) attribute should be handled by
|
590
|
+
# the transfer. By default, GID is not preserved.
|
590
591
|
# Corresponds to the JSON property `gid`
|
591
592
|
# @return [String]
|
592
593
|
attr_accessor :gid
|
@@ -599,9 +600,8 @@ module Google
|
|
599
600
|
# @return [String]
|
600
601
|
attr_accessor :kms_key
|
601
602
|
|
602
|
-
# Specifies how each file's mode attribute should be handled by the transfer.
|
603
|
-
#
|
604
|
-
# a POSIX file system.
|
603
|
+
# Specifies how each file's mode attribute should be handled by the transfer. By
|
604
|
+
# default, mode is not preserved.
|
605
605
|
# Corresponds to the JSON property `mode`
|
606
606
|
# @return [String]
|
607
607
|
attr_accessor :mode
|
@@ -613,9 +613,8 @@ module Google
|
|
613
613
|
# @return [String]
|
614
614
|
attr_accessor :storage_class
|
615
615
|
|
616
|
-
# Specifies how symlinks should be handled by the transfer.
|
617
|
-
#
|
618
|
-
# system.
|
616
|
+
# Specifies how symlinks should be handled by the transfer. By default, symlinks
|
617
|
+
# are not preserved.
|
619
618
|
# Corresponds to the JSON property `symlink`
|
620
619
|
# @return [String]
|
621
620
|
attr_accessor :symlink
|
@@ -627,9 +626,15 @@ module Google
|
|
627
626
|
# @return [String]
|
628
627
|
attr_accessor :temporary_hold
|
629
628
|
|
630
|
-
# Specifies how each
|
631
|
-
#
|
632
|
-
#
|
629
|
+
# Specifies how each object's `timeCreated` metadata is preserved for transfers
|
630
|
+
# between Google Cloud Storage buckets. If unspecified, the default behavior is
|
631
|
+
# the same as TIME_CREATED_SKIP.
|
632
|
+
# Corresponds to the JSON property `timeCreated`
|
633
|
+
# @return [String]
|
634
|
+
attr_accessor :time_created
|
635
|
+
|
636
|
+
# Specifies how each file's POSIX user ID (UID) attribute should be handled by
|
637
|
+
# the transfer. By default, UID is not preserved.
|
633
638
|
# Corresponds to the JSON property `uid`
|
634
639
|
# @return [String]
|
635
640
|
attr_accessor :uid
|
@@ -647,6 +652,7 @@ module Google
|
|
647
652
|
@storage_class = args[:storage_class] if args.key?(:storage_class)
|
648
653
|
@symlink = args[:symlink] if args.key?(:symlink)
|
649
654
|
@temporary_hold = args[:temporary_hold] if args.key?(:temporary_hold)
|
655
|
+
@time_created = args[:time_created] if args.key?(:time_created)
|
650
656
|
@uid = args[:uid] if args.key?(:uid)
|
651
657
|
end
|
652
658
|
end
|
@@ -944,10 +950,10 @@ module Google
|
|
944
950
|
# day and time zone are either specified elsewhere or are insignificant. The
|
945
951
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
946
952
|
# following: * A full date, with non-zero year, month, and day values * A month
|
947
|
-
# and day
|
948
|
-
#
|
949
|
-
#
|
950
|
-
# google.protobuf.Timestamp
|
953
|
+
# and day, with a zero year (e.g., an anniversary) * A year on its own, with a
|
954
|
+
# zero month and a zero day * A year and month, with a zero day (e.g., a credit
|
955
|
+
# card expiration date) Related types: * google.type.TimeOfDay * google.type.
|
956
|
+
# DateTime * google.protobuf.Timestamp
|
951
957
|
# Corresponds to the JSON property `scheduleEndDate`
|
952
958
|
# @return [Google::Apis::StoragetransferV1::Date]
|
953
959
|
attr_accessor :schedule_end_date
|
@@ -956,10 +962,10 @@ module Google
|
|
956
962
|
# day and time zone are either specified elsewhere or are insignificant. The
|
957
963
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
958
964
|
# following: * A full date, with non-zero year, month, and day values * A month
|
959
|
-
# and day
|
960
|
-
#
|
961
|
-
#
|
962
|
-
# google.protobuf.Timestamp
|
965
|
+
# and day, with a zero year (e.g., an anniversary) * A year on its own, with a
|
966
|
+
# zero month and a zero day * A year and month, with a zero day (e.g., a credit
|
967
|
+
# card expiration date) Related types: * google.type.TimeOfDay * google.type.
|
968
|
+
# DateTime * google.protobuf.Timestamp
|
963
969
|
# Corresponds to the JSON property `scheduleStartDate`
|
964
970
|
# @return [Google::Apis::StoragetransferV1::Date]
|
965
971
|
attr_accessor :schedule_start_date
|
@@ -1457,7 +1463,9 @@ module Google
|
|
1457
1463
|
attr_accessor :delete_objects_unique_in_sink
|
1458
1464
|
alias_method :delete_objects_unique_in_sink?, :delete_objects_unique_in_sink
|
1459
1465
|
|
1460
|
-
# Specifies the metadata options for running a transfer.
|
1466
|
+
# Specifies the metadata options for running a transfer. These options only
|
1467
|
+
# apply to transfers involving a POSIX filesystem and are ignored for other
|
1468
|
+
# transfers.
|
1461
1469
|
# Corresponds to the JSON property `metadataOptions`
|
1462
1470
|
# @return [Google::Apis::StoragetransferV1::MetadataOptions]
|
1463
1471
|
attr_accessor :metadata_options
|
@@ -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.24.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 = "20220216"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -530,7 +530,7 @@ module Google
|
|
530
530
|
# Lists transfer operations. Operations are ordered by their creation time in
|
531
531
|
# reverse chronological order.
|
532
532
|
# @param [String] name
|
533
|
-
#
|
533
|
+
# Required. The name of the type being listed; must be `transferOperations`.
|
534
534
|
# @param [String] filter
|
535
535
|
# Required. A list of query parameters specified as JSON text in the form of: ``"
|
536
536
|
# projectId":"my_project_id", "jobNames":["jobid1","jobid2",...], "
|
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.24.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-02-
|
11
|
+
date: 2022-02-28 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-storagetransfer_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.24.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storagetransfer_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|