google-cloud-web_security_scanner-v1beta 0.10.0 → 0.11.1

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: e60a32caf45b372a98d7a639809cad13a602356dfe265e3e51bac750fd23f940
4
- data.tar.gz: 56a2ee06ae5817ff08a81cfe9707ff19e34b330ec5e2bb7ba13b0f8f259e5aa5
3
+ metadata.gz: f6e72833f774a6874a1db940cb9321b99f1f00e75ddcf8191af18b359d18ffa1
4
+ data.tar.gz: 6beb0ce3b703e01fb1e70cad94102b1ca33b8f8db04c582121377f4d7ef2fffc
5
5
  SHA512:
6
- metadata.gz: 364b5a75ff67af07241f3d7b9929cf5db2cf1fb4aa052b0b6093e400dc2e39cf92a7dd20b47f949c110d7046d6b04f9a4f5f8d537fc5866ecfa04b92ff503e99
7
- data.tar.gz: b560be7272c54a6d2531bab292c6dff3eb4b8332c5beee17115da087de690cacbe223c754f9447a089746611249936b8d9734e9e67bf3da84f372e27f64f7230
6
+ metadata.gz: 456946d7625946726e2c7bff250661a5b4564fdcaa334cf612c82f63a7fd34cb1a3472d05f5be7115fd40e64464cba57493498061c5992adfafe42cdb4e44e8e
7
+ data.tar.gz: de4cd034f984388ea1f41ce875999b9b1a65a9e4a11a8d8418d5ef0c12b1dec4236d423eb0b7209a900d4f6b04d2307c34e690222c380874e5173f4a20e0db19
data/README.md CHANGED
@@ -86,7 +86,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
86
86
 
87
87
  ## Supported Ruby Versions
88
88
 
89
- This library is supported on Ruby 2.7+.
89
+ This library is supported on Ruby 3.0+.
90
90
 
91
91
  Google provides official support for Ruby versions that are actively supported
92
92
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module WebSecurityScanner
23
23
  module V1beta
24
- VERSION = "0.10.0"
24
+ VERSION = "0.11.1"
25
25
  end
26
26
  end
27
27
  end
@@ -1475,6 +1475,13 @@ module Google
1475
1475
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
1476
1476
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
1477
1477
  # * (`nil`) indicating no credentials
1478
+ #
1479
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1480
+ # external source for authentication to Google Cloud, you must validate it before
1481
+ # providing it to a Google API client library. Providing an unvalidated credential
1482
+ # configuration to Google APIs can compromise the security of your systems and data.
1483
+ # For more information, refer to [Validate credential configurations from external
1484
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1478
1485
  # @return [::Object]
1479
1486
  # @!attribute [rw] scope
1480
1487
  # The OAuth scopes
@@ -1529,8 +1536,8 @@ module Google
1529
1536
 
1530
1537
  config_attr :endpoint, nil, ::String, nil
1531
1538
  config_attr :credentials, nil do |value|
1532
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1533
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
1539
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
1540
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
1534
1541
  allowed.any? { |klass| klass === value }
1535
1542
  end
1536
1543
  config_attr :scope, nil, ::String, ::Array, nil
@@ -1375,6 +1375,13 @@ module Google
1375
1375
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
1376
1376
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
1377
1377
  # * (`nil`) indicating no credentials
1378
+ #
1379
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1380
+ # external source for authentication to Google Cloud, you must validate it before
1381
+ # providing it to a Google API client library. Providing an unvalidated credential
1382
+ # configuration to Google APIs can compromise the security of your systems and data.
1383
+ # For more information, refer to [Validate credential configurations from external
1384
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1378
1385
  # @return [::Object]
1379
1386
  # @!attribute [rw] scope
1380
1387
  # The OAuth scopes
@@ -1422,7 +1429,7 @@ module Google
1422
1429
 
1423
1430
  config_attr :endpoint, nil, ::String, nil
1424
1431
  config_attr :credentials, nil do |value|
1425
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1432
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
1426
1433
  allowed.any? { |klass| klass === value }
1427
1434
  end
1428
1435
  config_attr :scope, nil, ::String, ::Array, nil
@@ -221,6 +221,12 @@ module Google
221
221
  # Pythonic which are included in `protobuf>=5.29.x`. This feature will be
222
222
  # enabled by default 1 month after launching the feature in preview
223
223
  # packages.
224
+ # @!attribute [rw] unversioned_package_disabled
225
+ # @return [::Boolean]
226
+ # Disables generation of an unversioned Python package for this client
227
+ # library. This means that the module names will need to be versioned in
228
+ # import statements. For example `import google.cloud.library_v2` instead
229
+ # of `import google.cloud.library`.
224
230
  class ExperimentalFeatures
225
231
  include ::Google::Protobuf::MessageExts
226
232
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -409,6 +415,14 @@ module Google
409
415
  # @return [::Array<::String>]
410
416
  # An allowlist of the fully qualified names of RPCs that should be included
411
417
  # on public client surfaces.
418
+ # @!attribute [rw] generate_omitted_as_internal
419
+ # @return [::Boolean]
420
+ # Setting this to true indicates to the client generators that methods
421
+ # that would be excluded from the generation should instead be generated
422
+ # in a way that indicates these methods should not be consumed by
423
+ # end users. How this is expressed is up to individual language
424
+ # implementations to decide. Some examples may be: added annotations,
425
+ # obfuscated identifiers, or other language idiomatic patterns.
412
426
  class SelectiveGapicGeneration
413
427
  include ::Google::Protobuf::MessageExts
414
428
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -75,9 +75,13 @@ module Google
75
75
  # @!attribute [rw] google_account
76
76
  # @return [::Google::Cloud::WebSecurityScanner::V1beta::ScanConfig::Authentication::GoogleAccount]
77
77
  # Authentication using a Google account.
78
+ #
79
+ # Note: The following fields are mutually exclusive: `google_account`, `custom_account`. If a field in that set is populated, all other fields in the set will automatically be cleared.
78
80
  # @!attribute [rw] custom_account
79
81
  # @return [::Google::Cloud::WebSecurityScanner::V1beta::ScanConfig::Authentication::CustomAccount]
80
82
  # Authentication using a custom account.
83
+ #
84
+ # Note: The following fields are mutually exclusive: `custom_account`, `google_account`. If a field in that set is populated, all other fields in the set will automatically be cleared.
81
85
  class Authentication
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-web_security_scanner-v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.1
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: 1980-01-02 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
@@ -102,7 +101,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
102
101
  licenses:
103
102
  - Apache-2.0
104
103
  metadata: {}
105
- post_install_message:
106
104
  rdoc_options: []
107
105
  require_paths:
108
106
  - lib
@@ -110,15 +108,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
110
108
  requirements:
111
109
  - - ">="
112
110
  - !ruby/object:Gem::Version
113
- version: '2.7'
111
+ version: '3.0'
114
112
  required_rubygems_version: !ruby/object:Gem::Requirement
115
113
  requirements:
116
114
  - - ">="
117
115
  - !ruby/object:Gem::Version
118
116
  version: '0'
119
117
  requirements: []
120
- rubygems_version: 3.5.23
121
- signing_key:
118
+ rubygems_version: 3.6.8
122
119
  specification_version: 4
123
120
  summary: Scans your Compute and App Engine apps for common web vulnerabilities.
124
121
  test_files: []