Skip to content

Commit 2247e23

Browse files
feat: Automated regeneration of checks v1alpha client (#20838)
Auto-created at 2024-12-02 22:54:35 +0000 using the toys pull request generator.
1 parent 2ed6efe commit 2247e23

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed

api_names_out.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -53756,6 +53756,7 @@
5375653756
"/checks:v1alpha/GoogleChecksRepoScanV1alphaSource": google_checks_repo_scan_v1alpha_source
5375753757
"/checks:v1alpha/GoogleChecksRepoScanV1alphaSource/codeAttribution": code_attribution
5375853758
"/checks:v1alpha/GoogleChecksRepoScanV1alphaSource/dataType": data_type
53759+
"/checks:v1alpha/GoogleChecksRepoScanV1alphaSource/falsePositive": false_positive
5375953760
"/checks:v1alpha/GoogleChecksRepoScanV1alphaSourceCode": google_checks_repo_scan_v1alpha_source_code
5376053761
"/checks:v1alpha/GoogleChecksRepoScanV1alphaSourceCode/code": code
5376153762
"/checks:v1alpha/GoogleChecksRepoScanV1alphaSourceCode/endLine": end_line

generated/google-apis-checks_v1alpha/CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Release history for google-apis-checks_v1alpha
22

3-
### v0.13.0 (2024-11-24)
3+
### v0.13.0 (2024-12-02)
44

5-
* Regenerated from discovery document revision 20241119
5+
* Regenerated from discovery document revision 20241124
66

77
### v0.12.0 (2024-11-03)
88

generated/google-apis-checks_v1alpha/lib/google/apis/checks_v1alpha/classes.rb

+7
Original file line numberDiff line numberDiff line change
@@ -585,6 +585,12 @@ class GoogleChecksRepoScanV1alphaSource
585585
# @return [String]
586586
attr_accessor :data_type
587587

588+
# Optional. Whether the finding was marked as a false positive.
589+
# Corresponds to the JSON property `falsePositive`
590+
# @return [Boolean]
591+
attr_accessor :false_positive
592+
alias_method :false_positive?, :false_positive
593+
588594
def initialize(**args)
589595
update!(**args)
590596
end
@@ -593,6 +599,7 @@ def initialize(**args)
593599
def update!(**args)
594600
@code_attribution = args[:code_attribution] if args.key?(:code_attribution)
595601
@data_type = args[:data_type] if args.key?(:data_type)
602+
@false_positive = args[:false_positive] if args.key?(:false_positive)
596603
end
597604
end
598605

generated/google-apis-checks_v1alpha/lib/google/apis/checks_v1alpha/gem_version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module ChecksV1alpha
2222
GENERATOR_VERSION = "0.15.1"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20241119"
25+
REVISION = "20241124"
2626
end
2727
end
2828
end

generated/google-apis-checks_v1alpha/lib/google/apis/checks_v1alpha/representations.rb

+1
Original file line numberDiff line numberDiff line change
@@ -594,6 +594,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
594594
property :code_attribution, as: 'codeAttribution', class: Google::Apis::ChecksV1alpha::GoogleChecksRepoScanV1alphaCodeAttribution, decorator: Google::Apis::ChecksV1alpha::GoogleChecksRepoScanV1alphaCodeAttribution::Representation
595595

596596
property :data_type, as: 'dataType'
597+
property :false_positive, as: 'falsePositive'
597598
end
598599
end
599600

0 commit comments

Comments
 (0)