Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
7 changes: 6 additions & 1 deletion gapic-generator/lib/gapic/presenters/service_presenter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ def grpc_full_name
#
# @return [Hash]
def drift_manifest
{
h = {
clients: {
grpc: {
libraryClient: client_name_full,
Expand All @@ -538,6 +538,11 @@ def drift_manifest
}
}
}
if !@service.api_version.empty?
h[:apiVersion] = @service.api_version
end

return h
end

##
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@
}
}
}
}
},
"apiVersion": "v1_20240408"
},
"Identity": {
"clients": {
Expand Down
Loading