google-apis-securitycenter_v1beta1 0.91.0 → 0.93.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: c6d4d014fe4ff5a51dc311b6e385effb9c4f509a39adf386bd8f3806cfabe064
|
4
|
+
data.tar.gz: 26bfc48cf1f6dc58aa4cfe9933e9b0227abee346751bb1c6be545dae84eb6967
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bff70b884c0462e312301be25c39339121ee3749eb886f50a61026a19164aa5533ff525b95f3f55a68c7d33c156cf232df8b84401d8d204cc4a7a8bcd634accd
|
7
|
+
data.tar.gz: f2fb8d563826ac7f807a49f81cc571ba30b0e3e415be7e962d6e0f8878d589b726a4be3456aa97e280a5e7b8ef5e066e3cdf978277cb8b87a19f7f36e3ca51de
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta1
|
2
2
|
|
3
|
+
### v0.93.0 (2025-07-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250625
|
6
|
+
|
7
|
+
### v0.92.0 (2025-06-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250616
|
10
|
+
|
3
11
|
### v0.91.0 (2025-06-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250609
|
@@ -949,6 +949,26 @@ module Google
|
|
949
949
|
end
|
950
950
|
end
|
951
951
|
|
952
|
+
# The destination big query dataset to export findings to.
|
953
|
+
class BigQueryDestination
|
954
|
+
include Google::Apis::Core::Hashable
|
955
|
+
|
956
|
+
# Required. The relative resource name of the destination dataset, in the form
|
957
|
+
# projects/`projectId`/datasets/`datasetId`.
|
958
|
+
# Corresponds to the JSON property `dataset`
|
959
|
+
# @return [String]
|
960
|
+
attr_accessor :dataset
|
961
|
+
|
962
|
+
def initialize(**args)
|
963
|
+
update!(**args)
|
964
|
+
end
|
965
|
+
|
966
|
+
# Update properties of this object
|
967
|
+
def update!(**args)
|
968
|
+
@dataset = args[:dataset] if args.key?(:dataset)
|
969
|
+
end
|
970
|
+
end
|
971
|
+
|
952
972
|
# Associates `members`, or principals, with a `role`.
|
953
973
|
class Binding
|
954
974
|
include Google::Apis::Core::Hashable
|
@@ -1805,7 +1825,7 @@ module Google
|
|
1805
1825
|
# @return [String]
|
1806
1826
|
attr_accessor :display_name
|
1807
1827
|
|
1808
|
-
# Resource name of dataset, e.g. projects/`project`/locations/`location`/
|
1828
|
+
# Resource name of the dataset, e.g. projects/`project`/locations/`location`/
|
1809
1829
|
# datasets/2094040236064505856
|
1810
1830
|
# Corresponds to the JSON property `name`
|
1811
1831
|
# @return [String]
|
@@ -2055,6 +2075,44 @@ module Google
|
|
2055
2075
|
end
|
2056
2076
|
end
|
2057
2077
|
|
2078
|
+
# The LRO metadata for a ExportFindings request.
|
2079
|
+
class ExportFindingsMetadata
|
2080
|
+
include Google::Apis::Core::Hashable
|
2081
|
+
|
2082
|
+
# The destination big query dataset to export findings to.
|
2083
|
+
# Corresponds to the JSON property `bigQueryDestination`
|
2084
|
+
# @return [Google::Apis::SecuritycenterV1beta1::BigQueryDestination]
|
2085
|
+
attr_accessor :big_query_destination
|
2086
|
+
|
2087
|
+
# Optional. Timestamp at which export was started
|
2088
|
+
# Corresponds to the JSON property `exportStartTime`
|
2089
|
+
# @return [String]
|
2090
|
+
attr_accessor :export_start_time
|
2091
|
+
|
2092
|
+
def initialize(**args)
|
2093
|
+
update!(**args)
|
2094
|
+
end
|
2095
|
+
|
2096
|
+
# Update properties of this object
|
2097
|
+
def update!(**args)
|
2098
|
+
@big_query_destination = args[:big_query_destination] if args.key?(:big_query_destination)
|
2099
|
+
@export_start_time = args[:export_start_time] if args.key?(:export_start_time)
|
2100
|
+
end
|
2101
|
+
end
|
2102
|
+
|
2103
|
+
# The response to a ExportFindings request. Contains the LRO information.
|
2104
|
+
class ExportFindingsResponse
|
2105
|
+
include Google::Apis::Core::Hashable
|
2106
|
+
|
2107
|
+
def initialize(**args)
|
2108
|
+
update!(**args)
|
2109
|
+
end
|
2110
|
+
|
2111
|
+
# Update properties of this object
|
2112
|
+
def update!(**args)
|
2113
|
+
end
|
2114
|
+
end
|
2115
|
+
|
2058
2116
|
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
2059
2117
|
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
2060
2118
|
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
@@ -5809,13 +5867,13 @@ module Google
|
|
5809
5867
|
# @return [String]
|
5810
5868
|
attr_accessor :display_name
|
5811
5869
|
|
5812
|
-
# Resource name of dataset, e.g. projects/`project`/locations/`location`/
|
5870
|
+
# Resource name of the dataset, e.g. projects/`project`/locations/`location`/
|
5813
5871
|
# datasets/2094040236064505856
|
5814
5872
|
# Corresponds to the JSON property `name`
|
5815
5873
|
# @return [String]
|
5816
5874
|
attr_accessor :name
|
5817
5875
|
|
5818
|
-
# Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
|
5876
|
+
# Data source, such as a BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
|
5819
5877
|
# gsod
|
5820
5878
|
# Corresponds to the JSON property `source`
|
5821
5879
|
# @return [String]
|
@@ -8082,12 +8140,12 @@ module Google
|
|
8082
8140
|
class GoogleCloudSecuritycenterV2Pipeline
|
8083
8141
|
include Google::Apis::Core::Hashable
|
8084
8142
|
|
8085
|
-
# The user
|
8143
|
+
# The user-defined display name of pipeline, e.g. plants-classification
|
8086
8144
|
# Corresponds to the JSON property `displayName`
|
8087
8145
|
# @return [String]
|
8088
8146
|
attr_accessor :display_name
|
8089
8147
|
|
8090
|
-
# Resource name of pipeline, e.g. projects/`project`/locations/`location`/
|
8148
|
+
# Resource name of the pipeline, e.g. projects/`project`/locations/`location`/
|
8091
8149
|
# trainingPipelines/5253428229225578496
|
8092
8150
|
# Corresponds to the JSON property `name`
|
8093
8151
|
# @return [String]
|
@@ -8262,6 +8320,12 @@ module Google
|
|
8262
8320
|
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2File]
|
8263
8321
|
attr_accessor :script
|
8264
8322
|
|
8323
|
+
# The ID of the user that executed the process. E.g. If this is the root user
|
8324
|
+
# this will always be 0.
|
8325
|
+
# Corresponds to the JSON property `userId`
|
8326
|
+
# @return [Fixnum]
|
8327
|
+
attr_accessor :user_id
|
8328
|
+
|
8265
8329
|
def initialize(**args)
|
8266
8330
|
update!(**args)
|
8267
8331
|
end
|
@@ -8278,6 +8342,7 @@ module Google
|
|
8278
8342
|
@parent_pid = args[:parent_pid] if args.key?(:parent_pid)
|
8279
8343
|
@pid = args[:pid] if args.key?(:pid)
|
8280
8344
|
@script = args[:script] if args.key?(:script)
|
8345
|
+
@user_id = args[:user_id] if args.key?(:user_id)
|
8281
8346
|
end
|
8282
8347
|
end
|
8283
8348
|
|
@@ -10392,7 +10457,7 @@ module Google
|
|
10392
10457
|
# @return [String]
|
10393
10458
|
attr_accessor :display_name
|
10394
10459
|
|
10395
|
-
# Resource name of pipeline, e.g. projects/`project`/locations/`location`/
|
10460
|
+
# Resource name of the pipeline, e.g. projects/`project`/locations/`location`/
|
10396
10461
|
# trainingPipelines/5253428229225578496
|
10397
10462
|
# Corresponds to the JSON property `name`
|
10398
10463
|
# @return [String]
|
@@ -10662,6 +10727,12 @@ module Google
|
|
10662
10727
|
# @return [Google::Apis::SecuritycenterV1beta1::File]
|
10663
10728
|
attr_accessor :script
|
10664
10729
|
|
10730
|
+
# The ID of the user that executed the process. E.g. If this is the root user
|
10731
|
+
# this will always be 0.
|
10732
|
+
# Corresponds to the JSON property `userId`
|
10733
|
+
# @return [Fixnum]
|
10734
|
+
attr_accessor :user_id
|
10735
|
+
|
10665
10736
|
def initialize(**args)
|
10666
10737
|
update!(**args)
|
10667
10738
|
end
|
@@ -10678,6 +10749,7 @@ module Google
|
|
10678
10749
|
@parent_pid = args[:parent_pid] if args.key?(:parent_pid)
|
10679
10750
|
@pid = args[:pid] if args.key?(:pid)
|
10680
10751
|
@script = args[:script] if args.key?(:script)
|
10752
|
+
@user_id = args[:user_id] if args.key?(:user_id)
|
10681
10753
|
end
|
10682
10754
|
end
|
10683
10755
|
|
@@ -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.93.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
|
@@ -160,6 +160,12 @@ module Google
|
|
160
160
|
include Google::Apis::Core::JsonObjectSupport
|
161
161
|
end
|
162
162
|
|
163
|
+
class BigQueryDestination
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
+
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
167
|
+
end
|
168
|
+
|
163
169
|
class Binding
|
164
170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
171
|
|
@@ -334,6 +340,18 @@ module Google
|
|
334
340
|
include Google::Apis::Core::JsonObjectSupport
|
335
341
|
end
|
336
342
|
|
343
|
+
class ExportFindingsMetadata
|
344
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
345
|
+
|
346
|
+
include Google::Apis::Core::JsonObjectSupport
|
347
|
+
end
|
348
|
+
|
349
|
+
class ExportFindingsResponse
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
+
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
353
|
+
end
|
354
|
+
|
337
355
|
class Expr
|
338
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
357
|
|
@@ -1883,6 +1901,13 @@ module Google
|
|
1883
1901
|
end
|
1884
1902
|
end
|
1885
1903
|
|
1904
|
+
class BigQueryDestination
|
1905
|
+
# @private
|
1906
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1907
|
+
property :dataset, as: 'dataset'
|
1908
|
+
end
|
1909
|
+
end
|
1910
|
+
|
1886
1911
|
class Binding
|
1887
1912
|
# @private
|
1888
1913
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2163,6 +2188,21 @@ module Google
|
|
2163
2188
|
end
|
2164
2189
|
end
|
2165
2190
|
|
2191
|
+
class ExportFindingsMetadata
|
2192
|
+
# @private
|
2193
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2194
|
+
property :big_query_destination, as: 'bigQueryDestination', class: Google::Apis::SecuritycenterV1beta1::BigQueryDestination, decorator: Google::Apis::SecuritycenterV1beta1::BigQueryDestination::Representation
|
2195
|
+
|
2196
|
+
property :export_start_time, as: 'exportStartTime'
|
2197
|
+
end
|
2198
|
+
end
|
2199
|
+
|
2200
|
+
class ExportFindingsResponse
|
2201
|
+
# @private
|
2202
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2203
|
+
end
|
2204
|
+
end
|
2205
|
+
|
2166
2206
|
class Expr
|
2167
2207
|
# @private
|
2168
2208
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3744,6 +3784,7 @@ module Google
|
|
3744
3784
|
property :pid, :numeric_string => true, as: 'pid'
|
3745
3785
|
property :script, as: 'script', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2File, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2File::Representation
|
3746
3786
|
|
3787
|
+
property :user_id, :numeric_string => true, as: 'userId'
|
3747
3788
|
end
|
3748
3789
|
end
|
3749
3790
|
|
@@ -4370,6 +4411,7 @@ module Google
|
|
4370
4411
|
property :pid, :numeric_string => true, as: 'pid'
|
4371
4412
|
property :script, as: 'script', class: Google::Apis::SecuritycenterV1beta1::File, decorator: Google::Apis::SecuritycenterV1beta1::File::Representation
|
4372
4413
|
|
4414
|
+
property :user_id, :numeric_string => true, as: 'userId'
|
4373
4415
|
end
|
4374
4416
|
end
|
4375
4417
|
|
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.93.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.93.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:
|