google-apis-websecurityscanner_v1beta 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 357cfefa805d8b93f34e6fefc71c528dd0dec04d4cfaf97dc52f1257d1925327
4
- data.tar.gz: 4256adb900823bee346a0b9d9eb03cf23d936129a1c87601d805ddb7c3402b19
3
+ metadata.gz: f08af9a379ef7c2ee8aeaff33fa92199fbe86eafede3ceb3607c38124fb32387
4
+ data.tar.gz: 0ec7761c7e6448c2da8e66ca37f3f480fe57a23aa3757d260863345827fbb646
5
5
  SHA512:
6
- metadata.gz: 938dab0caa010192f3e59e3cd7dac9414c58bf6e3e523f34cfa342b6ebb99c13ed854994c932cc33308ffc2cd4ab146a0346b3100d34b95d422be58eb390551b
7
- data.tar.gz: 32de70ad80e51de306bbe7f1c02973bb544cb0a623d93589c19fd671aa27f4255441b8dee7003c07639cb2f2f2af7963d5c1054efa413804bdd2e632d71850eb
6
+ metadata.gz: 8e86585c19712d74f7d7991ac047ca4c75d9b12f4f1896fb9f05ada60f55683b4d8575a9582a38d75bc4c74c99e66e2d3e1c868bde795bbae33afde481e36922
7
+ data.tar.gz: b3ac5534060de4faa4ec778601ae9c71da53675a20a001cb1f7be03c37fdec59e6a1e51f99565dc71671b3c6da888d4475f81d6d7d30ff5ede9e09b5ed8c602e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-websecurityscanner_v1beta
2
2
 
3
+ ### v0.10.0 (2021-12-07)
4
+
5
+ * Regenerated from discovery document revision 20211203
6
+
3
7
  ### v0.9.0 (2021-10-21)
4
8
 
5
9
  * Unspecified changes
@@ -234,6 +234,11 @@ module Google
234
234
  # @return [Google::Apis::WebsecurityscannerV1beta::Xss]
235
235
  attr_accessor :xss
236
236
 
237
+ # Information reported for an XXE.
238
+ # Corresponds to the JSON property `xxe`
239
+ # @return [Google::Apis::WebsecurityscannerV1beta::Xxe]
240
+ attr_accessor :xxe
241
+
237
242
  def initialize(**args)
238
243
  update!(**args)
239
244
  end
@@ -257,6 +262,7 @@ module Google
257
262
  @vulnerable_headers = args[:vulnerable_headers] if args.key?(:vulnerable_headers)
258
263
  @vulnerable_parameters = args[:vulnerable_parameters] if args.key?(:vulnerable_parameters)
259
264
  @xss = args[:xss] if args.key?(:xss)
265
+ @xxe = args[:xxe] if args.key?(:xxe)
260
266
  end
261
267
  end
262
268
 
@@ -998,6 +1004,32 @@ module Google
998
1004
  @stack_traces = args[:stack_traces] if args.key?(:stack_traces)
999
1005
  end
1000
1006
  end
1007
+
1008
+ # Information reported for an XXE.
1009
+ class Xxe
1010
+ include Google::Apis::Core::Hashable
1011
+
1012
+ # Location within the request where the payload was placed.
1013
+ # Corresponds to the JSON property `payloadLocation`
1014
+ # @return [String]
1015
+ attr_accessor :payload_location
1016
+
1017
+ # The XML string that triggered the XXE vulnerability. Non-payload values might
1018
+ # be redacted.
1019
+ # Corresponds to the JSON property `payloadValue`
1020
+ # @return [String]
1021
+ attr_accessor :payload_value
1022
+
1023
+ def initialize(**args)
1024
+ update!(**args)
1025
+ end
1026
+
1027
+ # Update properties of this object
1028
+ def update!(**args)
1029
+ @payload_location = args[:payload_location] if args.key?(:payload_location)
1030
+ @payload_value = args[:payload_value] if args.key?(:payload_value)
1031
+ end
1032
+ end
1001
1033
  end
1002
1034
  end
1003
1035
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module WebsecurityscannerV1beta
18
18
  # Version of the google-apis-websecurityscanner_v1beta gem
19
- GEM_VERSION = "0.9.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210806"
25
+ REVISION = "20211203"
26
26
  end
27
27
  end
28
28
  end
@@ -196,6 +196,12 @@ module Google
196
196
  include Google::Apis::Core::JsonObjectSupport
197
197
  end
198
198
 
199
+ class Xxe
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
199
205
  class Authentication
200
206
  # @private
201
207
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -258,6 +264,8 @@ module Google
258
264
 
259
265
  property :xss, as: 'xss', class: Google::Apis::WebsecurityscannerV1beta::Xss, decorator: Google::Apis::WebsecurityscannerV1beta::Xss::Representation
260
266
 
267
+ property :xxe, as: 'xxe', class: Google::Apis::WebsecurityscannerV1beta::Xxe, decorator: Google::Apis::WebsecurityscannerV1beta::Xxe::Representation
268
+
261
269
  end
262
270
  end
263
271
 
@@ -481,6 +489,14 @@ module Google
481
489
  collection :stack_traces, as: 'stackTraces'
482
490
  end
483
491
  end
492
+
493
+ class Xxe
494
+ # @private
495
+ class Representation < Google::Apis::Core::JsonRepresentation
496
+ property :payload_location, as: 'payloadLocation'
497
+ property :payload_value, as: 'payloadValue'
498
+ end
499
+ end
484
500
  end
485
501
  end
486
502
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-websecurityscanner_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.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-10-27 00:00:00.000000000 Z
11
+ date: 2021-12-13 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-websecurityscanner_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-websecurityscanner_v1beta/v0.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-websecurityscanner_v1beta/v0.10.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-websecurityscanner_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []