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: 670e55bc88555663dcce085b76a7a61289a6c965390fcbdc2f2cec7686ee0650
4
- data.tar.gz: ba92f8efa8ec500f11e2830b3f127c97800da8072de0889edfc58c52923a6729
3
+ metadata.gz: e87e8891953d353872edf86a4ffa0fc7809eda2dac6e3392ac4c4e7e17cb6910
4
+ data.tar.gz: 10db40f028abf3e75905a77ff5b9dd5cc3187c2dac72fb2b0febf669db273320
5
5
  SHA512:
6
- metadata.gz: 5bfde35a5b32e89eaf53c27199651fc52c5377f556fd77b537b5e3fcff31eebb14d5a2c324e55b0a65a2b3befb48e51177dc792f8ef92e023180d64559a7c9f2
7
- data.tar.gz: ab3dad8ef508e9c41269ed74714e9f72e3f114e77a3a17e28dbd39adf7f17c3accc7d48811d0a37fc34608a1f098c21dd8a55ad668d4f6158d47b3b844cd4e38
6
+ metadata.gz: 2876c047f8bc67035c5641ce37c338bfdfa591c1112b6f284f86fa1b4644da3214a1d7c1ef54dd1e909073b56d2edab41020f5d4a5655b3ccd0cdf301cc7f1e7
7
+ data.tar.gz: 555e86168fc0b8a8ba435609393820416b18210438f3c0456f27a26b04cf4c8a449e9596ffe192f93ed205c6b21fcbb50e3818a2ffe8670557a997da5b711e4c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.97.0 (2025-09-14)
4
+
5
+ * Regenerated from discovery document revision 20250905
6
+
3
7
  ### v0.96.0 (2025-08-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20250815
@@ -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`/findings/`
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`` + `folders/`folder_id`/sources/`source_id`/locations/`
6572
- # location_id`/findings/`finding_id`` + `projects/`project_id`/sources/`
6573
- # source_id`/findings/`finding_id`` + `projects/`project_id`/sources/`source_id`/
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.96.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 = "20250815"
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.96.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.96.0
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: