google-apis-connectors_v2 0.32.0 → 0.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/connectors_v2/classes.rb +184 -4
- data/lib/google/apis/connectors_v2/gem_version.rb +3 -3
- data/lib/google/apis/connectors_v2/representations.rb +44 -0
- data/lib/google/apis/connectors_v2/service.rb +4 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 97722765fe377738544a3d7cbbb337d544ce21dfccdce2377b1bad38cecc0675
|
|
4
|
+
data.tar.gz: 8bdaacf01c7bcd1f5f92eedd0d340994f3497a5b2dcebc5035c2917396c490fa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 388870552d336a9df5b552d516a4d98c06b4529cff7d801dad7325456fa9743b45f6a98466d49e08545d6f8c573bebfd33ebb31acbc6099aa0a0f71e7dd1f3c9
|
|
7
|
+
data.tar.gz: 879df747b3e020ab375d1ebf66fcbd461c29e841f3b3fe54470d6ef81fca25163f3787477b8d3aa97f3457b6727e5324ea5568e3b7079b6fb0d49384c0248827
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-connectors_v2
|
|
2
2
|
|
|
3
|
+
### v0.34.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260527
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
8
|
+
### v0.33.0 (2026-05-03)
|
|
9
|
+
|
|
10
|
+
* Regenerated from discovery document revision 20260427
|
|
11
|
+
|
|
3
12
|
### v0.32.0 (2026-03-22)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20260316
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/apigee/docs/api-platform/co
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -1076,39 +1076,122 @@ module Google
|
|
|
1076
1076
|
class JsonSchema
|
|
1077
1077
|
include Google::Apis::Core::Hashable
|
|
1078
1078
|
|
|
1079
|
+
# A comment on the schema.
|
|
1080
|
+
# Corresponds to the JSON property `$comment`
|
|
1081
|
+
# @return [String]
|
|
1082
|
+
attr_accessor :_comment
|
|
1083
|
+
|
|
1084
|
+
# Definitions for the schema.
|
|
1085
|
+
# Corresponds to the JSON property `$defs`
|
|
1086
|
+
# @return [Hash<String,Google::Apis::ConnectorsV2::JsonSchema>]
|
|
1087
|
+
attr_accessor :_defs
|
|
1088
|
+
|
|
1089
|
+
# The URI defining the core schema meta-schema.
|
|
1090
|
+
# Corresponds to the JSON property `$id`
|
|
1091
|
+
# @return [String]
|
|
1092
|
+
attr_accessor :_id
|
|
1093
|
+
|
|
1094
|
+
# A reference to another schema.
|
|
1095
|
+
# Corresponds to the JSON property `$ref`
|
|
1096
|
+
# @return [String]
|
|
1097
|
+
attr_accessor :_ref
|
|
1098
|
+
|
|
1099
|
+
# The URI defining the schema.
|
|
1100
|
+
# Corresponds to the JSON property `$schema`
|
|
1101
|
+
# @return [String]
|
|
1102
|
+
attr_accessor :_schema
|
|
1103
|
+
|
|
1079
1104
|
# Additional details apart from standard json schema fields, this gives
|
|
1080
1105
|
# flexibility to store metadata about the schema
|
|
1081
1106
|
# Corresponds to the JSON property `additionalDetails`
|
|
1082
1107
|
# @return [Hash<String,Object>]
|
|
1083
1108
|
attr_accessor :additional_details
|
|
1084
1109
|
|
|
1110
|
+
# JsonSchema representation of schema metadata
|
|
1111
|
+
# Corresponds to the JSON property `additionalItems`
|
|
1112
|
+
# @return [Google::Apis::ConnectorsV2::JsonSchema]
|
|
1113
|
+
attr_accessor :additional_items
|
|
1114
|
+
|
|
1115
|
+
# JsonSchema representation of schema metadata
|
|
1116
|
+
# Corresponds to the JSON property `additionalProperties`
|
|
1117
|
+
# @return [Google::Apis::ConnectorsV2::JsonSchema]
|
|
1118
|
+
attr_accessor :additional_properties
|
|
1119
|
+
|
|
1120
|
+
# Schema that must be valid against all of the sub-schemas.
|
|
1121
|
+
# Corresponds to the JSON property `allOf`
|
|
1122
|
+
# @return [Array<Google::Apis::ConnectorsV2::JsonSchema>]
|
|
1123
|
+
attr_accessor :all_of
|
|
1124
|
+
|
|
1125
|
+
# Schema that must be valid against at least one of the sub-schemas.
|
|
1126
|
+
# Corresponds to the JSON property `anyOf`
|
|
1127
|
+
# @return [Array<Google::Apis::ConnectorsV2::JsonSchema>]
|
|
1128
|
+
attr_accessor :any_of
|
|
1129
|
+
|
|
1130
|
+
# Const value that the data must match.
|
|
1131
|
+
# Corresponds to the JSON property `const`
|
|
1132
|
+
# @return [Object]
|
|
1133
|
+
attr_accessor :const
|
|
1134
|
+
|
|
1135
|
+
# JsonSchema representation of schema metadata
|
|
1136
|
+
# Corresponds to the JSON property `contains`
|
|
1137
|
+
# @return [Google::Apis::ConnectorsV2::JsonSchema]
|
|
1138
|
+
attr_accessor :contains
|
|
1139
|
+
|
|
1140
|
+
# Encoding of the content.
|
|
1141
|
+
# Corresponds to the JSON property `contentEncoding`
|
|
1142
|
+
# @return [String]
|
|
1143
|
+
attr_accessor :content_encoding
|
|
1144
|
+
|
|
1145
|
+
# Media type of the content.
|
|
1146
|
+
# Corresponds to the JSON property `contentMediaType`
|
|
1147
|
+
# @return [String]
|
|
1148
|
+
attr_accessor :content_media_type
|
|
1149
|
+
|
|
1085
1150
|
# The default value of the field or object described by this schema.
|
|
1086
1151
|
# Corresponds to the JSON property `default`
|
|
1087
1152
|
# @return [Object]
|
|
1088
1153
|
attr_accessor :default
|
|
1089
1154
|
|
|
1155
|
+
# Definitions for the schema.
|
|
1156
|
+
# Corresponds to the JSON property `definitions`
|
|
1157
|
+
# @return [Hash<String,Google::Apis::ConnectorsV2::JsonSchema>]
|
|
1158
|
+
attr_accessor :definitions
|
|
1159
|
+
|
|
1160
|
+
# Dependencies for the schema.
|
|
1161
|
+
# Corresponds to the JSON property `dependencies`
|
|
1162
|
+
# @return [Hash<String,Object>]
|
|
1163
|
+
attr_accessor :dependencies
|
|
1164
|
+
|
|
1090
1165
|
# A description of this schema.
|
|
1091
1166
|
# Corresponds to the JSON property `description`
|
|
1092
1167
|
# @return [String]
|
|
1093
1168
|
attr_accessor :description
|
|
1094
1169
|
|
|
1170
|
+
# JsonSchema representation of schema metadata
|
|
1171
|
+
# Corresponds to the JSON property `else`
|
|
1172
|
+
# @return [Google::Apis::ConnectorsV2::JsonSchema]
|
|
1173
|
+
attr_accessor :else
|
|
1174
|
+
|
|
1095
1175
|
# Possible values for an enumeration. This works in conjunction with `type` to
|
|
1096
1176
|
# represent types with a fixed set of legal values
|
|
1097
1177
|
# Corresponds to the JSON property `enum`
|
|
1098
1178
|
# @return [Array<Object>]
|
|
1099
1179
|
attr_accessor :enum
|
|
1100
1180
|
|
|
1181
|
+
# Examples of the value.
|
|
1182
|
+
# Corresponds to the JSON property `examples`
|
|
1183
|
+
# @return [Array<Object>]
|
|
1184
|
+
attr_accessor :examples
|
|
1185
|
+
|
|
1101
1186
|
# Whether the maximum number value is exclusive.
|
|
1102
1187
|
# Corresponds to the JSON property `exclusiveMaximum`
|
|
1103
|
-
# @return [
|
|
1188
|
+
# @return [Object]
|
|
1104
1189
|
attr_accessor :exclusive_maximum
|
|
1105
|
-
alias_method :exclusive_maximum?, :exclusive_maximum
|
|
1106
1190
|
|
|
1107
1191
|
# Whether the minimum number value is exclusive.
|
|
1108
1192
|
# Corresponds to the JSON property `exclusiveMinimum`
|
|
1109
|
-
# @return [
|
|
1193
|
+
# @return [Object]
|
|
1110
1194
|
attr_accessor :exclusive_minimum
|
|
1111
|
-
alias_method :exclusive_minimum?, :exclusive_minimum
|
|
1112
1195
|
|
|
1113
1196
|
# Format of the value as per https://json-schema.org/understanding-json-schema/
|
|
1114
1197
|
# reference/string.html#format
|
|
@@ -1116,6 +1199,11 @@ module Google
|
|
|
1116
1199
|
# @return [String]
|
|
1117
1200
|
attr_accessor :format
|
|
1118
1201
|
|
|
1202
|
+
# JsonSchema representation of schema metadata
|
|
1203
|
+
# Corresponds to the JSON property `if`
|
|
1204
|
+
# @return [Google::Apis::ConnectorsV2::JsonSchema]
|
|
1205
|
+
attr_accessor :if
|
|
1206
|
+
|
|
1119
1207
|
# JsonSchema representation of schema metadata
|
|
1120
1208
|
# Corresponds to the JSON property `items`
|
|
1121
1209
|
# @return [Google::Apis::ConnectorsV2::JsonSchema]
|
|
@@ -1136,6 +1224,11 @@ module Google
|
|
|
1136
1224
|
# @return [Fixnum]
|
|
1137
1225
|
attr_accessor :max_length
|
|
1138
1226
|
|
|
1227
|
+
# Maximum number of properties.
|
|
1228
|
+
# Corresponds to the JSON property `maxProperties`
|
|
1229
|
+
# @return [Fixnum]
|
|
1230
|
+
attr_accessor :max_properties
|
|
1231
|
+
|
|
1139
1232
|
# Maximum value of the number field.
|
|
1140
1233
|
# Corresponds to the JSON property `maximum`
|
|
1141
1234
|
# @return [Object]
|
|
@@ -1151,17 +1244,42 @@ module Google
|
|
|
1151
1244
|
# @return [Fixnum]
|
|
1152
1245
|
attr_accessor :min_length
|
|
1153
1246
|
|
|
1247
|
+
# Minimum number of properties.
|
|
1248
|
+
# Corresponds to the JSON property `minProperties`
|
|
1249
|
+
# @return [Fixnum]
|
|
1250
|
+
attr_accessor :min_properties
|
|
1251
|
+
|
|
1154
1252
|
# Minimum value of the number field.
|
|
1155
1253
|
# Corresponds to the JSON property `minimum`
|
|
1156
1254
|
# @return [Object]
|
|
1157
1255
|
attr_accessor :minimum
|
|
1158
1256
|
|
|
1257
|
+
# Number must be a multiple of this value.
|
|
1258
|
+
# Corresponds to the JSON property `multipleOf`
|
|
1259
|
+
# @return [Float]
|
|
1260
|
+
attr_accessor :multiple_of
|
|
1261
|
+
|
|
1262
|
+
# JsonSchema representation of schema metadata
|
|
1263
|
+
# Corresponds to the JSON property `not`
|
|
1264
|
+
# @return [Google::Apis::ConnectorsV2::JsonSchema]
|
|
1265
|
+
attr_accessor :not
|
|
1266
|
+
|
|
1267
|
+
# Schema that must be valid against at least one of the sub-schemas.
|
|
1268
|
+
# Corresponds to the JSON property `oneOf`
|
|
1269
|
+
# @return [Array<Google::Apis::ConnectorsV2::JsonSchema>]
|
|
1270
|
+
attr_accessor :one_of
|
|
1271
|
+
|
|
1159
1272
|
# Regex pattern of the string field. This is a string value that describes the
|
|
1160
1273
|
# regular expression that the string value should match.
|
|
1161
1274
|
# Corresponds to the JSON property `pattern`
|
|
1162
1275
|
# @return [String]
|
|
1163
1276
|
attr_accessor :pattern
|
|
1164
1277
|
|
|
1278
|
+
# Pattern properties for the schema.
|
|
1279
|
+
# Corresponds to the JSON property `patternProperties`
|
|
1280
|
+
# @return [Hash<String,Google::Apis::ConnectorsV2::JsonSchema>]
|
|
1281
|
+
attr_accessor :pattern_properties
|
|
1282
|
+
|
|
1165
1283
|
# The child schemas, applicable only if this is of type `object`. The key is the
|
|
1166
1284
|
# name of the property and the value is the json schema that describes that
|
|
1167
1285
|
# property
|
|
@@ -1169,11 +1287,32 @@ module Google
|
|
|
1169
1287
|
# @return [Hash<String,Google::Apis::ConnectorsV2::JsonSchema>]
|
|
1170
1288
|
attr_accessor :properties
|
|
1171
1289
|
|
|
1290
|
+
# JsonSchema representation of schema metadata
|
|
1291
|
+
# Corresponds to the JSON property `propertyNames`
|
|
1292
|
+
# @return [Google::Apis::ConnectorsV2::JsonSchema]
|
|
1293
|
+
attr_accessor :property_names
|
|
1294
|
+
|
|
1295
|
+
# Whether the value is read-only.
|
|
1296
|
+
# Corresponds to the JSON property `readOnly`
|
|
1297
|
+
# @return [Boolean]
|
|
1298
|
+
attr_accessor :read_only
|
|
1299
|
+
alias_method :read_only?, :read_only
|
|
1300
|
+
|
|
1172
1301
|
# Whether this property is required.
|
|
1173
1302
|
# Corresponds to the JSON property `required`
|
|
1174
1303
|
# @return [Array<String>]
|
|
1175
1304
|
attr_accessor :required
|
|
1176
1305
|
|
|
1306
|
+
# JsonSchema representation of schema metadata
|
|
1307
|
+
# Corresponds to the JSON property `then`
|
|
1308
|
+
# @return [Google::Apis::ConnectorsV2::JsonSchema]
|
|
1309
|
+
attr_accessor :then_prop
|
|
1310
|
+
|
|
1311
|
+
# A title of the schema.
|
|
1312
|
+
# Corresponds to the JSON property `title`
|
|
1313
|
+
# @return [String]
|
|
1314
|
+
attr_accessor :title
|
|
1315
|
+
|
|
1177
1316
|
# JSON Schema Validation: A Vocabulary for Structural Validation of JSON
|
|
1178
1317
|
# Corresponds to the JSON property `type`
|
|
1179
1318
|
# @return [Array<String>]
|
|
@@ -1185,32 +1324,67 @@ module Google
|
|
|
1185
1324
|
attr_accessor :unique_items
|
|
1186
1325
|
alias_method :unique_items?, :unique_items
|
|
1187
1326
|
|
|
1327
|
+
# Whether the value is write-only.
|
|
1328
|
+
# Corresponds to the JSON property `writeOnly`
|
|
1329
|
+
# @return [Boolean]
|
|
1330
|
+
attr_accessor :write_only
|
|
1331
|
+
alias_method :write_only?, :write_only
|
|
1332
|
+
|
|
1188
1333
|
def initialize(**args)
|
|
1189
1334
|
update!(**args)
|
|
1190
1335
|
end
|
|
1191
1336
|
|
|
1192
1337
|
# Update properties of this object
|
|
1193
1338
|
def update!(**args)
|
|
1339
|
+
@_comment = args[:_comment] if args.key?(:_comment)
|
|
1340
|
+
@_defs = args[:_defs] if args.key?(:_defs)
|
|
1341
|
+
@_id = args[:_id] if args.key?(:_id)
|
|
1342
|
+
@_ref = args[:_ref] if args.key?(:_ref)
|
|
1343
|
+
@_schema = args[:_schema] if args.key?(:_schema)
|
|
1194
1344
|
@additional_details = args[:additional_details] if args.key?(:additional_details)
|
|
1345
|
+
@additional_items = args[:additional_items] if args.key?(:additional_items)
|
|
1346
|
+
@additional_properties = args[:additional_properties] if args.key?(:additional_properties)
|
|
1347
|
+
@all_of = args[:all_of] if args.key?(:all_of)
|
|
1348
|
+
@any_of = args[:any_of] if args.key?(:any_of)
|
|
1349
|
+
@const = args[:const] if args.key?(:const)
|
|
1350
|
+
@contains = args[:contains] if args.key?(:contains)
|
|
1351
|
+
@content_encoding = args[:content_encoding] if args.key?(:content_encoding)
|
|
1352
|
+
@content_media_type = args[:content_media_type] if args.key?(:content_media_type)
|
|
1195
1353
|
@default = args[:default] if args.key?(:default)
|
|
1354
|
+
@definitions = args[:definitions] if args.key?(:definitions)
|
|
1355
|
+
@dependencies = args[:dependencies] if args.key?(:dependencies)
|
|
1196
1356
|
@description = args[:description] if args.key?(:description)
|
|
1357
|
+
@else = args[:else] if args.key?(:else)
|
|
1197
1358
|
@enum = args[:enum] if args.key?(:enum)
|
|
1359
|
+
@examples = args[:examples] if args.key?(:examples)
|
|
1198
1360
|
@exclusive_maximum = args[:exclusive_maximum] if args.key?(:exclusive_maximum)
|
|
1199
1361
|
@exclusive_minimum = args[:exclusive_minimum] if args.key?(:exclusive_minimum)
|
|
1200
1362
|
@format = args[:format] if args.key?(:format)
|
|
1363
|
+
@if = args[:if] if args.key?(:if)
|
|
1201
1364
|
@items = args[:items] if args.key?(:items)
|
|
1202
1365
|
@jdbc_type = args[:jdbc_type] if args.key?(:jdbc_type)
|
|
1203
1366
|
@max_items = args[:max_items] if args.key?(:max_items)
|
|
1204
1367
|
@max_length = args[:max_length] if args.key?(:max_length)
|
|
1368
|
+
@max_properties = args[:max_properties] if args.key?(:max_properties)
|
|
1205
1369
|
@maximum = args[:maximum] if args.key?(:maximum)
|
|
1206
1370
|
@min_items = args[:min_items] if args.key?(:min_items)
|
|
1207
1371
|
@min_length = args[:min_length] if args.key?(:min_length)
|
|
1372
|
+
@min_properties = args[:min_properties] if args.key?(:min_properties)
|
|
1208
1373
|
@minimum = args[:minimum] if args.key?(:minimum)
|
|
1374
|
+
@multiple_of = args[:multiple_of] if args.key?(:multiple_of)
|
|
1375
|
+
@not = args[:not] if args.key?(:not)
|
|
1376
|
+
@one_of = args[:one_of] if args.key?(:one_of)
|
|
1209
1377
|
@pattern = args[:pattern] if args.key?(:pattern)
|
|
1378
|
+
@pattern_properties = args[:pattern_properties] if args.key?(:pattern_properties)
|
|
1210
1379
|
@properties = args[:properties] if args.key?(:properties)
|
|
1380
|
+
@property_names = args[:property_names] if args.key?(:property_names)
|
|
1381
|
+
@read_only = args[:read_only] if args.key?(:read_only)
|
|
1211
1382
|
@required = args[:required] if args.key?(:required)
|
|
1383
|
+
@then_prop = args[:then_prop] if args.key?(:then_prop)
|
|
1384
|
+
@title = args[:title] if args.key?(:title)
|
|
1212
1385
|
@type = args[:type] if args.key?(:type)
|
|
1213
1386
|
@unique_items = args[:unique_items] if args.key?(:unique_items)
|
|
1387
|
+
@write_only = args[:write_only] if args.key?(:write_only)
|
|
1214
1388
|
end
|
|
1215
1389
|
end
|
|
1216
1390
|
|
|
@@ -1390,6 +1564,11 @@ module Google
|
|
|
1390
1564
|
# @return [String]
|
|
1391
1565
|
attr_accessor :page_token
|
|
1392
1566
|
|
|
1567
|
+
# List of tool names to for selective tool fetching.
|
|
1568
|
+
# Corresponds to the JSON property `toolNames`
|
|
1569
|
+
# @return [Array<String>]
|
|
1570
|
+
attr_accessor :tool_names
|
|
1571
|
+
|
|
1393
1572
|
# List of tool specifications.
|
|
1394
1573
|
# Corresponds to the JSON property `toolSpec`
|
|
1395
1574
|
# @return [Google::Apis::ConnectorsV2::ToolSpec]
|
|
@@ -1404,6 +1583,7 @@ module Google
|
|
|
1404
1583
|
@execution_config = args[:execution_config] if args.key?(:execution_config)
|
|
1405
1584
|
@page_size = args[:page_size] if args.key?(:page_size)
|
|
1406
1585
|
@page_token = args[:page_token] if args.key?(:page_token)
|
|
1586
|
+
@tool_names = args[:tool_names] if args.key?(:tool_names)
|
|
1407
1587
|
@tool_spec = args[:tool_spec] if args.key?(:tool_spec)
|
|
1408
1588
|
end
|
|
1409
1589
|
end
|
|
@@ -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.34.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260527"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -684,28 +684,71 @@ module Google
|
|
|
684
684
|
class JsonSchema
|
|
685
685
|
# @private
|
|
686
686
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
687
|
+
property :_comment, as: '$comment'
|
|
688
|
+
hash :_defs, as: '$defs', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
689
|
+
|
|
690
|
+
property :_id, as: '$id'
|
|
691
|
+
property :_ref, as: '$ref'
|
|
692
|
+
property :_schema, as: '$schema'
|
|
687
693
|
hash :additional_details, as: 'additionalDetails'
|
|
694
|
+
property :additional_items, as: 'additionalItems', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
695
|
+
|
|
696
|
+
property :additional_properties, as: 'additionalProperties', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
697
|
+
|
|
698
|
+
collection :all_of, as: 'allOf', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
699
|
+
|
|
700
|
+
collection :any_of, as: 'anyOf', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
701
|
+
|
|
702
|
+
property :const, as: 'const'
|
|
703
|
+
property :contains, as: 'contains', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
704
|
+
|
|
705
|
+
property :content_encoding, as: 'contentEncoding'
|
|
706
|
+
property :content_media_type, as: 'contentMediaType'
|
|
688
707
|
property :default, as: 'default'
|
|
708
|
+
hash :definitions, as: 'definitions', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
709
|
+
|
|
710
|
+
hash :dependencies, as: 'dependencies'
|
|
689
711
|
property :description, as: 'description'
|
|
712
|
+
property :else, as: 'else', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
713
|
+
|
|
690
714
|
collection :enum, as: 'enum'
|
|
715
|
+
collection :examples, as: 'examples'
|
|
691
716
|
property :exclusive_maximum, as: 'exclusiveMaximum'
|
|
692
717
|
property :exclusive_minimum, as: 'exclusiveMinimum'
|
|
693
718
|
property :format, as: 'format'
|
|
719
|
+
property :if, as: 'if', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
720
|
+
|
|
694
721
|
property :items, as: 'items', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
695
722
|
|
|
696
723
|
property :jdbc_type, as: 'jdbcType'
|
|
697
724
|
property :max_items, as: 'maxItems'
|
|
698
725
|
property :max_length, as: 'maxLength'
|
|
726
|
+
property :max_properties, as: 'maxProperties'
|
|
699
727
|
property :maximum, as: 'maximum'
|
|
700
728
|
property :min_items, as: 'minItems'
|
|
701
729
|
property :min_length, as: 'minLength'
|
|
730
|
+
property :min_properties, as: 'minProperties'
|
|
702
731
|
property :minimum, as: 'minimum'
|
|
732
|
+
property :multiple_of, as: 'multipleOf'
|
|
733
|
+
property :not, as: 'not', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
734
|
+
|
|
735
|
+
collection :one_of, as: 'oneOf', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
736
|
+
|
|
703
737
|
property :pattern, as: 'pattern'
|
|
738
|
+
hash :pattern_properties, as: 'patternProperties', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
739
|
+
|
|
704
740
|
hash :properties, as: 'properties', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
705
741
|
|
|
742
|
+
property :property_names, as: 'propertyNames', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
743
|
+
|
|
744
|
+
property :read_only, as: 'readOnly'
|
|
706
745
|
collection :required, as: 'required'
|
|
746
|
+
property :then_prop, as: 'then', class: Google::Apis::ConnectorsV2::JsonSchema, decorator: Google::Apis::ConnectorsV2::JsonSchema::Representation
|
|
747
|
+
|
|
748
|
+
property :title, as: 'title'
|
|
707
749
|
collection :type, as: 'type'
|
|
708
750
|
property :unique_items, as: 'uniqueItems'
|
|
751
|
+
property :write_only, as: 'writeOnly'
|
|
709
752
|
end
|
|
710
753
|
end
|
|
711
754
|
|
|
@@ -766,6 +809,7 @@ module Google
|
|
|
766
809
|
|
|
767
810
|
property :page_size, as: 'pageSize'
|
|
768
811
|
property :page_token, as: 'pageToken'
|
|
812
|
+
collection :tool_names, as: 'toolNames'
|
|
769
813
|
property :tool_spec, as: 'toolSpec', class: Google::Apis::ConnectorsV2::ToolSpec, decorator: Google::Apis::ConnectorsV2::ToolSpec::Representation
|
|
770
814
|
|
|
771
815
|
end
|
|
@@ -1007,6 +1007,8 @@ module Google
|
|
|
1007
1007
|
# Page size.
|
|
1008
1008
|
# @param [String] page_token
|
|
1009
1009
|
# Page token.
|
|
1010
|
+
# @param [Array<String>, String] tool_names
|
|
1011
|
+
# List of tool names for selective tool fetching.
|
|
1010
1012
|
# @param [String] fields
|
|
1011
1013
|
# Selector specifying which fields to include in a partial response.
|
|
1012
1014
|
# @param [String] quota_user
|
|
@@ -1024,7 +1026,7 @@ module Google
|
|
|
1024
1026
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1025
1027
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1026
1028
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1027
|
-
def list_project_location_connection_tools(parent, execution_config_headers: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1029
|
+
def list_project_location_connection_tools(parent, execution_config_headers: nil, page_size: nil, page_token: nil, tool_names: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1028
1030
|
command = make_simple_command(:get, 'v2/{+parent}/tools', options)
|
|
1029
1031
|
command.response_representation = Google::Apis::ConnectorsV2::ListToolsResponse::Representation
|
|
1030
1032
|
command.response_class = Google::Apis::ConnectorsV2::ListToolsResponse
|
|
@@ -1032,6 +1034,7 @@ module Google
|
|
|
1032
1034
|
command.query['executionConfig.headers'] = execution_config_headers unless execution_config_headers.nil?
|
|
1033
1035
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1034
1036
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1037
|
+
command.query['toolNames'] = tool_names unless tool_names.nil?
|
|
1035
1038
|
command.query['fields'] = fields unless fields.nil?
|
|
1036
1039
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1037
1040
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.34.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v2/v0.34.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|