google-apis-securitycenter_v1beta1 0.103.0 → 0.104.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: afdf9b2954a46fdef7666bf39c720ca4623e5a59e60bb793ad8048677e7715de
|
|
4
|
+
data.tar.gz: 3dec585da893ea75084bbab5043abdd2932371017764bbd95c9b1c3de7fb9d3c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3687600c8ecdacc8ebce014ae33d4ed62cd00740bde39a071f9223a27a55be485fa46651c169a6bdc25322e1ef85b4c9e1fd934524e39145086de4ce30ac9ef1
|
|
7
|
+
data.tar.gz: bf6a4d9d3cfd4efd2a28109168fd2ae491ad11041994bb97c264be04f582a505a121cb44501e1b62610b0bb6db060cca7ab879e967434a987cfeeef6d03f31cd
|
data/CHANGELOG.md
CHANGED
|
@@ -1974,6 +1974,12 @@ module Google
|
|
|
1974
1974
|
# @return [String]
|
|
1975
1975
|
attr_accessor :max_retention_allowed
|
|
1976
1976
|
|
|
1977
|
+
# Min duration of retention allowed from the DSPM retention control. This field
|
|
1978
|
+
# is only populated when event type is set to EVENT_TYPE_MIN_TTL_FROM_CREATION.
|
|
1979
|
+
# Corresponds to the JSON property `minRetentionAllowed`
|
|
1980
|
+
# @return [String]
|
|
1981
|
+
attr_accessor :min_retention_allowed
|
|
1982
|
+
|
|
1977
1983
|
def initialize(**args)
|
|
1978
1984
|
update!(**args)
|
|
1979
1985
|
end
|
|
@@ -1984,6 +1990,7 @@ module Google
|
|
|
1984
1990
|
@event_detection_time = args[:event_detection_time] if args.key?(:event_detection_time)
|
|
1985
1991
|
@event_type = args[:event_type] if args.key?(:event_type)
|
|
1986
1992
|
@max_retention_allowed = args[:max_retention_allowed] if args.key?(:max_retention_allowed)
|
|
1993
|
+
@min_retention_allowed = args[:min_retention_allowed] if args.key?(:min_retention_allowed)
|
|
1987
1994
|
end
|
|
1988
1995
|
end
|
|
1989
1996
|
|
|
@@ -6581,6 +6588,12 @@ module Google
|
|
|
6581
6588
|
# @return [String]
|
|
6582
6589
|
attr_accessor :max_retention_allowed
|
|
6583
6590
|
|
|
6591
|
+
# Min duration of retention allowed from the DSPM retention control. This field
|
|
6592
|
+
# is only populated when event type is set to EVENT_TYPE_MIN_TTL_FROM_CREATION.
|
|
6593
|
+
# Corresponds to the JSON property `minRetentionAllowed`
|
|
6594
|
+
# @return [String]
|
|
6595
|
+
attr_accessor :min_retention_allowed
|
|
6596
|
+
|
|
6584
6597
|
def initialize(**args)
|
|
6585
6598
|
update!(**args)
|
|
6586
6599
|
end
|
|
@@ -6591,6 +6604,7 @@ module Google
|
|
|
6591
6604
|
@event_detection_time = args[:event_detection_time] if args.key?(:event_detection_time)
|
|
6592
6605
|
@event_type = args[:event_type] if args.key?(:event_type)
|
|
6593
6606
|
@max_retention_allowed = args[:max_retention_allowed] if args.key?(:max_retention_allowed)
|
|
6607
|
+
@min_retention_allowed = args[:min_retention_allowed] if args.key?(:min_retention_allowed)
|
|
6594
6608
|
end
|
|
6595
6609
|
end
|
|
6596
6610
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.104.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260223"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2465,6 +2465,7 @@ module Google
|
|
|
2465
2465
|
property :event_detection_time, as: 'eventDetectionTime'
|
|
2466
2466
|
property :event_type, as: 'eventType'
|
|
2467
2467
|
property :max_retention_allowed, as: 'maxRetentionAllowed'
|
|
2468
|
+
property :min_retention_allowed, as: 'minRetentionAllowed'
|
|
2468
2469
|
end
|
|
2469
2470
|
end
|
|
2470
2471
|
|
|
@@ -3627,6 +3628,7 @@ module Google
|
|
|
3627
3628
|
property :event_detection_time, as: 'eventDetectionTime'
|
|
3628
3629
|
property :event_type, as: 'eventType'
|
|
3629
3630
|
property :max_retention_allowed, as: 'maxRetentionAllowed'
|
|
3631
|
+
property :min_retention_allowed, as: 'minRetentionAllowed'
|
|
3630
3632
|
end
|
|
3631
3633
|
end
|
|
3632
3634
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-securitycenter_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.104.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.104.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|