google-apis-securitycenter_v1beta1 0.81.0 → 0.82.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: ad5b933ed03a6e56da447eeeaf960c3523bc28cb23d532f0da93f89bd04a544d
4
- data.tar.gz: 3d3b9c8200631f94266feba60065224b7548b10e8c6f3a4dd616d8034032d7cf
3
+ metadata.gz: 450f22a39daa856a465582ce207b416afd35ad8da193c9fe8cafcbd0012f3342
4
+ data.tar.gz: be6853a2a349a15418658cbd842233a8ba86496e9aedf9c0356b8e4e5996d521
5
5
  SHA512:
6
- metadata.gz: 3ec5e8b3c2668691801531b05418569aed4beb6cfcd99464d16acc3f5fcbe890288638c2ff60d575fcebca4ce0da012539fab34fcbb8e8d9e5a3f5500762d74b
7
- data.tar.gz: 115df0a6cd03690718884bdaae3810940346ecfa19a3aff6e73cd018ccbbe438863f6b5033b1ecd34512255fc5854f46f560128c665f755f826ff9f7c5f3d10d
6
+ metadata.gz: 1c6d6fcd18a98694ffe874de17913a876a6e74026cf10c6cffaadc3f29dd5c71efb1bd3fc1ac3f7377a0718609b2b07718e0635c52c99899f3646a5be06df9a1
7
+ data.tar.gz: 56109fa79dde807ec6097aeebb5d20bdc967e1101ebd599babc503937b708103b144a8318f1d6966818978609c54bd274c2883ffcb89508d0bc25169cf3a77f8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.82.0 (2025-01-12)
4
+
5
+ * Regenerated from discovery document revision 20250103
6
+ * Regenerated using generator version 0.16.0
7
+
3
8
  ### v0.81.0 (2024-12-15)
4
9
 
5
10
  * Regenerated from discovery document revision 20241206
@@ -333,16 +333,28 @@ module Google
333
333
  # @return [String]
334
334
  attr_accessor :classification
335
335
 
336
- # Total BPS (bytes per second) volume of attack.
336
+ # Total BPS (bytes per second) volume of attack. Deprecated - refer to
337
+ # volume_bps_long instead.
337
338
  # Corresponds to the JSON property `volumeBps`
338
339
  # @return [Fixnum]
339
340
  attr_accessor :volume_bps
340
341
 
341
- # Total PPS (packets per second) volume of attack.
342
+ # Total BPS (bytes per second) volume of attack.
343
+ # Corresponds to the JSON property `volumeBpsLong`
344
+ # @return [Fixnum]
345
+ attr_accessor :volume_bps_long
346
+
347
+ # Total PPS (packets per second) volume of attack. Deprecated - refer to
348
+ # volume_pps_long instead.
342
349
  # Corresponds to the JSON property `volumePps`
343
350
  # @return [Fixnum]
344
351
  attr_accessor :volume_pps
345
352
 
353
+ # Total PPS (packets per second) volume of attack.
354
+ # Corresponds to the JSON property `volumePpsLong`
355
+ # @return [Fixnum]
356
+ attr_accessor :volume_pps_long
357
+
346
358
  def initialize(**args)
347
359
  update!(**args)
348
360
  end
@@ -351,7 +363,9 @@ module Google
351
363
  def update!(**args)
352
364
  @classification = args[:classification] if args.key?(:classification)
353
365
  @volume_bps = args[:volume_bps] if args.key?(:volume_bps)
366
+ @volume_bps_long = args[:volume_bps_long] if args.key?(:volume_bps_long)
354
367
  @volume_pps = args[:volume_pps] if args.key?(:volume_pps)
368
+ @volume_pps_long = args[:volume_pps_long] if args.key?(:volume_pps_long)
355
369
  end
356
370
  end
357
371
 
@@ -4168,16 +4182,28 @@ module Google
4168
4182
  # @return [String]
4169
4183
  attr_accessor :classification
4170
4184
 
4171
- # Total BPS (bytes per second) volume of attack.
4185
+ # Total BPS (bytes per second) volume of attack. Deprecated - refer to
4186
+ # volume_bps_long instead.
4172
4187
  # Corresponds to the JSON property `volumeBps`
4173
4188
  # @return [Fixnum]
4174
4189
  attr_accessor :volume_bps
4175
4190
 
4176
- # Total PPS (packets per second) volume of attack.
4191
+ # Total BPS (bytes per second) volume of attack.
4192
+ # Corresponds to the JSON property `volumeBpsLong`
4193
+ # @return [Fixnum]
4194
+ attr_accessor :volume_bps_long
4195
+
4196
+ # Total PPS (packets per second) volume of attack. Deprecated - refer to
4197
+ # volume_pps_long instead.
4177
4198
  # Corresponds to the JSON property `volumePps`
4178
4199
  # @return [Fixnum]
4179
4200
  attr_accessor :volume_pps
4180
4201
 
4202
+ # Total PPS (packets per second) volume of attack.
4203
+ # Corresponds to the JSON property `volumePpsLong`
4204
+ # @return [Fixnum]
4205
+ attr_accessor :volume_pps_long
4206
+
4181
4207
  def initialize(**args)
4182
4208
  update!(**args)
4183
4209
  end
@@ -4186,7 +4212,9 @@ module Google
4186
4212
  def update!(**args)
4187
4213
  @classification = args[:classification] if args.key?(:classification)
4188
4214
  @volume_bps = args[:volume_bps] if args.key?(:volume_bps)
4215
+ @volume_bps_long = args[:volume_bps_long] if args.key?(:volume_bps_long)
4189
4216
  @volume_pps = args[:volume_pps] if args.key?(:volume_pps)
4217
+ @volume_pps_long = args[:volume_pps_long] if args.key?(:volume_pps_long)
4190
4218
  end
4191
4219
  end
4192
4220
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1beta1
18
18
  # Version of the google-apis-securitycenter_v1beta1 gem
19
- GEM_VERSION = "0.81.0"
19
+ GEM_VERSION = "0.82.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.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241206"
25
+ REVISION = "20250103"
26
26
  end
27
27
  end
28
28
  end
@@ -1548,7 +1548,9 @@ module Google
1548
1548
  class Representation < Google::Apis::Core::JsonRepresentation
1549
1549
  property :classification, as: 'classification'
1550
1550
  property :volume_bps, as: 'volumeBps'
1551
+ property :volume_bps_long, :numeric_string => true, as: 'volumeBpsLong'
1551
1552
  property :volume_pps, as: 'volumePps'
1553
+ property :volume_pps_long, :numeric_string => true, as: 'volumePpsLong'
1552
1554
  end
1553
1555
  end
1554
1556
 
@@ -2457,7 +2459,9 @@ module Google
2457
2459
  class Representation < Google::Apis::Core::JsonRepresentation
2458
2460
  property :classification, as: 'classification'
2459
2461
  property :volume_bps, as: 'volumeBps'
2462
+ property :volume_bps_long, :numeric_string => true, as: 'volumeBpsLong'
2460
2463
  property :volume_pps, as: 'volumePps'
2464
+ property :volume_pps_long, :numeric_string => true, as: 'volumePpsLong'
2461
2465
  end
2462
2466
  end
2463
2467
 
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.81.0
4
+ version: 0.82.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-15 00:00:00.000000000 Z
10
+ date: 2025-01-12 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-securitycenter_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.81.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.82.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.23
79
- signing_key:
76
+ rubygems_version: 3.6.2
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Security Command Center API V1beta1
82
79
  test_files: []