google-apis-securitycenter_v1 0.84.0 → 0.85.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: b470fc34b93d8cbbb1aa4dccfddae5cca12e5437df6ee2c5327a1def83cc5173
|
4
|
+
data.tar.gz: c31d7a689f4648ddee09e0ea463500eca0493f74eb9a6317fc601bf3bde5c6f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60fbd9d003a7c4cdd4332d9f9897f8807566adeb3723a1a5529aa39aa8d116cbca4166dba8837356dd813b57b784e19da839bd4ff0f80b4059b3cec384c5adcd
|
7
|
+
data.tar.gz: e7ed15864ecc57f0b6f598827d61d17d910a53d53cd44634e706a91ca5bf53e2d2f5ee8d1ba7a4d7635e9e1b9db382c6a649bcc00ee7dce830def04e555768a5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1
|
2
2
|
|
3
|
+
### v0.85.0 (2024-08-11)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240806
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.84.0 (2024-07-25)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240720
|
@@ -1144,6 +1144,13 @@ module Google
|
|
1144
1144
|
# @return [String]
|
1145
1145
|
attr_accessor :mute_annotation
|
1146
1146
|
|
1147
|
+
# Optional. All findings matching the given filter will have their mute state
|
1148
|
+
# set to this value. The default value is `MUTED`. Setting this to `UNDEFINED`
|
1149
|
+
# will clear the mute state on all matching findings.
|
1150
|
+
# Corresponds to the JSON property `muteState`
|
1151
|
+
# @return [String]
|
1152
|
+
attr_accessor :mute_state
|
1153
|
+
|
1147
1154
|
def initialize(**args)
|
1148
1155
|
update!(**args)
|
1149
1156
|
end
|
@@ -1152,6 +1159,7 @@ module Google
|
|
1152
1159
|
def update!(**args)
|
1153
1160
|
@filter = args[:filter] if args.key?(:filter)
|
1154
1161
|
@mute_annotation = args[:mute_annotation] if args.key?(:mute_annotation)
|
1162
|
+
@mute_state = args[:mute_state] if args.key?(:mute_state)
|
1155
1163
|
end
|
1156
1164
|
end
|
1157
1165
|
|
@@ -1637,6 +1645,11 @@ module Google
|
|
1637
1645
|
# @return [Google::Apis::SecuritycenterV1::Cvssv3]
|
1638
1646
|
attr_accessor :cvssv3
|
1639
1647
|
|
1648
|
+
# Date the first publicly available exploit or PoC was released.
|
1649
|
+
# Corresponds to the JSON property `exploitReleaseDate`
|
1650
|
+
# @return [String]
|
1651
|
+
attr_accessor :exploit_release_date
|
1652
|
+
|
1640
1653
|
# The exploitation activity of the vulnerability in the wild.
|
1641
1654
|
# Corresponds to the JSON property `exploitationActivity`
|
1642
1655
|
# @return [String]
|
@@ -1683,6 +1696,7 @@ module Google
|
|
1683
1696
|
# Update properties of this object
|
1684
1697
|
def update!(**args)
|
1685
1698
|
@cvssv3 = args[:cvssv3] if args.key?(:cvssv3)
|
1699
|
+
@exploit_release_date = args[:exploit_release_date] if args.key?(:exploit_release_date)
|
1686
1700
|
@exploitation_activity = args[:exploitation_activity] if args.key?(:exploitation_activity)
|
1687
1701
|
@id = args[:id] if args.key?(:id)
|
1688
1702
|
@impact = args[:impact] if args.key?(:impact)
|
@@ -1885,6 +1899,33 @@ module Google
|
|
1885
1899
|
end
|
1886
1900
|
end
|
1887
1901
|
|
1902
|
+
# The record of a dynamic mute rule that matches the finding.
|
1903
|
+
class DynamicMuteRecord
|
1904
|
+
include Google::Apis::Core::Hashable
|
1905
|
+
|
1906
|
+
# When the dynamic mute rule first matched the finding.
|
1907
|
+
# Corresponds to the JSON property `matchTime`
|
1908
|
+
# @return [String]
|
1909
|
+
attr_accessor :match_time
|
1910
|
+
|
1911
|
+
# The relative resource name of the mute rule, represented by a mute config,
|
1912
|
+
# that created this record, for example `organizations/123/muteConfigs/
|
1913
|
+
# mymuteconfig` or `organizations/123/locations/global/muteConfigs/mymuteconfig`.
|
1914
|
+
# Corresponds to the JSON property `muteConfig`
|
1915
|
+
# @return [String]
|
1916
|
+
attr_accessor :mute_config
|
1917
|
+
|
1918
|
+
def initialize(**args)
|
1919
|
+
update!(**args)
|
1920
|
+
end
|
1921
|
+
|
1922
|
+
# Update properties of this object
|
1923
|
+
def update!(**args)
|
1924
|
+
@match_time = args[:match_time] if args.key?(:match_time)
|
1925
|
+
@mute_config = args[:mute_config] if args.key?(:mute_config)
|
1926
|
+
end
|
1927
|
+
end
|
1928
|
+
|
1888
1929
|
# An EffectiveEventThreatDetectionCustomModule is the representation of an Event
|
1889
1930
|
# Threat Detection custom module at a specified level of the resource hierarchy:
|
1890
1931
|
# organization, folder, or project. If a custom module is inherited from a
|
@@ -2457,6 +2498,12 @@ module Google
|
|
2457
2498
|
# @return [String]
|
2458
2499
|
attr_accessor :mute
|
2459
2500
|
|
2501
|
+
# Mute information about the finding, including whether the finding has a static
|
2502
|
+
# mute or any matching dynamic mute rules.
|
2503
|
+
# Corresponds to the JSON property `muteInfo`
|
2504
|
+
# @return [Google::Apis::SecuritycenterV1::MuteInfo]
|
2505
|
+
attr_accessor :mute_info
|
2506
|
+
|
2460
2507
|
# Records additional information about the mute operation, for example, the [
|
2461
2508
|
# mute configuration](/security-command-center/docs/how-to-mute-findings) that
|
2462
2509
|
# muted the finding and the user who muted the finding.
|
@@ -2608,6 +2655,7 @@ module Google
|
|
2608
2655
|
@mitre_attack = args[:mitre_attack] if args.key?(:mitre_attack)
|
2609
2656
|
@module_name = args[:module_name] if args.key?(:module_name)
|
2610
2657
|
@mute = args[:mute] if args.key?(:mute)
|
2658
|
+
@mute_info = args[:mute_info] if args.key?(:mute_info)
|
2611
2659
|
@mute_initiator = args[:mute_initiator] if args.key?(:mute_initiator)
|
2612
2660
|
@mute_update_time = args[:mute_update_time] if args.key?(:mute_update_time)
|
2613
2661
|
@name = args[:name] if args.key?(:name)
|
@@ -3162,6 +3210,12 @@ module Google
|
|
3162
3210
|
# @return [String]
|
3163
3211
|
attr_accessor :display_name
|
3164
3212
|
|
3213
|
+
# Optional. The expiry of the mute config. Only applicable for dynamic configs.
|
3214
|
+
# If the expiry is set, when the config expires, it is removed from all findings.
|
3215
|
+
# Corresponds to the JSON property `expiryTime`
|
3216
|
+
# @return [String]
|
3217
|
+
attr_accessor :expiry_time
|
3218
|
+
|
3165
3219
|
# Required. An expression that defines the filter to apply across create/update
|
3166
3220
|
# events of findings. While creating a filter string, be mindful of the scope in
|
3167
3221
|
# which the mute configuration is being created. E.g., If a filter contains
|
@@ -3193,6 +3247,14 @@ module Google
|
|
3193
3247
|
# @return [String]
|
3194
3248
|
attr_accessor :name
|
3195
3249
|
|
3250
|
+
# Optional. The type of the mute config, which determines what type of mute
|
3251
|
+
# state the config affects. The static mute state takes precedence over the
|
3252
|
+
# dynamic mute state. Immutable after creation. STATIC by default if not set
|
3253
|
+
# during creation.
|
3254
|
+
# Corresponds to the JSON property `type`
|
3255
|
+
# @return [String]
|
3256
|
+
attr_accessor :type
|
3257
|
+
|
3196
3258
|
# Output only. The most recent time at which the mute config was updated. This
|
3197
3259
|
# field is set by the server and will be ignored if provided on config creation
|
3198
3260
|
# or update.
|
@@ -3209,9 +3271,11 @@ module Google
|
|
3209
3271
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3210
3272
|
@description = args[:description] if args.key?(:description)
|
3211
3273
|
@display_name = args[:display_name] if args.key?(:display_name)
|
3274
|
+
@expiry_time = args[:expiry_time] if args.key?(:expiry_time)
|
3212
3275
|
@filter = args[:filter] if args.key?(:filter)
|
3213
3276
|
@most_recent_editor = args[:most_recent_editor] if args.key?(:most_recent_editor)
|
3214
3277
|
@name = args[:name] if args.key?(:name)
|
3278
|
+
@type = args[:type] if args.key?(:type)
|
3215
3279
|
@update_time = args[:update_time] if args.key?(:update_time)
|
3216
3280
|
end
|
3217
3281
|
end
|
@@ -5075,6 +5139,11 @@ module Google
|
|
5075
5139
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Cvssv3]
|
5076
5140
|
attr_accessor :cvssv3
|
5077
5141
|
|
5142
|
+
# Date the first publicly available exploit or PoC was released.
|
5143
|
+
# Corresponds to the JSON property `exploitReleaseDate`
|
5144
|
+
# @return [String]
|
5145
|
+
attr_accessor :exploit_release_date
|
5146
|
+
|
5078
5147
|
# The exploitation activity of the vulnerability in the wild.
|
5079
5148
|
# Corresponds to the JSON property `exploitationActivity`
|
5080
5149
|
# @return [String]
|
@@ -5121,6 +5190,7 @@ module Google
|
|
5121
5190
|
# Update properties of this object
|
5122
5191
|
def update!(**args)
|
5123
5192
|
@cvssv3 = args[:cvssv3] if args.key?(:cvssv3)
|
5193
|
+
@exploit_release_date = args[:exploit_release_date] if args.key?(:exploit_release_date)
|
5124
5194
|
@exploitation_activity = args[:exploitation_activity] if args.key?(:exploitation_activity)
|
5125
5195
|
@id = args[:id] if args.key?(:id)
|
5126
5196
|
@impact = args[:impact] if args.key?(:impact)
|
@@ -5323,6 +5393,33 @@ module Google
|
|
5323
5393
|
end
|
5324
5394
|
end
|
5325
5395
|
|
5396
|
+
# The record of a dynamic mute rule that matches the finding.
|
5397
|
+
class GoogleCloudSecuritycenterV2DynamicMuteRecord
|
5398
|
+
include Google::Apis::Core::Hashable
|
5399
|
+
|
5400
|
+
# When the dynamic mute rule first matched the finding.
|
5401
|
+
# Corresponds to the JSON property `matchTime`
|
5402
|
+
# @return [String]
|
5403
|
+
attr_accessor :match_time
|
5404
|
+
|
5405
|
+
# The relative resource name of the mute rule, represented by a mute config,
|
5406
|
+
# that created this record, for example `organizations/123/muteConfigs/
|
5407
|
+
# mymuteconfig` or `organizations/123/locations/global/muteConfigs/mymuteconfig`.
|
5408
|
+
# Corresponds to the JSON property `muteConfig`
|
5409
|
+
# @return [String]
|
5410
|
+
attr_accessor :mute_config
|
5411
|
+
|
5412
|
+
def initialize(**args)
|
5413
|
+
update!(**args)
|
5414
|
+
end
|
5415
|
+
|
5416
|
+
# Update properties of this object
|
5417
|
+
def update!(**args)
|
5418
|
+
@match_time = args[:match_time] if args.key?(:match_time)
|
5419
|
+
@mute_config = args[:mute_config] if args.key?(:mute_config)
|
5420
|
+
end
|
5421
|
+
end
|
5422
|
+
|
5326
5423
|
# A name-value pair representing an environment variable used in an operating
|
5327
5424
|
# system process.
|
5328
5425
|
class GoogleCloudSecuritycenterV2EnvironmentVariable
|
@@ -5778,6 +5875,12 @@ module Google
|
|
5778
5875
|
# @return [String]
|
5779
5876
|
attr_accessor :mute
|
5780
5877
|
|
5878
|
+
# Mute information about the finding, including whether the finding has a static
|
5879
|
+
# mute or any matching dynamic mute rules.
|
5880
|
+
# Corresponds to the JSON property `muteInfo`
|
5881
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2MuteInfo]
|
5882
|
+
attr_accessor :mute_info
|
5883
|
+
|
5781
5884
|
# Records additional information about the mute operation, for example, the [
|
5782
5885
|
# mute configuration](https://cloud.google.com/security-command-center/docs/how-
|
5783
5886
|
# to-mute-findings) that muted the finding and the user who muted the finding.
|
@@ -5938,6 +6041,7 @@ module Google
|
|
5938
6041
|
@mitre_attack = args[:mitre_attack] if args.key?(:mitre_attack)
|
5939
6042
|
@module_name = args[:module_name] if args.key?(:module_name)
|
5940
6043
|
@mute = args[:mute] if args.key?(:mute)
|
6044
|
+
@mute_info = args[:mute_info] if args.key?(:mute_info)
|
5941
6045
|
@mute_initiator = args[:mute_initiator] if args.key?(:mute_initiator)
|
5942
6046
|
@mute_update_time = args[:mute_update_time] if args.key?(:mute_update_time)
|
5943
6047
|
@name = args[:name] if args.key?(:name)
|
@@ -6410,6 +6514,12 @@ module Google
|
|
6410
6514
|
# @return [String]
|
6411
6515
|
attr_accessor :description
|
6412
6516
|
|
6517
|
+
# Optional. The expiry of the mute config. Only applicable for dynamic configs.
|
6518
|
+
# If the expiry is set, when the config expires, it is removed from all findings.
|
6519
|
+
# Corresponds to the JSON property `expiryTime`
|
6520
|
+
# @return [String]
|
6521
|
+
attr_accessor :expiry_time
|
6522
|
+
|
6413
6523
|
# Required. An expression that defines the filter to apply across create/update
|
6414
6524
|
# events of findings. While creating a filter string, be mindful of the scope in
|
6415
6525
|
# which the mute configuration is being created. E.g., If a filter contains
|
@@ -6463,6 +6573,7 @@ module Google
|
|
6463
6573
|
def update!(**args)
|
6464
6574
|
@create_time = args[:create_time] if args.key?(:create_time)
|
6465
6575
|
@description = args[:description] if args.key?(:description)
|
6576
|
+
@expiry_time = args[:expiry_time] if args.key?(:expiry_time)
|
6466
6577
|
@filter = args[:filter] if args.key?(:filter)
|
6467
6578
|
@most_recent_editor = args[:most_recent_editor] if args.key?(:most_recent_editor)
|
6468
6579
|
@name = args[:name] if args.key?(:name)
|
@@ -6471,6 +6582,34 @@ module Google
|
|
6471
6582
|
end
|
6472
6583
|
end
|
6473
6584
|
|
6585
|
+
# Mute information about the finding, including whether the finding has a static
|
6586
|
+
# mute or any matching dynamic mute rules.
|
6587
|
+
class GoogleCloudSecuritycenterV2MuteInfo
|
6588
|
+
include Google::Apis::Core::Hashable
|
6589
|
+
|
6590
|
+
# The list of dynamic mute rules that currently match the finding.
|
6591
|
+
# Corresponds to the JSON property `dynamicMuteRecords`
|
6592
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DynamicMuteRecord>]
|
6593
|
+
attr_accessor :dynamic_mute_records
|
6594
|
+
|
6595
|
+
# Information about the static mute state. A static mute state overrides any
|
6596
|
+
# dynamic mute rules that apply to this finding. The static mute state can be
|
6597
|
+
# set by a static mute rule or by muting the finding directly.
|
6598
|
+
# Corresponds to the JSON property `staticMute`
|
6599
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2StaticMute]
|
6600
|
+
attr_accessor :static_mute
|
6601
|
+
|
6602
|
+
def initialize(**args)
|
6603
|
+
update!(**args)
|
6604
|
+
end
|
6605
|
+
|
6606
|
+
# Update properties of this object
|
6607
|
+
def update!(**args)
|
6608
|
+
@dynamic_mute_records = args[:dynamic_mute_records] if args.key?(:dynamic_mute_records)
|
6609
|
+
@static_mute = args[:static_mute] if args.key?(:static_mute)
|
6610
|
+
end
|
6611
|
+
end
|
6612
|
+
|
6474
6613
|
# Kubernetes nodes associated with the finding.
|
6475
6614
|
class GoogleCloudSecuritycenterV2Node
|
6476
6615
|
include Google::Apis::Core::Hashable
|
@@ -7458,6 +7597,34 @@ module Google
|
|
7458
7597
|
end
|
7459
7598
|
end
|
7460
7599
|
|
7600
|
+
# Information about the static mute state. A static mute state overrides any
|
7601
|
+
# dynamic mute rules that apply to this finding. The static mute state can be
|
7602
|
+
# set by a static mute rule or by muting the finding directly.
|
7603
|
+
class GoogleCloudSecuritycenterV2StaticMute
|
7604
|
+
include Google::Apis::Core::Hashable
|
7605
|
+
|
7606
|
+
# When the static mute was applied.
|
7607
|
+
# Corresponds to the JSON property `applyTime`
|
7608
|
+
# @return [String]
|
7609
|
+
attr_accessor :apply_time
|
7610
|
+
|
7611
|
+
# The static mute state. If the value is `MUTED` or `UNMUTED`, then the finding'
|
7612
|
+
# s overall mute state will have the same value.
|
7613
|
+
# Corresponds to the JSON property `state`
|
7614
|
+
# @return [String]
|
7615
|
+
attr_accessor :state
|
7616
|
+
|
7617
|
+
def initialize(**args)
|
7618
|
+
update!(**args)
|
7619
|
+
end
|
7620
|
+
|
7621
|
+
# Update properties of this object
|
7622
|
+
def update!(**args)
|
7623
|
+
@apply_time = args[:apply_time] if args.key?(:apply_time)
|
7624
|
+
@state = args[:state] if args.key?(:state)
|
7625
|
+
end
|
7626
|
+
end
|
7627
|
+
|
7461
7628
|
# Represents a Kubernetes subject.
|
7462
7629
|
class GoogleCloudSecuritycenterV2Subject
|
7463
7630
|
include Google::Apis::Core::Hashable
|
@@ -8868,6 +9035,34 @@ module Google
|
|
8868
9035
|
end
|
8869
9036
|
end
|
8870
9037
|
|
9038
|
+
# Mute information about the finding, including whether the finding has a static
|
9039
|
+
# mute or any matching dynamic mute rules.
|
9040
|
+
class MuteInfo
|
9041
|
+
include Google::Apis::Core::Hashable
|
9042
|
+
|
9043
|
+
# The list of dynamic mute rules that currently match the finding.
|
9044
|
+
# Corresponds to the JSON property `dynamicMuteRecords`
|
9045
|
+
# @return [Array<Google::Apis::SecuritycenterV1::DynamicMuteRecord>]
|
9046
|
+
attr_accessor :dynamic_mute_records
|
9047
|
+
|
9048
|
+
# Information about the static mute state. A static mute state overrides any
|
9049
|
+
# dynamic mute rules that apply to this finding. The static mute state can be
|
9050
|
+
# set by a static mute rule or by muting the finding directly.
|
9051
|
+
# Corresponds to the JSON property `staticMute`
|
9052
|
+
# @return [Google::Apis::SecuritycenterV1::StaticMute]
|
9053
|
+
attr_accessor :static_mute
|
9054
|
+
|
9055
|
+
def initialize(**args)
|
9056
|
+
update!(**args)
|
9057
|
+
end
|
9058
|
+
|
9059
|
+
# Update properties of this object
|
9060
|
+
def update!(**args)
|
9061
|
+
@dynamic_mute_records = args[:dynamic_mute_records] if args.key?(:dynamic_mute_records)
|
9062
|
+
@static_mute = args[:static_mute] if args.key?(:static_mute)
|
9063
|
+
end
|
9064
|
+
end
|
9065
|
+
|
8871
9066
|
# Kubernetes nodes associated with the finding.
|
8872
9067
|
class Node
|
8873
9068
|
include Google::Apis::Core::Hashable
|
@@ -10473,6 +10668,34 @@ module Google
|
|
10473
10668
|
end
|
10474
10669
|
end
|
10475
10670
|
|
10671
|
+
# Information about the static mute state. A static mute state overrides any
|
10672
|
+
# dynamic mute rules that apply to this finding. The static mute state can be
|
10673
|
+
# set by a static mute rule or by muting the finding directly.
|
10674
|
+
class StaticMute
|
10675
|
+
include Google::Apis::Core::Hashable
|
10676
|
+
|
10677
|
+
# When the static mute was applied.
|
10678
|
+
# Corresponds to the JSON property `applyTime`
|
10679
|
+
# @return [String]
|
10680
|
+
attr_accessor :apply_time
|
10681
|
+
|
10682
|
+
# The static mute state. If the value is `MUTED` or `UNMUTED`, then the finding'
|
10683
|
+
# s overall mute state will have the same value.
|
10684
|
+
# Corresponds to the JSON property `state`
|
10685
|
+
# @return [String]
|
10686
|
+
attr_accessor :state
|
10687
|
+
|
10688
|
+
def initialize(**args)
|
10689
|
+
update!(**args)
|
10690
|
+
end
|
10691
|
+
|
10692
|
+
# Update properties of this object
|
10693
|
+
def update!(**args)
|
10694
|
+
@apply_time = args[:apply_time] if args.key?(:apply_time)
|
10695
|
+
@state = args[:state] if args.key?(:state)
|
10696
|
+
end
|
10697
|
+
end
|
10698
|
+
|
10476
10699
|
# The `Status` type defines a logical error model that is suitable for different
|
10477
10700
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
10478
10701
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SecuritycenterV1
|
18
18
|
# Version of the google-apis-securitycenter_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.85.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240806"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -292,6 +292,12 @@ module Google
|
|
292
292
|
include Google::Apis::Core::JsonObjectSupport
|
293
293
|
end
|
294
294
|
|
295
|
+
class DynamicMuteRecord
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
295
301
|
class EffectiveEventThreatDetectionCustomModule
|
296
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
303
|
|
@@ -706,6 +712,12 @@ module Google
|
|
706
712
|
include Google::Apis::Core::JsonObjectSupport
|
707
713
|
end
|
708
714
|
|
715
|
+
class GoogleCloudSecuritycenterV2DynamicMuteRecord
|
716
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
717
|
+
|
718
|
+
include Google::Apis::Core::JsonObjectSupport
|
719
|
+
end
|
720
|
+
|
709
721
|
class GoogleCloudSecuritycenterV2EnvironmentVariable
|
710
722
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
711
723
|
|
@@ -820,6 +832,12 @@ module Google
|
|
820
832
|
include Google::Apis::Core::JsonObjectSupport
|
821
833
|
end
|
822
834
|
|
835
|
+
class GoogleCloudSecuritycenterV2MuteInfo
|
836
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
837
|
+
|
838
|
+
include Google::Apis::Core::JsonObjectSupport
|
839
|
+
end
|
840
|
+
|
823
841
|
class GoogleCloudSecuritycenterV2Node
|
824
842
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
825
843
|
|
@@ -964,6 +982,12 @@ module Google
|
|
964
982
|
include Google::Apis::Core::JsonObjectSupport
|
965
983
|
end
|
966
984
|
|
985
|
+
class GoogleCloudSecuritycenterV2StaticMute
|
986
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
987
|
+
|
988
|
+
include Google::Apis::Core::JsonObjectSupport
|
989
|
+
end
|
990
|
+
|
967
991
|
class GoogleCloudSecuritycenterV2Subject
|
968
992
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
969
993
|
|
@@ -1198,6 +1222,12 @@ module Google
|
|
1198
1222
|
include Google::Apis::Core::JsonObjectSupport
|
1199
1223
|
end
|
1200
1224
|
|
1225
|
+
class MuteInfo
|
1226
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1227
|
+
|
1228
|
+
include Google::Apis::Core::JsonObjectSupport
|
1229
|
+
end
|
1230
|
+
|
1201
1231
|
class Node
|
1202
1232
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1203
1233
|
|
@@ -1432,6 +1462,12 @@ module Google
|
|
1432
1462
|
include Google::Apis::Core::JsonObjectSupport
|
1433
1463
|
end
|
1434
1464
|
|
1465
|
+
class StaticMute
|
1466
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1467
|
+
|
1468
|
+
include Google::Apis::Core::JsonObjectSupport
|
1469
|
+
end
|
1470
|
+
|
1435
1471
|
class Status
|
1436
1472
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1437
1473
|
|
@@ -1789,6 +1825,7 @@ module Google
|
|
1789
1825
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1790
1826
|
property :filter, as: 'filter'
|
1791
1827
|
property :mute_annotation, as: 'muteAnnotation'
|
1828
|
+
property :mute_state, as: 'muteState'
|
1792
1829
|
end
|
1793
1830
|
end
|
1794
1831
|
|
@@ -1931,6 +1968,7 @@ module Google
|
|
1931
1968
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1932
1969
|
property :cvssv3, as: 'cvssv3', class: Google::Apis::SecuritycenterV1::Cvssv3, decorator: Google::Apis::SecuritycenterV1::Cvssv3::Representation
|
1933
1970
|
|
1971
|
+
property :exploit_release_date, as: 'exploitReleaseDate'
|
1934
1972
|
property :exploitation_activity, as: 'exploitationActivity'
|
1935
1973
|
property :id, as: 'id'
|
1936
1974
|
property :impact, as: 'impact'
|
@@ -1985,6 +2023,14 @@ module Google
|
|
1985
2023
|
end
|
1986
2024
|
end
|
1987
2025
|
|
2026
|
+
class DynamicMuteRecord
|
2027
|
+
# @private
|
2028
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2029
|
+
property :match_time, as: 'matchTime'
|
2030
|
+
property :mute_config, as: 'muteConfig'
|
2031
|
+
end
|
2032
|
+
end
|
2033
|
+
|
1988
2034
|
class EffectiveEventThreatDetectionCustomModule
|
1989
2035
|
# @private
|
1990
2036
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2127,6 +2173,8 @@ module Google
|
|
2127
2173
|
|
2128
2174
|
property :module_name, as: 'moduleName'
|
2129
2175
|
property :mute, as: 'mute'
|
2176
|
+
property :mute_info, as: 'muteInfo', class: Google::Apis::SecuritycenterV1::MuteInfo, decorator: Google::Apis::SecuritycenterV1::MuteInfo::Representation
|
2177
|
+
|
2130
2178
|
property :mute_initiator, as: 'muteInitiator'
|
2131
2179
|
property :mute_update_time, as: 'muteUpdateTime'
|
2132
2180
|
property :name, as: 'name'
|
@@ -2287,9 +2335,11 @@ module Google
|
|
2287
2335
|
property :create_time, as: 'createTime'
|
2288
2336
|
property :description, as: 'description'
|
2289
2337
|
property :display_name, as: 'displayName'
|
2338
|
+
property :expiry_time, as: 'expiryTime'
|
2290
2339
|
property :filter, as: 'filter'
|
2291
2340
|
property :most_recent_editor, as: 'mostRecentEditor'
|
2292
2341
|
property :name, as: 'name'
|
2342
|
+
property :type, as: 'type'
|
2293
2343
|
property :update_time, as: 'updateTime'
|
2294
2344
|
end
|
2295
2345
|
end
|
@@ -2754,6 +2804,7 @@ module Google
|
|
2754
2804
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2755
2805
|
property :cvssv3, as: 'cvssv3', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Cvssv3, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Cvssv3::Representation
|
2756
2806
|
|
2807
|
+
property :exploit_release_date, as: 'exploitReleaseDate'
|
2757
2808
|
property :exploitation_activity, as: 'exploitationActivity'
|
2758
2809
|
property :id, as: 'id'
|
2759
2810
|
property :impact, as: 'impact'
|
@@ -2808,6 +2859,14 @@ module Google
|
|
2808
2859
|
end
|
2809
2860
|
end
|
2810
2861
|
|
2862
|
+
class GoogleCloudSecuritycenterV2DynamicMuteRecord
|
2863
|
+
# @private
|
2864
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2865
|
+
property :match_time, as: 'matchTime'
|
2866
|
+
property :mute_config, as: 'muteConfig'
|
2867
|
+
end
|
2868
|
+
end
|
2869
|
+
|
2811
2870
|
class GoogleCloudSecuritycenterV2EnvironmentVariable
|
2812
2871
|
# @private
|
2813
2872
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2925,6 +2984,8 @@ module Google
|
|
2925
2984
|
|
2926
2985
|
property :module_name, as: 'moduleName'
|
2927
2986
|
property :mute, as: 'mute'
|
2987
|
+
property :mute_info, as: 'muteInfo', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2MuteInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2MuteInfo::Representation
|
2988
|
+
|
2928
2989
|
property :mute_initiator, as: 'muteInitiator'
|
2929
2990
|
property :mute_update_time, as: 'muteUpdateTime'
|
2930
2991
|
property :name, as: 'name'
|
@@ -3078,6 +3139,7 @@ module Google
|
|
3078
3139
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3079
3140
|
property :create_time, as: 'createTime'
|
3080
3141
|
property :description, as: 'description'
|
3142
|
+
property :expiry_time, as: 'expiryTime'
|
3081
3143
|
property :filter, as: 'filter'
|
3082
3144
|
property :most_recent_editor, as: 'mostRecentEditor'
|
3083
3145
|
property :name, as: 'name'
|
@@ -3086,6 +3148,16 @@ module Google
|
|
3086
3148
|
end
|
3087
3149
|
end
|
3088
3150
|
|
3151
|
+
class GoogleCloudSecuritycenterV2MuteInfo
|
3152
|
+
# @private
|
3153
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3154
|
+
collection :dynamic_mute_records, as: 'dynamicMuteRecords', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DynamicMuteRecord, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2DynamicMuteRecord::Representation
|
3155
|
+
|
3156
|
+
property :static_mute, as: 'staticMute', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2StaticMute, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2StaticMute::Representation
|
3157
|
+
|
3158
|
+
end
|
3159
|
+
end
|
3160
|
+
|
3089
3161
|
class GoogleCloudSecuritycenterV2Node
|
3090
3162
|
# @private
|
3091
3163
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3345,6 +3417,14 @@ module Google
|
|
3345
3417
|
end
|
3346
3418
|
end
|
3347
3419
|
|
3420
|
+
class GoogleCloudSecuritycenterV2StaticMute
|
3421
|
+
# @private
|
3422
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3423
|
+
property :apply_time, as: 'applyTime'
|
3424
|
+
property :state, as: 'state'
|
3425
|
+
end
|
3426
|
+
end
|
3427
|
+
|
3348
3428
|
class GoogleCloudSecuritycenterV2Subject
|
3349
3429
|
# @private
|
3350
3430
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3731,6 +3811,16 @@ module Google
|
|
3731
3811
|
end
|
3732
3812
|
end
|
3733
3813
|
|
3814
|
+
class MuteInfo
|
3815
|
+
# @private
|
3816
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3817
|
+
collection :dynamic_mute_records, as: 'dynamicMuteRecords', class: Google::Apis::SecuritycenterV1::DynamicMuteRecord, decorator: Google::Apis::SecuritycenterV1::DynamicMuteRecord::Representation
|
3818
|
+
|
3819
|
+
property :static_mute, as: 'staticMute', class: Google::Apis::SecuritycenterV1::StaticMute, decorator: Google::Apis::SecuritycenterV1::StaticMute::Representation
|
3820
|
+
|
3821
|
+
end
|
3822
|
+
end
|
3823
|
+
|
3734
3824
|
class Node
|
3735
3825
|
# @private
|
3736
3826
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4135,6 +4225,14 @@ module Google
|
|
4135
4225
|
end
|
4136
4226
|
end
|
4137
4227
|
|
4228
|
+
class StaticMute
|
4229
|
+
# @private
|
4230
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4231
|
+
property :apply_time, as: 'applyTime'
|
4232
|
+
property :state, as: 'state'
|
4233
|
+
end
|
4234
|
+
end
|
4235
|
+
|
4138
4236
|
class Status
|
4139
4237
|
# @private
|
4140
4238
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.85.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: 2024-
|
11
|
+
date: 2024-08-11 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-securitycenter_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.85.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|