google-apis-securitycenter_v1 0.107.0 → 0.108.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: 563382c162e32c96dff6596fbfbb45690557464ef05ec9a3bd9adee13c5ab2f0
|
4
|
+
data.tar.gz: 6f82767ff766fc05cff2ddd57bc25c1b6a881fa9bf7465123cef8e6226cdc428
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6cdbc3f3c31dae9c7a4dddc992b585b3cb3a1928fb1e13be370c342e5a60905021b83e7b8fc25cb168d50523aeb0fe2bf9d792c6d72d98e94a6dbd0c48c54b3
|
7
|
+
data.tar.gz: e5d0f45fcdc0678e608d1ee267317ad91054b61f0d75f2359b2b94bf3039226c72e6ea395e8bce64bea57210b7e42f5f9a6c8247366ede8f4516ce259edcf7b0
|
data/CHANGELOG.md
CHANGED
@@ -6915,14 +6915,11 @@ module Google
|
|
6915
6915
|
attr_accessor :backup_disaster_recovery
|
6916
6916
|
|
6917
6917
|
# Output only. The canonical name of the finding. The following list shows some
|
6918
|
-
# examples: + `organizations/`organization_id`/sources/`source_id`/
|
6919
|
-
# finding_id`` + `organizations/`organization_id`/sources/`source_id`/locations/`
|
6918
|
+
# examples: + `organizations/`organization_id`/sources/`source_id`/locations/`
|
6920
6919
|
# location_id`/findings/`finding_id`` + `folders/`folder_id`/sources/`source_id`/
|
6921
|
-
# findings/`finding_id`` + `
|
6922
|
-
# location_id`/findings/`finding_id``
|
6923
|
-
#
|
6924
|
-
# locations/`location_id`/findings/`finding_id`` The prefix is the closest CRM
|
6925
|
-
# ancestor of the resource associated with the finding.
|
6920
|
+
# locations/`location_id`/findings/`finding_id`` + `projects/`project_id`/
|
6921
|
+
# sources/`source_id`/locations/`location_id`/findings/`finding_id`` The prefix
|
6922
|
+
# is the closest CRM ancestor of the resource associated with the finding.
|
6926
6923
|
# Corresponds to the JSON property `canonicalName`
|
6927
6924
|
# @return [String]
|
6928
6925
|
attr_accessor :canonical_name
|
@@ -7884,6 +7881,11 @@ module Google
|
|
7884
7881
|
class GoogleCloudSecuritycenterV2IssueResource
|
7885
7882
|
include Google::Apis::Core::Hashable
|
7886
7883
|
|
7884
|
+
# The AppHub application associated with the resource, if any.
|
7885
|
+
# Corresponds to the JSON property `application`
|
7886
|
+
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplication]
|
7887
|
+
attr_accessor :application
|
7888
|
+
|
7887
7889
|
# The AWS metadata of a resource associated with an issue.
|
7888
7890
|
# Corresponds to the JSON property `awsMetadata`
|
7889
7891
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata]
|
@@ -7926,6 +7928,7 @@ module Google
|
|
7926
7928
|
|
7927
7929
|
# Update properties of this object
|
7928
7930
|
def update!(**args)
|
7931
|
+
@application = args[:application] if args.key?(:application)
|
7929
7932
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
7930
7933
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
7931
7934
|
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
@@ -7936,6 +7939,26 @@ module Google
|
|
7936
7939
|
end
|
7937
7940
|
end
|
7938
7941
|
|
7942
|
+
# The AppHub application associated with the resource, if any.
|
7943
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
7944
|
+
include Google::Apis::Core::Hashable
|
7945
|
+
|
7946
|
+
# The resource name of an Application. Format: `projects/`host-project-id`/
|
7947
|
+
# locations/`location`/applications/`application-id``
|
7948
|
+
# Corresponds to the JSON property `name`
|
7949
|
+
# @return [String]
|
7950
|
+
attr_accessor :name
|
7951
|
+
|
7952
|
+
def initialize(**args)
|
7953
|
+
update!(**args)
|
7954
|
+
end
|
7955
|
+
|
7956
|
+
# Update properties of this object
|
7957
|
+
def update!(**args)
|
7958
|
+
@name = args[:name] if args.key?(:name)
|
7959
|
+
end
|
7960
|
+
end
|
7961
|
+
|
7939
7962
|
# The AWS metadata of a resource associated with an issue.
|
7940
7963
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
7941
7964
|
include Google::Apis::Core::Hashable
|
@@ -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.108.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 = "20250905"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1054,6 +1054,12 @@ module Google
|
|
1054
1054
|
include Google::Apis::Core::JsonObjectSupport
|
1055
1055
|
end
|
1056
1056
|
|
1057
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
1058
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1059
|
+
|
1060
|
+
include Google::Apis::Core::JsonObjectSupport
|
1061
|
+
end
|
1062
|
+
|
1057
1063
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
1058
1064
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1059
1065
|
|
@@ -3931,6 +3937,8 @@ module Google
|
|
3931
3937
|
class GoogleCloudSecuritycenterV2IssueResource
|
3932
3938
|
# @private
|
3933
3939
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3940
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplication, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplication::Representation
|
3941
|
+
|
3934
3942
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata::Representation
|
3935
3943
|
|
3936
3944
|
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata::Representation
|
@@ -3944,6 +3952,13 @@ module Google
|
|
3944
3952
|
end
|
3945
3953
|
end
|
3946
3954
|
|
3955
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
3956
|
+
# @private
|
3957
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3958
|
+
property :name, as: 'name'
|
3959
|
+
end
|
3960
|
+
end
|
3961
|
+
|
3947
3962
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
3948
3963
|
# @private
|
3949
3964
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.108.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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.108.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|