google-apis-securitycenter_v1 0.101.0 → 0.103.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: ff6c695b00e55fd3725805daf656f8febacc55631dcbb6728f764e9a727093a6
|
4
|
+
data.tar.gz: 4edababde4624a2fb35c253159196a6b20d6ebbcf7a84d12e40a17aba2b27e09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8892ae764193614b209b5d40cd1b5462a350ae42e75d07aaf334fc8685ec3ae0495d1552f2ef16266697f3db44d246bae453d88c2a689338d7a98767a6d98032
|
7
|
+
data.tar.gz: a3820ec697c425b5617915bc17da90b639d62de30e8bda40bacfac91426ec3d424001b459031e6049de240cc7c8236a2092ca1a3a908fb325e6e4e0dbfd23a6a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1
|
2
2
|
|
3
|
+
### v0.103.0 (2025-07-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250625
|
6
|
+
|
7
|
+
### v0.102.0 (2025-06-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250616
|
10
|
+
|
3
11
|
### v0.101.0 (2025-06-15)
|
4
12
|
|
5
13
|
* 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
|
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]
|
@@ -8612,6 +8670,12 @@ module Google
|
|
8612
8670
|
# @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2File]
|
8613
8671
|
attr_accessor :script
|
8614
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
|
+
|
8615
8679
|
def initialize(**args)
|
8616
8680
|
update!(**args)
|
8617
8681
|
end
|
@@ -8628,6 +8692,7 @@ module Google
|
|
8628
8692
|
@parent_pid = args[:parent_pid] if args.key?(:parent_pid)
|
8629
8693
|
@pid = args[:pid] if args.key?(:pid)
|
8630
8694
|
@script = args[:script] if args.key?(:script)
|
8695
|
+
@user_id = args[:user_id] if args.key?(:user_id)
|
8631
8696
|
end
|
8632
8697
|
end
|
8633
8698
|
|
@@ -11280,7 +11345,7 @@ module Google
|
|
11280
11345
|
# @return [String]
|
11281
11346
|
attr_accessor :display_name
|
11282
11347
|
|
11283
|
-
# Resource name of pipeline, e.g. projects/`project`/locations/`location`/
|
11348
|
+
# Resource name of the pipeline, e.g. projects/`project`/locations/`location`/
|
11284
11349
|
# trainingPipelines/5253428229225578496
|
11285
11350
|
# Corresponds to the JSON property `name`
|
11286
11351
|
# @return [String]
|
@@ -11575,6 +11640,12 @@ module Google
|
|
11575
11640
|
# @return [Google::Apis::SecuritycenterV1::File]
|
11576
11641
|
attr_accessor :script
|
11577
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
|
+
|
11578
11649
|
def initialize(**args)
|
11579
11650
|
update!(**args)
|
11580
11651
|
end
|
@@ -11591,6 +11662,7 @@ module Google
|
|
11591
11662
|
@parent_pid = args[:parent_pid] if args.key?(:parent_pid)
|
11592
11663
|
@pid = args[:pid] if args.key?(:pid)
|
11593
11664
|
@script = args[:script] if args.key?(:script)
|
11665
|
+
@user_id = args[:user_id] if args.key?(:user_id)
|
11594
11666
|
end
|
11595
11667
|
end
|
11596
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.
|
19
|
+
GEM_VERSION = "0.103.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 = "20250625"
|
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
|
@@ -4072,6 +4112,7 @@ module Google
|
|
4072
4112
|
property :pid, :numeric_string => true, as: 'pid'
|
4073
4113
|
property :script, as: 'script', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2File, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2File::Representation
|
4074
4114
|
|
4115
|
+
property :user_id, :numeric_string => true, as: 'userId'
|
4075
4116
|
end
|
4076
4117
|
end
|
4077
4118
|
|
@@ -4857,6 +4898,7 @@ module Google
|
|
4857
4898
|
property :pid, :numeric_string => true, as: 'pid'
|
4858
4899
|
property :script, as: 'script', class: Google::Apis::SecuritycenterV1::File, decorator: Google::Apis::SecuritycenterV1::File::Representation
|
4859
4900
|
|
4901
|
+
property :user_id, :numeric_string => true, as: 'userId'
|
4860
4902
|
end
|
4861
4903
|
end
|
4862
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.
|
4
|
+
version: 0.103.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.103.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:
|