google-apis-securitycenter_v1beta1 0.96.0 → 0.97.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: e87e8891953d353872edf86a4ffa0fc7809eda2dac6e3392ac4c4e7e17cb6910
|
4
|
+
data.tar.gz: 10db40f028abf3e75905a77ff5b9dd5cc3187c2dac72fb2b0febf669db273320
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2876c047f8bc67035c5641ce37c338bfdfa591c1112b6f284f86fa1b4644da3214a1d7c1ef54dd1e909073b56d2edab41020f5d4a5655b3ccd0cdf301cc7f1e7
|
7
|
+
data.tar.gz: 555e86168fc0b8a8ba435609393820416b18210438f3c0456f27a26b04cf4c8a449e9596ffe192f93ed205c6b21fcbb50e3818a2ffe8670557a997da5b711e4c
|
data/CHANGELOG.md
CHANGED
@@ -6565,14 +6565,11 @@ module Google
|
|
6565
6565
|
attr_accessor :backup_disaster_recovery
|
6566
6566
|
|
6567
6567
|
# Output only. The canonical name of the finding. The following list shows some
|
6568
|
-
# examples: + `organizations/`organization_id`/sources/`source_id`/
|
6569
|
-
# finding_id`` + `organizations/`organization_id`/sources/`source_id`/locations/`
|
6568
|
+
# examples: + `organizations/`organization_id`/sources/`source_id`/locations/`
|
6570
6569
|
# location_id`/findings/`finding_id`` + `folders/`folder_id`/sources/`source_id`/
|
6571
|
-
# findings/`finding_id`` + `
|
6572
|
-
# location_id`/findings/`finding_id``
|
6573
|
-
#
|
6574
|
-
# locations/`location_id`/findings/`finding_id`` The prefix is the closest CRM
|
6575
|
-
# ancestor of the resource associated with the finding.
|
6570
|
+
# locations/`location_id`/findings/`finding_id`` + `projects/`project_id`/
|
6571
|
+
# sources/`source_id`/locations/`location_id`/findings/`finding_id`` The prefix
|
6572
|
+
# is the closest CRM ancestor of the resource associated with the finding.
|
6576
6573
|
# Corresponds to the JSON property `canonicalName`
|
6577
6574
|
# @return [String]
|
6578
6575
|
attr_accessor :canonical_name
|
@@ -7534,6 +7531,11 @@ module Google
|
|
7534
7531
|
class GoogleCloudSecuritycenterV2IssueResource
|
7535
7532
|
include Google::Apis::Core::Hashable
|
7536
7533
|
|
7534
|
+
# The AppHub application associated with the resource, if any.
|
7535
|
+
# Corresponds to the JSON property `application`
|
7536
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplication]
|
7537
|
+
attr_accessor :application
|
7538
|
+
|
7537
7539
|
# The AWS metadata of a resource associated with an issue.
|
7538
7540
|
# Corresponds to the JSON property `awsMetadata`
|
7539
7541
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata]
|
@@ -7576,6 +7578,7 @@ module Google
|
|
7576
7578
|
|
7577
7579
|
# Update properties of this object
|
7578
7580
|
def update!(**args)
|
7581
|
+
@application = args[:application] if args.key?(:application)
|
7579
7582
|
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
7580
7583
|
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
7581
7584
|
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
@@ -7586,6 +7589,26 @@ module Google
|
|
7586
7589
|
end
|
7587
7590
|
end
|
7588
7591
|
|
7592
|
+
# The AppHub application associated with the resource, if any.
|
7593
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
7594
|
+
include Google::Apis::Core::Hashable
|
7595
|
+
|
7596
|
+
# The resource name of an Application. Format: `projects/`host-project-id`/
|
7597
|
+
# locations/`location`/applications/`application-id``
|
7598
|
+
# Corresponds to the JSON property `name`
|
7599
|
+
# @return [String]
|
7600
|
+
attr_accessor :name
|
7601
|
+
|
7602
|
+
def initialize(**args)
|
7603
|
+
update!(**args)
|
7604
|
+
end
|
7605
|
+
|
7606
|
+
# Update properties of this object
|
7607
|
+
def update!(**args)
|
7608
|
+
@name = args[:name] if args.key?(:name)
|
7609
|
+
end
|
7610
|
+
end
|
7611
|
+
|
7589
7612
|
# The AWS metadata of a resource associated with an issue.
|
7590
7613
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
7591
7614
|
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.97.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
|
@@ -1000,6 +1000,12 @@ module Google
|
|
1000
1000
|
include Google::Apis::Core::JsonObjectSupport
|
1001
1001
|
end
|
1002
1002
|
|
1003
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
1004
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1005
|
+
|
1006
|
+
include Google::Apis::Core::JsonObjectSupport
|
1007
|
+
end
|
1008
|
+
|
1003
1009
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
1004
1010
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1005
1011
|
|
@@ -3603,6 +3609,8 @@ module Google
|
|
3603
3609
|
class GoogleCloudSecuritycenterV2IssueResource
|
3604
3610
|
# @private
|
3605
3611
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3612
|
+
property :application, as: 'application', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplication, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplication::Representation
|
3613
|
+
|
3606
3614
|
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata::Representation
|
3607
3615
|
|
3608
3616
|
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata::Representation
|
@@ -3616,6 +3624,13 @@ module Google
|
|
3616
3624
|
end
|
3617
3625
|
end
|
3618
3626
|
|
3627
|
+
class GoogleCloudSecuritycenterV2IssueResourceApplication
|
3628
|
+
# @private
|
3629
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3630
|
+
property :name, as: 'name'
|
3631
|
+
end
|
3632
|
+
end
|
3633
|
+
|
3619
3634
|
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
3620
3635
|
# @private
|
3621
3636
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.97.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.97.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|