Skip to content

Commit

Permalink
feat: Automated regeneration of script v1 client (googleapis#16979)
Browse files Browse the repository at this point in the history
Auto-created at 2023-12-17 10:23:53 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Dec 17, 2023
1 parent 5366dab commit 7d81d1d
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 2 deletions.
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -275942,6 +275942,7 @@
"/script:v1/Content": content
"/script:v1/Content/files": files
"/script:v1/Content/files/file": file
"/script:v1/Content/revertFlumeInvoked": revert_flume_invoked
"/script:v1/Content/scriptId": script_id
"/script:v1/CreateProjectRequest": create_project_request
"/script:v1/CreateProjectRequest/parentId": parent_id
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-script_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-script_v1

### v0.22.0 (2023-12-17)

* Regenerated from discovery document revision 20231203

### v0.21.0 (2023-08-03)

* Regenerated from discovery document revision 20230716
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ class Content
# @return [Array<Google::Apis::ScriptV1::File>]
attr_accessor :files

# Set to true if called from revert flume to allow deletion of system generated
# manifest file while validating content request. This value is false by default.
# Corresponds to the JSON property `revertFlumeInvoked`
# @return [Boolean]
attr_accessor :revert_flume_invoked
alias_method :revert_flume_invoked?, :revert_flume_invoked

# The script project's Drive ID.
# Corresponds to the JSON property `scriptId`
# @return [String]
Expand All @@ -45,6 +52,7 @@ def initialize(**args)
# Update properties of this object
def update!(**args)
@files = args[:files] if args.key?(:files)
@revert_flume_invoked = args[:revert_flume_invoked] if args.key?(:revert_flume_invoked)
@script_id = args[:script_id] if args.key?(:script_id)
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 ScriptV1
# Version of the google-apis-script_v1 gem
GEM_VERSION = "0.21.0"
GEM_VERSION = "0.22.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20230716"
REVISION = "20231203"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ class Content
class Representation < Google::Apis::Core::JsonRepresentation
collection :files, as: 'files', class: Google::Apis::ScriptV1::File, decorator: Google::Apis::ScriptV1::File::Representation

property :revert_flume_invoked, as: 'revertFlumeInvoked'
property :script_id, as: 'scriptId'
end
end
Expand Down

0 comments on commit 7d81d1d

Please sign in to comment.