google-apis-connectors_v2 0.6.0 → 0.7.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4327d308bd6751c42d57385111e1a44e533ce32963a5e6e12a570c114389bbbb
|
4
|
+
data.tar.gz: 99389b0b2ada898a78911e2af95acefed693d86d4284bcf508479d0046b3123d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e398cddc22c114f6fe5ae93613df7381e66824993a500cbecaabe9541a349aca150b4290e2fa250f4aefc559f79b83d81ff194fb9175a8f1712c19d712deec20
|
7
|
+
data.tar.gz: 545fc337e89eb25ade65f75a3bd16bb000ad7d338835051364a8f902b77b43f9a22e3fd2153abf8ea16ceb9dafc0b67f7f306e59e9352ca8165f3763509118d0
|
data/CHANGELOG.md
CHANGED
@@ -27,6 +27,16 @@ module Google
|
|
27
27
|
class Action
|
28
28
|
include Google::Apis::Core::Hashable
|
29
29
|
|
30
|
+
# Brief Description of action
|
31
|
+
# Corresponds to the JSON property `description`
|
32
|
+
# @return [String]
|
33
|
+
attr_accessor :description
|
34
|
+
|
35
|
+
# Display Name of action to be shown on client side
|
36
|
+
# Corresponds to the JSON property `displayName`
|
37
|
+
# @return [String]
|
38
|
+
attr_accessor :display_name
|
39
|
+
|
30
40
|
# JsonSchema representation of schema metadata
|
31
41
|
# Corresponds to the JSON property `inputJsonSchema`
|
32
42
|
# @return [Google::Apis::ConnectorsV2::JsonSchema]
|
@@ -58,6 +68,8 @@ module Google
|
|
58
68
|
|
59
69
|
# Update properties of this object
|
60
70
|
def update!(**args)
|
71
|
+
@description = args[:description] if args.key?(:description)
|
72
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
61
73
|
@input_json_schema = args[:input_json_schema] if args.key?(:input_json_schema)
|
62
74
|
@input_parameters = args[:input_parameters] if args.key?(:input_parameters)
|
63
75
|
@name = args[:name] if args.key?(:name)
|
@@ -307,6 +319,12 @@ module Google
|
|
307
319
|
class InputParameter
|
308
320
|
include Google::Apis::Core::Hashable
|
309
321
|
|
322
|
+
# The following map contains fields that are not explicitly mentioned above,this
|
323
|
+
# give connectors the flexibility to add new metadata fields.
|
324
|
+
# Corresponds to the JSON property `additionalDetails`
|
325
|
+
# @return [Hash<String,Object>]
|
326
|
+
attr_accessor :additional_details
|
327
|
+
|
310
328
|
# The data type of the Parameter
|
311
329
|
# Corresponds to the JSON property `dataType`
|
312
330
|
# @return [String]
|
@@ -345,6 +363,7 @@ module Google
|
|
345
363
|
|
346
364
|
# Update properties of this object
|
347
365
|
def update!(**args)
|
366
|
+
@additional_details = args[:additional_details] if args.key?(:additional_details)
|
348
367
|
@data_type = args[:data_type] if args.key?(:data_type)
|
349
368
|
@default_value = args[:default_value] if args.key?(:default_value)
|
350
369
|
@description = args[:description] if args.key?(:description)
|
@@ -573,7 +592,7 @@ module Google
|
|
573
592
|
|
574
593
|
#
|
575
594
|
# Corresponds to the JSON property `value`
|
576
|
-
# @return [
|
595
|
+
# @return [Object]
|
577
596
|
attr_accessor :value
|
578
597
|
|
579
598
|
def initialize(**args)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ConnectorsV2
|
18
18
|
# Version of the google-apis-connectors_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230913"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -139,6 +139,8 @@ module Google
|
|
139
139
|
class Action
|
140
140
|
# @private
|
141
141
|
class Representation < Google::Apis::Core::JsonRepresentation
|
142
|
+
property :description, as: 'description'
|
143
|
+
property :display_name, as: 'displayName'
|
142
144
|
property :input_json_schema, as: 'inputJsonSchema', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
143
145
|
|
144
146
|
collection :input_parameters, as: 'inputParameters', class: Google::Apis::ConnectorsV2::InputParameter, decorator: Google::Apis::ConnectorsV2::InputParameter::Representation
|
@@ -225,6 +227,7 @@ module Google
|
|
225
227
|
class InputParameter
|
226
228
|
# @private
|
227
229
|
class Representation < Google::Apis::Core::JsonRepresentation
|
230
|
+
hash :additional_details, as: 'additionalDetails'
|
228
231
|
property :data_type, as: 'dataType'
|
229
232
|
property :default_value, as: 'defaultValue'
|
230
233
|
property :description, as: 'description'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-connectors_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.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: 2023-09-
|
11
|
+
date: 2023-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v2/v0.7.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|