google-cloud-storage_insights-v1 0.6.0 → 0.7.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: 0bf16fe552f717324df1aa8b402898ebc2fc319d7aaad151655ffa0ff305c5f1
4
- data.tar.gz: 7a426ce3dec5d21dbe95b4b8295f3f7fa9c054bb26d6e6307f4e6f343d648d12
3
+ metadata.gz: 294d1f996098f348f5da7ca48ef302b041a992388aa79467abddcf3971cf3b68
4
+ data.tar.gz: 057a39456e0bcdd95b3e6879d650f78ad3626d735802274b5df861fbee3edb5c
5
5
  SHA512:
6
- metadata.gz: 6e81a758672f1c4174bfa1aefaee8edf766d98e8c8a868587880bcad087cedf8a26d4efc4c890db5431bdec6f8730efd12b798121b81a4c1d438cc2a9ee07dde
7
- data.tar.gz: 14cb526aa7421fc8379d8f0c188e131d53060d6f885c16a403de68c78e308a08c74a3ae681ac1d78defa60b06503d220da4cd3f4ce41bfa6db4d49a8a2d35c75
6
+ metadata.gz: 4d563d5a48b88aa679cfc94b9eeb4418d71caffc3a595cbcc3102356220673cd07ac809a7e9f57a8ad8bd2f06d6b132b82eb199919f35f1998899760fb2f0bd1
7
+ data.tar.gz: d51343394915a624d8d65f4af781c7aa0f9882c3b773a7560020524911db52938e1f3b52d703ebcae6cb94c1d68d11b4624e800633c420d7d9988c6c87126b25
data/README.md CHANGED
@@ -85,7 +85,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
85
85
 
86
86
  ## Supported Ruby Versions
87
87
 
88
- This library is supported on Ruby 2.7+.
88
+ This library is supported on Ruby 3.0+.
89
89
 
90
90
  Google provides official support for Ruby versions that are actively supported
91
91
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -942,6 +942,13 @@ module Google
942
942
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
943
943
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
944
944
  # * (`nil`) indicating no credentials
945
+ #
946
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
947
+ # external source for authentication to Google Cloud, you must validate it before
948
+ # providing it to a Google API client library. Providing an unvalidated credential
949
+ # configuration to Google APIs can compromise the security of your systems and data.
950
+ # For more information, refer to [Validate credential configurations from external
951
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
945
952
  # @return [::Object]
946
953
  # @!attribute [rw] scope
947
954
  # The OAuth scopes
@@ -881,6 +881,13 @@ module Google
881
881
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
882
882
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
883
883
  # * (`nil`) indicating no credentials
884
+ #
885
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
886
+ # external source for authentication to Google Cloud, you must validate it before
887
+ # providing it to a Google API client library. Providing an unvalidated credential
888
+ # configuration to Google APIs can compromise the security of your systems and data.
889
+ # For more information, refer to [Validate credential configurations from external
890
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
884
891
  # @return [::Object]
885
892
  # @!attribute [rw] scope
886
893
  # The OAuth scopes
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module StorageInsights
23
23
  module V1
24
- VERSION = "0.6.0"
24
+ VERSION = "0.7.0"
25
25
  end
26
26
  end
27
27
  end
@@ -402,9 +402,13 @@ module Google
402
402
  # @!attribute [rw] csv_options
403
403
  # @return [::Google::Cloud::StorageInsights::V1::CSVOptions]
404
404
  # Options for CSV formatted reports.
405
+ #
406
+ # Note: The following fields are mutually exclusive: `csv_options`, `parquet_options`. If a field in that set is populated, all other fields in the set will automatically be cleared.
405
407
  # @!attribute [rw] parquet_options
406
408
  # @return [::Google::Cloud::StorageInsights::V1::ParquetOptions]
407
409
  # Options for Parquet formatted reports.
410
+ #
411
+ # Note: The following fields are mutually exclusive: `parquet_options`, `csv_options`. If a field in that set is populated, all other fields in the set will automatically be cleared.
408
412
  # @!attribute [rw] object_metadata_report_options
409
413
  # @return [::Google::Cloud::StorageInsights::V1::ObjectMetadataReportOptions]
410
414
  # Report for exporting object metadata.
@@ -75,9 +75,13 @@ module Google
75
75
  # UTC offset. Must be whole seconds, between -18 hours and +18 hours.
76
76
  # For example, a UTC offset of -4:00 would be represented as
77
77
  # { seconds: -14400 }.
78
+ #
79
+ # Note: The following fields are mutually exclusive: `utc_offset`, `time_zone`. If a field in that set is populated, all other fields in the set will automatically be cleared.
78
80
  # @!attribute [rw] time_zone
79
81
  # @return [::Google::Type::TimeZone]
80
82
  # Time zone.
83
+ #
84
+ # Note: The following fields are mutually exclusive: `time_zone`, `utc_offset`. If a field in that set is populated, all other fields in the set will automatically be cleared.
81
85
  class DateTime
82
86
  include ::Google::Protobuf::MessageExts
83
87
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-storage_insights-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.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-12-10 00:00:00.000000000 Z
10
+ date: 2025-01-29 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: gapic-common
@@ -16,7 +15,7 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 0.24.0
18
+ version: 0.25.0
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
21
  version: 2.a
@@ -26,7 +25,7 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: 0.24.0
28
+ version: 0.25.0
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: 2.a
@@ -109,7 +108,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
109
108
  licenses:
110
109
  - Apache-2.0
111
110
  metadata: {}
112
- post_install_message:
113
111
  rdoc_options: []
114
112
  require_paths:
115
113
  - lib
@@ -117,15 +115,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
117
115
  requirements:
118
116
  - - ">="
119
117
  - !ruby/object:Gem::Version
120
- version: '2.7'
118
+ version: '3.0'
121
119
  required_rubygems_version: !ruby/object:Gem::Requirement
122
120
  requirements:
123
121
  - - ">="
124
122
  - !ruby/object:Gem::Version
125
123
  version: '0'
126
124
  requirements: []
127
- rubygems_version: 3.5.23
128
- signing_key:
125
+ rubygems_version: 3.6.2
129
126
  specification_version: 4
130
127
  summary: Provides insights capability on Google Cloud Storage.
131
128
  test_files: []