google-apis-securitycenter_v1beta1 0.77.0 → 0.79.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: 575e950933b05301d78e8cd5ff49f43d9c74bad4524d1044aa27ea776299326c
|
4
|
+
data.tar.gz: 3affff94b45aa29214423705844ad9f7d901fa2b2ee324cc6934700c0a24085b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 164395c112ab78185b15fb74018cd742e4b7d63f43670c70b8ffd0222fa517737d2a634b75a15b92f1fb7eadef73aa462842ad6234b54da431a7d23d5a0460a1
|
7
|
+
data.tar.gz: 62ff2351623ad6c1e104df5161675a486ad5953a2222e76d540c46bae5723be7e0b044801dc2dbd39cb5f349e0c395604f9daf8bdb90c438aa2758c9fa492223
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta1
|
2
2
|
|
3
|
+
### v0.79.0 (2024-07-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240720
|
6
|
+
|
7
|
+
### v0.78.0 (2024-06-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240620
|
10
|
+
|
3
11
|
### v0.77.0 (2024-05-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240520
|
@@ -360,8 +360,8 @@ module Google
|
|
360
360
|
include Google::Apis::Core::Hashable
|
361
361
|
|
362
362
|
# The resource name of the attack path simulation result that contains the
|
363
|
-
# details regarding this attack exposure score. Example: organizations/123/
|
364
|
-
# simulations/456/attackExposureResults/789
|
363
|
+
# details regarding this attack exposure score. Example: `organizations/123/
|
364
|
+
# simulations/456/attackExposureResults/789`
|
365
365
|
# Corresponds to the JSON property `attackExposureResult`
|
366
366
|
# @return [String]
|
367
367
|
attr_accessor :attack_exposure_result
|
@@ -603,6 +603,110 @@ module Google
|
|
603
603
|
end
|
604
604
|
end
|
605
605
|
|
606
|
+
# Represents an Azure management group.
|
607
|
+
class AzureManagementGroup
|
608
|
+
include Google::Apis::Core::Hashable
|
609
|
+
|
610
|
+
# The display name of the Azure management group.
|
611
|
+
# Corresponds to the JSON property `displayName`
|
612
|
+
# @return [String]
|
613
|
+
attr_accessor :display_name
|
614
|
+
|
615
|
+
# The UUID of the Azure management group, for example, `20000000-0001-0000-0000-
|
616
|
+
# 000000000000`.
|
617
|
+
# Corresponds to the JSON property `id`
|
618
|
+
# @return [String]
|
619
|
+
attr_accessor :id
|
620
|
+
|
621
|
+
def initialize(**args)
|
622
|
+
update!(**args)
|
623
|
+
end
|
624
|
+
|
625
|
+
# Update properties of this object
|
626
|
+
def update!(**args)
|
627
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
628
|
+
@id = args[:id] if args.key?(:id)
|
629
|
+
end
|
630
|
+
end
|
631
|
+
|
632
|
+
# Azure metadata associated with the resource, only applicable if the finding's
|
633
|
+
# cloud provider is Microsoft Azure.
|
634
|
+
class AzureMetadata
|
635
|
+
include Google::Apis::Core::Hashable
|
636
|
+
|
637
|
+
# A list of Azure management groups associated with the resource, ordered from
|
638
|
+
# lowest level (closest to the subscription) to highest level.
|
639
|
+
# Corresponds to the JSON property `managementGroups`
|
640
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::AzureManagementGroup>]
|
641
|
+
attr_accessor :management_groups
|
642
|
+
|
643
|
+
# Represents an Azure resource group.
|
644
|
+
# Corresponds to the JSON property `resourceGroup`
|
645
|
+
# @return [Google::Apis::SecuritycenterV1beta1::AzureResourceGroup]
|
646
|
+
attr_accessor :resource_group
|
647
|
+
|
648
|
+
# Represents an Azure subscription.
|
649
|
+
# Corresponds to the JSON property `subscription`
|
650
|
+
# @return [Google::Apis::SecuritycenterV1beta1::AzureSubscription]
|
651
|
+
attr_accessor :subscription
|
652
|
+
|
653
|
+
def initialize(**args)
|
654
|
+
update!(**args)
|
655
|
+
end
|
656
|
+
|
657
|
+
# Update properties of this object
|
658
|
+
def update!(**args)
|
659
|
+
@management_groups = args[:management_groups] if args.key?(:management_groups)
|
660
|
+
@resource_group = args[:resource_group] if args.key?(:resource_group)
|
661
|
+
@subscription = args[:subscription] if args.key?(:subscription)
|
662
|
+
end
|
663
|
+
end
|
664
|
+
|
665
|
+
# Represents an Azure resource group.
|
666
|
+
class AzureResourceGroup
|
667
|
+
include Google::Apis::Core::Hashable
|
668
|
+
|
669
|
+
# The name of the Azure resource group. This is not a UUID.
|
670
|
+
# Corresponds to the JSON property `name`
|
671
|
+
# @return [String]
|
672
|
+
attr_accessor :name
|
673
|
+
|
674
|
+
def initialize(**args)
|
675
|
+
update!(**args)
|
676
|
+
end
|
677
|
+
|
678
|
+
# Update properties of this object
|
679
|
+
def update!(**args)
|
680
|
+
@name = args[:name] if args.key?(:name)
|
681
|
+
end
|
682
|
+
end
|
683
|
+
|
684
|
+
# Represents an Azure subscription.
|
685
|
+
class AzureSubscription
|
686
|
+
include Google::Apis::Core::Hashable
|
687
|
+
|
688
|
+
# The display name of the Azure subscription.
|
689
|
+
# Corresponds to the JSON property `displayName`
|
690
|
+
# @return [String]
|
691
|
+
attr_accessor :display_name
|
692
|
+
|
693
|
+
# The UUID of the Azure subscription, for example, `291bba3f-e0a5-47bc-a099-
|
694
|
+
# 3bdcb2a50a05`.
|
695
|
+
# Corresponds to the JSON property `id`
|
696
|
+
# @return [String]
|
697
|
+
attr_accessor :id
|
698
|
+
|
699
|
+
def initialize(**args)
|
700
|
+
update!(**args)
|
701
|
+
end
|
702
|
+
|
703
|
+
# Update properties of this object
|
704
|
+
def update!(**args)
|
705
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
706
|
+
@id = args[:id] if args.key?(:id)
|
707
|
+
end
|
708
|
+
end
|
709
|
+
|
606
710
|
# Information related to Google Cloud Backup and DR Service findings.
|
607
711
|
class BackupDisasterRecovery
|
608
712
|
include Google::Apis::Core::Hashable
|
@@ -1830,6 +1934,13 @@ module Google
|
|
1830
1934
|
# @return [String]
|
1831
1935
|
attr_accessor :finding_class
|
1832
1936
|
|
1937
|
+
# Contains details about groups of which this finding is a member. A group is a
|
1938
|
+
# collection of findings that are related in some way. This field cannot be
|
1939
|
+
# updated. Its value is ignored in all update requests.
|
1940
|
+
# Corresponds to the JSON property `groupMemberships`
|
1941
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GroupMembership>]
|
1942
|
+
attr_accessor :group_memberships
|
1943
|
+
|
1833
1944
|
# Represents IAM bindings associated with the finding.
|
1834
1945
|
# Corresponds to the JSON property `iamBindings`
|
1835
1946
|
# @return [Array<Google::Apis::SecuritycenterV1beta1::IamBinding>]
|
@@ -1984,6 +2095,13 @@ module Google
|
|
1984
2095
|
# @return [String]
|
1985
2096
|
attr_accessor :state
|
1986
2097
|
|
2098
|
+
# Contains details about a group of security issues that, when the issues occur
|
2099
|
+
# together, represent a greater risk than when the issues occur independently. A
|
2100
|
+
# group of such issues is referred to as a toxic combination.
|
2101
|
+
# Corresponds to the JSON property `toxicCombination`
|
2102
|
+
# @return [Google::Apis::SecuritycenterV1beta1::ToxicCombination]
|
2103
|
+
attr_accessor :toxic_combination
|
2104
|
+
|
1987
2105
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
1988
2106
|
# Corresponds to the JSON property `vulnerability`
|
1989
2107
|
# @return [Google::Apis::SecuritycenterV1beta1::Vulnerability]
|
@@ -2017,6 +2135,7 @@ module Google
|
|
2017
2135
|
@external_uri = args[:external_uri] if args.key?(:external_uri)
|
2018
2136
|
@files = args[:files] if args.key?(:files)
|
2019
2137
|
@finding_class = args[:finding_class] if args.key?(:finding_class)
|
2138
|
+
@group_memberships = args[:group_memberships] if args.key?(:group_memberships)
|
2020
2139
|
@iam_bindings = args[:iam_bindings] if args.key?(:iam_bindings)
|
2021
2140
|
@indicator = args[:indicator] if args.key?(:indicator)
|
2022
2141
|
@kernel_rootkit = args[:kernel_rootkit] if args.key?(:kernel_rootkit)
|
@@ -2041,6 +2160,7 @@ module Google
|
|
2041
2160
|
@severity = args[:severity] if args.key?(:severity)
|
2042
2161
|
@source_properties = args[:source_properties] if args.key?(:source_properties)
|
2043
2162
|
@state = args[:state] if args.key?(:state)
|
2163
|
+
@toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
|
2044
2164
|
@vulnerability = args[:vulnerability] if args.key?(:vulnerability)
|
2045
2165
|
end
|
2046
2166
|
end
|
@@ -2600,12 +2720,12 @@ module Google
|
|
2600
2720
|
# @return [String]
|
2601
2721
|
attr_accessor :most_recent_editor
|
2602
2722
|
|
2603
|
-
# This field will be ignored if provided on config creation. Format
|
2604
|
-
# organizations/`organization`/muteConfigs/`mute_config`
|
2605
|
-
# muteConfigs/`mute_config`
|
2606
|
-
# organizations/`organization`/locations/global/muteConfigs/`mute_config`
|
2607
|
-
# folders/`folder`/locations/global/muteConfigs/`mute_config`
|
2608
|
-
# project`/locations/global/muteConfigs/`mute_config
|
2723
|
+
# This field will be ignored if provided on config creation. Format `
|
2724
|
+
# organizations/`organization`/muteConfigs/`mute_config`` `folders/`folder`/
|
2725
|
+
# muteConfigs/`mute_config`` `projects/`project`/muteConfigs/`mute_config`` `
|
2726
|
+
# organizations/`organization`/locations/global/muteConfigs/`mute_config`` `
|
2727
|
+
# folders/`folder`/locations/global/muteConfigs/`mute_config`` `projects/`
|
2728
|
+
# project`/locations/global/muteConfigs/`mute_config``
|
2609
2729
|
# Corresponds to the JSON property `name`
|
2610
2730
|
# @return [String]
|
2611
2731
|
attr_accessor :name
|
@@ -2717,6 +2837,12 @@ module Google
|
|
2717
2837
|
# @return [Google::Apis::SecuritycenterV1beta1::AwsMetadata]
|
2718
2838
|
attr_accessor :aws_metadata
|
2719
2839
|
|
2840
|
+
# Azure metadata associated with the resource, only applicable if the finding's
|
2841
|
+
# cloud provider is Microsoft Azure.
|
2842
|
+
# Corresponds to the JSON property `azureMetadata`
|
2843
|
+
# @return [Google::Apis::SecuritycenterV1beta1::AzureMetadata]
|
2844
|
+
attr_accessor :azure_metadata
|
2845
|
+
|
2720
2846
|
# Indicates which cloud provider the resource resides in.
|
2721
2847
|
# Corresponds to the JSON property `cloudProvider`
|
2722
2848
|
# @return [String]
|
@@ -2778,13 +2904,14 @@ module Google
|
|
2778
2904
|
attr_accessor :resource_path
|
2779
2905
|
|
2780
2906
|
# A string representation of the resource path. For Google Cloud, it has the
|
2781
|
-
# format of organizations/`organization_id`/folders/`folder_id`/folders/`
|
2782
|
-
# folder_id`/projects/`project_id
|
2783
|
-
# AWS, it has the format of org/`organization_id`/ou/`
|
2784
|
-
#
|
2785
|
-
# organizational units. For Azure, it has the
|
2786
|
-
# mg/`management_group_id`/
|
2787
|
-
# resource_group_name
|
2907
|
+
# format of `organizations/`organization_id`/folders/`folder_id`/folders/`
|
2908
|
+
# folder_id`/projects/`project_id`` where there can be any number of folders.
|
2909
|
+
# For AWS, it has the format of `org/`organization_id`/ou/`
|
2910
|
+
# organizational_unit_id`/ou/`organizational_unit_id`/account/`account_id``
|
2911
|
+
# where there can be any number of organizational units. For Azure, it has the
|
2912
|
+
# format of `mg/`management_group_id`/mg/`management_group_id`/subscription/`
|
2913
|
+
# subscription_id`/rg/`resource_group_name`` where there can be any number of
|
2914
|
+
# management groups.
|
2788
2915
|
# Corresponds to the JSON property `resourcePathString`
|
2789
2916
|
# @return [String]
|
2790
2917
|
attr_accessor :resource_path_string
|
@@ -2807,6 +2934,7 @@ module Google
|
|
2807
2934
|
# Update properties of this object
|
2808
2935
|
def update!(**args)
|
2809
2936
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
2937
|
+
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
2810
2938
|
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
2811
2939
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2812
2940
|
@folders = args[:folders] if args.key?(:folders)
|
@@ -2868,18 +2996,18 @@ module Google
|
|
2868
2996
|
# @return [String]
|
2869
2997
|
attr_accessor :name
|
2870
2998
|
|
2871
|
-
# List of resource labels to search for, evaluated with AND
|
2872
|
-
# resource_labels_selector": `"key": "value", "env": "prod"
|
2873
|
-
# resources with labels "key": "value" AND "env": "prod" https://cloud.google.
|
2999
|
+
# List of resource labels to search for, evaluated with `AND`. For example, `"
|
3000
|
+
# resource_labels_selector": `"key": "value", "env": "prod"`` will match
|
3001
|
+
# resources with labels "key": "value" `AND` "env": "prod" https://cloud.google.
|
2874
3002
|
# com/resource-manager/docs/creating-managing-labels
|
2875
3003
|
# Corresponds to the JSON property `resourceLabelsSelector`
|
2876
3004
|
# @return [Hash<String,String>]
|
2877
3005
|
attr_accessor :resource_labels_selector
|
2878
3006
|
|
2879
3007
|
# Apply resource_value only to resources that match resource_type. resource_type
|
2880
|
-
# will be checked with AND of other resources. For example, "storage.
|
2881
|
-
# com/Bucket" with resource_value "HIGH" will apply "HIGH" value only
|
2882
|
-
# storage.googleapis.com/Bucket" resources.
|
3008
|
+
# will be checked with `AND` of other resources. For example, "storage.
|
3009
|
+
# googleapis.com/Bucket" with resource_value "HIGH" will apply "HIGH" value only
|
3010
|
+
# to "storage.googleapis.com/Bucket" resources.
|
2883
3011
|
# Corresponds to the JSON property `resourceType`
|
2884
3012
|
# @return [String]
|
2885
3013
|
attr_accessor :resource_type
|
@@ -2891,7 +3019,7 @@ module Google
|
|
2891
3019
|
|
2892
3020
|
# Project or folder to scope this configuration to. For example, "project/456"
|
2893
3021
|
# would apply this configuration only to resources in "project/456" scope will
|
2894
|
-
# be checked with AND of other resources.
|
3022
|
+
# be checked with `AND` of other resources.
|
2895
3023
|
# Corresponds to the JSON property `scope`
|
2896
3024
|
# @return [String]
|
2897
3025
|
attr_accessor :scope
|
@@ -2903,9 +3031,10 @@ module Google
|
|
2903
3031
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping]
|
2904
3032
|
attr_accessor :sensitive_data_protection_mapping
|
2905
3033
|
|
2906
|
-
# Required. Tag values combined with AND to check against. Values in the form "
|
2907
|
-
# tagValues/123" Example: [ "tagValues/123", "tagValues/456", "tagValues/789" ]
|
2908
|
-
# https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-
|
3034
|
+
# Required. Tag values combined with `AND` to check against. Values in the form "
|
3035
|
+
# tagValues/123" Example: `[ "tagValues/123", "tagValues/456", "tagValues/789" ]`
|
3036
|
+
# https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-
|
3037
|
+
# managing
|
2909
3038
|
# Corresponds to the JSON property `tagValues`
|
2910
3039
|
# @return [Array<String>]
|
2911
3040
|
attr_accessor :tag_values
|
@@ -3772,8 +3901,8 @@ module Google
|
|
3772
3901
|
include Google::Apis::Core::Hashable
|
3773
3902
|
|
3774
3903
|
# The resource name of the attack path simulation result that contains the
|
3775
|
-
# details regarding this attack exposure score. Example: organizations/123/
|
3776
|
-
# simulations/456/attackExposureResults/789
|
3904
|
+
# details regarding this attack exposure score. Example: `organizations/123/
|
3905
|
+
# simulations/456/attackExposureResults/789`
|
3777
3906
|
# Corresponds to the JSON property `attackExposureResult`
|
3778
3907
|
# @return [String]
|
3779
3908
|
attr_accessor :attack_exposure_result
|
@@ -3944,6 +4073,110 @@ module Google
|
|
3944
4073
|
end
|
3945
4074
|
end
|
3946
4075
|
|
4076
|
+
# Represents an Azure management group.
|
4077
|
+
class GoogleCloudSecuritycenterV2AzureManagementGroup
|
4078
|
+
include Google::Apis::Core::Hashable
|
4079
|
+
|
4080
|
+
# The display name of the Azure management group.
|
4081
|
+
# Corresponds to the JSON property `displayName`
|
4082
|
+
# @return [String]
|
4083
|
+
attr_accessor :display_name
|
4084
|
+
|
4085
|
+
# The UUID of the Azure management group, for example, `20000000-0001-0000-0000-
|
4086
|
+
# 000000000000`.
|
4087
|
+
# Corresponds to the JSON property `id`
|
4088
|
+
# @return [String]
|
4089
|
+
attr_accessor :id
|
4090
|
+
|
4091
|
+
def initialize(**args)
|
4092
|
+
update!(**args)
|
4093
|
+
end
|
4094
|
+
|
4095
|
+
# Update properties of this object
|
4096
|
+
def update!(**args)
|
4097
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
4098
|
+
@id = args[:id] if args.key?(:id)
|
4099
|
+
end
|
4100
|
+
end
|
4101
|
+
|
4102
|
+
# Azure metadata associated with the resource, only applicable if the finding's
|
4103
|
+
# cloud provider is Microsoft Azure.
|
4104
|
+
class GoogleCloudSecuritycenterV2AzureMetadata
|
4105
|
+
include Google::Apis::Core::Hashable
|
4106
|
+
|
4107
|
+
# A list of Azure management groups associated with the resource, ordered from
|
4108
|
+
# lowest level (closest to the subscription) to highest level.
|
4109
|
+
# Corresponds to the JSON property `managementGroups`
|
4110
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureManagementGroup>]
|
4111
|
+
attr_accessor :management_groups
|
4112
|
+
|
4113
|
+
# Represents an Azure resource group.
|
4114
|
+
# Corresponds to the JSON property `resourceGroup`
|
4115
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureResourceGroup]
|
4116
|
+
attr_accessor :resource_group
|
4117
|
+
|
4118
|
+
# Represents an Azure subscription.
|
4119
|
+
# Corresponds to the JSON property `subscription`
|
4120
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureSubscription]
|
4121
|
+
attr_accessor :subscription
|
4122
|
+
|
4123
|
+
def initialize(**args)
|
4124
|
+
update!(**args)
|
4125
|
+
end
|
4126
|
+
|
4127
|
+
# Update properties of this object
|
4128
|
+
def update!(**args)
|
4129
|
+
@management_groups = args[:management_groups] if args.key?(:management_groups)
|
4130
|
+
@resource_group = args[:resource_group] if args.key?(:resource_group)
|
4131
|
+
@subscription = args[:subscription] if args.key?(:subscription)
|
4132
|
+
end
|
4133
|
+
end
|
4134
|
+
|
4135
|
+
# Represents an Azure resource group.
|
4136
|
+
class GoogleCloudSecuritycenterV2AzureResourceGroup
|
4137
|
+
include Google::Apis::Core::Hashable
|
4138
|
+
|
4139
|
+
# The name of the Azure resource group. This is not a UUID.
|
4140
|
+
# Corresponds to the JSON property `name`
|
4141
|
+
# @return [String]
|
4142
|
+
attr_accessor :name
|
4143
|
+
|
4144
|
+
def initialize(**args)
|
4145
|
+
update!(**args)
|
4146
|
+
end
|
4147
|
+
|
4148
|
+
# Update properties of this object
|
4149
|
+
def update!(**args)
|
4150
|
+
@name = args[:name] if args.key?(:name)
|
4151
|
+
end
|
4152
|
+
end
|
4153
|
+
|
4154
|
+
# Represents an Azure subscription.
|
4155
|
+
class GoogleCloudSecuritycenterV2AzureSubscription
|
4156
|
+
include Google::Apis::Core::Hashable
|
4157
|
+
|
4158
|
+
# The display name of the Azure subscription.
|
4159
|
+
# Corresponds to the JSON property `displayName`
|
4160
|
+
# @return [String]
|
4161
|
+
attr_accessor :display_name
|
4162
|
+
|
4163
|
+
# The UUID of the Azure subscription, for example, `291bba3f-e0a5-47bc-a099-
|
4164
|
+
# 3bdcb2a50a05`.
|
4165
|
+
# Corresponds to the JSON property `id`
|
4166
|
+
# @return [String]
|
4167
|
+
attr_accessor :id
|
4168
|
+
|
4169
|
+
def initialize(**args)
|
4170
|
+
update!(**args)
|
4171
|
+
end
|
4172
|
+
|
4173
|
+
# Update properties of this object
|
4174
|
+
def update!(**args)
|
4175
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
4176
|
+
@id = args[:id] if args.key?(:id)
|
4177
|
+
end
|
4178
|
+
end
|
4179
|
+
|
3947
4180
|
# Information related to Google Cloud Backup and DR Service findings.
|
3948
4181
|
class GoogleCloudSecuritycenterV2BackupDisasterRecovery
|
3949
4182
|
include Google::Apis::Core::Hashable
|
@@ -4052,7 +4285,7 @@ module Google
|
|
4052
4285
|
attr_accessor :create_time
|
4053
4286
|
|
4054
4287
|
# The dataset to write findings' updates to. Its format is "projects/[project_id]
|
4055
|
-
# /datasets/[bigquery_dataset_id]". BigQuery
|
4288
|
+
# /datasets/[bigquery_dataset_id]". BigQuery dataset unique ID must contain only
|
4056
4289
|
# letters (a-z, A-Z), numbers (0-9), or underscores (_).
|
4057
4290
|
# Corresponds to the JSON property `dataset`
|
4058
4291
|
# @return [String]
|
@@ -4084,13 +4317,13 @@ module Google
|
|
4084
4317
|
# @return [String]
|
4085
4318
|
attr_accessor :most_recent_editor
|
4086
4319
|
|
4087
|
-
# The relative resource name of this export. See: https://cloud.
|
4088
|
-
# design/resource_names#relative_resource_name. The following
|
4089
|
-
# examples: + `organizations/`organization_id`/locations/`
|
4090
|
-
# bigQueryExports/`export_id`` + `folders/`folder_id`/locations/`
|
4091
|
-
# bigQueryExports/`export_id`` + `projects/`project_id`/locations/`
|
4092
|
-
# bigQueryExports/`export_id`` This field is provided in responses,
|
4093
|
-
# ignored when provided in create requests.
|
4320
|
+
# Identifier. The relative resource name of this export. See: https://cloud.
|
4321
|
+
# google.com/apis/design/resource_names#relative_resource_name. The following
|
4322
|
+
# list shows some examples: + `organizations/`organization_id`/locations/`
|
4323
|
+
# location_id`/bigQueryExports/`export_id`` + `folders/`folder_id`/locations/`
|
4324
|
+
# location_id`/bigQueryExports/`export_id`` + `projects/`project_id`/locations/`
|
4325
|
+
# location_id`/bigQueryExports/`export_id`` This field is provided in responses,
|
4326
|
+
# and is ignored when provided in create requests.
|
4094
4327
|
# Corresponds to the JSON property `name`
|
4095
4328
|
# @return [String]
|
4096
4329
|
attr_accessor :name
|
@@ -5155,6 +5388,13 @@ module Google
|
|
5155
5388
|
# @return [String]
|
5156
5389
|
attr_accessor :finding_class
|
5157
5390
|
|
5391
|
+
# Contains details about groups of which this finding is a member. A group is a
|
5392
|
+
# collection of findings that are related in some way. This field cannot be
|
5393
|
+
# updated. Its value is ignored in all update requests.
|
5394
|
+
# Corresponds to the JSON property `groupMemberships`
|
5395
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2GroupMembership>]
|
5396
|
+
attr_accessor :group_memberships
|
5397
|
+
|
5158
5398
|
# Represents IAM bindings associated with the finding.
|
5159
5399
|
# Corresponds to the JSON property `iamBindings`
|
5160
5400
|
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IamBinding>]
|
@@ -5318,6 +5558,13 @@ module Google
|
|
5318
5558
|
# @return [String]
|
5319
5559
|
attr_accessor :state
|
5320
5560
|
|
5561
|
+
# Contains details about a group of security issues that, when the issues occur
|
5562
|
+
# together, represent a greater risk than when the issues occur independently. A
|
5563
|
+
# group of such issues is referred to as a toxic combination.
|
5564
|
+
# Corresponds to the JSON property `toxicCombination`
|
5565
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ToxicCombination]
|
5566
|
+
attr_accessor :toxic_combination
|
5567
|
+
|
5321
5568
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
5322
5569
|
# Corresponds to the JSON property `vulnerability`
|
5323
5570
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Vulnerability]
|
@@ -5351,6 +5598,7 @@ module Google
|
|
5351
5598
|
@external_uri = args[:external_uri] if args.key?(:external_uri)
|
5352
5599
|
@files = args[:files] if args.key?(:files)
|
5353
5600
|
@finding_class = args[:finding_class] if args.key?(:finding_class)
|
5601
|
+
@group_memberships = args[:group_memberships] if args.key?(:group_memberships)
|
5354
5602
|
@iam_bindings = args[:iam_bindings] if args.key?(:iam_bindings)
|
5355
5603
|
@indicator = args[:indicator] if args.key?(:indicator)
|
5356
5604
|
@kernel_rootkit = args[:kernel_rootkit] if args.key?(:kernel_rootkit)
|
@@ -5375,6 +5623,7 @@ module Google
|
|
5375
5623
|
@severity = args[:severity] if args.key?(:severity)
|
5376
5624
|
@source_properties = args[:source_properties] if args.key?(:source_properties)
|
5377
5625
|
@state = args[:state] if args.key?(:state)
|
5626
|
+
@toxic_combination = args[:toxic_combination] if args.key?(:toxic_combination)
|
5378
5627
|
@vulnerability = args[:vulnerability] if args.key?(:vulnerability)
|
5379
5628
|
end
|
5380
5629
|
end
|
@@ -5424,6 +5673,32 @@ module Google
|
|
5424
5673
|
end
|
5425
5674
|
end
|
5426
5675
|
|
5676
|
+
# Contains details about groups of which this finding is a member. A group is a
|
5677
|
+
# collection of findings that are related in some way.
|
5678
|
+
class GoogleCloudSecuritycenterV2GroupMembership
|
5679
|
+
include Google::Apis::Core::Hashable
|
5680
|
+
|
5681
|
+
# ID of the group.
|
5682
|
+
# Corresponds to the JSON property `groupId`
|
5683
|
+
# @return [String]
|
5684
|
+
attr_accessor :group_id
|
5685
|
+
|
5686
|
+
# Type of group.
|
5687
|
+
# Corresponds to the JSON property `groupType`
|
5688
|
+
# @return [String]
|
5689
|
+
attr_accessor :group_type
|
5690
|
+
|
5691
|
+
def initialize(**args)
|
5692
|
+
update!(**args)
|
5693
|
+
end
|
5694
|
+
|
5695
|
+
# Update properties of this object
|
5696
|
+
def update!(**args)
|
5697
|
+
@group_id = args[:group_id] if args.key?(:group_id)
|
5698
|
+
@group_type = args[:group_type] if args.key?(:group_type)
|
5699
|
+
end
|
5700
|
+
end
|
5701
|
+
|
5427
5702
|
# Represents a particular IAM binding, which captures a member's role addition,
|
5428
5703
|
# removal, or state.
|
5429
5704
|
class GoogleCloudSecuritycenterV2IamBinding
|
@@ -5826,13 +6101,13 @@ module Google
|
|
5826
6101
|
# @return [String]
|
5827
6102
|
attr_accessor :most_recent_editor
|
5828
6103
|
|
5829
|
-
# This field will be ignored if provided on config creation. The
|
5830
|
-
# shows some examples of the format: + `organizations/`
|
5831
|
-
#
|
5832
|
-
# muteConfigs/`mute_config`` + `folders/`folder`/
|
5833
|
-
#
|
5834
|
-
#
|
5835
|
-
# muteConfigs/`mute_config``
|
6104
|
+
# Identifier. This field will be ignored if provided on config creation. The
|
6105
|
+
# following list shows some examples of the format: + `organizations/`
|
6106
|
+
# organization`/muteConfigs/`mute_config`` + `organizations/`organization`
|
6107
|
+
# locations/`location`//muteConfigs/`mute_config`` + `folders/`folder`/
|
6108
|
+
# muteConfigs/`mute_config`` + `folders/`folder`/locations/`location`/
|
6109
|
+
# muteConfigs/`mute_config`` + `projects/`project`/muteConfigs/`mute_config`` + `
|
6110
|
+
# projects/`project`/locations/`location`/muteConfigs/`mute_config``
|
5836
6111
|
# Corresponds to the JSON property `name`
|
5837
6112
|
# @return [String]
|
5838
6113
|
attr_accessor :name
|
@@ -6345,6 +6620,12 @@ module Google
|
|
6345
6620
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AwsMetadata]
|
6346
6621
|
attr_accessor :aws_metadata
|
6347
6622
|
|
6623
|
+
# Azure metadata associated with the resource, only applicable if the finding's
|
6624
|
+
# cloud provider is Microsoft Azure.
|
6625
|
+
# Corresponds to the JSON property `azureMetadata`
|
6626
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureMetadata]
|
6627
|
+
attr_accessor :azure_metadata
|
6628
|
+
|
6348
6629
|
# Indicates which cloud provider the finding is from.
|
6349
6630
|
# Corresponds to the JSON property `cloudProvider`
|
6350
6631
|
# @return [String]
|
@@ -6379,13 +6660,14 @@ module Google
|
|
6379
6660
|
attr_accessor :resource_path
|
6380
6661
|
|
6381
6662
|
# A string representation of the resource path. For Google Cloud, it has the
|
6382
|
-
# format of organizations/`organization_id`/folders/`folder_id`/folders/`
|
6383
|
-
# folder_id`/projects/`project_id
|
6384
|
-
# AWS, it has the format of org/`organization_id`/ou/`
|
6385
|
-
#
|
6386
|
-
# organizational units. For Azure, it has the
|
6387
|
-
# mg/`management_group_id`/
|
6388
|
-
# resource_group_name
|
6663
|
+
# format of `organizations/`organization_id`/folders/`folder_id`/folders/`
|
6664
|
+
# folder_id`/projects/`project_id`` where there can be any number of folders.
|
6665
|
+
# For AWS, it has the format of `org/`organization_id`/ou/`
|
6666
|
+
# organizational_unit_id`/ou/`organizational_unit_id`/account/`account_id``
|
6667
|
+
# where there can be any number of organizational units. For Azure, it has the
|
6668
|
+
# format of `mg/`management_group_id`/mg/`management_group_id`/subscription/`
|
6669
|
+
# subscription_id`/rg/`resource_group_name`` where there can be any number of
|
6670
|
+
# management groups.
|
6389
6671
|
# Corresponds to the JSON property `resourcePathString`
|
6390
6672
|
# @return [String]
|
6391
6673
|
attr_accessor :resource_path_string
|
@@ -6407,6 +6689,7 @@ module Google
|
|
6407
6689
|
# Update properties of this object
|
6408
6690
|
def update!(**args)
|
6409
6691
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
6692
|
+
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
6410
6693
|
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
6411
6694
|
@display_name = args[:display_name] if args.key?(:display_name)
|
6412
6695
|
@gcp_metadata = args[:gcp_metadata] if args.key?(:gcp_metadata)
|
@@ -6492,36 +6775,36 @@ module Google
|
|
6492
6775
|
# @return [String]
|
6493
6776
|
attr_accessor :description
|
6494
6777
|
|
6495
|
-
# Name for the resource value configuration
|
6778
|
+
# Identifier. Name for the resource value configuration
|
6496
6779
|
# Corresponds to the JSON property `name`
|
6497
6780
|
# @return [String]
|
6498
6781
|
attr_accessor :name
|
6499
6782
|
|
6500
|
-
# List of resource labels to search for, evaluated with AND
|
6783
|
+
# List of resource labels to search for, evaluated with `AND`. For example, "
|
6501
6784
|
# resource_labels_selector": `"key": "value", "env": "prod"` will match
|
6502
|
-
# resources with labels "key": "value" AND "env": "prod" https://cloud.google.
|
6785
|
+
# resources with labels "key": "value" `AND` "env": "prod" https://cloud.google.
|
6503
6786
|
# com/resource-manager/docs/creating-managing-labels
|
6504
6787
|
# Corresponds to the JSON property `resourceLabelsSelector`
|
6505
6788
|
# @return [Hash<String,String>]
|
6506
6789
|
attr_accessor :resource_labels_selector
|
6507
6790
|
|
6508
6791
|
# Apply resource_value only to resources that match resource_type. resource_type
|
6509
|
-
# will be checked with AND of other resources. For example, "storage.
|
6510
|
-
# com/Bucket" with resource_value "HIGH" will apply "HIGH" value only
|
6511
|
-
# storage.googleapis.com/Bucket" resources.
|
6792
|
+
# will be checked with `AND` of other resources. For example, "storage.
|
6793
|
+
# googleapis.com/Bucket" with resource_value "HIGH" will apply "HIGH" value only
|
6794
|
+
# to "storage.googleapis.com/Bucket" resources.
|
6512
6795
|
# Corresponds to the JSON property `resourceType`
|
6513
6796
|
# @return [String]
|
6514
6797
|
attr_accessor :resource_type
|
6515
6798
|
|
6516
6799
|
# Resource value level this expression represents Only required when there is no
|
6517
|
-
#
|
6800
|
+
# Sensitive Data Protection mapping in the request
|
6518
6801
|
# Corresponds to the JSON property `resourceValue`
|
6519
6802
|
# @return [String]
|
6520
6803
|
attr_accessor :resource_value
|
6521
6804
|
|
6522
6805
|
# Project or folder to scope this configuration to. For example, "project/456"
|
6523
|
-
# would apply this configuration only to resources in "project/456" scope
|
6524
|
-
# be checked with AND of other resources.
|
6806
|
+
# would apply this configuration only to resources in "project/456" scope and
|
6807
|
+
# will be checked with `AND` of other resources.
|
6525
6808
|
# Corresponds to the JSON property `scope`
|
6526
6809
|
# @return [String]
|
6527
6810
|
attr_accessor :scope
|
@@ -6533,9 +6816,9 @@ module Google
|
|
6533
6816
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SensitiveDataProtectionMapping]
|
6534
6817
|
attr_accessor :sensitive_data_protection_mapping
|
6535
6818
|
|
6536
|
-
#
|
6537
|
-
#
|
6538
|
-
#
|
6819
|
+
# Tag values combined with `AND` to check against. Values in the form "tagValues/
|
6820
|
+
# 123" Example: `[ "tagValues/123", "tagValues/456", "tagValues/789" ]` https://
|
6821
|
+
# cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing
|
6539
6822
|
# Corresponds to the JSON property `tagValues`
|
6540
6823
|
# @return [Array<String>]
|
6541
6824
|
attr_accessor :tag_values
|
@@ -6926,6 +7209,37 @@ module Google
|
|
6926
7209
|
end
|
6927
7210
|
end
|
6928
7211
|
|
7212
|
+
# Contains details about a group of security issues that, when the issues occur
|
7213
|
+
# together, represent a greater risk than when the issues occur independently. A
|
7214
|
+
# group of such issues is referred to as a toxic combination.
|
7215
|
+
class GoogleCloudSecuritycenterV2ToxicCombination
|
7216
|
+
include Google::Apis::Core::Hashable
|
7217
|
+
|
7218
|
+
# The [Attack exposure score](https://cloud.google.com/security-command-center/
|
7219
|
+
# docs/attack-exposure-learn#attack_exposure_scores) of this toxic combination.
|
7220
|
+
# The score is a measure of how much this toxic combination exposes one or more
|
7221
|
+
# high-value resources to potential attack.
|
7222
|
+
# Corresponds to the JSON property `attackExposureScore`
|
7223
|
+
# @return [Float]
|
7224
|
+
attr_accessor :attack_exposure_score
|
7225
|
+
|
7226
|
+
# List of resource names of findings associated with this toxic combination. For
|
7227
|
+
# example, `organizations/123/sources/456/findings/789`.
|
7228
|
+
# Corresponds to the JSON property `relatedFindings`
|
7229
|
+
# @return [Array<String>]
|
7230
|
+
attr_accessor :related_findings
|
7231
|
+
|
7232
|
+
def initialize(**args)
|
7233
|
+
update!(**args)
|
7234
|
+
end
|
7235
|
+
|
7236
|
+
# Update properties of this object
|
7237
|
+
def update!(**args)
|
7238
|
+
@attack_exposure_score = args[:attack_exposure_score] if args.key?(:attack_exposure_score)
|
7239
|
+
@related_findings = args[:related_findings] if args.key?(:related_findings)
|
7240
|
+
end
|
7241
|
+
end
|
7242
|
+
|
6929
7243
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
6930
7244
|
class GoogleCloudSecuritycenterV2Vulnerability
|
6931
7245
|
include Google::Apis::Core::Hashable
|
@@ -7198,6 +7512,32 @@ module Google
|
|
7198
7512
|
end
|
7199
7513
|
end
|
7200
7514
|
|
7515
|
+
# Contains details about groups of which this finding is a member. A group is a
|
7516
|
+
# collection of findings that are related in some way.
|
7517
|
+
class GroupMembership
|
7518
|
+
include Google::Apis::Core::Hashable
|
7519
|
+
|
7520
|
+
# ID of the group.
|
7521
|
+
# Corresponds to the JSON property `groupId`
|
7522
|
+
# @return [String]
|
7523
|
+
attr_accessor :group_id
|
7524
|
+
|
7525
|
+
# Type of group.
|
7526
|
+
# Corresponds to the JSON property `groupType`
|
7527
|
+
# @return [String]
|
7528
|
+
attr_accessor :group_type
|
7529
|
+
|
7530
|
+
def initialize(**args)
|
7531
|
+
update!(**args)
|
7532
|
+
end
|
7533
|
+
|
7534
|
+
# Update properties of this object
|
7535
|
+
def update!(**args)
|
7536
|
+
@group_id = args[:group_id] if args.key?(:group_id)
|
7537
|
+
@group_type = args[:group_type] if args.key?(:group_type)
|
7538
|
+
end
|
7539
|
+
end
|
7540
|
+
|
7201
7541
|
# Result containing the properties and count of a groupBy request.
|
7202
7542
|
class GroupResult
|
7203
7543
|
include Google::Apis::Core::Hashable
|
@@ -9013,6 +9353,37 @@ module Google
|
|
9013
9353
|
end
|
9014
9354
|
end
|
9015
9355
|
|
9356
|
+
# Contains details about a group of security issues that, when the issues occur
|
9357
|
+
# together, represent a greater risk than when the issues occur independently. A
|
9358
|
+
# group of such issues is referred to as a toxic combination.
|
9359
|
+
class ToxicCombination
|
9360
|
+
include Google::Apis::Core::Hashable
|
9361
|
+
|
9362
|
+
# The [Attack exposure score](https://cloud.google.com/security-command-center/
|
9363
|
+
# docs/attack-exposure-learn#attack_exposure_scores) of this toxic combination.
|
9364
|
+
# The score is a measure of how much this toxic combination exposes one or more
|
9365
|
+
# high-value resources to potential attack.
|
9366
|
+
# Corresponds to the JSON property `attackExposureScore`
|
9367
|
+
# @return [Float]
|
9368
|
+
attr_accessor :attack_exposure_score
|
9369
|
+
|
9370
|
+
# List of resource names of findings associated with this toxic combination. For
|
9371
|
+
# example, `organizations/123/sources/456/findings/789`.
|
9372
|
+
# Corresponds to the JSON property `relatedFindings`
|
9373
|
+
# @return [Array<String>]
|
9374
|
+
attr_accessor :related_findings
|
9375
|
+
|
9376
|
+
def initialize(**args)
|
9377
|
+
update!(**args)
|
9378
|
+
end
|
9379
|
+
|
9380
|
+
# Update properties of this object
|
9381
|
+
def update!(**args)
|
9382
|
+
@attack_exposure_score = args[:attack_exposure_score] if args.key?(:attack_exposure_score)
|
9383
|
+
@related_findings = args[:related_findings] if args.key?(:related_findings)
|
9384
|
+
end
|
9385
|
+
end
|
9386
|
+
|
9016
9387
|
# Refers to common vulnerability fields e.g. cve, cvss, cwe etc.
|
9017
9388
|
class Vulnerability
|
9018
9389
|
include Google::Apis::Core::Hashable
|
@@ -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.79.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240720"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -106,6 +106,30 @@ module Google
|
|
106
106
|
include Google::Apis::Core::JsonObjectSupport
|
107
107
|
end
|
108
108
|
|
109
|
+
class AzureManagementGroup
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
+
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
113
|
+
end
|
114
|
+
|
115
|
+
class AzureMetadata
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
+
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
119
|
+
end
|
120
|
+
|
121
|
+
class AzureResourceGroup
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
|
+
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
125
|
+
end
|
126
|
+
|
127
|
+
class AzureSubscription
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
109
133
|
class BackupDisasterRecovery
|
110
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
135
|
|
@@ -496,6 +520,30 @@ module Google
|
|
496
520
|
include Google::Apis::Core::JsonObjectSupport
|
497
521
|
end
|
498
522
|
|
523
|
+
class GoogleCloudSecuritycenterV2AzureManagementGroup
|
524
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
525
|
+
|
526
|
+
include Google::Apis::Core::JsonObjectSupport
|
527
|
+
end
|
528
|
+
|
529
|
+
class GoogleCloudSecuritycenterV2AzureMetadata
|
530
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
531
|
+
|
532
|
+
include Google::Apis::Core::JsonObjectSupport
|
533
|
+
end
|
534
|
+
|
535
|
+
class GoogleCloudSecuritycenterV2AzureResourceGroup
|
536
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
537
|
+
|
538
|
+
include Google::Apis::Core::JsonObjectSupport
|
539
|
+
end
|
540
|
+
|
541
|
+
class GoogleCloudSecuritycenterV2AzureSubscription
|
542
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
|
+
|
544
|
+
include Google::Apis::Core::JsonObjectSupport
|
545
|
+
end
|
546
|
+
|
499
547
|
class GoogleCloudSecuritycenterV2BackupDisasterRecovery
|
500
548
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
501
549
|
|
@@ -652,6 +700,12 @@ module Google
|
|
652
700
|
include Google::Apis::Core::JsonObjectSupport
|
653
701
|
end
|
654
702
|
|
703
|
+
class GoogleCloudSecuritycenterV2GroupMembership
|
704
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
705
|
+
|
706
|
+
include Google::Apis::Core::JsonObjectSupport
|
707
|
+
end
|
708
|
+
|
655
709
|
class GoogleCloudSecuritycenterV2IamBinding
|
656
710
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
657
711
|
|
@@ -868,6 +922,12 @@ module Google
|
|
868
922
|
include Google::Apis::Core::JsonObjectSupport
|
869
923
|
end
|
870
924
|
|
925
|
+
class GoogleCloudSecuritycenterV2ToxicCombination
|
926
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
927
|
+
|
928
|
+
include Google::Apis::Core::JsonObjectSupport
|
929
|
+
end
|
930
|
+
|
871
931
|
class GoogleCloudSecuritycenterV2Vulnerability
|
872
932
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
873
933
|
|
@@ -904,6 +964,12 @@ module Google
|
|
904
964
|
include Google::Apis::Core::JsonObjectSupport
|
905
965
|
end
|
906
966
|
|
967
|
+
class GroupMembership
|
968
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
969
|
+
|
970
|
+
include Google::Apis::Core::JsonObjectSupport
|
971
|
+
end
|
972
|
+
|
907
973
|
class GroupResult
|
908
974
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
909
975
|
|
@@ -1192,6 +1258,12 @@ module Google
|
|
1192
1258
|
include Google::Apis::Core::JsonObjectSupport
|
1193
1259
|
end
|
1194
1260
|
|
1261
|
+
class ToxicCombination
|
1262
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1263
|
+
|
1264
|
+
include Google::Apis::Core::JsonObjectSupport
|
1265
|
+
end
|
1266
|
+
|
1195
1267
|
class Vulnerability
|
1196
1268
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1197
1269
|
|
@@ -1359,6 +1431,41 @@ module Google
|
|
1359
1431
|
end
|
1360
1432
|
end
|
1361
1433
|
|
1434
|
+
class AzureManagementGroup
|
1435
|
+
# @private
|
1436
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1437
|
+
property :display_name, as: 'displayName'
|
1438
|
+
property :id, as: 'id'
|
1439
|
+
end
|
1440
|
+
end
|
1441
|
+
|
1442
|
+
class AzureMetadata
|
1443
|
+
# @private
|
1444
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1445
|
+
collection :management_groups, as: 'managementGroups', class: Google::Apis::SecuritycenterV1beta1::AzureManagementGroup, decorator: Google::Apis::SecuritycenterV1beta1::AzureManagementGroup::Representation
|
1446
|
+
|
1447
|
+
property :resource_group, as: 'resourceGroup', class: Google::Apis::SecuritycenterV1beta1::AzureResourceGroup, decorator: Google::Apis::SecuritycenterV1beta1::AzureResourceGroup::Representation
|
1448
|
+
|
1449
|
+
property :subscription, as: 'subscription', class: Google::Apis::SecuritycenterV1beta1::AzureSubscription, decorator: Google::Apis::SecuritycenterV1beta1::AzureSubscription::Representation
|
1450
|
+
|
1451
|
+
end
|
1452
|
+
end
|
1453
|
+
|
1454
|
+
class AzureResourceGroup
|
1455
|
+
# @private
|
1456
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1457
|
+
property :name, as: 'name'
|
1458
|
+
end
|
1459
|
+
end
|
1460
|
+
|
1461
|
+
class AzureSubscription
|
1462
|
+
# @private
|
1463
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1464
|
+
property :display_name, as: 'displayName'
|
1465
|
+
property :id, as: 'id'
|
1466
|
+
end
|
1467
|
+
end
|
1468
|
+
|
1362
1469
|
class BackupDisasterRecovery
|
1363
1470
|
# @private
|
1364
1471
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1652,6 +1759,8 @@ module Google
|
|
1652
1759
|
collection :files, as: 'files', class: Google::Apis::SecuritycenterV1beta1::File, decorator: Google::Apis::SecuritycenterV1beta1::File::Representation
|
1653
1760
|
|
1654
1761
|
property :finding_class, as: 'findingClass'
|
1762
|
+
collection :group_memberships, as: 'groupMemberships', class: Google::Apis::SecuritycenterV1beta1::GroupMembership, decorator: Google::Apis::SecuritycenterV1beta1::GroupMembership::Representation
|
1763
|
+
|
1655
1764
|
collection :iam_bindings, as: 'iamBindings', class: Google::Apis::SecuritycenterV1beta1::IamBinding, decorator: Google::Apis::SecuritycenterV1beta1::IamBinding::Representation
|
1656
1765
|
|
1657
1766
|
property :indicator, as: 'indicator', class: Google::Apis::SecuritycenterV1beta1::Indicator, decorator: Google::Apis::SecuritycenterV1beta1::Indicator::Representation
|
@@ -1688,6 +1797,8 @@ module Google
|
|
1688
1797
|
property :severity, as: 'severity'
|
1689
1798
|
hash :source_properties, as: 'sourceProperties'
|
1690
1799
|
property :state, as: 'state'
|
1800
|
+
property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1beta1::ToxicCombination, decorator: Google::Apis::SecuritycenterV1beta1::ToxicCombination::Representation
|
1801
|
+
|
1691
1802
|
property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1beta1::Vulnerability, decorator: Google::Apis::SecuritycenterV1beta1::Vulnerability::Representation
|
1692
1803
|
|
1693
1804
|
end
|
@@ -1858,6 +1969,8 @@ module Google
|
|
1858
1969
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1859
1970
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta1::AwsMetadata, decorator: Google::Apis::SecuritycenterV1beta1::AwsMetadata::Representation
|
1860
1971
|
|
1972
|
+
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1beta1::AzureMetadata, decorator: Google::Apis::SecuritycenterV1beta1::AzureMetadata::Representation
|
1973
|
+
|
1861
1974
|
property :cloud_provider, as: 'cloudProvider'
|
1862
1975
|
property :display_name, as: 'displayName'
|
1863
1976
|
collection :folders, as: 'folders', class: Google::Apis::SecuritycenterV1beta1::Folder, decorator: Google::Apis::SecuritycenterV1beta1::Folder::Representation
|
@@ -2137,6 +2250,41 @@ module Google
|
|
2137
2250
|
end
|
2138
2251
|
end
|
2139
2252
|
|
2253
|
+
class GoogleCloudSecuritycenterV2AzureManagementGroup
|
2254
|
+
# @private
|
2255
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2256
|
+
property :display_name, as: 'displayName'
|
2257
|
+
property :id, as: 'id'
|
2258
|
+
end
|
2259
|
+
end
|
2260
|
+
|
2261
|
+
class GoogleCloudSecuritycenterV2AzureMetadata
|
2262
|
+
# @private
|
2263
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2264
|
+
collection :management_groups, as: 'managementGroups', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureManagementGroup, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureManagementGroup::Representation
|
2265
|
+
|
2266
|
+
property :resource_group, as: 'resourceGroup', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureResourceGroup, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureResourceGroup::Representation
|
2267
|
+
|
2268
|
+
property :subscription, as: 'subscription', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureSubscription, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureSubscription::Representation
|
2269
|
+
|
2270
|
+
end
|
2271
|
+
end
|
2272
|
+
|
2273
|
+
class GoogleCloudSecuritycenterV2AzureResourceGroup
|
2274
|
+
# @private
|
2275
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2276
|
+
property :name, as: 'name'
|
2277
|
+
end
|
2278
|
+
end
|
2279
|
+
|
2280
|
+
class GoogleCloudSecuritycenterV2AzureSubscription
|
2281
|
+
# @private
|
2282
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2283
|
+
property :display_name, as: 'displayName'
|
2284
|
+
property :id, as: 'id'
|
2285
|
+
end
|
2286
|
+
end
|
2287
|
+
|
2140
2288
|
class GoogleCloudSecuritycenterV2BackupDisasterRecovery
|
2141
2289
|
# @private
|
2142
2290
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2434,6 +2582,8 @@ module Google
|
|
2434
2582
|
collection :files, as: 'files', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2File, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2File::Representation
|
2435
2583
|
|
2436
2584
|
property :finding_class, as: 'findingClass'
|
2585
|
+
collection :group_memberships, as: 'groupMemberships', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2GroupMembership, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2GroupMembership::Representation
|
2586
|
+
|
2437
2587
|
collection :iam_bindings, as: 'iamBindings', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IamBinding, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IamBinding::Representation
|
2438
2588
|
|
2439
2589
|
property :indicator, as: 'indicator', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Indicator, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Indicator::Representation
|
@@ -2470,6 +2620,8 @@ module Google
|
|
2470
2620
|
property :severity, as: 'severity'
|
2471
2621
|
hash :source_properties, as: 'sourceProperties'
|
2472
2622
|
property :state, as: 'state'
|
2623
|
+
property :toxic_combination, as: 'toxicCombination', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ToxicCombination, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2ToxicCombination::Representation
|
2624
|
+
|
2473
2625
|
property :vulnerability, as: 'vulnerability', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Vulnerability, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Vulnerability::Representation
|
2474
2626
|
|
2475
2627
|
end
|
@@ -2490,6 +2642,14 @@ module Google
|
|
2490
2642
|
end
|
2491
2643
|
end
|
2492
2644
|
|
2645
|
+
class GoogleCloudSecuritycenterV2GroupMembership
|
2646
|
+
# @private
|
2647
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2648
|
+
property :group_id, as: 'groupId'
|
2649
|
+
property :group_type, as: 'groupType'
|
2650
|
+
end
|
2651
|
+
end
|
2652
|
+
|
2493
2653
|
class GoogleCloudSecuritycenterV2IamBinding
|
2494
2654
|
# @private
|
2495
2655
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2742,6 +2902,8 @@ module Google
|
|
2742
2902
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2743
2903
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AwsMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AwsMetadata::Representation
|
2744
2904
|
|
2905
|
+
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2AzureMetadata::Representation
|
2906
|
+
|
2745
2907
|
property :cloud_provider, as: 'cloudProvider'
|
2746
2908
|
property :display_name, as: 'displayName'
|
2747
2909
|
property :gcp_metadata, as: 'gcpMetadata', class: Google::Apis::SecuritycenterV1beta1::GcpMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GcpMetadata::Representation
|
@@ -2879,6 +3041,14 @@ module Google
|
|
2879
3041
|
end
|
2880
3042
|
end
|
2881
3043
|
|
3044
|
+
class GoogleCloudSecuritycenterV2ToxicCombination
|
3045
|
+
# @private
|
3046
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3047
|
+
property :attack_exposure_score, as: 'attackExposureScore'
|
3048
|
+
collection :related_findings, as: 'relatedFindings'
|
3049
|
+
end
|
3050
|
+
end
|
3051
|
+
|
2882
3052
|
class GoogleCloudSecuritycenterV2Vulnerability
|
2883
3053
|
# @private
|
2884
3054
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2943,6 +3113,14 @@ module Google
|
|
2943
3113
|
end
|
2944
3114
|
end
|
2945
3115
|
|
3116
|
+
class GroupMembership
|
3117
|
+
# @private
|
3118
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3119
|
+
property :group_id, as: 'groupId'
|
3120
|
+
property :group_type, as: 'groupType'
|
3121
|
+
end
|
3122
|
+
end
|
3123
|
+
|
2946
3124
|
class GroupResult
|
2947
3125
|
# @private
|
2948
3126
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3420,6 +3598,14 @@ module Google
|
|
3420
3598
|
end
|
3421
3599
|
end
|
3422
3600
|
|
3601
|
+
class ToxicCombination
|
3602
|
+
# @private
|
3603
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3604
|
+
property :attack_exposure_score, as: 'attackExposureScore'
|
3605
|
+
collection :related_findings, as: 'relatedFindings'
|
3606
|
+
end
|
3607
|
+
end
|
3608
|
+
|
3423
3609
|
class Vulnerability
|
3424
3610
|
# @private
|
3425
3611
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.79.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-07-25 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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.79.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|