google-apis-securitycenter_v1 0.102.0 → 0.104.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: 5270cac1d6b58c1c4509f79a4056769b622a7b52454bb5d0c391d74502785bfc
4
- data.tar.gz: 3e9c9f7178b676a841f20e75ec37cb43b117b82c908ee91aca78bbd24f7f2ada
3
+ metadata.gz: 6355648e1eeaf4bc423a1c880dca8aa3981c8e8b5a283e41015190d57c5f15b9
4
+ data.tar.gz: f5f03249dc7ed01f88b1318c8fef06e9e23802ba30a10cc32cc84f61b062ff26
5
5
  SHA512:
6
- metadata.gz: 6b6097d7f22a9ecf2d987ce08279ee29ba13432d46903511d4910340dcfb417659390d0ca4e623bcdf6c9715677dee65dcfc9564cd2c0cdacdf1d387c9ffc49d
7
- data.tar.gz: a210dbad521ae89fffda11eb60e0020327e0230bb82a622df984169689fee918660b2ccb8a02995400c225a56d18250ab7a7963066f3261ce685d0f59a8d96b4
6
+ metadata.gz: ac729b2357326d2405f24dd5aac033ef1f4aca6093bea2b9ea91b88967f7e4cad8feecf740332d09986ca9b842825b144aab58197428e04ea8f40576a8cf7bb2
7
+ data.tar.gz: 2409485e9e58eea42e921764255deb8e834d0c69dc4c965d107dd91a7caf9476a5dcb5648272fa8bd77fbeca788b71d5d7ae35391c770cc1a5de4aee7c26f088
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-securitycenter_v1
2
2
 
3
+ ### v0.104.0 (2025-07-13)
4
+
5
+ * Regenerated from discovery document revision 20250707
6
+
7
+ ### v0.103.0 (2025-07-06)
8
+
9
+ * Regenerated from discovery document revision 20250625
10
+
3
11
  ### v0.102.0 (2025-06-22)
4
12
 
5
13
  * Regenerated from discovery document revision 20250616
@@ -3217,8 +3217,8 @@ module Google
3217
3217
  end
3218
3218
  end
3219
3219
 
3220
- # GCP metadata associated with the resource, only applicable if the finding's
3221
- # cloud provider is Google Cloud Platform.
3220
+ # Google Cloud metadata associated with the resource. Only applicable if the
3221
+ # finding's cloud provider is Google Cloud.
3222
3222
  class GcpMetadata
3223
3223
  include Google::Apis::Core::Hashable
3224
3224
 
@@ -8670,6 +8670,12 @@ module Google
8670
8670
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2File]
8671
8671
  attr_accessor :script
8672
8672
 
8673
+ # The ID of the user that executed the process. E.g. If this is the root user
8674
+ # this will always be 0.
8675
+ # Corresponds to the JSON property `userId`
8676
+ # @return [Fixnum]
8677
+ attr_accessor :user_id
8678
+
8673
8679
  def initialize(**args)
8674
8680
  update!(**args)
8675
8681
  end
@@ -8686,6 +8692,7 @@ module Google
8686
8692
  @parent_pid = args[:parent_pid] if args.key?(:parent_pid)
8687
8693
  @pid = args[:pid] if args.key?(:pid)
8688
8694
  @script = args[:script] if args.key?(:script)
8695
+ @user_id = args[:user_id] if args.key?(:user_id)
8689
8696
  end
8690
8697
  end
8691
8698
 
@@ -8811,8 +8818,8 @@ module Google
8811
8818
  # @return [String]
8812
8819
  attr_accessor :display_name
8813
8820
 
8814
- # GCP metadata associated with the resource, only applicable if the finding's
8815
- # cloud provider is Google Cloud Platform.
8821
+ # Google Cloud metadata associated with the resource. Only applicable if the
8822
+ # finding's cloud provider is Google Cloud.
8816
8823
  # Corresponds to the JSON property `gcpMetadata`
8817
8824
  # @return [Google::Apis::SecuritycenterV1::GcpMetadata]
8818
8825
  attr_accessor :gcp_metadata
@@ -11633,6 +11640,12 @@ module Google
11633
11640
  # @return [Google::Apis::SecuritycenterV1::File]
11634
11641
  attr_accessor :script
11635
11642
 
11643
+ # The ID of the user that executed the process. E.g. If this is the root user
11644
+ # this will always be 0.
11645
+ # Corresponds to the JSON property `userId`
11646
+ # @return [Fixnum]
11647
+ attr_accessor :user_id
11648
+
11636
11649
  def initialize(**args)
11637
11650
  update!(**args)
11638
11651
  end
@@ -11649,6 +11662,7 @@ module Google
11649
11662
  @parent_pid = args[:parent_pid] if args.key?(:parent_pid)
11650
11663
  @pid = args[:pid] if args.key?(:pid)
11651
11664
  @script = args[:script] if args.key?(:script)
11665
+ @user_id = args[:user_id] if args.key?(:user_id)
11652
11666
  end
11653
11667
  end
11654
11668
 
@@ -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.102.0"
19
+ GEM_VERSION = "0.104.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 = "20250616"
25
+ REVISION = "20250707"
26
26
  end
27
27
  end
28
28
  end
@@ -4112,6 +4112,7 @@ module Google
4112
4112
  property :pid, :numeric_string => true, as: 'pid'
4113
4113
  property :script, as: 'script', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2File, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2File::Representation
4114
4114
 
4115
+ property :user_id, :numeric_string => true, as: 'userId'
4115
4116
  end
4116
4117
  end
4117
4118
 
@@ -4897,6 +4898,7 @@ module Google
4897
4898
  property :pid, :numeric_string => true, as: 'pid'
4898
4899
  property :script, as: 'script', class: Google::Apis::SecuritycenterV1::File, decorator: Google::Apis::SecuritycenterV1::File::Representation
4899
4900
 
4901
+ property :user_id, :numeric_string => true, as: 'userId'
4900
4902
  end
4901
4903
  end
4902
4904
 
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.102.0
4
+ version: 0.104.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.102.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.104.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: