google-apis-script_v1 0.10.0 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db2d0503b9306dbb1ab6ec76c6f826f5b9d698affa214bdc4578a81e98cdea3a
4
- data.tar.gz: 109b2c73d975f91523f18514344a38074338b42f6b9252dd0adee1946d87b0bd
3
+ metadata.gz: ae29b47abef7a455ec079e173f7a98b08ba4b7687311df56d8bc426f355aa4df
4
+ data.tar.gz: 51c1c841995c9c55c175b6cd577c62d96df83cda168136b7d6e482d21e9da349
5
5
  SHA512:
6
- metadata.gz: 63c1dc097ddc11d056ec7dc13fc3920737b9de405095b3a5c4d465ba29333fbacb429b4d3fd8efd96a45f662326b624e7ad1a8e27636d83973312935538f3d21
7
- data.tar.gz: a5530e5627ff286983144261ecda1cf80ec8a1f2a5bd2082d0a6460bae1879f9af6d1aa38f7ba249483d386158689ab76efcf6c06b0ed45e6b1a68cf39a64ee1
6
+ metadata.gz: 4a173b6bb748ebad9e392a3fa9f867c79577ae5fa2c765110a367faeb616a7bc9a05690edd9888f18f6220921addc3fbf6a8280733e8d9546eb7f7b183d04a2f
7
+ data.tar.gz: 6bf2af826df2150044710f64053e2caf7061bcb642520c21b49129ed5372605a1a7daff030c7407a4dcb2e79d3cef4a2ae3b4f44d68d99a9177c7c286396e61b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-script_v1
2
2
 
3
+ ### v0.13.0 (2022-03-29)
4
+
5
+ * Regenerated from discovery document revision 20220323
6
+ * Regenerated using generator version 0.4.1
7
+
8
+ ### v0.12.0 (2022-01-10)
9
+
10
+ * Regenerated from discovery document revision 20211230
11
+
12
+ ### v0.11.0 (2021-12-16)
13
+
14
+ * Unspecified changes
15
+
3
16
  ### v0.10.0 (2021-07-13)
4
17
 
5
18
  * Regenerated from discovery document revision 20210703
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/script_v1"
51
51
  client = Google::Apis::ScriptV1::ScriptService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Script service in particular.)
67
67
 
@@ -153,8 +153,7 @@ module Google
153
153
  # A generic empty message that you can re-use to avoid defining duplicated empty
154
154
  # messages in your APIs. A typical example is to use it as the request or the
155
155
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
156
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
157
- # `Empty` is empty JSON object ````.
156
+ # protobuf.Empty) returns (google.protobuf.Empty); `
158
157
  class Empty
159
158
  include Google::Apis::Core::Hashable
160
159
 
@@ -499,6 +498,11 @@ module Google
499
498
  # @return [String]
500
499
  attr_accessor :name
501
500
 
501
+ # The ordered list of parameter names of the function in the script project.
502
+ # Corresponds to the JSON property `parameters`
503
+ # @return [Array<String>]
504
+ attr_accessor :parameters
505
+
502
506
  def initialize(**args)
503
507
  update!(**args)
504
508
  end
@@ -506,6 +510,7 @@ module Google
506
510
  # Update properties of this object
507
511
  def update!(**args)
508
512
  @name = args[:name] if args.key?(:name)
513
+ @parameters = args[:parameters] if args.key?(:parameters)
509
514
  end
510
515
  end
511
516
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ScriptV1
18
18
  # Version of the google-apis-script_v1 gem
19
- GEM_VERSION = "0.10.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210703"
25
+ REVISION = "20220323"
26
26
  end
27
27
  end
28
28
  end
@@ -377,6 +377,7 @@ module Google
377
377
  # @private
378
378
  class Representation < Google::Apis::Core::JsonRepresentation
379
379
  property :name, as: 'name'
380
+ collection :parameters, as: 'parameters'
380
381
  end
381
382
  end
382
383
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-script_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-19 00:00:00.000000000 Z
11
+ date: 2022-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-script_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-script_v1/v0.10.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-script_v1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-script_v1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-script_v1/v0.13.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-script_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths:
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Apps Script API V1