google-apis-securitycenter_v1 0.101.0 → 0.102.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: 82d1ed35c8fce71e219a2621bcf1cff2580f27bba6dfd3b2d0b2947ebf08212a
4
- data.tar.gz: 15bae746032020f8b2683f5c012a27281b46f5fd44d2629fd839013b4fd0141a
3
+ metadata.gz: 5270cac1d6b58c1c4509f79a4056769b622a7b52454bb5d0c391d74502785bfc
4
+ data.tar.gz: 3e9c9f7178b676a841f20e75ec37cb43b117b82c908ee91aca78bbd24f7f2ada
5
5
  SHA512:
6
- metadata.gz: 8ffae427ecd5a720b0cca80aa2c22c49b6f4b05ed54c81be6f08c412ba8c6bb80df3325ac2804bdddd8a0067914d696d92237001a797463f949718f0992918c3
7
- data.tar.gz: dd5df505d6cdd18ac9fc876c67153e1f7c67173b9d85ef85ed844fc6753d5997450279a4b16251993df1ecd53933e7a3e97789aff0a2041bcdcb21f056a8d5a4
6
+ metadata.gz: 6b6097d7f22a9ecf2d987ce08279ee29ba13432d46903511d4910340dcfb417659390d0ca4e623bcdf6c9715677dee65dcfc9564cd2c0cdacdf1d387c9ffc49d
7
+ data.tar.gz: a210dbad521ae89fffda11eb60e0020327e0230bb82a622df984169689fee918660b2ccb8a02995400c225a56d18250ab7a7963066f3261ce685d0f59a8d96b4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1
2
2
 
3
+ ### v0.102.0 (2025-06-22)
4
+
5
+ * Regenerated from discovery document revision 20250616
6
+
3
7
  ### v0.101.0 (2025-06-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20250609
@@ -1163,6 +1163,26 @@ module Google
1163
1163
  end
1164
1164
  end
1165
1165
 
1166
+ # The destination big query dataset to export findings to.
1167
+ class BigQueryDestination
1168
+ include Google::Apis::Core::Hashable
1169
+
1170
+ # Required. The relative resource name of the destination dataset, in the form
1171
+ # projects/`projectId`/datasets/`datasetId`.
1172
+ # Corresponds to the JSON property `dataset`
1173
+ # @return [String]
1174
+ attr_accessor :dataset
1175
+
1176
+ def initialize(**args)
1177
+ update!(**args)
1178
+ end
1179
+
1180
+ # Update properties of this object
1181
+ def update!(**args)
1182
+ @dataset = args[:dataset] if args.key?(:dataset)
1183
+ end
1184
+ end
1185
+
1166
1186
  # Associates `members`, or principals, with a `role`.
1167
1187
  class Binding
1168
1188
  include Google::Apis::Core::Hashable
@@ -2135,7 +2155,7 @@ module Google
2135
2155
  # @return [String]
2136
2156
  attr_accessor :display_name
2137
2157
 
2138
- # Resource name of dataset, e.g. projects/`project`/locations/`location`/
2158
+ # Resource name of the dataset, e.g. projects/`project`/locations/`location`/
2139
2159
  # datasets/2094040236064505856
2140
2160
  # Corresponds to the JSON property `name`
2141
2161
  # @return [String]
@@ -2538,6 +2558,44 @@ module Google
2538
2558
  end
2539
2559
  end
2540
2560
 
2561
+ # The LRO metadata for a ExportFindings request.
2562
+ class ExportFindingsMetadata
2563
+ include Google::Apis::Core::Hashable
2564
+
2565
+ # The destination big query dataset to export findings to.
2566
+ # Corresponds to the JSON property `bigQueryDestination`
2567
+ # @return [Google::Apis::SecuritycenterV1::BigQueryDestination]
2568
+ attr_accessor :big_query_destination
2569
+
2570
+ # Optional. Timestamp at which export was started
2571
+ # Corresponds to the JSON property `exportStartTime`
2572
+ # @return [String]
2573
+ attr_accessor :export_start_time
2574
+
2575
+ def initialize(**args)
2576
+ update!(**args)
2577
+ end
2578
+
2579
+ # Update properties of this object
2580
+ def update!(**args)
2581
+ @big_query_destination = args[:big_query_destination] if args.key?(:big_query_destination)
2582
+ @export_start_time = args[:export_start_time] if args.key?(:export_start_time)
2583
+ end
2584
+ end
2585
+
2586
+ # The response to a ExportFindings request. Contains the LRO information.
2587
+ class ExportFindingsResponse
2588
+ include Google::Apis::Core::Hashable
2589
+
2590
+ def initialize(**args)
2591
+ update!(**args)
2592
+ end
2593
+
2594
+ # Update properties of this object
2595
+ def update!(**args)
2596
+ end
2597
+ end
2598
+
2541
2599
  # Represents a textual expression in the Common Expression Language (CEL) syntax.
