google-apis-websecurityscanner_v1beta 0.6.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: e39d4cf3a45f3326b52072384dd87d074068e0475414bb581db711ea4d484fe8
4
- data.tar.gz: a72cac83b8929bdb593e7ab64ead45690fc620fec14c74c884ba384df9e7d033
3
+ metadata.gz: f08af9a379ef7c2ee8aeaff33fa92199fbe86eafede3ceb3607c38124fb32387
4
+ data.tar.gz: 0ec7761c7e6448c2da8e66ca37f3f480fe57a23aa3757d260863345827fbb646
5
5
  SHA512:
6
- metadata.gz: 327efba252286441efcb236bea4e1c3a0b6eece33c55797c7dcaedd5b7c28e019e035474cfd2f8691a31009de04aa452363d3238e63119671154936d9eb664bc
7
- data.tar.gz: d00d0b01009cd08e74a2bf17bfe7a52300db77283628fdd1c26ead6918a5b6a06e2435d6f0811ce4d9b55ee704f17cebd229f0d4a5f5e1471482a406df934514
6
+ metadata.gz: 8e86585c19712d74f7d7991ac047ca4c75d9b12f4f1896fb9f05ada60f55683b4d8575a9582a38d75bc4c74c99e66e2d3e1c868bde795bbae33afde481e36922
7
+ data.tar.gz: b3ac5534060de4faa4ec778601ae9c71da53675a20a001cb1f7be03c37fdec59e6a1e51f99565dc71671b3c6da888d4475f81d6d7d30ff5ede9e09b5ed8c602e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
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
+
7
+ ### v0.9.0 (2021-10-21)
8
+
9
+ * Unspecified changes
10
+
11
+ ### v0.8.0 (2021-09-01)
12
+
13
+ * Regenerated from discovery document revision 20210806
14
+
15
+ ### v0.7.0 (2021-06-29)
16
+
17
+ * Regenerated using generator version 0.4.0
18
+
3
19
  ### v0.6.0 (2021-06-24)
4
20
 
5
21
  * Regenerated using generator version 0.3.0
data/OVERVIEW.md CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Websecurityscanner service in particular.)
67
67
 
@@ -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.6.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210417"
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
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1beta'
31
31
 
32
- # See, edit, configure, and delete your Google Cloud Platform data
32
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
34
34
  end
35
35
  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.6.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-06-28 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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-websecurityscanner_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-websecurityscanner_v1beta/v0.6.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-websecurityscanner_v1beta
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.10.0
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: []
65
65
  require_paths: