Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -329253,6 +329253,7 @@
"/ondemandscanning:v1beta1/GrafeasV1FileLocation": grafeas_v1_file_location
"/ondemandscanning:v1beta1/GrafeasV1FileLocation/filePath": file_path
"/ondemandscanning:v1beta1/GrafeasV1FileLocation/layerDetails": layer_details
"/ondemandscanning:v1beta1/GrafeasV1FileLocation/lineNumber": line_number
"/ondemandscanning:v1beta1/GrafeasV1LayerDetails": grafeas_v1_layer_details
"/ondemandscanning:v1beta1/GrafeasV1LayerDetails/baseImages": base_images
"/ondemandscanning:v1beta1/GrafeasV1LayerDetails/baseImages/base_image": base_image
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-ondemandscanning_v1beta1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-ondemandscanning_v1beta1

### v0.62.0 (2026-03-22)

* Regenerated from discovery document revision 20260316

### v0.61.0 (2026-02-15)

* Regenerated from discovery document revision 20260209
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1393,6 +1393,12 @@ class GrafeasV1FileLocation
# @return [Google::Apis::OndemandscanningV1beta1::GrafeasV1LayerDetails]
attr_accessor :layer_details

# Line number in the file where the package was found. Optional field that only
# applies to source repository scanning.
# Corresponds to the JSON property `lineNumber`
# @return [Fixnum]
attr_accessor :line_number

def initialize(**args)
update!(**args)
end
Expand All @@ -1401,6 +1407,7 @@ def initialize(**args)
def update!(**args)
@file_path = args[:file_path] if args.key?(:file_path)
@layer_details = args[:layer_details] if args.key?(:layer_details)
@line_number = args[:line_number] if args.key?(:line_number)
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module OndemandscanningV1beta1
# Version of the google-apis-ondemandscanning_v1beta1 gem
GEM_VERSION = "0.61.0"
GEM_VERSION = "0.62.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20260209"
REVISION = "20260316"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1041,6 +1041,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :file_path, as: 'filePath'
property :layer_details, as: 'layerDetails', class: Google::Apis::OndemandscanningV1beta1::GrafeasV1LayerDetails, decorator: Google::Apis::OndemandscanningV1beta1::GrafeasV1LayerDetails::Representation

property :line_number, as: 'lineNumber'
end
end

Expand Down
Loading