2542
2600
  # CEL is a C-like expression language. The syntax and semantics of CEL are
2543
2601
  # documented at https://github.com/google/cel-spec. Example (Comparison): title:
@@ -6159,13 +6217,13 @@ module Google
6159
6217
  # @return [String]
6160
6218
  attr_accessor :display_name
6161
6219
 
6162
- # Resource name of dataset, e.g. projects/`project`/locations/`location`/
6220
+ # Resource name of the dataset, e.g. projects/`project`/locations/`location`/
6163
6221
  # datasets/2094040236064505856
6164
6222
  # Corresponds to the JSON property `name`
6165
6223
  # @return [String]
6166
6224
  attr_accessor :name
6167
6225
 
6168
- # Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
6226
+ # Data source, such as a BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
6169
6227
  # gsod
6170
6228
  # Corresponds to the JSON property `source`
6171
6229
  # @return [String]
@@ -8432,12 +8490,12 @@ module Google
8432
8490
  class GoogleCloudSecuritycenterV2Pipeline
8433
8491
  include Google::Apis::Core::Hashable
8434
8492
 
8435
- # The user defined display name of pipeline, e.g. plants-classification
8493
+ # The user-defined display name of pipeline, e.g. plants-classification
8436
8494
  # Corresponds to the JSON property `displayName`
8437
8495
  # @return [String]
8438
8496
  attr_accessor :display_name
8439
8497
 
8440
- # Resource name of pipeline, e.g. projects/`project`/locations/`location`/
8498
+ # Resource name of the pipeline, e.g. projects/`project`/locations/`location`/
8441
8499
  # trainingPipelines/5253428229225578496
8442
8500
  # Corresponds to the JSON property `name`
8443
8501
  # @return [String]
@@ -11280,7 +11338,7 @@ module Google
11280
11338
  # @return [String]
11281
11339
  attr_accessor :display_name
11282
11340
 
11283
- # Resource name of pipeline, e.g. projects/`project`/locations/`location`/
11341
+ # Resource name of the pipeline, e.g. projects/`project`/locations/`location`/
11284
11342
  # trainingPipelines/5253428229225578496
11285
11343
  # Corresponds to the JSON property `name`
11286
11344
  # @return [String]
@@ -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.101.0"
19
+ GEM_VERSION = "0.102.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 = "20250609"
25
+ REVISION = "20250616"
26
26
  end
27
27
  end
28
28
  end
@@ -196,6 +196,12 @@ module Google
196
196
  include Google::Apis::Core::JsonObjectSupport
197
197
  end
198
198
 
199
+ class BigQueryDestination
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
199
205
  class Binding
200
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
207
 
@@ -400,6 +406,18 @@ module Google
400
406
  include Google::Apis::Core::JsonObjectSupport
401
407
  end
402
408
 
409
+ class ExportFindingsMetadata
410
+ class Representation < Google::Apis::Core::JsonRepresentation; end
411
+
412
+ include Google::Apis::Core::JsonObjectSupport
413
+ end
414
+
415
+ class ExportFindingsResponse
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
403
421
  class Expr
404
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
405
423
 
@@ -2175,6 +2193,13 @@ module Google
2175
2193
  end
2176
2194
  end
2177
2195
 
2196
+ class BigQueryDestination
2197
+ # @private
2198
+ class Representation < Google::Apis::Core::JsonRepresentation
2199
+ property :dataset, as: 'dataset'
2200
+ end
2201
+ end
2202
+
2178
2203
  class Binding
2179
2204
  # @private
2180
2205
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2516,6 +2541,21 @@ module Google
2516
2541
  end
2517
2542
  end
2518
2543
 
2544
+ class ExportFindingsMetadata
2545
+ # @private
2546
+ class Representation < Google::Apis::Core::JsonRepresentation
2547
+ property :big_query_destination, as: 'bigQueryDestination', class: Google::Apis::SecuritycenterV1::BigQueryDestination, decorator: Google::Apis::SecuritycenterV1::BigQueryDestination::Representation
2548
+
2549
+ property :export_start_time, as: 'exportStartTime'
2550
+ end
2551
+ end
2552
+
2553
+ class ExportFindingsResponse
2554
+ # @private
2555
+ class Representation < Google::Apis::Core::JsonRepresentation
2556
+ end
2557
+ end
2558
+
2519
2559
  class Expr
2520
2560
  # @private
2521
2561
  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.101.0
4
+ version: 0.102.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.101.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.102.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: