google-apis-securitycenter_v1beta2 0.73.0 → 0.74.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 01a80b4c619bdaed020b282e5bdf3e752eab41297c637d83b6aaa381ddd718a9
|
4
|
+
data.tar.gz: 30e1566453d2dd42a71dfd6ba19a4e79f20090b5ab189c021d7afb4eab564fc7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0977cb023d6588b717bfe76b2f2e9e729e2bb95d9179c68c0231b3b22c0db4c0621d3dd10b37e932d51d84db8d04e58070155ec698b2824f8c0beaccb86642a8'
|
7
|
+
data.tar.gz: 0bfcb5c94384a2a77d94446375dd575faab91980781593ef3bd848306be0c4c3428074f25ee603bffe2eead772a29999e0a0cf8fa730b099759b3478bf585593
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta2
|
2
2
|
|
3
|
+
### v0.74.0 (2025-01-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250103
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.73.0 (2024-12-15)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20241206
|
@@ -247,16 +247,28 @@ module Google
|
|
247
247
|
# @return [String]
|
248
248
|
attr_accessor :classification
|
249
249
|
|
250
|
-
# Total BPS (bytes per second) volume of attack.
|
250
|
+
# Total BPS (bytes per second) volume of attack. Deprecated - refer to
|
251
|
+
# volume_bps_long instead.
|
251
252
|
# Corresponds to the JSON property `volumeBps`
|
252
253
|
# @return [Fixnum]
|
253
254
|
attr_accessor :volume_bps
|
254
255
|
|
255
|
-
# Total
|
256
|
+
# Total BPS (bytes per second) volume of attack.
|
257
|
+
# Corresponds to the JSON property `volumeBpsLong`
|
258
|
+
# @return [Fixnum]
|
259
|
+
attr_accessor :volume_bps_long
|
260
|
+
|
261
|
+
# Total PPS (packets per second) volume of attack. Deprecated - refer to
|
262
|
+
# volume_pps_long instead.
|
256
263
|
# Corresponds to the JSON property `volumePps`
|
257
264
|
# @return [Fixnum]
|
258
265
|
attr_accessor :volume_pps
|
259
266
|
|
267
|
+
# Total PPS (packets per second) volume of attack.
|
268
|
+
# Corresponds to the JSON property `volumePpsLong`
|
269
|
+
# @return [Fixnum]
|
270
|
+
attr_accessor :volume_pps_long
|
271
|
+
|
260
272
|
def initialize(**args)
|
261
273
|
update!(**args)
|
262
274
|
end
|
@@ -265,7 +277,9 @@ module Google
|
|
265
277
|
def update!(**args)
|
266
278
|
@classification = args[:classification] if args.key?(:classification)
|
267
279
|
@volume_bps = args[:volume_bps] if args.key?(:volume_bps)
|
280
|
+
@volume_bps_long = args[:volume_bps_long] if args.key?(:volume_bps_long)
|
268
281
|
@volume_pps = args[:volume_pps] if args.key?(:volume_pps)
|
282
|
+
@volume_pps_long = args[:volume_pps_long] if args.key?(:volume_pps_long)
|
269
283
|
end
|
270
284
|
end
|
271
285
|
|
@@ -3852,16 +3866,28 @@ module Google
|
|
3852
3866
|
# @return [String]
|
3853
3867
|
attr_accessor :classification
|
3854
3868
|
|
3855
|
-
# Total BPS (bytes per second) volume of attack.
|
3869
|
+
# Total BPS (bytes per second) volume of attack. Deprecated - refer to
|
3870
|
+
# volume_bps_long instead.
|
3856
3871
|
# Corresponds to the JSON property `volumeBps`
|
3857
3872
|
# @return [Fixnum]
|
3858
3873
|
attr_accessor :volume_bps
|
3859
3874
|
|
3860
|
-
# Total
|
3875
|
+
# Total BPS (bytes per second) volume of attack.
|
3876
|
+
# Corresponds to the JSON property `volumeBpsLong`
|
3877
|
+
# @return [Fixnum]
|
3878
|
+
attr_accessor :volume_bps_long
|
3879
|
+
|
3880
|
+
# Total PPS (packets per second) volume of attack. Deprecated - refer to
|
3881
|
+
# volume_pps_long instead.
|
3861
3882
|
# Corresponds to the JSON property `volumePps`
|
3862
3883
|
# @return [Fixnum]
|
3863
3884
|
attr_accessor :volume_pps
|
3864
3885
|
|
3886
|
+
# Total PPS (packets per second) volume of attack.
|
3887
|
+
# Corresponds to the JSON property `volumePpsLong`
|
3888
|
+
# @return [Fixnum]
|
3889
|
+
attr_accessor :volume_pps_long
|
3890
|
+
|
3865
3891
|
def initialize(**args)
|
3866
3892
|
update!(**args)
|
3867
3893
|
end
|
@@ -3870,7 +3896,9 @@ module Google
|
|
3870
3896
|
def update!(**args)
|
3871
3897
|
@classification = args[:classification] if args.key?(:classification)
|
3872
3898
|
@volume_bps = args[:volume_bps] if args.key?(:volume_bps)
|
3899
|
+
@volume_bps_long = args[:volume_bps_long] if args.key?(:volume_bps_long)
|
3873
3900
|
@volume_pps = args[:volume_pps] if args.key?(:volume_pps)
|
3901
|
+
@volume_pps_long = args[:volume_pps_long] if args.key?(:volume_pps_long)
|
3874
3902
|
end
|
3875
3903
|
end
|
3876
3904
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SecuritycenterV1beta2
|
18
18
|
# Version of the google-apis-securitycenter_v1beta2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.74.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250103"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1394,7 +1394,9 @@ module Google
|
|
1394
1394
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1395
1395
|
property :classification, as: 'classification'
|
1396
1396
|
property :volume_bps, as: 'volumeBps'
|
1397
|
+
property :volume_bps_long, :numeric_string => true, as: 'volumeBpsLong'
|
1397
1398
|
property :volume_pps, as: 'volumePps'
|
1399
|
+
property :volume_pps_long, :numeric_string => true, as: 'volumePpsLong'
|
1398
1400
|
end
|
1399
1401
|
end
|
1400
1402
|
|
@@ -2264,7 +2266,9 @@ module Google
|
|
2264
2266
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2265
2267
|
property :classification, as: 'classification'
|
2266
2268
|
property :volume_bps, as: 'volumeBps'
|
2269
|
+
property :volume_bps_long, :numeric_string => true, as: 'volumeBpsLong'
|
2267
2270
|
property :volume_pps, as: 'volumePps'
|
2271
|
+
property :volume_pps_long, :numeric_string => true, as: 'volumePpsLong'
|
2268
2272
|
end
|
2269
2273
|
end
|
2270
2274
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1beta2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.74.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
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_v1beta2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.74.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
|
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.
|
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 V1beta2
|
82
79
|
test_files: []
|