google-apis-storage_v1 0.47.0 → 0.51.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: ef8b5adcdb3729a4eb973fca4db7833a049cf192d1143b51c65a8fa9052fa15e
4
- data.tar.gz: 4bceace55bc99a4dce993779048757d5092e5b56f04230519a95b8fabe35d53f
3
+ metadata.gz: 04f8b6ac5d1f53ac828b9286b489323f653215d59aa55f94031b9f83d1c428a5
4
+ data.tar.gz: 516b63e290da0b3567585f27d1e051d42c7c76b219d39bf44f6e579bdcf8184f
5
5
  SHA512:
6
- metadata.gz: '08ca145fa5900879fc2c04c59228785e90132215b7255c08e1c4fe10898afb7d34390e3d80814baa1040ddc11e7d46ad1d94e7bda508d1810e4cc8a370a4400e'
7
- data.tar.gz: e913f80e5dd886a4abf5637c9c7c0d51bf075471c5ec070c3d0c0a41a2e56a1f7b11382100d8439980590664ea94e0d5a3f4da3c470a0e902dd234a6e3349053
6
+ metadata.gz: 7a7b22318dbf8fa580411c6dbb6852d9a3d17cea9e734d5c68385cfe20c61bc8f2d14f927563e38bb0295e2edf4700509adf3dd3019e36bdbef5cabf1d6a2c95
7
+ data.tar.gz: 496406c8ae9c763fb1ad1946eeb71d693f18b584030734804f9cce2cca1f9c29fd3ad83e179d0decebbf02b2c77741e4160d0f5747e4fce6c8123f2a284fed5b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Release history for google-apis-storage_v1
2
2
 
3
+ ### v0.51.0 (2025-05-04)
4
+
5
+ * Regenerated from discovery document revision 20250424
6
+ * Regenerated using generator version 0.17.0
7
+
8
+ ### v0.50.0 (2025-03-02)
9
+
10
+ * Regenerated from discovery document revision 20250224
11
+ * Regenerated using generator version 0.16.0
12
+
13
+ ### v0.49.0 (2024-12-15)
14
+
15
+ * Regenerated from discovery document revision 20241206
16
+
17
+ ### v0.48.0 (2024-11-24)
18
+
19
+ * Regenerated from discovery document revision 20241113
20
+
3
21
  ### v0.47.0 (2024-10-13)
4
22
 
5
23
  * Regenerated from discovery document revision 20241008
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://developers.google.com/storage/docs/json_api/
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -2503,6 +2503,11 @@ module Google
2503
2503
  # @return [DateTime]
2504
2504
  attr_accessor :time_deleted
2505
2505
 
2506
+ # The time when the object was finalized.
2507
+ # Corresponds to the JSON property `timeFinalized`
2508
+ # @return [DateTime]
2509
+ attr_accessor :time_finalized
2510
+
2506
2511
  # The time at which the object's storage class was last changed. When the object
2507
2512
  # is initially created, it will be set to timeCreated.
2508
2513
  # Corresponds to the JSON property `timeStorageClassUpdated`
@@ -2558,6 +2563,7 @@ module Google
2558
2563
  @temporary_hold = args[:temporary_hold] if args.key?(:temporary_hold)
2559
2564
  @time_created = args[:time_created] if args.key?(:time_created)
2560
2565
  @time_deleted = args[:time_deleted] if args.key?(:time_deleted)
2566
+ @time_finalized = args[:time_finalized] if args.key?(:time_finalized)
2561
2567
  @time_storage_class_updated = args[:time_storage_class_updated] if args.key?(:time_storage_class_updated)
2562
2568
  @updated = args[:updated] if args.key?(:updated)
2563
2569
  end
@@ -2896,23 +2902,23 @@ module Google
2896
2902
 
2897
2903
  # A collection of identifiers for members who may assume the provided role.
2898
2904
  # Recognized identifiers are as follows:
2899
- # - allUsers A special identifier that represents anyone on the internet; with
2905
+ # - allUsers - A special identifier that represents anyone on the internet; with
2900
2906
  # or without a Google account.
2901
- # - allAuthenticatedUsers A special identifier that represents anyone who is
2907
+ # - allAuthenticatedUsers - A special identifier that represents anyone who is
2902
2908
  # authenticated with a Google account or a service account.
2903
- # - user:emailid An email address that represents a specific account. For
2909
+ # - user:emailid - An email address that represents a specific account. For
2904
2910
  # example, user:alice@gmail.com or user:joe@example.com.
2905
- # - serviceAccount:emailid An email address that represents a service account.
2911
+ # - serviceAccount:emailid - An email address that represents a service account.
2906
2912
  # For example, serviceAccount:my-other-app@appspot.gserviceaccount.com .
2907
- # - group:emailid An email address that represents a Google group. For example,
2913
+ # - group:emailid - An email address that represents a Google group. For example,
2908
2914
  # group:admins@example.com.
2909
- # - domain:domain A Google Apps domain name that represents all the users of
2915
+ # - domain:domain - A Google Apps domain name that represents all the users of
2910
2916
  # that domain. For example, domain:google.com or domain:example.com.
2911
- # - projectOwner:projectid Owners of the given project. For example,
2917
+ # - projectOwner:projectid - Owners of the given project. For example,
2912
2918
  # projectOwner:my-example-project
2913
- # - projectEditor:projectid Editors of the given project. For example,
2919
+ # - projectEditor:projectid - Editors of the given project. For example,
2914
2920
  # projectEditor:my-example-project
2915
- # - projectViewer:projectid Viewers of the given project. For example,
2921
+ # - projectViewer:projectid - Viewers of the given project. For example,
2916
2922
  # projectViewer:my-example-project
2917
2923
  # Corresponds to the JSON property `members`
2918
2924
  # @return [Array<String>]
@@ -2923,23 +2929,23 @@ module Google
2923
2929
  # ACLs, and legacy IAM roles, which do map directly to ACL permissions. All
2924
2930
  # roles are of the format roles/storage.specificRole.
2925
2931
  # The new IAM roles are:
2926
- # - roles/storage.admin Full control of Google Cloud Storage resources.
2927
- # - roles/storage.objectViewer Read-Only access to Google Cloud Storage
2932
+ # - roles/storage.admin - Full control of Google Cloud Storage resources.
2933
+ # - roles/storage.objectViewer - Read-Only access to Google Cloud Storage
2928
2934
  # objects.
2929
- # - roles/storage.objectCreator Access to create objects in Google Cloud
2935
+ # - roles/storage.objectCreator - Access to create objects in Google Cloud
2930
2936
  # Storage.
2931
- # - roles/storage.objectAdmin Full control of Google Cloud Storage objects.
2937
+ # - roles/storage.objectAdmin - Full control of Google Cloud Storage objects.
2932
2938
  # The legacy IAM roles are:
2933
- # - roles/storage.legacyObjectReader Read-only access to objects without
2939
+ # - roles/storage.legacyObjectReader - Read-only access to objects without
2934
2940
  # listing. Equivalent to an ACL entry on an object with the READER role.
2935
- # - roles/storage.legacyObjectOwner Read/write access to existing objects
2941
+ # - roles/storage.legacyObjectOwner - Read/write access to existing objects
2936
2942
  # without listing. Equivalent to an ACL entry on an object with the OWNER role.
2937
- # - roles/storage.legacyBucketReader Read access to buckets with object
2943
+ # - roles/storage.legacyBucketReader - Read access to buckets with object
2938
2944
  # listing. Equivalent to an ACL entry on a bucket with the READER role.
2939
- # - roles/storage.legacyBucketWriter Read access to buckets with object
2945
+ # - roles/storage.legacyBucketWriter - Read access to buckets with object
2940
2946
  # listing/creation/deletion. Equivalent to an ACL entry on a bucket with the
2941
2947
  # WRITER role.
2942
- # - roles/storage.legacyBucketOwner Read and write access to existing buckets
2948
+ # - roles/storage.legacyBucketOwner - Read and write access to existing buckets
2943
2949
  # with object listing/creation/deletion. Equivalent to an ACL entry on a bucket
2944
2950
  # with the OWNER role.
2945
2951
  # Corresponds to the JSON property `role`
@@ -3104,26 +3110,26 @@ module Google
3104
3110
  # The permissions held by the caller. Permissions are always of the format
3105
3111
  # storage.resource.capability, where resource is one of buckets, objects, or
3106
3112
  # managedFolders. The supported permissions are as follows:
3107
- # - storage.buckets.delete Delete bucket.
3108
- # - storage.buckets.get Read bucket metadata.
3109
- # - storage.buckets.getIamPolicy Read bucket IAM policy.
3110
- # - storage.buckets.create Create bucket.
3111
- # - storage.buckets.list List buckets.
3112
- # - storage.buckets.setIamPolicy Update bucket IAM policy.
3113
- # - storage.buckets.update Update bucket metadata.
3114
- # - storage.objects.delete Delete object.
3115
- # - storage.objects.get Read object data and metadata.
3116
- # - storage.objects.getIamPolicy Read object IAM policy.
3117
- # - storage.objects.create Create object.
3118
- # - storage.objects.list List objects.
3119
- # - storage.objects.setIamPolicy Update object IAM policy.
3120
- # - storage.objects.update Update object metadata.
3121
- # - storage.managedFolders.delete Delete managed folder.
3122
- # - storage.managedFolders.get Read managed folder metadata.
3123
- # - storage.managedFolders.getIamPolicy Read managed folder IAM policy.
3124
- # - storage.managedFolders.create Create managed folder.
3125
- # - storage.managedFolders.list List managed folders.
3126
- # - storage.managedFolders.setIamPolicy Update managed folder IAM policy.
3113
+ # - storage.buckets.delete - Delete bucket.
3114
+ # - storage.buckets.get - Read bucket metadata.
3115
+ # - storage.buckets.getIamPolicy - Read bucket IAM policy.
3116
+ # - storage.buckets.create - Create bucket.
3117
+ # - storage.buckets.list - List buckets.
3118
+ # - storage.buckets.setIamPolicy - Update bucket IAM policy.
3119
+ # - storage.buckets.update - Update bucket metadata.
3120
+ # - storage.objects.delete - Delete object.
3121
+ # - storage.objects.get - Read object data and metadata.
3122
+ # - storage.objects.getIamPolicy - Read object IAM policy.
3123
+ # - storage.objects.create - Create object.
3124
+ # - storage.objects.list - List objects.
3125
+ # - storage.objects.setIamPolicy - Update object IAM policy.
3126
+ # - storage.objects.update - Update object metadata.
3127
+ # - storage.managedFolders.delete - Delete managed folder.
3128
+ # - storage.managedFolders.get - Read managed folder metadata.
3129
+ # - storage.managedFolders.getIamPolicy - Read managed folder IAM policy.
3130
+ # - storage.managedFolders.create - Create managed folder.
3131
+ # - storage.managedFolders.list - List managed folders.
3132
+ # - storage.managedFolders.setIamPolicy - Update managed folder IAM policy.
3127
3133
  # Corresponds to the JSON property `permissions`
3128
3134
  # @return [Array<String>]
3129
3135
  attr_accessor :permissions
@@ -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.47.0"
19
+ GEM_VERSION = "0.51.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.1"
22
+ GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241008"
25
+ REVISION = "20250424"
26
26
  end
27
27
  end
28
28
  end
@@ -1087,6 +1087,8 @@ module Google
1087
1087
 
1088
1088
  property :time_deleted, as: 'timeDeleted', type: DateTime
1089
1089
 
1090
+ property :time_finalized, as: 'timeFinalized', type: DateTime
1091
+
1090
1092
  property :time_storage_class_updated, as: 'timeStorageClassUpdated', type: DateTime
1091
1093
 
1092
1094
  property :updated, as: 'updated', type: DateTime
@@ -976,6 +976,8 @@ module Google
976
976
  # Name of a bucket.
977
977
  # @param [Fixnum] generation
978
978
  # Generation of a bucket.
979
+ # @param [String] projection
980
+ # Set of properties to return. Defaults to full.
979
981
  # @param [String] user_project
980
982
  # The project to be billed for this request. Required for Requester Pays buckets.
981
983
  # @param [String] fields
@@ -989,18 +991,21 @@ module Google
989
991
  # Request-specific options
990
992
  #
991
993
  # @yield [result, err] Result & error if block supplied
992
- # @yieldparam result [NilClass] No result returned for this method
994
+ # @yieldparam result [Google::Apis::StorageV1::Bucket] parsed result object
993
995
  # @yieldparam err [StandardError] error object if request failed
994
996
  #
995
- # @return [void]
997
+ # @return [Google::Apis::StorageV1::Bucket]
996
998
  #
997
999
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
998
1000
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
999
1001
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1000
- def restore_bucket(bucket, generation, user_project: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
1002
+ def restore_bucket(bucket, generation, projection: nil, user_project: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
1001
1003
  command = make_simple_command(:post, 'b/{bucket}/restore', options)
1004
+ command.response_representation = Google::Apis::StorageV1::Bucket::Representation
1005
+ command.response_class = Google::Apis::StorageV1::Bucket
1002
1006
  command.params['bucket'] = bucket unless bucket.nil?
1003
1007
  command.query['generation'] = generation unless generation.nil?
1008
+ command.query['projection'] = projection unless projection.nil?
1004
1009
  command.query['userProject'] = user_project unless user_project.nil?
1005
1010
  command.query['fields'] = fields unless fields.nil?
1006
1011
  command.query['quotaUser'] = quota_user unless quota_user.nil?
@@ -1517,7 +1522,7 @@ module Google
1517
1522
  # Name of the bucket in which the folder resides.
1518
1523
  # @param [Google::Apis::StorageV1::Folder] folder_object
1519
1524
  # @param [Boolean] recursive
1520
- # If true, any parent folder which doesnt exist will be created automatically.
1525
+ # If true, any parent folder which doesn't exist will be created automatically.
1521
1526
  # @param [String] fields
1522
1527
  # Selector specifying which fields to include in a partial response.
1523
1528
  # @param [String] quota_user
@@ -2985,6 +2990,106 @@ module Google
2985
2990
  execute_or_queue_command(command, &block)
2986
2991
  end
2987
2992
 
2993
+ # Moves the source object to the destination object in the same bucket.
2994
+ # @param [String] bucket
2995
+ # Name of the bucket in which the object resides.
2996
+ # @param [String] source_object
2997
+ # Name of the source object. For information about how to URL encode object
2998
+ # names to be path safe, see [Encoding URI Path Parts](https://cloud.google.com/
2999
+ # storage/docs/request-endpoints#encoding).
3000
+ # @param [String] destination_object
3001
+ # Name of the destination object. For information about how to URL encode object
3002
+ # names to be path safe, see [Encoding URI Path Parts](https://cloud.google.com/
3003
+ # storage/docs/request-endpoints#encoding).
3004
+ # @param [Fixnum] if_generation_match
3005
+ # Makes the operation conditional on whether the destination object's current
3006
+ # generation matches the given value. Setting to 0 makes the operation succeed
3007
+ # only if there are no live versions of the object. `ifGenerationMatch` and `
3008
+ # ifGenerationNotMatch` conditions are mutually exclusive: it's an error for
3009
+ # both of them to be set in the request.
3010
+ # @param [Fixnum] if_generation_not_match
3011
+ # Makes the operation conditional on whether the destination object's current
3012
+ # generation does not match the given value. If no live object exists, the
3013
+ # precondition fails. Setting to 0 makes the operation succeed only if there is
3014
+ # a live version of the object.`ifGenerationMatch` and `ifGenerationNotMatch`
3015
+ # conditions are mutually exclusive: it's an error for both of them to be set in
3016
+ # the request.
3017
+ # @param [Fixnum] if_metageneration_match
3018
+ # Makes the operation conditional on whether the destination object's current
3019
+ # metageneration matches the given value. `ifMetagenerationMatch` and `
3020
+ # ifMetagenerationNotMatch` conditions are mutually exclusive: it's an error for
3021
+ # both of them to be set in the request.
3022
+ # @param [Fixnum] if_metageneration_not_match
3023
+ # Makes the operation conditional on whether the destination object's current
3024
+ # metageneration does not match the given value. `ifMetagenerationMatch` and `
3025
+ # ifMetagenerationNotMatch` conditions are mutually exclusive: it's an error for
3026
+ # both of them to be set in the request.
3027
+ # @param [Fixnum] if_source_generation_match
3028
+ # Makes the operation conditional on whether the source object's current
3029
+ # generation matches the given value. `ifSourceGenerationMatch` and `
3030
+ # ifSourceGenerationNotMatch` conditions are mutually exclusive: it's an error
3031
+ # for both of them to be set in the request.
3032
+ # @param [Fixnum] if_source_generation_not_match
3033
+ # Makes the operation conditional on whether the source object's current
3034
+ # generation does not match the given value. `ifSourceGenerationMatch` and `
3035
+ # ifSourceGenerationNotMatch` conditions are mutually exclusive: it's an error
3036
+ # for both of them to be set in the request.
3037
+ # @param [Fixnum] if_source_metageneration_match
3038
+ # Makes the operation conditional on whether the source object's current
3039
+ # metageneration matches the given value. `ifSourceMetagenerationMatch` and `
3040
+ # ifSourceMetagenerationNotMatch` conditions are mutually exclusive: it's an
3041
+ # error for both of them to be set in the request.
3042
+ # @param [Fixnum] if_source_metageneration_not_match
3043
+ # Makes the operation conditional on whether the source object's current
3044
+ # metageneration does not match the given value. `ifSourceMetagenerationMatch`
3045
+ # and `ifSourceMetagenerationNotMatch` conditions are mutually exclusive: it's
3046
+ # an error for both of them to be set in the request.
3047
+ # @param [String] projection
3048
+ # Set of properties to return. Defaults to noAcl.
3049
+ # @param [String] user_project
3050
+ # The project to be billed for this request. Required for Requester Pays buckets.
3051
+ # @param [String] fields
3052
+ # Selector specifying which fields to include in a partial response.
3053
+ # @param [String] quota_user
3054
+ # An opaque string that represents a user for quota purposes. Must not exceed 40
3055
+ # characters.
3056
+ # @param [String] user_ip
3057
+ # Deprecated. Please use quotaUser instead.
3058
+ # @param [Google::Apis::RequestOptions] options
3059
+ # Request-specific options
3060
+ #
3061
+ # @yield [result, err] Result & error if block supplied
3062
+ # @yieldparam result [Google::Apis::StorageV1::Object] parsed result object
3063
+ # @yieldparam err [StandardError] error object if request failed
3064
+ #
3065
+ # @return [Google::Apis::StorageV1::Object]
3066
+ #
3067
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3068
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3069
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3070
+ def move_object(bucket, source_object, destination_object, if_generation_match: nil, if_generation_not_match: nil, if_metageneration_match: nil, if_metageneration_not_match: nil, if_source_generation_match: nil, if_source_generation_not_match: nil, if_source_metageneration_match: nil, if_source_metageneration_not_match: nil, projection: nil, user_project: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
3071
+ command = make_simple_command(:post, 'b/{bucket}/o/{sourceObject}/moveTo/o/{destinationObject}', options)
3072
+ command.response_representation = Google::Apis::StorageV1::Object::Representation
3073
+ command.response_class = Google::Apis::StorageV1::Object
3074
+ command.params['bucket'] = bucket unless bucket.nil?
3075
+ command.params['sourceObject'] = source_object unless source_object.nil?
3076
+ command.params['destinationObject'] = destination_object unless destination_object.nil?
3077
+ command.query['ifGenerationMatch'] = if_generation_match unless if_generation_match.nil?
3078
+ command.query['ifGenerationNotMatch'] = if_generation_not_match unless if_generation_not_match.nil?
3079
+ command.query['ifMetagenerationMatch'] = if_metageneration_match unless if_metageneration_match.nil?
3080
+ command.query['ifMetagenerationNotMatch'] = if_metageneration_not_match unless if_metageneration_not_match.nil?
3081
+ command.query['ifSourceGenerationMatch'] = if_source_generation_match unless if_source_generation_match.nil?
3082
+ command.query['ifSourceGenerationNotMatch'] = if_source_generation_not_match unless if_source_generation_not_match.nil?
3083
+ command.query['ifSourceMetagenerationMatch'] = if_source_metageneration_match unless if_source_metageneration_match.nil?
3084
+ command.query['ifSourceMetagenerationNotMatch'] = if_source_metageneration_not_match unless if_source_metageneration_not_match.nil?
3085
+ command.query['projection'] = projection unless projection.nil?
3086
+ command.query['userProject'] = user_project unless user_project.nil?
3087
+ command.query['fields'] = fields unless fields.nil?
3088
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3089
+ command.query['userIp'] = user_ip unless user_ip.nil?
3090
+ execute_or_queue_command(command, &block)
3091
+ end
3092
+
2988
3093
  # Patches an object's metadata.
2989
3094
  # @param [String] bucket
2990
3095
  # Name of the bucket in which the object resides.
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-storage_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.47.0
4
+ version: 0.51.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-10-13 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  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.47.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-storage_v1/v0.51.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storage_v1
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -68,15 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
66
  requirements:
69
67
  - - ">="
70
68
  - !ruby/object:Gem::Version
71
- version: '2.7'
69
+ version: '3.1'
72
70
  required_rubygems_version: !ruby/object:Gem::Requirement
73
71
  requirements:
74
72
  - - ">="
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.21
79
- signing_key:
76
+ rubygems_version: 3.6.8
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Cloud Storage JSON API V1
82
79
  test_files: []