google-apis-connectors_v1 0.37.0 → 0.38.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81be8034d564cbe4da8d876bf241d6a9e2f032c01561a2f3cb5de97100e9f399
|
4
|
+
data.tar.gz: 64ace8e3916285e3cc2cf3ee423b24c8e5e9de85a75eb7b26143f7db8724e0e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a28b54e8c84a3a60549d876dc5457869813c6fc2a39ed85c37fb99191162191a09e661ac07caa16fe5722a33f1e1f2827578836169bcf7fdb821600341ca6cb
|
7
|
+
data.tar.gz: 4f4130365f8e2a66d5b1dee5f60d037ddc2efa628ca4f83206164d1e80d3d3d121cd8270712d50f6698ed90978bfd4cdd269966319230a595b27b9c87bcf7c6b
|
data/CHANGELOG.md
CHANGED
@@ -559,6 +559,12 @@ module Google
|
|
559
559
|
# @return [String]
|
560
560
|
attr_accessor :image_location
|
561
561
|
|
562
|
+
# Output only. Is trusted tester program enabled for the project.
|
563
|
+
# Corresponds to the JSON property `isTrustedTester`
|
564
|
+
# @return [Boolean]
|
565
|
+
attr_accessor :is_trusted_tester
|
566
|
+
alias_method :is_trusted_tester?, :is_trusted_tester
|
567
|
+
|
562
568
|
# Optional. Resource labels to represent user-provided metadata. Refer to cloud
|
563
569
|
# documentation on labels for more details. https://cloud.google.com/compute/
|
564
570
|
# docs/labeling-resources
|
@@ -649,6 +655,7 @@ module Google
|
|
649
655
|
@eventing_enablement_type = args[:eventing_enablement_type] if args.key?(:eventing_enablement_type)
|
650
656
|
@eventing_runtime_data = args[:eventing_runtime_data] if args.key?(:eventing_runtime_data)
|
651
657
|
@image_location = args[:image_location] if args.key?(:image_location)
|
658
|
+
@is_trusted_tester = args[:is_trusted_tester] if args.key?(:is_trusted_tester)
|
652
659
|
@labels = args[:labels] if args.key?(:labels)
|
653
660
|
@lock_config = args[:lock_config] if args.key?(:lock_config)
|
654
661
|
@log_config = args[:log_config] if args.key?(:log_config)
|
@@ -861,6 +868,11 @@ module Google
|
|
861
868
|
# @return [Google::Apis::ConnectorsV1::ResourceRequests]
|
862
869
|
attr_accessor :resource_requests
|
863
870
|
|
871
|
+
# The name of shared connector deployment.
|
872
|
+
# Corresponds to the JSON property `sharedDeployment`
|
873
|
+
# @return [String]
|
874
|
+
attr_accessor :shared_deployment
|
875
|
+
|
864
876
|
def initialize(**args)
|
865
877
|
update!(**args)
|
866
878
|
end
|
@@ -872,6 +884,7 @@ module Google
|
|
872
884
|
@ratelimit_threshold = args[:ratelimit_threshold] if args.key?(:ratelimit_threshold)
|
873
885
|
@resource_limits = args[:resource_limits] if args.key?(:resource_limits)
|
874
886
|
@resource_requests = args[:resource_requests] if args.key?(:resource_requests)
|
887
|
+
@shared_deployment = args[:shared_deployment] if args.key?(:shared_deployment)
|
875
888
|
end
|
876
889
|
end
|
877
890
|
|
@@ -1033,6 +1046,11 @@ module Google
|
|
1033
1046
|
# @return [Google::Apis::ConnectorsV1::ResourceRequests]
|
1034
1047
|
attr_accessor :resource_requests
|
1035
1048
|
|
1049
|
+
# Output only. The name of shared connector deployment.
|
1050
|
+
# Corresponds to the JSON property `sharedDeployment`
|
1051
|
+
# @return [String]
|
1052
|
+
attr_accessor :shared_deployment
|
1053
|
+
|
1036
1054
|
def initialize(**args)
|
1037
1055
|
update!(**args)
|
1038
1056
|
end
|
@@ -1044,6 +1062,7 @@ module Google
|
|
1044
1062
|
@ratelimit_threshold = args[:ratelimit_threshold] if args.key?(:ratelimit_threshold)
|
1045
1063
|
@resource_limits = args[:resource_limits] if args.key?(:resource_limits)
|
1046
1064
|
@resource_requests = args[:resource_requests] if args.key?(:resource_requests)
|
1065
|
+
@shared_deployment = args[:shared_deployment] if args.key?(:shared_deployment)
|
1047
1066
|
end
|
1048
1067
|
end
|
1049
1068
|
|
@@ -1585,6 +1604,17 @@ module Google
|
|
1585
1604
|
attr_accessor :enrichment_enabled
|
1586
1605
|
alias_method :enrichment_enabled?, :enrichment_enabled
|
1587
1606
|
|
1607
|
+
# Optional. Private Connectivity Enabled.
|
1608
|
+
# Corresponds to the JSON property `privateConnectivityEnabled`
|
1609
|
+
# @return [Boolean]
|
1610
|
+
attr_accessor :private_connectivity_enabled
|
1611
|
+
alias_method :private_connectivity_enabled?, :private_connectivity_enabled
|
1612
|
+
|
1613
|
+
# Optional. Public Events listener endpoint.
|
1614
|
+
# Corresponds to the JSON property `publicEventsListenerEndpoint`
|
1615
|
+
# @return [String]
|
1616
|
+
attr_accessor :public_events_listener_endpoint
|
1617
|
+
|
1588
1618
|
# Define the Connectors target endpoint.
|
1589
1619
|
# Corresponds to the JSON property `registrationDestinationConfig`
|
1590
1620
|
# @return [Google::Apis::ConnectorsV1::DestinationConfig]
|
@@ -1600,6 +1630,8 @@ module Google
|
|
1600
1630
|
@auth_config = args[:auth_config] if args.key?(:auth_config)
|
1601
1631
|
@encryption_key = args[:encryption_key] if args.key?(:encryption_key)
|
1602
1632
|
@enrichment_enabled = args[:enrichment_enabled] if args.key?(:enrichment_enabled)
|
1633
|
+
@private_connectivity_enabled = args[:private_connectivity_enabled] if args.key?(:private_connectivity_enabled)
|
1634
|
+
@public_events_listener_endpoint = args[:public_events_listener_endpoint] if args.key?(:public_events_listener_endpoint)
|
1603
1635
|
@registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
|
1604
1636
|
end
|
1605
1637
|
end
|
@@ -1910,6 +1942,11 @@ module Google
|
|
1910
1942
|
# @return [String]
|
1911
1943
|
attr_accessor :field
|
1912
1944
|
|
1945
|
+
# JsonSchema representation of schema metadata
|
1946
|
+
# Corresponds to the JSON property `jsonSchema`
|
1947
|
+
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
1948
|
+
attr_accessor :json_schema
|
1949
|
+
|
1913
1950
|
# The following boolean field specifies if the current Field acts as a primary
|
1914
1951
|
# key or id if the parent is of type entity.
|
1915
1952
|
# Corresponds to the JSON property `key`
|
@@ -1940,6 +1977,7 @@ module Google
|
|
1940
1977
|
@default_value = args[:default_value] if args.key?(:default_value)
|
1941
1978
|
@description = args[:description] if args.key?(:description)
|
1942
1979
|
@field = args[:field] if args.key?(:field)
|
1980
|
+
@json_schema = args[:json_schema] if args.key?(:json_schema)
|
1943
1981
|
@key = args[:key] if args.key?(:key)
|
1944
1982
|
@nullable = args[:nullable] if args.key?(:nullable)
|
1945
1983
|
@readonly = args[:readonly] if args.key?(:readonly)
|
@@ -2060,6 +2098,11 @@ module Google
|
|
2060
2098
|
# @return [String]
|
2061
2099
|
attr_accessor :description
|
2062
2100
|
|
2101
|
+
# JsonSchema representation of schema metadata
|
2102
|
+
# Corresponds to the JSON property `jsonSchema`
|
2103
|
+
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
2104
|
+
attr_accessor :json_schema
|
2105
|
+
|
2063
2106
|
# Specifies whether a null value is allowed.
|
2064
2107
|
# Corresponds to the JSON property `nullable`
|
2065
2108
|
# @return [Boolean]
|
@@ -2080,11 +2123,83 @@ module Google
|
|
2080
2123
|
@data_type = args[:data_type] if args.key?(:data_type)
|
2081
2124
|
@default_value = args[:default_value] if args.key?(:default_value)
|
2082
2125
|
@description = args[:description] if args.key?(:description)
|
2126
|
+
@json_schema = args[:json_schema] if args.key?(:json_schema)
|
2083
2127
|
@nullable = args[:nullable] if args.key?(:nullable)
|
2084
2128
|
@parameter = args[:parameter] if args.key?(:parameter)
|
2085
2129
|
end
|
2086
2130
|
end
|
2087
2131
|
|
2132
|
+
# JsonSchema representation of schema metadata
|
2133
|
+
class JsonSchema
|
2134
|
+
include Google::Apis::Core::Hashable
|
2135
|
+
|
2136
|
+
# The default value of the field or object described by this schema.
|
2137
|
+
# Corresponds to the JSON property `default`
|
2138
|
+
# @return [Object]
|
2139
|
+
attr_accessor :default
|
2140
|
+
|
2141
|
+
# A description of this schema.
|
2142
|
+
# Corresponds to the JSON property `description`
|
2143
|
+
# @return [String]
|
2144
|
+
attr_accessor :description
|
2145
|
+
|
2146
|
+
# Possible values for an enumeration. This works in conjunction with `type` to
|
2147
|
+
# represent types with a fixed set of legal values
|
2148
|
+
# Corresponds to the JSON property `enum`
|
2149
|
+
# @return [Array<Object>]
|
2150
|
+
attr_accessor :enum
|
2151
|
+
|
2152
|
+
# Format of the value as per https://json-schema.org/understanding-json-schema/
|
2153
|
+
# reference/string.html#format
|
2154
|
+
# Corresponds to the JSON property `format`
|
2155
|
+
# @return [String]
|
2156
|
+
attr_accessor :format
|
2157
|
+
|
2158
|
+
# JsonSchema representation of schema metadata
|
2159
|
+
# Corresponds to the JSON property `items`
|
2160
|
+
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
2161
|
+
attr_accessor :items
|
2162
|
+
|
2163
|
+
# JDBC datatype of the field.
|
2164
|
+
# Corresponds to the JSON property `jdbcType`
|
2165
|
+
# @return [String]
|
2166
|
+
attr_accessor :jdbc_type
|
2167
|
+
|
2168
|
+
# The child schemas, applicable only if this is of type `object`. The key is the
|
2169
|
+
# name of the property and the value is the json schema that describes that
|
2170
|
+
# property
|
2171
|
+
# Corresponds to the JSON property `properties`
|
2172
|
+
# @return [Hash<String,Google::Apis::ConnectorsV1::JsonSchema>]
|
2173
|
+
attr_accessor :properties
|
2174
|
+
|
2175
|
+
# Whether this property is required.
|
2176
|
+
# Corresponds to the JSON property `required`
|
2177
|
+
# @return [Array<String>]
|
2178
|
+
attr_accessor :required
|
2179
|
+
|
2180
|
+
# JSON Schema Validation: A Vocabulary for Structural Validation of JSON
|
2181
|
+
# Corresponds to the JSON property `type`
|
2182
|
+
# @return [Array<String>]
|
2183
|
+
attr_accessor :type
|
2184
|
+
|
2185
|
+
def initialize(**args)
|
2186
|
+
update!(**args)
|
2187
|
+
end
|
2188
|
+
|
2189
|
+
# Update properties of this object
|
2190
|
+
def update!(**args)
|
2191
|
+
@default = args[:default] if args.key?(:default)
|
2192
|
+
@description = args[:description] if args.key?(:description)
|
2193
|
+
@enum = args[:enum] if args.key?(:enum)
|
2194
|
+
@format = args[:format] if args.key?(:format)
|
2195
|
+
@items = args[:items] if args.key?(:items)
|
2196
|
+
@jdbc_type = args[:jdbc_type] if args.key?(:jdbc_type)
|
2197
|
+
@properties = args[:properties] if args.key?(:properties)
|
2198
|
+
@required = args[:required] if args.key?(:required)
|
2199
|
+
@type = args[:type] if args.key?(:type)
|
2200
|
+
end
|
2201
|
+
end
|
2202
|
+
|
2088
2203
|
# JWT claims used for the jwt-bearer authorization grant.
|
2089
2204
|
class JwtClaims
|
2090
2205
|
include Google::Apis::Core::Hashable
|
@@ -3177,6 +3292,11 @@ module Google
|
|
3177
3292
|
# @return [String]
|
3178
3293
|
attr_accessor :field
|
3179
3294
|
|
3295
|
+
# JsonSchema representation of schema metadata
|
3296
|
+
# Corresponds to the JSON property `jsonSchema`
|
3297
|
+
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
3298
|
+
attr_accessor :json_schema
|
3299
|
+
|
3180
3300
|
def initialize(**args)
|
3181
3301
|
update!(**args)
|
3182
3302
|
end
|
@@ -3186,6 +3306,7 @@ module Google
|
|
3186
3306
|
@data_type = args[:data_type] if args.key?(:data_type)
|
3187
3307
|
@description = args[:description] if args.key?(:description)
|
3188
3308
|
@field = args[:field] if args.key?(:field)
|
3309
|
+
@json_schema = args[:json_schema] if args.key?(:json_schema)
|
3189
3310
|
end
|
3190
3311
|
end
|
3191
3312
|
|
@@ -3252,11 +3373,21 @@ module Google
|
|
3252
3373
|
# @return [String]
|
3253
3374
|
attr_accessor :action
|
3254
3375
|
|
3376
|
+
# JsonSchema representation of schema metadata
|
3377
|
+
# Corresponds to the JSON property `inputJsonSchema`
|
3378
|
+
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
3379
|
+
attr_accessor :input_json_schema
|
3380
|
+
|
3255
3381
|
# Output only. List of input parameter metadata for the action.
|
3256
3382
|
# Corresponds to the JSON property `inputParameters`
|
3257
3383
|
# @return [Array<Google::Apis::ConnectorsV1::InputParameter>]
|
3258
3384
|
attr_accessor :input_parameters
|
3259
3385
|
|
3386
|
+
# JsonSchema representation of schema metadata
|
3387
|
+
# Corresponds to the JSON property `resultJsonSchema`
|
3388
|
+
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
3389
|
+
attr_accessor :result_json_schema
|
3390
|
+
|
3260
3391
|
# Output only. List of result field metadata.
|
3261
3392
|
# Corresponds to the JSON property `resultMetadata`
|
3262
3393
|
# @return [Array<Google::Apis::ConnectorsV1::ResultMetadata>]
|
@@ -3269,7 +3400,9 @@ module Google
|
|
3269
3400
|
# Update properties of this object
|
3270
3401
|
def update!(**args)
|
3271
3402
|
@action = args[:action] if args.key?(:action)
|
3403
|
+
@input_json_schema = args[:input_json_schema] if args.key?(:input_json_schema)
|
3272
3404
|
@input_parameters = args[:input_parameters] if args.key?(:input_parameters)
|
3405
|
+
@result_json_schema = args[:result_json_schema] if args.key?(:result_json_schema)
|
3273
3406
|
@result_metadata = args[:result_metadata] if args.key?(:result_metadata)
|
3274
3407
|
end
|
3275
3408
|
end
|
@@ -3368,6 +3501,11 @@ module Google
|
|
3368
3501
|
# @return [Array<Google::Apis::ConnectorsV1::Field>]
|
3369
3502
|
attr_accessor :fields
|
3370
3503
|
|
3504
|
+
# JsonSchema representation of schema metadata
|
3505
|
+
# Corresponds to the JSON property `jsonSchema`
|
3506
|
+
# @return [Google::Apis::ConnectorsV1::JsonSchema]
|
3507
|
+
attr_accessor :json_schema
|
3508
|
+
|
3371
3509
|
def initialize(**args)
|
3372
3510
|
update!(**args)
|
3373
3511
|
end
|
@@ -3376,6 +3514,7 @@ module Google
|
|
3376
3514
|
def update!(**args)
|
3377
3515
|
@entity = args[:entity] if args.key?(:entity)
|
3378
3516
|
@fields = args[:fields] if args.key?(:fields)
|
3517
|
+
@json_schema = args[:json_schema] if args.key?(:json_schema)
|
3379
3518
|
end
|
3380
3519
|
end
|
3381
3520
|
|
@@ -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.38.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 = "20230906"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -280,6 +280,12 @@ module Google
|
|
280
280
|
include Google::Apis::Core::JsonObjectSupport
|
281
281
|
end
|
282
282
|
|
283
|
+
class JsonSchema
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
283
289
|
class JwtClaims
|
284
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
291
|
|
@@ -702,6 +708,7 @@ module Google
|
|
702
708
|
property :eventing_runtime_data, as: 'eventingRuntimeData', class: Google::Apis::ConnectorsV1::EventingRuntimeData, decorator: Google::Apis::ConnectorsV1::EventingRuntimeData::Representation
|
703
709
|
|
704
710
|
property :image_location, as: 'imageLocation'
|
711
|
+
property :is_trusted_tester, as: 'isTrustedTester'
|
705
712
|
hash :labels, as: 'labels'
|
706
713
|
property :lock_config, as: 'lockConfig', class: Google::Apis::ConnectorsV1::LockConfig, decorator: Google::Apis::ConnectorsV1::LockConfig::Representation
|
707
714
|
|
@@ -772,6 +779,7 @@ module Google
|
|
772
779
|
|
773
780
|
property :resource_requests, as: 'resourceRequests', class: Google::Apis::ConnectorsV1::ResourceRequests, decorator: Google::Apis::ConnectorsV1::ResourceRequests::Representation
|
774
781
|
|
782
|
+
property :shared_deployment, as: 'sharedDeployment'
|
775
783
|
end
|
776
784
|
end
|
777
785
|
|
@@ -819,6 +827,7 @@ module Google
|
|
819
827
|
|
820
828
|
property :resource_requests, as: 'resourceRequests', class: Google::Apis::ConnectorsV1::ResourceRequests, decorator: Google::Apis::ConnectorsV1::ResourceRequests::Representation
|
821
829
|
|
830
|
+
property :shared_deployment, as: 'sharedDeployment'
|
822
831
|
end
|
823
832
|
end
|
824
833
|
|
@@ -973,6 +982,8 @@ module Google
|
|
973
982
|
property :encryption_key, as: 'encryptionKey', class: Google::Apis::ConnectorsV1::ConfigVariable, decorator: Google::Apis::ConnectorsV1::ConfigVariable::Representation
|
974
983
|
|
975
984
|
property :enrichment_enabled, as: 'enrichmentEnabled'
|
985
|
+
property :private_connectivity_enabled, as: 'privateConnectivityEnabled'
|
986
|
+
property :public_events_listener_endpoint, as: 'publicEventsListenerEndpoint'
|
976
987
|
property :registration_destination_config, as: 'registrationDestinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfig, decorator: Google::Apis::ConnectorsV1::DestinationConfig::Representation
|
977
988
|
|
978
989
|
end
|
@@ -1061,6 +1072,8 @@ module Google
|
|
1061
1072
|
property :default_value, as: 'defaultValue'
|
1062
1073
|
property :description, as: 'description'
|
1063
1074
|
property :field, as: 'field'
|
1075
|
+
property :json_schema, as: 'jsonSchema', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
1076
|
+
|
1064
1077
|
property :key, as: 'key'
|
1065
1078
|
property :nullable, as: 'nullable'
|
1066
1079
|
property :readonly, as: 'readonly'
|
@@ -1100,11 +1113,30 @@ module Google
|
|
1100
1113
|
property :data_type, as: 'dataType'
|
1101
1114
|
property :default_value, as: 'defaultValue'
|
1102
1115
|
property :description, as: 'description'
|
1116
|
+
property :json_schema, as: 'jsonSchema', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
1117
|
+
|
1103
1118
|
property :nullable, as: 'nullable'
|
1104
1119
|
property :parameter, as: 'parameter'
|
1105
1120
|
end
|
1106
1121
|
end
|
1107
1122
|
|
1123
|
+
class JsonSchema
|
1124
|
+
# @private
|
1125
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1126
|
+
property :default, as: 'default'
|
1127
|
+
property :description, as: 'description'
|
1128
|
+
collection :enum, as: 'enum'
|
1129
|
+
property :format, as: 'format'
|
1130
|
+
property :items, as: 'items', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
1131
|
+
|
1132
|
+
property :jdbc_type, as: 'jdbcType'
|
1133
|
+
hash :properties, as: 'properties', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
1134
|
+
|
1135
|
+
collection :required, as: 'required'
|
1136
|
+
collection :type, as: 'type'
|
1137
|
+
end
|
1138
|
+
end
|
1139
|
+
|
1108
1140
|
class JwtClaims
|
1109
1141
|
# @private
|
1110
1142
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1409,6 +1441,8 @@ module Google
|
|
1409
1441
|
property :data_type, as: 'dataType'
|
1410
1442
|
property :description, as: 'description'
|
1411
1443
|
property :field, as: 'field'
|
1444
|
+
property :json_schema, as: 'jsonSchema', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
1445
|
+
|
1412
1446
|
end
|
1413
1447
|
end
|
1414
1448
|
|
@@ -1433,8 +1467,12 @@ module Google
|
|
1433
1467
|
# @private
|
1434
1468
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1435
1469
|
property :action, as: 'action'
|
1470
|
+
property :input_json_schema, as: 'inputJsonSchema', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
1471
|
+
|
1436
1472
|
collection :input_parameters, as: 'inputParameters', class: Google::Apis::ConnectorsV1::InputParameter, decorator: Google::Apis::ConnectorsV1::InputParameter::Representation
|
1437
1473
|
|
1474
|
+
property :result_json_schema, as: 'resultJsonSchema', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
1475
|
+
|
1438
1476
|
collection :result_metadata, as: 'resultMetadata', class: Google::Apis::ConnectorsV1::ResultMetadata, decorator: Google::Apis::ConnectorsV1::ResultMetadata::Representation
|
1439
1477
|
|
1440
1478
|
end
|
@@ -1462,6 +1500,8 @@ module Google
|
|
1462
1500
|
property :entity, as: 'entity'
|
1463
1501
|
collection :fields, as: 'fields', class: Google::Apis::ConnectorsV1::Field, decorator: Google::Apis::ConnectorsV1::Field::Representation
|
1464
1502
|
|
1503
|
+
property :json_schema, as: 'jsonSchema', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
|
1504
|
+
|
1465
1505
|
end
|
1466
1506
|
end
|
1467
1507
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.38.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-
|
11
|
+
date: 2023-09-17 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.38.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-connectors_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|