google-apis-containeranalysis_v1beta1 0.62.0 → 0.64.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/containeranalysis_v1beta1/classes.rb +54 -3
- data/lib/google/apis/containeranalysis_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/containeranalysis_v1beta1/representations.rb +19 -0
- data/lib/google/apis/containeranalysis_v1beta1/service.rb +36 -6
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: facb635f87f5effb1bc4673460698f37a7726a71e448c7586b780a796546e6dc
|
4
|
+
data.tar.gz: baf4c246404398db229d5596347696781390144a41db71f8942c1e8bd7ad754d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d61f0678ad8c0af468855d2d4f287cf7602442f0c2ebdb1b2caf7c0a5ee90c60dfa5fc54805c23dda45322f58174988eed0777b5f580c042660fc84f17222e6
|
7
|
+
data.tar.gz: 18095f011ce816056417cb5b1d4adeadeedfc7478e9ff13d4298939a989e073b26fcd79845fdbd1a199f431c09c73f81e021d07fa7d6ca5e80db49bf40224f85
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1beta1
|
2
2
|
|
3
|
+
### v0.64.0 (2025-06-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250616
|
6
|
+
|
7
|
+
### v0.63.0 (2025-06-08)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250528
|
10
|
+
* Regenerated using generator version 0.18.0
|
11
|
+
|
3
12
|
### v0.62.0 (2025-05-04)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250425
|
@@ -2312,9 +2312,8 @@ module Google
|
|
2312
2312
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceRepository
|
2313
2313
|
include Google::Apis::Core::Hashable
|
2314
2314
|
|
2315
|
-
# The Developer Connect Git repository link
|
2316
|
-
#
|
2317
|
-
# /gitRepositoryLink/*`
|
2315
|
+
# The Developer Connect Git repository link formatted as `projects/*/locations/*/
|
2316
|
+
# connections/*/gitRepositoryLink/*`
|
2318
2317
|
# Corresponds to the JSON property `developerConnect`
|
2319
2318
|
# @return [String]
|
2320
2319
|
attr_accessor :developer_connect
|
@@ -3427,6 +3426,11 @@ module Google
|
|
3427
3426
|
# @return [String]
|
3428
3427
|
attr_accessor :continuous_analysis
|
3429
3428
|
|
3429
|
+
# Files that make up the resource described by the occurrence.
|
3430
|
+
# Corresponds to the JSON property `files`
|
3431
|
+
# @return [Array<Google::Apis::ContaineranalysisV1beta1::File>]
|
3432
|
+
attr_accessor :files
|
3433
|
+
|
3430
3434
|
# The last time continuous analysis was done for this resource. Deprecated, do
|
3431
3435
|
# not use.
|
3432
3436
|
# Corresponds to the JSON property `lastAnalysisTime`
|
@@ -3454,6 +3458,7 @@ module Google
|
|
3454
3458
|
@analysis_status = args[:analysis_status] if args.key?(:analysis_status)
|
3455
3459
|
@analysis_status_error = args[:analysis_status_error] if args.key?(:analysis_status_error)
|
3456
3460
|
@continuous_analysis = args[:continuous_analysis] if args.key?(:continuous_analysis)
|
3461
|
+
@files = args[:files] if args.key?(:files)
|
3457
3462
|
@last_analysis_time = args[:last_analysis_time] if args.key?(:last_analysis_time)
|
3458
3463
|
@last_scan_time = args[:last_scan_time] if args.key?(:last_scan_time)
|
3459
3464
|
@sbom_status = args[:sbom_status] if args.key?(:sbom_status)
|
@@ -3864,6 +3869,31 @@ module Google
|
|
3864
3869
|
end
|
3865
3870
|
end
|
3866
3871
|
|
3872
|
+
#
|
3873
|
+
class File
|
3874
|
+
include Google::Apis::Core::Hashable
|
3875
|
+
|
3876
|
+
#
|
3877
|
+
# Corresponds to the JSON property `digest`
|
3878
|
+
# @return [Hash<String,String>]
|
3879
|
+
attr_accessor :digest
|
3880
|
+
|
3881
|
+
#
|
3882
|
+
# Corresponds to the JSON property `name`
|
3883
|
+
# @return [String]
|
3884
|
+
attr_accessor :name
|
3885
|
+
|
3886
|
+
def initialize(**args)
|
3887
|
+
update!(**args)
|
3888
|
+
end
|
3889
|
+
|
3890
|
+
# Update properties of this object
|
3891
|
+
def update!(**args)
|
3892
|
+
@digest = args[:digest] if args.key?(:digest)
|
3893
|
+
@name = args[:name] if args.key?(:name)
|
3894
|
+
end
|
3895
|
+
end
|
3896
|
+
|
3867
3897
|
# Container message for hashes of byte content of files, used in source messages
|
3868
3898
|
# to verify integrity of source input to the build.
|
3869
3899
|
class FileHashes
|
@@ -4987,6 +5017,12 @@ module Google
|
|
4987
5017
|
# @return [Array<Google::Apis::ContaineranalysisV1beta1::Note>]
|
4988
5018
|
attr_accessor :notes
|
4989
5019
|
|
5020
|
+
# Unordered list. Unreachable regions. Populated for requests from the global
|
5021
|
+
# region when `return_partial_success` is set. Format: projects//locations/
|
5022
|
+
# Corresponds to the JSON property `unreachable`
|
5023
|
+
# @return [Array<String>]
|
5024
|
+
attr_accessor :unreachable
|
5025
|
+
|
4990
5026
|
def initialize(**args)
|
4991
5027
|
update!(**args)
|
4992
5028
|
end
|
@@ -4995,6 +5031,7 @@ module Google
|
|
4995
5031
|
def update!(**args)
|
4996
5032
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
4997
5033
|
@notes = args[:notes] if args.key?(:notes)
|
5034
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
4998
5035
|
end
|
4999
5036
|
end
|
5000
5037
|
|
@@ -5013,6 +5050,12 @@ module Google
|
|
5013
5050
|
# @return [Array<Google::Apis::ContaineranalysisV1beta1::Occurrence>]
|
5014
5051
|
attr_accessor :occurrences
|
5015
5052
|
|
5053
|
+
# Unordered list. Unreachable regions. Populated for requests from the global
|
5054
|
+
# region when `return_partial_success` is set. Format: projects//locations/
|
5055
|
+
# Corresponds to the JSON property `unreachable`
|
5056
|
+
# @return [Array<String>]
|
5057
|
+
attr_accessor :unreachable
|
5058
|
+
|
5016
5059
|
def initialize(**args)
|
5017
5060
|
update!(**args)
|
5018
5061
|
end
|
@@ -5021,6 +5064,7 @@ module Google
|
|
5021
5064
|
def update!(**args)
|
5022
5065
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
5023
5066
|
@occurrences = args[:occurrences] if args.key?(:occurrences)
|
5067
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
5024
5068
|
end
|
5025
5069
|
end
|
5026
5070
|
|
@@ -7197,6 +7241,12 @@ module Google
|
|
7197
7241
|
# @return [Array<Google::Apis::ContaineranalysisV1beta1::FixableTotalByDigest>]
|
7198
7242
|
attr_accessor :counts
|
7199
7243
|
|
7244
|
+
# Unordered list. Unreachable regions. Populated for requests from the global
|
7245
|
+
# region when `return_partial_success` is set. Format: projects//locations/
|
7246
|
+
# Corresponds to the JSON property `unreachable`
|
7247
|
+
# @return [Array<String>]
|
7248
|
+
attr_accessor :unreachable
|
7249
|
+
|
7200
7250
|
def initialize(**args)
|
7201
7251
|
update!(**args)
|
7202
7252
|
end
|
@@ -7204,6 +7254,7 @@ module Google
|
|
7204
7254
|
# Update properties of this object
|
7205
7255
|
def update!(**args)
|
7206
7256
|
@counts = args[:counts] if args.key?(:counts)
|
7257
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
7207
7258
|
end
|
7208
7259
|
end
|
7209
7260
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContaineranalysisV1beta1
|
18
18
|
# Version of the google-apis-containeranalysis_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.64.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250616"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -538,6 +538,12 @@ module Google
|
|
538
538
|
include Google::Apis::Core::JsonObjectSupport
|
539
539
|
end
|
540
540
|
|
541
|
+
class File
|
542
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
|
+
|
544
|
+
include Google::Apis::Core::JsonObjectSupport
|
545
|
+
end
|
546
|
+
|
541
547
|
class FileHashes
|
542
548
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
549
|
|
@@ -1893,6 +1899,8 @@ module Google
|
|
1893
1899
|
property :analysis_status_error, as: 'analysisStatusError', class: Google::Apis::ContaineranalysisV1beta1::Status, decorator: Google::Apis::ContaineranalysisV1beta1::Status::Representation
|
1894
1900
|
|
1895
1901
|
property :continuous_analysis, as: 'continuousAnalysis'
|
1902
|
+
collection :files, as: 'files', class: Google::Apis::ContaineranalysisV1beta1::File, decorator: Google::Apis::ContaineranalysisV1beta1::File::Representation
|
1903
|
+
|
1896
1904
|
property :last_analysis_time, as: 'lastAnalysisTime'
|
1897
1905
|
property :last_scan_time, as: 'lastScanTime'
|
1898
1906
|
property :sbom_status, as: 'sbomStatus', class: Google::Apis::ContaineranalysisV1beta1::SbomStatus, decorator: Google::Apis::ContaineranalysisV1beta1::SbomStatus::Representation
|
@@ -2007,6 +2015,14 @@ module Google
|
|
2007
2015
|
end
|
2008
2016
|
end
|
2009
2017
|
|
2018
|
+
class File
|
2019
|
+
# @private
|
2020
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2021
|
+
hash :digest, as: 'digest'
|
2022
|
+
property :name, as: 'name'
|
2023
|
+
end
|
2024
|
+
end
|
2025
|
+
|
2010
2026
|
class FileHashes
|
2011
2027
|
# @private
|
2012
2028
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2339,6 +2355,7 @@ module Google
|
|
2339
2355
|
property :next_page_token, as: 'nextPageToken'
|
2340
2356
|
collection :notes, as: 'notes', class: Google::Apis::ContaineranalysisV1beta1::Note, decorator: Google::Apis::ContaineranalysisV1beta1::Note::Representation
|
2341
2357
|
|
2358
|
+
collection :unreachable, as: 'unreachable'
|
2342
2359
|
end
|
2343
2360
|
end
|
2344
2361
|
|
@@ -2348,6 +2365,7 @@ module Google
|
|
2348
2365
|
property :next_page_token, as: 'nextPageToken'
|
2349
2366
|
collection :occurrences, as: 'occurrences', class: Google::Apis::ContaineranalysisV1beta1::Occurrence, decorator: Google::Apis::ContaineranalysisV1beta1::Occurrence::Representation
|
2350
2367
|
|
2368
|
+
collection :unreachable, as: 'unreachable'
|
2351
2369
|
end
|
2352
2370
|
end
|
2353
2371
|
|
@@ -2911,6 +2929,7 @@ module Google
|
|
2911
2929
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2912
2930
|
collection :counts, as: 'counts', class: Google::Apis::ContaineranalysisV1beta1::FixableTotalByDigest, decorator: Google::Apis::ContaineranalysisV1beta1::FixableTotalByDigest::Representation
|
2913
2931
|
|
2932
|
+
collection :unreachable, as: 'unreachable'
|
2914
2933
|
end
|
2915
2934
|
end
|
2916
2935
|
|
@@ -238,6 +238,10 @@ module Google
|
|
238
238
|
# is 1000. If not specified, page size defaults to 20.
|
239
239
|
# @param [String] page_token
|
240
240
|
# Token to provide to skip to a particular spot in the list.
|
241
|
+
# @param [Boolean] return_partial_success
|
242
|
+
# If set, the request will return all reachable Notes and report all unreachable
|
243
|
+
# regions in the `unreachable` field in the response. Only applicable for
|
244
|
+
# requests in the global region.
|
241
245
|
# @param [String] fields
|
242
246
|
# Selector specifying which fields to include in a partial response.
|
243
247
|
# @param [String] quota_user
|
@@ -255,7 +259,7 @@ module Google
|
|
255
259
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
256
260
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
257
261
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
258
|
-
def list_project_location_notes(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
262
|
+
def list_project_location_notes(parent, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
259
263
|
command = make_simple_command(:get, 'v1beta1/{+parent}/notes', options)
|
260
264
|
command.response_representation = Google::Apis::ContaineranalysisV1beta1::ListNotesResponse::Representation
|
261
265
|
command.response_class = Google::Apis::ContaineranalysisV1beta1::ListNotesResponse
|
@@ -263,6 +267,7 @@ module Google
|
|
263
267
|
command.query['filter'] = filter unless filter.nil?
|
264
268
|
command.query['pageSize'] = page_size unless page_size.nil?
|
265
269
|
command.query['pageToken'] = page_token unless page_token.nil?
|
270
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
266
271
|
command.query['fields'] = fields unless fields.nil?
|
267
272
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
268
273
|
execute_or_queue_command(command, &block)
|
@@ -634,6 +639,10 @@ module Google
|
|
634
639
|
# form of `projects/[PROJECT_ID]`.
|
635
640
|
# @param [String] filter
|
636
641
|
# The filter expression.
|
642
|
+
# @param [Boolean] return_partial_success
|
643
|
+
# If set, the request will return all reachable occurrence summaries and report
|
644
|
+
# all unreachable regions in the `unreachable` field in the response. Only
|
645
|
+
# applicable for requests in the global region.
|
637
646
|
# @param [String] fields
|
638
647
|
# Selector specifying which fields to include in a partial response.
|
639
648
|
# @param [String] quota_user
|
@@ -651,12 +660,13 @@ module Google
|
|
651
660
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
652
661
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
653
662
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
654
|
-
def get_project_location_occurrence_vulnerability_summary(parent, filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
663
|
+
def get_project_location_occurrence_vulnerability_summary(parent, filter: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
655
664
|
command = make_simple_command(:get, 'v1beta1/{+parent}/occurrences:vulnerabilitySummary', options)
|
656
665
|
command.response_representation = Google::Apis::ContaineranalysisV1beta1::VulnerabilityOccurrencesSummary::Representation
|
657
666
|
command.response_class = Google::Apis::ContaineranalysisV1beta1::VulnerabilityOccurrencesSummary
|
658
667
|
command.params['parent'] = parent unless parent.nil?
|
659
668
|
command.query['filter'] = filter unless filter.nil?
|
669
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
660
670
|
command.query['fields'] = fields unless fields.nil?
|
661
671
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
662
672
|
execute_or_queue_command(command, &block)
|
@@ -673,6 +683,10 @@ module Google
|
|
673
683
|
# page size is 1000. If not specified, page size defaults to 20.
|
674
684
|
# @param [String] page_token
|
675
685
|
# Token to provide to skip to a particular spot in the list.
|
686
|
+
# @param [Boolean] return_partial_success
|
687
|
+
# If set, the request will return all reachable Occurrences and report all
|
688
|
+
# unreachable regions in the `unreachable` field in the response. Only
|
689
|
+
# applicable for requests in the global region.
|
676
690
|
# @param [String] fields
|
677
691
|
# Selector specifying which fields to include in a partial response.
|
678
692
|
# @param [String] quota_user
|
@@ -690,7 +704,7 @@ module Google
|
|
690
704
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
691
705
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
692
706
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
693
|
-
def list_project_location_occurrences(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
707
|
+
def list_project_location_occurrences(parent, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
694
708
|
command = make_simple_command(:get, 'v1beta1/{+parent}/occurrences', options)
|
695
709
|
command.response_representation = Google::Apis::ContaineranalysisV1beta1::ListOccurrencesResponse::Representation
|
696
710
|
command.response_class = Google::Apis::ContaineranalysisV1beta1::ListOccurrencesResponse
|
@@ -698,6 +712,7 @@ module Google
|
|
698
712
|
command.query['filter'] = filter unless filter.nil?
|
699
713
|
command.query['pageSize'] = page_size unless page_size.nil?
|
700
714
|
command.query['pageToken'] = page_token unless page_token.nil?
|
715
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
701
716
|
command.query['fields'] = fields unless fields.nil?
|
702
717
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
703
718
|
execute_or_queue_command(command, &block)
|
@@ -1070,6 +1085,10 @@ module Google
|
|
1070
1085
|
# is 1000. If not specified, page size defaults to 20.
|
1071
1086
|
# @param [String] page_token
|
1072
1087
|
# Token to provide to skip to a particular spot in the list.
|
1088
|
+
# @param [Boolean] return_partial_success
|
1089
|
+
# If set, the request will return all reachable Notes and report all unreachable
|
1090
|
+
# regions in the `unreachable` field in the response. Only applicable for
|
1091
|
+
# requests in the global region.
|
1073
1092
|
# @param [String] fields
|
1074
1093
|
# Selector specifying which fields to include in a partial response.
|
1075
1094
|
# @param [String] quota_user
|
@@ -1087,7 +1106,7 @@ module Google
|
|
1087
1106
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1088
1107
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1089
1108
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1090
|
-
def list_project_notes(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1109
|
+
def list_project_notes(parent, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1091
1110
|
command = make_simple_command(:get, 'v1beta1/{+parent}/notes', options)
|
1092
1111
|
command.response_representation = Google::Apis::ContaineranalysisV1beta1::ListNotesResponse::Representation
|
1093
1112
|
command.response_class = Google::Apis::ContaineranalysisV1beta1::ListNotesResponse
|
@@ -1095,6 +1114,7 @@ module Google
|
|
1095
1114
|
command.query['filter'] = filter unless filter.nil?
|
1096
1115
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1097
1116
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1117
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1098
1118
|
command.query['fields'] = fields unless fields.nil?
|
1099
1119
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1100
1120
|
execute_or_queue_command(command, &block)
|
@@ -1466,6 +1486,10 @@ module Google
|
|
1466
1486
|
# form of `projects/[PROJECT_ID]`.
|
1467
1487
|
# @param [String] filter
|
1468
1488
|
# The filter expression.
|
1489
|
+
# @param [Boolean] return_partial_success
|
1490
|
+
# If set, the request will return all reachable occurrence summaries and report
|
1491
|
+
# all unreachable regions in the `unreachable` field in the response. Only
|
1492
|
+
# applicable for requests in the global region.
|
1469
1493
|
# @param [String] fields
|
1470
1494
|
# Selector specifying which fields to include in a partial response.
|
1471
1495
|
# @param [String] quota_user
|
@@ -1483,12 +1507,13 @@ module Google
|
|
1483
1507
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1484
1508
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1485
1509
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1486
|
-
def get_project_occurrence_vulnerability_summary(parent, filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1510
|
+
def get_project_occurrence_vulnerability_summary(parent, filter: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1487
1511
|
command = make_simple_command(:get, 'v1beta1/{+parent}/occurrences:vulnerabilitySummary', options)
|
1488
1512
|
command.response_representation = Google::Apis::ContaineranalysisV1beta1::VulnerabilityOccurrencesSummary::Representation
|
1489
1513
|
command.response_class = Google::Apis::ContaineranalysisV1beta1::VulnerabilityOccurrencesSummary
|
1490
1514
|
command.params['parent'] = parent unless parent.nil?
|
1491
1515
|
command.query['filter'] = filter unless filter.nil?
|
1516
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1492
1517
|
command.query['fields'] = fields unless fields.nil?
|
1493
1518
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1494
1519
|
execute_or_queue_command(command, &block)
|
@@ -1505,6 +1530,10 @@ module Google
|
|
1505
1530
|
# page size is 1000. If not specified, page size defaults to 20.
|
1506
1531
|
# @param [String] page_token
|
1507
1532
|
# Token to provide to skip to a particular spot in the list.
|
1533
|
+
# @param [Boolean] return_partial_success
|
1534
|
+
# If set, the request will return all reachable Occurrences and report all
|
1535
|
+
# unreachable regions in the `unreachable` field in the response. Only
|
1536
|
+
# applicable for requests in the global region.
|
1508
1537
|
# @param [String] fields
|
1509
1538
|
# Selector specifying which fields to include in a partial response.
|
1510
1539
|
# @param [String] quota_user
|
@@ -1522,7 +1551,7 @@ module Google
|
|
1522
1551
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1523
1552
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1524
1553
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1525
|
-
def list_project_occurrences(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1554
|
+
def list_project_occurrences(parent, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1526
1555
|
command = make_simple_command(:get, 'v1beta1/{+parent}/occurrences', options)
|
1527
1556
|
command.response_representation = Google::Apis::ContaineranalysisV1beta1::ListOccurrencesResponse::Representation
|
1528
1557
|
command.response_class = Google::Apis::ContaineranalysisV1beta1::ListOccurrencesResponse
|
@@ -1530,6 +1559,7 @@ module Google
|
|
1530
1559
|
command.query['filter'] = filter unless filter.nil?
|
1531
1560
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1532
1561
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1562
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1533
1563
|
command.query['fields'] = fields unless fields.nil?
|
1534
1564
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1535
1565
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-containeranalysis_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.64.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-containeranalysis_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.64.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Container Analysis API V1beta1
|
79
79
|
test_files: []
|