google-apis-connectors_v1 0.83.0 → 0.85.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 +8 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/connectors_v1/classes.rb +289 -6
- data/lib/google/apis/connectors_v1/gem_version.rb +3 -3
- data/lib/google/apis/connectors_v1/representations.rb +82 -0
- data/lib/google/apis/connectors_v1/service.rb +11 -6
- 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: 4a8f38361e005c5d1036cf8f9395762701f4c297a23666cd0af43bdfdcc46f70
|
|
4
|
+
data.tar.gz: 42365f39c763b9a8bff5c7bf85beeded4a6ae2f377464ede9c983404c4aabbc9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d6e002dfc48eb855a15417d36fb709649f5b165f1143a74bbaf72ce42d8752740d14572293b0524cacec12077b17cde84650dea02470fb18651a770cf3b6caa4
|
|
7
|
+
data.tar.gz: ad35fc2b882c8c09d968b1f5e7666271680faaea3ac67ad803ef9d51ca7a0b7a5543ee35a8103dd1a953ee0ce723e2d83f3690dc800da443ca2843fcee3e6c3a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-connectors_v1
|
|
2
2
|
|
|
3
|
+
### v0.85.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated using generator version 0.19.0
|
|
6
|
+
|
|
7
|
+
### v0.84.0 (2026-05-03)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260427
|
|
10
|
+
|
|
3
11
|
### v0.83.0 (2026-03-22)
|
|
4
12
|
|
|
5
13
|
* 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
|
|
|
@@ -22,6 +22,51 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module ConnectorsV1
|
|
24
24
|
|
|
25
|
+
# * AdminFilters defines a set of filters that can be applied to a connection.
|
|
26
|
+
# These are currently used by Gemini Enterprise connections.
|
|
27
|
+
class AdminFilters
|
|
28
|
+
include Google::Apis::Core::Hashable
|
|
29
|
+
|
|
30
|
+
# Required. Unique name for the filter, e.g., "SharePointSiteURL", "DocumentType"
|
|
31
|
+
# , "ChatSpaceName".
|
|
32
|
+
# Corresponds to the JSON property `filterKey`
|
|
33
|
+
# @return [String]
|
|
34
|
+
attr_accessor :filter_key
|
|
35
|
+
|
|
36
|
+
# Required. Type of the filter.
|
|
37
|
+
# Corresponds to the JSON property `filterType`
|
|
38
|
+
# @return [String]
|
|
39
|
+
attr_accessor :filter_type
|
|
40
|
+
|
|
41
|
+
# Optional. A single integer value.
|
|
42
|
+
# Corresponds to the JSON property `intValue`
|
|
43
|
+
# @return [Fixnum]
|
|
44
|
+
attr_accessor :int_value
|
|
45
|
+
|
|
46
|
+
# StringListValues is a message to store a list of string values.
|
|
47
|
+
# Corresponds to the JSON property `stringListValues`
|
|
48
|
+
# @return [Google::Apis::ConnectorsV1::StringListValues]
|
|
49
|
+
attr_accessor :string_list_values
|
|
50
|
+
|
|
51
|
+
# Optional. A single string value.
|
|
52
|
+
# Corresponds to the JSON property `stringValue`
|
|
53
|
+
# @return [String]
|
|
54
|
+
attr_accessor :string_value
|
|
55
|
+
|
|
56
|
+
def initialize(**args)
|
|
57
|
+
update!(**args)
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
# Update properties of this object
|
|
61
|
+
def update!(**args)
|
|
62
|
+
@filter_key = args[:filter_key] if args.key?(:filter_key)
|
|
63
|
+
@filter_type = args[:filter_type] if args.key?(:filter_type)
|
|
64
|
+
@int_value = args[:int_value] if args.key?(:int_value)
|
|
65
|
+
@string_list_values = args[:string_list_values] if args.key?(:string_list_values)
|
|
66
|
+
@string_value = args[:string_value] if args.key?(:string_value)
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
25
70
|
# Specifies the audit configuration for a service. The configuration determines
|
|
26
71
|
# which permission types are logged, and what identities, if any, are exempted
|
|
27
72
|
# from logging. An AuditConfig must have one or more AuditLogConfigs. If there
|
|
@@ -737,6 +782,12 @@ module Google
|
|
|
737
782
|
class Connection
|
|
738
783
|
include Google::Apis::Core::Hashable
|
|
739
784
|
|
|
785
|
+
# Optional. Admin filters for the connection. These are used by Gemini
|
|
786
|
+
# Enterprise.
|
|
787
|
+
# Corresponds to the JSON property `adminFilters`
|
|
788
|
+
# @return [Array<Google::Apis::ConnectorsV1::AdminFilters>]
|
|
789
|
+
attr_accessor :admin_filters
|
|
790
|
+
|
|
740
791
|
# Optional. Async operations enabled for the connection. If Async Operations is
|
|
741
792
|
# enabled, Connection allows the customers to initiate async long running
|
|
742
793
|
# operations using the actions API.
|
|
@@ -819,7 +870,7 @@ module Google
|
|
|
819
870
|
# @return [Google::Apis::ConnectorsV1::AuthConfig]
|
|
820
871
|
attr_accessor :eua_oauth_auth_config
|
|
821
872
|
|
|
822
|
-
# Eventing Configuration of a connection next:
|
|
873
|
+
# Eventing Configuration of a connection next: 21
|
|
823
874
|
# Corresponds to the JSON property `eventingConfig`
|
|
824
875
|
# @return [Google::Apis::ConnectorsV1::EventingConfig]
|
|
825
876
|
attr_accessor :eventing_config
|
|
@@ -948,6 +999,7 @@ module Google
|
|
|
948
999
|
|
|
949
1000
|
# Update properties of this object
|
|
950
1001
|
def update!(**args)
|
|
1002
|
+
@admin_filters = args[:admin_filters] if args.key?(:admin_filters)
|
|
951
1003
|
@async_operations_enabled = args[:async_operations_enabled] if args.key?(:async_operations_enabled)
|
|
952
1004
|
@auth_config = args[:auth_config] if args.key?(:auth_config)
|
|
953
1005
|
@auth_override_enabled = args[:auth_override_enabled] if args.key?(:auth_override_enabled)
|
|
@@ -3185,7 +3237,7 @@ module Google
|
|
|
3185
3237
|
end
|
|
3186
3238
|
end
|
|
3187
3239
|
|
|
3188
|
-
# Eventing Configuration of a connection next:
|
|
3240
|
+
# Eventing Configuration of a connection next: 21
|
|
3189
3241
|
class EventingConfig
|
|
3190
3242
|
include Google::Apis::Core::Hashable
|
|
3191
3243
|
|
|
@@ -3226,6 +3278,11 @@ module Google
|
|
|
3226
3278
|
# @return [String]
|
|
3227
3279
|
attr_accessor :events_listener_ingress_endpoint
|
|
3228
3280
|
|
|
3281
|
+
# Optional. Filter to be applied on the events to be received by the connection.
|
|
3282
|
+
# Corresponds to the JSON property `globalEventFilter`
|
|
3283
|
+
# @return [String]
|
|
3284
|
+
attr_accessor :global_event_filter
|
|
3285
|
+
|
|
3229
3286
|
# AuthConfig defines details of a authentication type.
|
|
3230
3287
|
# Corresponds to the JSON property `listenerAuthConfig`
|
|
3231
3288
|
# @return [Google::Apis::ConnectorsV1::AuthConfig]
|
|
@@ -3271,6 +3328,7 @@ module Google
|
|
|
3271
3328
|
@enrichment_config = args[:enrichment_config] if args.key?(:enrichment_config)
|
|
3272
3329
|
@enrichment_enabled = args[:enrichment_enabled] if args.key?(:enrichment_enabled)
|
|
3273
3330
|
@events_listener_ingress_endpoint = args[:events_listener_ingress_endpoint] if args.key?(:events_listener_ingress_endpoint)
|
|
3331
|
+
@global_event_filter = args[:global_event_filter] if args.key?(:global_event_filter)
|
|
3274
3332
|
@listener_auth_config = args[:listener_auth_config] if args.key?(:listener_auth_config)
|
|
3275
3333
|
@private_connectivity_allowlisted_projects = args[:private_connectivity_allowlisted_projects] if args.key?(:private_connectivity_allowlisted_projects)
|
|
3276
3334
|
@private_connectivity_enabled = args[:private_connectivity_enabled] if args.key?(:private_connectivity_enabled)
|
|
@@ -3418,6 +3476,11 @@ module Google
|
|
|
3418
3476
|
# @return [Array<String>]
|
|
3419
3477
|
attr_accessor :search_tags
|
|
3420
3478
|
|
|
3479
|
+
# The webhook model supported by this connector.
|
|
3480
|
+
# Corresponds to the JSON property `subscriptionType`
|
|
3481
|
+
# @return [String]
|
|
3482
|
+
attr_accessor :subscription_type
|
|
3483
|
+
|
|
3421
3484
|
# Output only. The type of the event listener for a specific connector.
|
|
3422
3485
|
# Corresponds to the JSON property `type`
|
|
3423
3486
|
# @return [String]
|
|
@@ -3436,6 +3499,7 @@ module Google
|
|
|
3436
3499
|
@launch_stage = args[:launch_stage] if args.key?(:launch_stage)
|
|
3437
3500
|
@name = args[:name] if args.key?(:name)
|
|
3438
3501
|
@search_tags = args[:search_tags] if args.key?(:search_tags)
|
|
3502
|
+
@subscription_type = args[:subscription_type] if args.key?(:subscription_type)
|
|
3439
3503
|
@type = args[:type] if args.key?(:type)
|
|
3440
3504
|
end
|
|
3441
3505
|
end
|
|
@@ -4169,39 +4233,122 @@ module Google
|
|
|
4169
4233
|
class JsonSchema
|
|
4170
4234
|
include Google::Apis::Core::Hashable
|
|
4171
4235
|
|
|
4236
|
+
# A comment on the schema.
|
|
4237
|
+
# Corresponds to the JSON property `$comment`
|
|
4238
|
+
# @return [String]
|
|
4239
|
+
attr_accessor :_comment
|
|
4240
|
+
|
|
4241
|
+
# Definitions for the schema.
|
|
4242
|
+
# Corresponds to the JSON property `$defs`
|
|
4243
|
+
# @return [Hash<String,Google::Apis::ConnectorsV1::JsonSchema>]
|
|
4244
|
+
attr_accessor :_defs
|
|
4245
|
+
|
|
4246
|
+
# The URI defining the core schema meta-schema.
|
|
4247
|
+
# Corresponds to the JSON property `$id`
|
|
4248
|
+
# @return [String]
|
|
4249
|
+
attr_accessor :_id
|
|
4250
|
+
|
|
4251
|
+
# A reference to another schema.
|
|
4252
|
+
# Corresponds to the JSON property `$ref`
|
|
4253
|
+
# @return [String]
|
|
4254
|
+
attr_accessor :_ref
|
|
4255
|
+
|
|
4256
|
+
# The URI defining the schema.
|
|
4257
|
+
# Corresponds to the JSON property `$schema`
|
|
4258
|
+
# @return [String]
|
|
4259
|
+
attr_accessor :_schema
|
|
4260
|
+
|
|
4172
4261
|
# Additional details apart from standard json schema fields, this gives
|
|
4173
4262
|
# flexibility to store metadata about the schema
|
|
4174
4263
|
# Corresponds to the JSON property `additionalDetails`
|
|
4175
4264
|
# @return [Hash<String,Object>]
|
|
4176
4265
|
attr_accessor :additional_details
|
|
4177
4266
|
|
|
4267
|
+
# JsonSchema representation of schema metadata
|
|
4268
|
+
# Corresponds to the JSON property `additionalItems`
|
|
4269
|
+
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
|
4270
|
+
attr_accessor :additional_items
|
|
4271
|
+
|
|
4272
|
+
# JsonSchema representation of schema metadata
|
|
4273
|
+
# Corresponds to the JSON property `additionalProperties`
|
|
4274
|
+
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
|
4275
|
+
attr_accessor :additional_properties
|
|
4276
|
+
|
|
4277
|
+
# Schema that must be valid against all of the sub-schemas.
|
|
4278
|
+
# Corresponds to the JSON property `allOf`
|
|
4279
|
+
# @return [Array<Google::Apis::ConnectorsV1::JsonSchema>]
|
|
4280
|
+
attr_accessor :all_of
|
|
4281
|
+
|
|
4282
|
+
# Schema that must be valid against at least one of the sub-schemas.
|
|
4283
|
+
# Corresponds to the JSON property `anyOf`
|
|
4284
|
+
# @return [Array<Google::Apis::ConnectorsV1::JsonSchema>]
|
|
4285
|
+
attr_accessor :any_of
|
|
4286
|
+
|
|
4287
|
+
# Const value that the data must match.
|
|
4288
|
+
# Corresponds to the JSON property `const`
|
|
4289
|
+
# @return [Object]
|
|
4290
|
+
attr_accessor :const
|
|
4291
|
+
|
|
4292
|
+
# JsonSchema representation of schema metadata
|
|
4293
|
+
# Corresponds to the JSON property `contains`
|
|
4294
|
+
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
|
4295
|
+
attr_accessor :contains
|
|
4296
|
+
|
|
4297
|
+
# Encoding of the content.
|
|
4298
|
+
# Corresponds to the JSON property `contentEncoding`
|
|
4299
|
+
# @return [String]
|
|
4300
|
+
attr_accessor :content_encoding
|
|
4301
|
+
|
|
4302
|
+
# Media type of the content.
|
|
4303
|
+
# Corresponds to the JSON property `contentMediaType`
|
|
4304
|
+
# @return [String]
|
|
4305
|
+
attr_accessor :content_media_type
|
|
4306
|
+
|
|
4178
4307
|
# The default value of the field or object described by this schema.
|
|
4179
4308
|
# Corresponds to the JSON property `default`
|
|
4180
4309
|
# @return [Object]
|
|
4181
4310
|
attr_accessor :default
|
|
4182
4311
|
|
|
4312
|
+
# Definitions for the schema.
|
|
4313
|
+
# Corresponds to the JSON property `definitions`
|
|
4314
|
+
# @return [Hash<String,Google::Apis::ConnectorsV1::JsonSchema>]
|
|
4315
|
+
attr_accessor :definitions
|
|
4316
|
+
|
|
4317
|
+
# Dependencies for the schema.
|
|
4318
|
+
# Corresponds to the JSON property `dependencies`
|
|
4319
|
+
# @return [Hash<String,Object>]
|
|
4320
|
+
attr_accessor :dependencies
|
|
4321
|
+
|
|
4183
4322
|
# A description of this schema.
|
|
4184
4323
|
# Corresponds to the JSON property `description`
|
|
4185
4324
|
# @return [String]
|
|
4186
4325
|
attr_accessor :description
|
|
4187
4326
|
|
|
4327
|
+
# JsonSchema representation of schema metadata
|
|
4328
|
+
# Corresponds to the JSON property `else`
|
|
4329
|
+
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
|
4330
|
+
attr_accessor :else
|
|
4331
|
+
|
|
4188
4332
|
# Possible values for an enumeration. This works in conjunction with `type` to
|
|
4189
4333
|
# represent types with a fixed set of legal values
|
|
4190
4334
|
# Corresponds to the JSON property `enum`
|
|
4191
4335
|
# @return [Array<Object>]
|
|
4192
4336
|
attr_accessor :enum
|
|
4193
4337
|
|
|
4338
|
+
# Examples of the value.
|
|
4339
|
+
# Corresponds to the JSON property `examples`
|
|
4340
|
+
# @return [Array<Object>]
|
|
4341
|
+
attr_accessor :examples
|
|
4342
|
+
|
|
4194
4343
|
# Whether the maximum number value is exclusive.
|
|
4195
4344
|
# Corresponds to the JSON property `exclusiveMaximum`
|
|
4196
|
-
# @return [
|
|
4345
|
+
# @return [Object]
|
|
4197
4346
|
attr_accessor :exclusive_maximum
|
|
4198
|
-
alias_method :exclusive_maximum?, :exclusive_maximum
|
|
4199
4347
|
|
|
4200
4348
|
# Whether the minimum number value is exclusive.
|
|
4201
4349
|
# Corresponds to the JSON property `exclusiveMinimum`
|
|
4202
|
-
# @return [
|
|
4350
|
+
# @return [Object]
|
|
4203
4351
|
attr_accessor :exclusive_minimum
|
|
4204
|
-
alias_method :exclusive_minimum?, :exclusive_minimum
|
|
4205
4352
|
|
|
4206
4353
|
# Format of the value as per https://json-schema.org/understanding-json-schema/
|
|
4207
4354
|
# reference/string.html#format
|
|
@@ -4209,6 +4356,11 @@ module Google
|
|
|
4209
4356
|
# @return [String]
|
|
4210
4357
|
attr_accessor :format
|
|
4211
4358
|
|
|
4359
|
+
# JsonSchema representation of schema metadata
|
|
4360
|
+
# Corresponds to the JSON property `if`
|
|
4361
|
+
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
|
4362
|
+
attr_accessor :if
|
|
4363
|
+
|
|
4212
4364
|
# JsonSchema representation of schema metadata
|
|
4213
4365
|
# Corresponds to the JSON property `items`
|
|
4214
4366
|
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
|
@@ -4229,6 +4381,11 @@ module Google
|
|
|
4229
4381
|
# @return [Fixnum]
|
|
4230
4382
|
attr_accessor :max_length
|
|
4231
4383
|
|
|
4384
|
+
# Maximum number of properties.
|
|
4385
|
+
# Corresponds to the JSON property `maxProperties`
|
|
4386
|
+
# @return [Fixnum]
|
|
4387
|
+
attr_accessor :max_properties
|
|
4388
|
+
|
|
4232
4389
|
# Maximum value of the number field.
|
|
4233
4390
|
# Corresponds to the JSON property `maximum`
|
|
4234
4391
|
# @return [Object]
|
|
@@ -4244,17 +4401,42 @@ module Google
|
|
|
4244
4401
|
# @return [Fixnum]
|
|
4245
4402
|
attr_accessor :min_length
|
|
4246
4403
|
|
|
4404
|
+
# Minimum number of properties.
|
|
4405
|
+
# Corresponds to the JSON property `minProperties`
|
|
4406
|
+
# @return [Fixnum]
|
|
4407
|
+
attr_accessor :min_properties
|
|
4408
|
+
|
|
4247
4409
|
# Minimum value of the number field.
|
|
4248
4410
|
# Corresponds to the JSON property `minimum`
|
|
4249
4411
|
# @return [Object]
|
|
4250
4412
|
attr_accessor :minimum
|
|
4251
4413
|
|
|
4414
|
+
# Number must be a multiple of this value.
|
|
4415
|
+
# Corresponds to the JSON property `multipleOf`
|
|
4416
|
+
# @return [Float]
|
|
4417
|
+
attr_accessor :multiple_of
|
|
4418
|
+
|
|
4419
|
+
# JsonSchema representation of schema metadata
|
|
4420
|
+
# Corresponds to the JSON property `not`
|
|
4421
|
+
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
|
4422
|
+
attr_accessor :not
|
|
4423
|
+
|
|
4424
|
+
# Schema that must be valid against at least one of the sub-schemas.
|
|
4425
|
+
# Corresponds to the JSON property `oneOf`
|
|
4426
|
+
# @return [Array<Google::Apis::ConnectorsV1::JsonSchema>]
|
|
4427
|
+
attr_accessor :one_of
|
|
4428
|
+
|
|
4252
4429
|
# Regex pattern of the string field. This is a string value that describes the
|
|
4253
4430
|
# regular expression that the string value should match.
|
|
4254
4431
|
# Corresponds to the JSON property `pattern`
|
|
4255
4432
|
# @return [String]
|
|
4256
4433
|
attr_accessor :pattern
|
|
4257
4434
|
|
|
4435
|
+
# Pattern properties for the schema.
|
|
4436
|
+
# Corresponds to the JSON property `patternProperties`
|
|
4437
|
+
# @return [Hash<String,Google::Apis::ConnectorsV1::JsonSchema>]
|
|
4438
|
+
attr_accessor :pattern_properties
|
|
4439
|
+
|
|
4258
4440
|
# The child schemas, applicable only if this is of type `object`. The key is the
|
|
4259
4441
|
# name of the property and the value is the json schema that describes that
|
|
4260
4442
|
# property
|
|
@@ -4262,11 +4444,32 @@ module Google
|
|
|
4262
4444
|
# @return [Hash<String,Google::Apis::ConnectorsV1::JsonSchema>]
|
|
4263
4445
|
attr_accessor :properties
|
|
4264
4446
|
|
|
4447
|
+
# JsonSchema representation of schema metadata
|
|
4448
|
+
# Corresponds to the JSON property `propertyNames`
|
|
4449
|
+
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
|
4450
|
+
attr_accessor :property_names
|
|
4451
|
+
|
|
4452
|
+
# Whether the value is read-only.
|
|
4453
|
+
# Corresponds to the JSON property `readOnly`
|
|
4454
|
+
# @return [Boolean]
|
|
4455
|
+
attr_accessor :read_only
|
|
4456
|
+
alias_method :read_only?, :read_only
|
|
4457
|
+
|
|
4265
4458
|
# Whether this property is required.
|
|
4266
4459
|
# Corresponds to the JSON property `required`
|
|
4267
4460
|
# @return [Array<String>]
|
|
4268
4461
|
attr_accessor :required
|
|
4269
4462
|
|
|
4463
|
+
# JsonSchema representation of schema metadata
|
|
4464
|
+
# Corresponds to the JSON property `then`
|
|
4465
|
+
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
|
4466
|
+
attr_accessor :then_prop
|
|
4467
|
+
|
|
4468
|
+
# A title of the schema.
|
|
4469
|
+
# Corresponds to the JSON property `title`
|
|
4470
|
+
# @return [String]
|
|
4471
|
+
attr_accessor :title
|
|
4472
|
+
|
|
4270
4473
|
# JSON Schema Validation: A Vocabulary for Structural Validation of JSON
|
|
4271
4474
|
# Corresponds to the JSON property `type`
|
|
4272
4475
|
# @return [Array<String>]
|
|
@@ -4278,32 +4481,67 @@ module Google
|
|
|
4278
4481
|
attr_accessor :unique_items
|
|
4279
4482
|
alias_method :unique_items?, :unique_items
|
|
4280
4483
|
|
|
4484
|
+
# Whether the value is write-only.
|
|
4485
|
+
# Corresponds to the JSON property `writeOnly`
|
|
4486
|
+
# @return [Boolean]
|
|
4487
|
+
attr_accessor :write_only
|
|
4488
|
+
alias_method :write_only?, :write_only
|
|
4489
|
+
|
|
4281
4490
|
def initialize(**args)
|
|
4282
4491
|
update!(**args)
|
|
4283
4492
|
end
|
|
4284
4493
|
|
|
4285
4494
|
# Update properties of this object
|
|
4286
4495
|
def update!(**args)
|
|
4496
|
+
@_comment = args[:_comment] if args.key?(:_comment)
|
|
4497
|
+
@_defs = args[:_defs] if args.key?(:_defs)
|
|
4498
|
+
@_id = args[:_id] if args.key?(:_id)
|
|
4499
|
+
@_ref = args[:_ref] if args.key?(:_ref)
|
|
4500
|
+
@_schema = args[:_schema] if args.key?(:_schema)
|
|
4287
4501
|
@additional_details = args[:additional_details] if args.key?(:additional_details)
|
|
4502
|
+
@additional_items = args[:additional_items] if args.key?(:additional_items)
|
|
4503
|
+
@additional_properties = args[:additional_properties] if args.key?(:additional_properties)
|
|
4504
|
+
@all_of = args[:all_of] if args.key?(:all_of)
|
|
4505
|
+
@any_of = args[:any_of] if args.key?(:any_of)
|
|
4506
|
+
@const = args[:const] if args.key?(:const)
|
|
4507
|
+
@contains = args[:contains] if args.key?(:contains)
|
|
4508
|
+
@content_encoding = args[:content_encoding] if args.key?(:content_encoding)
|
|
4509
|
+
@content_media_type = args[:content_media_type] if args.key?(:content_media_type)
|
|
4288
4510
|
@default = args[:default] if args.key?(:default)
|
|
4511
|
+
@definitions = args[:definitions] if args.key?(:definitions)
|
|
4512
|
+
@dependencies = args[:dependencies] if args.key?(:dependencies)
|
|
4289
4513
|
@description = args[:description] if args.key?(:description)
|
|
4514
|
+
@else = args[:else] if args.key?(:else)
|
|
4290
4515
|
@enum = args[:enum] if args.key?(:enum)
|
|
4516
|
+
@examples = args[:examples] if args.key?(:examples)
|
|
4291
4517
|
@exclusive_maximum = args[:exclusive_maximum] if args.key?(:exclusive_maximum)
|
|
4292
4518
|
@exclusive_minimum = args[:exclusive_minimum] if args.key?(:exclusive_minimum)
|
|
4293
4519
|
@format = args[:format] if args.key?(:format)
|
|
4520
|
+
@if = args[:if] if args.key?(:if)
|
|
4294
4521
|
@items = args[:items] if args.key?(:items)
|
|
4295
4522
|
@jdbc_type = args[:jdbc_type] if args.key?(:jdbc_type)
|
|
4296
4523
|
@max_items = args[:max_items] if args.key?(:max_items)
|
|
4297
4524
|
@max_length = args[:max_length] if args.key?(:max_length)
|
|
4525
|
+
@max_properties = args[:max_properties] if args.key?(:max_properties)
|
|
4298
4526
|
@maximum = args[:maximum] if args.key?(:maximum)
|
|
4299
4527
|
@min_items = args[:min_items] if args.key?(:min_items)
|
|
4300
4528
|
@min_length = args[:min_length] if args.key?(:min_length)
|
|
4529
|
+
@min_properties = args[:min_properties] if args.key?(:min_properties)
|
|
4301
4530
|
@minimum = args[:minimum] if args.key?(:minimum)
|
|
4531
|
+
@multiple_of = args[:multiple_of] if args.key?(:multiple_of)
|
|
4532
|
+
@not = args[:not] if args.key?(:not)
|
|
4533
|
+
@one_of = args[:one_of] if args.key?(:one_of)
|
|
4302
4534
|
@pattern = args[:pattern] if args.key?(:pattern)
|
|
4535
|
+
@pattern_properties = args[:pattern_properties] if args.key?(:pattern_properties)
|
|
4303
4536
|
@properties = args[:properties] if args.key?(:properties)
|
|
4537
|
+
@property_names = args[:property_names] if args.key?(:property_names)
|
|
4538
|
+
@read_only = args[:read_only] if args.key?(:read_only)
|
|
4304
4539
|
@required = args[:required] if args.key?(:required)
|
|
4540
|
+
@then_prop = args[:then_prop] if args.key?(:then_prop)
|
|
4541
|
+
@title = args[:title] if args.key?(:title)
|
|
4305
4542
|
@type = args[:type] if args.key?(:type)
|
|
4306
4543
|
@unique_items = args[:unique_items] if args.key?(:unique_items)
|
|
4544
|
+
@write_only = args[:write_only] if args.key?(:write_only)
|
|
4307
4545
|
end
|
|
4308
4546
|
end
|
|
4309
4547
|
|
|
@@ -6279,6 +6517,11 @@ module Google
|
|
|
6279
6517
|
class RegionalSettings
|
|
6280
6518
|
include Google::Apis::Core::Hashable
|
|
6281
6519
|
|
|
6520
|
+
# Optional. Client type for the regional settings.
|
|
6521
|
+
# Corresponds to the JSON property `client`
|
|
6522
|
+
# @return [String]
|
|
6523
|
+
attr_accessor :client
|
|
6524
|
+
|
|
6282
6525
|
# Regional encryption config for CMEK details.
|
|
6283
6526
|
# Corresponds to the JSON property `encryptionConfig`
|
|
6284
6527
|
# @return [Google::Apis::ConnectorsV1::EncryptionConfig]
|
|
@@ -6307,6 +6550,7 @@ module Google
|
|
|
6307
6550
|
|
|
6308
6551
|
# Update properties of this object
|
|
6309
6552
|
def update!(**args)
|
|
6553
|
+
@client = args[:client] if args.key?(:client)
|
|
6310
6554
|
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
|
6311
6555
|
@name = args[:name] if args.key?(:name)
|
|
6312
6556
|
@network_config = args[:network_config] if args.key?(:network_config)
|
|
@@ -7265,6 +7509,25 @@ module Google
|
|
|
7265
7509
|
end
|
|
7266
7510
|
end
|
|
7267
7511
|
|
|
7512
|
+
# StringListValues is a message to store a list of string values.
|
|
7513
|
+
class StringListValues
|
|
7514
|
+
include Google::Apis::Core::Hashable
|
|
7515
|
+
|
|
7516
|
+
# Required. The list of string values.
|
|
7517
|
+
# Corresponds to the JSON property `listValues`
|
|
7518
|
+
# @return [Array<String>]
|
|
7519
|
+
attr_accessor :list_values
|
|
7520
|
+
|
|
7521
|
+
def initialize(**args)
|
|
7522
|
+
update!(**args)
|
|
7523
|
+
end
|
|
7524
|
+
|
|
7525
|
+
# Update properties of this object
|
|
7526
|
+
def update!(**args)
|
|
7527
|
+
@list_values = args[:list_values] if args.key?(:list_values)
|
|
7528
|
+
end
|
|
7529
|
+
end
|
|
7530
|
+
|
|
7268
7531
|
# Supported runtime features of a connector version.
|
|
7269
7532
|
class SupportedRuntimeFeatures
|
|
7270
7533
|
include Google::Apis::Core::Hashable
|
|
@@ -7427,6 +7690,12 @@ module Google
|
|
|
7427
7690
|
class ToolspecOverride
|
|
7428
7691
|
include Google::Apis::Core::Hashable
|
|
7429
7692
|
|
|
7693
|
+
# Required. Represents the base version of the toolspec for which admin has
|
|
7694
|
+
# added overrides.
|
|
7695
|
+
# Corresponds to the JSON property `baseVersion`
|
|
7696
|
+
# @return [String]
|
|
7697
|
+
attr_accessor :base_version
|
|
7698
|
+
|
|
7430
7699
|
# Output only. Created time.
|
|
7431
7700
|
# Corresponds to the JSON property `createTime`
|
|
7432
7701
|
# @return [String]
|
|
@@ -7450,6 +7719,7 @@ module Google
|
|
|
7450
7719
|
|
|
7451
7720
|
# Update properties of this object
|
|
7452
7721
|
def update!(**args)
|
|
7722
|
+
@base_version = args[:base_version] if args.key?(:base_version)
|
|
7453
7723
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
7454
7724
|
@tools = args[:tools] if args.key?(:tools)
|
|
7455
7725
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
@@ -7649,6 +7919,17 @@ module Google
|
|
|
7649
7919
|
# @return [String]
|
|
7650
7920
|
attr_accessor :create_time
|
|
7651
7921
|
|
|
7922
|
+
# Output only. List of event subscriptions which are using the webhook.
|
|
7923
|
+
# Corresponds to the JSON property `eventSubscriptions`
|
|
7924
|
+
# @return [Array<String>]
|
|
7925
|
+
attr_accessor :event_subscriptions
|
|
7926
|
+
|
|
7927
|
+
# Output only. List of event types for the webhook. This is the event types
|
|
7928
|
+
# subscribed by the current webhook.
|
|
7929
|
+
# Corresponds to the JSON property `eventTypes`
|
|
7930
|
+
# @return [Array<String>]
|
|
7931
|
+
attr_accessor :event_types
|
|
7932
|
+
|
|
7652
7933
|
# Output only. ID to uniquely identify webhook.
|
|
7653
7934
|
# Corresponds to the JSON property `id`
|
|
7654
7935
|
# @return [String]
|
|
@@ -7678,6 +7959,8 @@ module Google
|
|
|
7678
7959
|
def update!(**args)
|
|
7679
7960
|
@additional_variables = args[:additional_variables] if args.key?(:additional_variables)
|
|
7680
7961
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
7962
|
+
@event_subscriptions = args[:event_subscriptions] if args.key?(:event_subscriptions)
|
|
7963
|
+
@event_types = args[:event_types] if args.key?(:event_types)
|
|
7681
7964
|
@id = args[:id] if args.key?(:id)
|
|
7682
7965
|
@name = args[:name] if args.key?(:name)
|
|
7683
7966
|
@next_refresh_time = args[:next_refresh_time] if args.key?(:next_refresh_time)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ConnectorsV1
|
|
18
18
|
# Version of the google-apis-connectors_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.85.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 = "20260427"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -22,6 +22,12 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module ConnectorsV1
|
|
24
24
|
|
|
25
|
+
class AdminFilters
|
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
|
+
|
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
29
|
+
end
|
|
30
|
+
|
|
25
31
|
class AuditConfig
|
|
26
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
33
|
|
|
@@ -1000,6 +1006,12 @@ module Google
|
|
|
1000
1006
|
include Google::Apis::Core::JsonObjectSupport
|
|
1001
1007
|
end
|
|
1002
1008
|
|
|
1009
|
+
class StringListValues
|
|
1010
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1011
|
+
|
|
1012
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1013
|
+
end
|
|
1014
|
+
|
|
1003
1015
|
class SupportedRuntimeFeatures
|
|
1004
1016
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1005
1017
|
|
|
@@ -1096,6 +1108,18 @@ module Google
|
|
|
1096
1108
|
include Google::Apis::Core::JsonObjectSupport
|
|
1097
1109
|
end
|
|
1098
1110
|
|
|
1111
|
+
class AdminFilters
|
|
1112
|
+
# @private
|
|
1113
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1114
|
+
property :filter_key, as: 'filterKey'
|
|
1115
|
+
property :filter_type, as: 'filterType'
|
|
1116
|
+
property :int_value, :numeric_string => true, as: 'intValue'
|
|
1117
|
+
property :string_list_values, as: 'stringListValues', class: Google::Apis::ConnectorsV1::StringListValues, decorator: Google::Apis::ConnectorsV1::StringListValues::Representation
|
|
1118
|
+
|
|
1119
|
+
property :string_value, as: 'stringValue'
|
|
1120
|
+
end
|
|
1121
|
+
end
|
|
1122
|
+
|
|
1099
1123
|
class AuditConfig
|
|
1100
1124
|
# @private
|
|
1101
1125
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1271,6 +1295,8 @@ module Google
|
|
|
1271
1295
|
class Connection
|
|
1272
1296
|
# @private
|
|
1273
1297
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1298
|
+
collection :admin_filters, as: 'adminFilters', class: Google::Apis::ConnectorsV1::AdminFilters, decorator: Google::Apis::ConnectorsV1::AdminFilters::Representation
|
|
1299
|
+
|
|
1274
1300
|
property :async_operations_enabled, as: 'asyncOperationsEnabled'
|
|
1275
1301
|
property :auth_config, as: 'authConfig', class: Google::Apis::ConnectorsV1::AuthConfig, decorator: Google::Apis::ConnectorsV1::AuthConfig::Representation
|
|
1276
1302
|
|
|
@@ -1914,6 +1940,7 @@ module Google
|
|
|
1914
1940
|
|
|
1915
1941
|
property :enrichment_enabled, as: 'enrichmentEnabled'
|
|
1916
1942
|
property :events_listener_ingress_endpoint, as: 'eventsListenerIngressEndpoint'
|
|
1943
|
+
property :global_event_filter, as: 'globalEventFilter'
|
|
1917
1944
|
property :listener_auth_config, as: 'listenerAuthConfig', class: Google::Apis::ConnectorsV1::AuthConfig, decorator: Google::Apis::ConnectorsV1::AuthConfig::Representation
|
|
1918
1945
|
|
|
1919
1946
|
collection :private_connectivity_allowlisted_projects, as: 'privateConnectivityAllowlistedProjects'
|
|
@@ -1964,6 +1991,7 @@ module Google
|
|
|
1964
1991
|
property :launch_stage, as: 'launchStage'
|
|
1965
1992
|
property :name, as: 'name'
|
|
1966
1993
|
collection :search_tags, as: 'searchTags'
|
|
1994
|
+
property :subscription_type, as: 'subscriptionType'
|
|
1967
1995
|
property :type, as: 'type'
|
|
1968
1996
|
end
|
|
1969
1997
|
end
|
|
@@ -2165,28 +2193,71 @@ module Google
|
|
|
2165
2193
|
class JsonSchema
|
|
2166
2194
|
# @private
|
|
2167
2195
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2196
|
+
property :_comment, as: '$comment'
|
|
2197
|
+
hash :_defs, as: '$defs', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2198
|
+
|
|
2199
|
+
property :_id, as: '$id'
|
|
2200
|
+
property :_ref, as: '$ref'
|
|
2201
|
+
property :_schema, as: '$schema'
|
|
2168
2202
|
hash :additional_details, as: 'additionalDetails'
|
|
2203
|
+
property :additional_items, as: 'additionalItems', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2204
|
+
|
|
2205
|
+
property :additional_properties, as: 'additionalProperties', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2206
|
+
|
|
2207
|
+
collection :all_of, as: 'allOf', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2208
|
+
|
|
2209
|
+
collection :any_of, as: 'anyOf', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2210
|
+
|
|
2211
|
+
property :const, as: 'const'
|
|
2212
|
+
property :contains, as: 'contains', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2213
|
+
|
|
2214
|
+
property :content_encoding, as: 'contentEncoding'
|
|
2215
|
+
property :content_media_type, as: 'contentMediaType'
|
|
2169
2216
|
property :default, as: 'default'
|
|
2217
|
+
hash :definitions, as: 'definitions', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2218
|
+
|
|
2219
|
+
hash :dependencies, as: 'dependencies'
|
|
2170
2220
|
property :description, as: 'description'
|
|
2221
|
+
property :else, as: 'else', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2222
|
+
|
|
2171
2223
|
collection :enum, as: 'enum'
|
|
2224
|
+
collection :examples, as: 'examples'
|
|
2172
2225
|
property :exclusive_maximum, as: 'exclusiveMaximum'
|
|
2173
2226
|
property :exclusive_minimum, as: 'exclusiveMinimum'
|
|
2174
2227
|
property :format, as: 'format'
|
|
2228
|
+
property :if, as: 'if', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2229
|
+
|
|
2175
2230
|
property :items, as: 'items', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2176
2231
|
|
|
2177
2232
|
property :jdbc_type, as: 'jdbcType'
|
|
2178
2233
|
property :max_items, as: 'maxItems'
|
|
2179
2234
|
property :max_length, as: 'maxLength'
|
|
2235
|
+
property :max_properties, as: 'maxProperties'
|
|
2180
2236
|
property :maximum, as: 'maximum'
|
|
2181
2237
|
property :min_items, as: 'minItems'
|
|
2182
2238
|
property :min_length, as: 'minLength'
|
|
2239
|
+
property :min_properties, as: 'minProperties'
|
|
2183
2240
|
property :minimum, as: 'minimum'
|
|
2241
|
+
property :multiple_of, as: 'multipleOf'
|
|
2242
|
+
property :not, as: 'not', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2243
|
+
|
|
2244
|
+
collection :one_of, as: 'oneOf', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2245
|
+
|
|
2184
2246
|
property :pattern, as: 'pattern'
|
|
2247
|
+
hash :pattern_properties, as: 'patternProperties', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2248
|
+
|
|
2185
2249
|
hash :properties, as: 'properties', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2186
2250
|
|
|
2251
|
+
property :property_names, as: 'propertyNames', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2252
|
+
|
|
2253
|
+
property :read_only, as: 'readOnly'
|
|
2187
2254
|
collection :required, as: 'required'
|
|
2255
|
+
property :then_prop, as: 'then', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
|
2256
|
+
|
|
2257
|
+
property :title, as: 'title'
|
|
2188
2258
|
collection :type, as: 'type'
|
|
2189
2259
|
property :unique_items, as: 'uniqueItems'
|
|
2260
|
+
property :write_only, as: 'writeOnly'
|
|
2190
2261
|
end
|
|
2191
2262
|
end
|
|
2192
2263
|
|
|
@@ -2738,6 +2809,7 @@ module Google
|
|
|
2738
2809
|
class RegionalSettings
|
|
2739
2810
|
# @private
|
|
2740
2811
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2812
|
+
property :client, as: 'client'
|
|
2741
2813
|
property :encryption_config, as: 'encryptionConfig', class: Google::Apis::ConnectorsV1::EncryptionConfig, decorator: Google::Apis::ConnectorsV1::EncryptionConfig::Representation
|
|
2742
2814
|
|
|
2743
2815
|
property :name, as: 'name'
|
|
@@ -3021,6 +3093,13 @@ module Google
|
|
|
3021
3093
|
end
|
|
3022
3094
|
end
|
|
3023
3095
|
|
|
3096
|
+
class StringListValues
|
|
3097
|
+
# @private
|
|
3098
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3099
|
+
collection :list_values, as: 'listValues'
|
|
3100
|
+
end
|
|
3101
|
+
end
|
|
3102
|
+
|
|
3024
3103
|
class SupportedRuntimeFeatures
|
|
3025
3104
|
# @private
|
|
3026
3105
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3067,6 +3146,7 @@ module Google
|
|
|
3067
3146
|
class ToolspecOverride
|
|
3068
3147
|
# @private
|
|
3069
3148
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3149
|
+
property :base_version, as: 'baseVersion'
|
|
3070
3150
|
property :create_time, as: 'createTime'
|
|
3071
3151
|
collection :tools, as: 'tools'
|
|
3072
3152
|
property :update_time, as: 'updateTime'
|
|
@@ -3131,6 +3211,8 @@ module Google
|
|
|
3131
3211
|
collection :additional_variables, as: 'additionalVariables', class: Google::Apis::ConnectorsV1::ConfigVariable, decorator: Google::Apis::ConnectorsV1::ConfigVariable::Representation
|
|
3132
3212
|
|
|
3133
3213
|
property :create_time, as: 'createTime'
|
|
3214
|
+
collection :event_subscriptions, as: 'eventSubscriptions'
|
|
3215
|
+
collection :event_types, as: 'eventTypes'
|
|
3134
3216
|
property :id, as: 'id'
|
|
3135
3217
|
property :name, as: 'name'
|
|
3136
3218
|
property :next_refresh_time, as: 'nextRefreshTime'
|
|
@@ -145,15 +145,20 @@ module Google
|
|
|
145
145
|
end
|
|
146
146
|
|
|
147
147
|
# Lists information about the supported locations for this service. This method
|
|
148
|
-
#
|
|
149
|
-
#
|
|
150
|
-
#
|
|
151
|
-
#
|
|
148
|
+
# lists locations based on the resource scope provided in the
|
|
149
|
+
# ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
|
|
150
|
+
# the method lists the public locations available to all projects. * **Project-
|
|
151
|
+
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
152
|
+
# method lists locations visible to that specific project. This includes public,
|
|
153
|
+
# private, or other project-specific locations enabled for the project. For gRPC
|
|
154
|
+
# and client library implementations, the resource name is passed as the `name`
|
|
155
|
+
# field. For direct service calls, the resource name is incorporated into the
|
|
156
|
+
# request path based on the specific service implementation and version.
|
|
152
157
|
# @param [String] name
|
|
153
158
|
# The resource that owns the locations collection, if applicable.
|
|
154
159
|
# @param [Array<String>, String] extra_location_types
|
|
155
|
-
# Optional. Do not use this field
|
|
156
|
-
#
|
|
160
|
+
# Optional. Do not use this field unless explicitly documented otherwise. This
|
|
161
|
+
# is primarily for internal usage.
|
|
157
162
|
# @param [String] filter
|
|
158
163
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
159
164
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-connectors_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.85.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.85.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
|
|
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
|
- - ">="
|