google-apis-connectors_v1 0.36.0 → 0.38.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: daeaefc2ec97828eaf9a9289165b37ec8c27bfbcafa1b9403d47813996aecc41
4
- data.tar.gz: 429c1f83e8cf3f45ce5dbb7419ed0fdea315269b2486991a09f40c6163c52241
3
+ metadata.gz: 81be8034d564cbe4da8d876bf241d6a9e2f032c01561a2f3cb5de97100e9f399
4
+ data.tar.gz: 64ace8e3916285e3cc2cf3ee423b24c8e5e9de85a75eb7b26143f7db8724e0e1
5
5
  SHA512:
6
- metadata.gz: c23effa09a7d083f24b2d8085b886c77049fe7a9f16bf3c0993b262136d47bc6fe0526c60b4faa4e2e09bb0cd09072077c6cc0128bad10c3cfc5b79320928f32
7
- data.tar.gz: 5255cb57d77d7144912e0d34c9ff83ce575d9e8ea0626098baa86b3d796e62ffefa2a79ecb7db25e68c77440a78d6d92e7f2221d25ccdecb982845a4642716f2
6
+ metadata.gz: 9a28b54e8c84a3a60549d876dc5457869813c6fc2a39ed85c37fb99191162191a09e661ac07caa16fe5722a33f1e1f2827578836169bcf7fdb821600341ca6cb
7
+ data.tar.gz: 4f4130365f8e2a66d5b1dee5f60d037ddc2efa628ca4f83206164d1e80d3d3d121cd8270712d50f6698ed90978bfd4cdd269966319230a595b27b9c87bcf7c6b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.38.0 (2023-09-17)
4
+
5
+ * Regenerated from discovery document revision 20230906
6
+
7
+ ### v0.37.0 (2023-08-27)
8
+
9
+ * Regenerated from discovery document revision 20230812
10
+
3
11
  ### v0.36.0 (2023-08-13)
4
12
 
5
13
  * Regenerated from discovery document revision 20230806
@@ -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)
@@ -836,6 +843,11 @@ module Google
836
843
  class ConnectorInfraConfig
837
844
  include Google::Apis::Core::Hashable
838
845
 
846
+ # Autoscaling config for connector deployment system metrics.
847
+ # Corresponds to the JSON property `hpaConfig`
848
+ # @return [Google::Apis::ConnectorsV1::HpaConfig]
849
+ attr_accessor :hpa_config
850
+
839
851
  # Max QPS supported for internal requests originating from Connd.
840
852
  # Corresponds to the JSON property `internalclientRatelimitThreshold`
841
853
  # @return [Fixnum]
@@ -846,14 +858,33 @@ module Google
846
858
  # @return [Fixnum]
847
859
  attr_accessor :ratelimit_threshold
848
860
 
861
+ # Resource limits defined for connection pods of a given connector type.
862
+ # Corresponds to the JSON property `resourceLimits`
863
+ # @return [Google::Apis::ConnectorsV1::ResourceLimits]
864
+ attr_accessor :resource_limits
865
+
866
+ # Resource requests defined for connection pods of a given connector type.
867
+ # Corresponds to the JSON property `resourceRequests`
868
+ # @return [Google::Apis::ConnectorsV1::ResourceRequests]
869
+ attr_accessor :resource_requests
870
+
871
+ # The name of shared connector deployment.
872
+ # Corresponds to the JSON property `sharedDeployment`
873
+ # @return [String]
874
+ attr_accessor :shared_deployment
875
+
849
876
  def initialize(**args)
850
877
  update!(**args)
851
878
  end
852
879
 
853
880
  # Update properties of this object
854
881
  def update!(**args)
882
+ @hpa_config = args[:hpa_config] if args.key?(:hpa_config)
855
883
  @internalclient_ratelimit_threshold = args[:internalclient_ratelimit_threshold] if args.key?(:internalclient_ratelimit_threshold)
856
884
  @ratelimit_threshold = args[:ratelimit_threshold] if args.key?(:ratelimit_threshold)
885
+ @resource_limits = args[:resource_limits] if args.key?(:resource_limits)
886
+ @resource_requests = args[:resource_requests] if args.key?(:resource_requests)
887
+ @shared_deployment = args[:shared_deployment] if args.key?(:shared_deployment)
857
888
  end
858
889
  end
859
890
 
@@ -989,6 +1020,11 @@ module Google
989
1020
  class ConnectorVersionInfraConfig
990
1021
  include Google::Apis::Core::Hashable
991
1022
 
1023
+ # Autoscaling config for connector deployment system metrics.
1024
+ # Corresponds to the JSON property `hpaConfig`
1025
+ # @return [Google::Apis::ConnectorsV1::HpaConfig]
1026
+ attr_accessor :hpa_config
1027
+
992
1028
  # Output only. Max QPS supported for internal requests originating from Connd.
993
1029
  # Corresponds to the JSON property `internalclientRatelimitThreshold`
994
1030
  # @return [Fixnum]
@@ -1000,14 +1036,33 @@ module Google
1000
1036
  # @return [Fixnum]
1001
1037
  attr_accessor :ratelimit_threshold
1002
1038
 
1039
+ # Resource limits defined for connection pods of a given connector type.
1040
+ # Corresponds to the JSON property `resourceLimits`
1041
+ # @return [Google::Apis::ConnectorsV1::ResourceLimits]
1042
+ attr_accessor :resource_limits
1043
+
1044
+ # Resource requests defined for connection pods of a given connector type.
1045
+ # Corresponds to the JSON property `resourceRequests`
1046
+ # @return [Google::Apis::ConnectorsV1::ResourceRequests]
1047
+ attr_accessor :resource_requests
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
+
1003
1054
  def initialize(**args)
1004
1055
  update!(**args)
1005
1056
  end
1006
1057
 
1007
1058
  # Update properties of this object
1008
1059
  def update!(**args)
1060
+ @hpa_config = args[:hpa_config] if args.key?(:hpa_config)
1009
1061
  @internalclient_ratelimit_threshold = args[:internalclient_ratelimit_threshold] if args.key?(:internalclient_ratelimit_threshold)
1010
1062
  @ratelimit_threshold = args[:ratelimit_threshold] if args.key?(:ratelimit_threshold)
1063
+ @resource_limits = args[:resource_limits] if args.key?(:resource_limits)
1064
+ @resource_requests = args[:resource_requests] if args.key?(:resource_requests)
1065
+ @shared_deployment = args[:shared_deployment] if args.key?(:shared_deployment)
1011
1066
  end
1012
1067
  end
1013
1068
 
@@ -1549,6 +1604,17 @@ module Google
1549
1604
  attr_accessor :enrichment_enabled
1550
1605
  alias_method :enrichment_enabled?, :enrichment_enabled
1551
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
+
1552
1618
  # Define the Connectors target endpoint.
1553
1619
  # Corresponds to the JSON property `registrationDestinationConfig`
1554
1620
  # @return [Google::Apis::ConnectorsV1::DestinationConfig]
@@ -1564,6 +1630,8 @@ module Google
1564
1630
  @auth_config = args[:auth_config] if args.key?(:auth_config)
1565
1631
  @encryption_key = args[:encryption_key] if args.key?(:encryption_key)
1566
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)
1567
1635
  @registration_destination_config = args[:registration_destination_config] if args.key?(:registration_destination_config)
1568
1636
  end
1569
1637
  end
@@ -1874,6 +1942,11 @@ module Google
1874
1942
  # @return [String]
1875
1943
  attr_accessor :field
1876
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
+
1877
1950
  # The following boolean field specifies if the current Field acts as a primary
1878
1951
  # key or id if the parent is of type entity.
1879
1952
  # Corresponds to the JSON property `key`
@@ -1904,6 +1977,7 @@ module Google
1904
1977
  @default_value = args[:default_value] if args.key?(:default_value)
1905
1978
  @description = args[:description] if args.key?(:description)
1906
1979
  @field = args[:field] if args.key?(:field)
1980
+ @json_schema = args[:json_schema] if args.key?(:json_schema)
1907
1981
  @key = args[:key] if args.key?(:key)
1908
1982
  @nullable = args[:nullable] if args.key?(:nullable)
1909
1983
  @readonly = args[:readonly] if args.key?(:readonly)
@@ -1954,6 +2028,31 @@ module Google
1954
2028
  end
1955
2029
  end
1956
2030
 
2031
+ # Autoscaling config for connector deployment system metrics.
2032
+ class HpaConfig
2033
+ include Google::Apis::Core::Hashable
2034
+
2035
+ # Output only. Percent CPU utilization where HPA triggers autoscaling.
2036
+ # Corresponds to the JSON property `cpuUtilizationThreshold`
2037
+ # @return [Fixnum]
2038
+ attr_accessor :cpu_utilization_threshold
2039
+
2040
+ # Output only. Percent Memory utilization where HPA triggers autoscaling.
2041
+ # Corresponds to the JSON property `memoryUtilizationThreshold`
2042
+ # @return [Fixnum]
2043
+ attr_accessor :memory_utilization_threshold
2044
+
2045
+ def initialize(**args)
2046
+ update!(**args)
2047
+ end
2048
+
2049
+ # Update properties of this object
2050
+ def update!(**args)
2051
+ @cpu_utilization_threshold = args[:cpu_utilization_threshold] if args.key?(:cpu_utilization_threshold)
2052
+ @memory_utilization_threshold = args[:memory_utilization_threshold] if args.key?(:memory_utilization_threshold)
2053
+ end
2054
+ end
2055
+
1957
2056
  # Header details for a given header to be added to Endpoint.
1958
2057
  class Header
1959
2058
  include Google::Apis::Core::Hashable
@@ -1999,6 +2098,11 @@ module Google
1999
2098
  # @return [String]
2000
2099
  attr_accessor :description
2001
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
+
2002
2106
  # Specifies whether a null value is allowed.
2003
2107
  # Corresponds to the JSON property `nullable`
2004
2108
  # @return [Boolean]
@@ -2019,11 +2123,83 @@ module Google
2019
2123
  @data_type = args[:data_type] if args.key?(:data_type)
2020
2124
  @default_value = args[:default_value] if args.key?(:default_value)
2021
2125
  @description = args[:description] if args.key?(:description)
2126
+ @json_schema = args[:json_schema] if args.key?(:json_schema)
2022
2127
  @nullable = args[:nullable] if args.key?(:nullable)
2023
2128
  @parameter = args[:parameter] if args.key?(:parameter)
2024
2129
  end
2025
2130
  end
2026
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
+
2027
2203
  # JWT claims used for the jwt-bearer authorization grant.
2028
2204
  class JwtClaims
2029
2205
  include Google::Apis::Core::Hashable
@@ -3047,6 +3223,56 @@ module Google
3047
3223
  end
3048
3224
  end
3049
3225
 
3226
+ # Resource limits defined for connection pods of a given connector type.
3227
+ class ResourceLimits
3228
+ include Google::Apis::Core::Hashable
3229
+
3230
+ # Output only. CPU limit.
3231
+ # Corresponds to the JSON property `cpu`
3232
+ # @return [String]
3233
+ attr_accessor :cpu
3234
+
3235
+ # Output only. Memory limit.
3236
+ # Corresponds to the JSON property `memory`
3237
+ # @return [String]
3238
+ attr_accessor :memory
3239
+
3240
+ def initialize(**args)
3241
+ update!(**args)
3242
+ end
3243
+
3244
+ # Update properties of this object
3245
+ def update!(**args)
3246
+ @cpu = args[:cpu] if args.key?(:cpu)
3247
+ @memory = args[:memory] if args.key?(:memory)
3248
+ end
3249
+ end
3250
+
3251
+ # Resource requests defined for connection pods of a given connector type.
3252
+ class ResourceRequests
3253
+ include Google::Apis::Core::Hashable
3254
+
3255
+ # Output only. CPU request.
3256
+ # Corresponds to the JSON property `cpu`
3257
+ # @return [String]
3258
+ attr_accessor :cpu
3259
+
3260
+ # Output only. Memory request.
3261
+ # Corresponds to the JSON property `memory`
3262
+ # @return [String]
3263
+ attr_accessor :memory
3264
+
3265
+ def initialize(**args)
3266
+ update!(**args)
3267
+ end
3268
+
3269
+ # Update properties of this object
3270
+ def update!(**args)
3271
+ @cpu = args[:cpu] if args.key?(:cpu)
3272
+ @memory = args[:memory] if args.key?(:memory)
3273
+ end
3274
+ end
3275
+
3050
3276
  # Metadata of result field.
3051
3277
  class ResultMetadata
3052
3278
  include Google::Apis::Core::Hashable
@@ -3066,6 +3292,11 @@ module Google
3066
3292
  # @return [String]
3067
3293
  attr_accessor :field
3068
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
+
3069
3300
  def initialize(**args)
3070
3301
  update!(**args)
3071
3302
  end
@@ -3075,6 +3306,7 @@ module Google
3075
3306
  @data_type = args[:data_type] if args.key?(:data_type)
3076
3307
  @description = args[:description] if args.key?(:description)
3077
3308
  @field = args[:field] if args.key?(:field)
3309
+ @json_schema = args[:json_schema] if args.key?(:json_schema)
3078
3310
  end
3079
3311
  end
3080
3312
 
@@ -3141,11 +3373,21 @@ module Google
3141
3373
  # @return [String]
3142
3374
  attr_accessor :action
3143
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
+
3144
3381
  # Output only. List of input parameter metadata for the action.
3145
3382
  # Corresponds to the JSON property `inputParameters`
3146
3383
  # @return [Array<Google::Apis::ConnectorsV1::InputParameter>]
3147
3384
  attr_accessor :input_parameters
3148
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
+
3149
3391
  # Output only. List of result field metadata.
3150
3392
  # Corresponds to the JSON property `resultMetadata`
3151
3393
  # @return [Array<Google::Apis::ConnectorsV1::ResultMetadata>]
@@ -3158,7 +3400,9 @@ module Google
3158
3400
  # Update properties of this object
3159
3401
  def update!(**args)
3160
3402
  @action = args[:action] if args.key?(:action)
3403
+ @input_json_schema = args[:input_json_schema] if args.key?(:input_json_schema)
3161
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)
3162
3406
  @result_metadata = args[:result_metadata] if args.key?(:result_metadata)
3163
3407
  end
3164
3408
  end
@@ -3257,6 +3501,11 @@ module Google
3257
3501
  # @return [Array<Google::Apis::ConnectorsV1::Field>]
3258
3502
  attr_accessor :fields
3259
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
+
3260
3509
  def initialize(**args)
3261
3510
  update!(**args)
3262
3511
  end
@@ -3265,6 +3514,7 @@ module Google
3265
3514
  def update!(**args)
3266
3515
  @entity = args[:entity] if args.key?(:entity)
3267
3516
  @fields = args[:fields] if args.key?(:fields)
3517
+ @json_schema = args[:json_schema] if args.key?(:json_schema)
3268
3518
  end
3269
3519
  end
3270
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.36.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 = "20230806"
25
+ REVISION = "20230906"
26
26
  end
27
27
  end
28
28
  end
@@ -262,6 +262,12 @@ module Google
262
262
  include Google::Apis::Core::JsonObjectSupport
263
263
  end
264
264
 
265
+ class HpaConfig
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
265
271
  class Header
266
272
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
273
 
@@ -274,6 +280,12 @@ module Google
274
280
  include Google::Apis::Core::JsonObjectSupport
275
281
  end
276
282
 
283
+ class JsonSchema
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
277
289
  class JwtClaims
278
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
291
 
@@ -442,6 +454,18 @@ module Google
442
454
  include Google::Apis::Core::JsonObjectSupport
443
455
  end
444
456
 
457
+ class ResourceLimits
458
+ class Representation < Google::Apis::Core::JsonRepresentation; end
459
+
460
+ include Google::Apis::Core::JsonObjectSupport
461
+ end
462
+
463
+ class ResourceRequests
464
+ class Representation < Google::Apis::Core::JsonRepresentation; end
465
+
466
+ include Google::Apis::Core::JsonObjectSupport
467
+ end
468
+
445
469
  class ResultMetadata
446
470
  class Representation < Google::Apis::Core::JsonRepresentation; end
447
471
 
@@ -684,6 +708,7 @@ module Google
684
708
  property :eventing_runtime_data, as: 'eventingRuntimeData', class: Google::Apis::ConnectorsV1::EventingRuntimeData, decorator: Google::Apis::ConnectorsV1::EventingRuntimeData::Representation
685
709
 
686
710
  property :image_location, as: 'imageLocation'
711
+ property :is_trusted_tester, as: 'isTrustedTester'
687
712
  hash :labels, as: 'labels'
688
713
  property :lock_config, as: 'lockConfig', class: Google::Apis::ConnectorsV1::LockConfig, decorator: Google::Apis::ConnectorsV1::LockConfig::Representation
689
714
 
@@ -746,8 +771,15 @@ module Google
746
771
  class ConnectorInfraConfig
747
772
  # @private
748
773
  class Representation < Google::Apis::Core::JsonRepresentation
774
+ property :hpa_config, as: 'hpaConfig', class: Google::Apis::ConnectorsV1::HpaConfig, decorator: Google::Apis::ConnectorsV1::HpaConfig::Representation
775
+
749
776
  property :internalclient_ratelimit_threshold, :numeric_string => true, as: 'internalclientRatelimitThreshold'
750
777
  property :ratelimit_threshold, :numeric_string => true, as: 'ratelimitThreshold'
778
+ property :resource_limits, as: 'resourceLimits', class: Google::Apis::ConnectorsV1::ResourceLimits, decorator: Google::Apis::ConnectorsV1::ResourceLimits::Representation
779
+
780
+ property :resource_requests, as: 'resourceRequests', class: Google::Apis::ConnectorsV1::ResourceRequests, decorator: Google::Apis::ConnectorsV1::ResourceRequests::Representation
781
+
782
+ property :shared_deployment, as: 'sharedDeployment'
751
783
  end
752
784
  end
753
785
 
@@ -787,8 +819,15 @@ module Google
787
819
  class ConnectorVersionInfraConfig
788
820
  # @private
789
821
  class Representation < Google::Apis::Core::JsonRepresentation
822
+ property :hpa_config, as: 'hpaConfig', class: Google::Apis::ConnectorsV1::HpaConfig, decorator: Google::Apis::ConnectorsV1::HpaConfig::Representation
823
+
790
824
  property :internalclient_ratelimit_threshold, :numeric_string => true, as: 'internalclientRatelimitThreshold'
791
825
  property :ratelimit_threshold, :numeric_string => true, as: 'ratelimitThreshold'
826
+ property :resource_limits, as: 'resourceLimits', class: Google::Apis::ConnectorsV1::ResourceLimits, decorator: Google::Apis::ConnectorsV1::ResourceLimits::Representation
827
+
828
+ property :resource_requests, as: 'resourceRequests', class: Google::Apis::ConnectorsV1::ResourceRequests, decorator: Google::Apis::ConnectorsV1::ResourceRequests::Representation
829
+
830
+ property :shared_deployment, as: 'sharedDeployment'
792
831
  end
793
832
  end
794
833
 
@@ -943,6 +982,8 @@ module Google
943
982
  property :encryption_key, as: 'encryptionKey', class: Google::Apis::ConnectorsV1::ConfigVariable, decorator: Google::Apis::ConnectorsV1::ConfigVariable::Representation
944
983
 
945
984
  property :enrichment_enabled, as: 'enrichmentEnabled'
985
+ property :private_connectivity_enabled, as: 'privateConnectivityEnabled'
986
+ property :public_events_listener_endpoint, as: 'publicEventsListenerEndpoint'
946
987
  property :registration_destination_config, as: 'registrationDestinationConfig', class: Google::Apis::ConnectorsV1::DestinationConfig, decorator: Google::Apis::ConnectorsV1::DestinationConfig::Representation
947
988
 
948
989
  end
@@ -1031,6 +1072,8 @@ module Google
1031
1072
  property :default_value, as: 'defaultValue'
1032
1073
  property :description, as: 'description'
1033
1074
  property :field, as: 'field'
1075
+ property :json_schema, as: 'jsonSchema', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
1076
+
1034
1077
  property :key, as: 'key'
1035
1078
  property :nullable, as: 'nullable'
1036
1079
  property :readonly, as: 'readonly'
@@ -1048,6 +1091,14 @@ module Google
1048
1091
  end
1049
1092
  end
1050
1093
 
1094
+ class HpaConfig
1095
+ # @private
1096
+ class Representation < Google::Apis::Core::JsonRepresentation
1097
+ property :cpu_utilization_threshold, :numeric_string => true, as: 'cpuUtilizationThreshold'
1098
+ property :memory_utilization_threshold, :numeric_string => true, as: 'memoryUtilizationThreshold'
1099
+ end
1100
+ end
1101
+
1051
1102
  class Header
1052
1103
  # @private
1053
1104
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1062,11 +1113,30 @@ module Google
1062
1113
  property :data_type, as: 'dataType'
1063
1114
  property :default_value, as: 'defaultValue'
1064
1115
  property :description, as: 'description'
1116
+ property :json_schema, as: 'jsonSchema', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
1117
+
1065
1118
  property :nullable, as: 'nullable'
1066
1119
  property :parameter, as: 'parameter'
1067
1120
  end
1068
1121
  end
1069
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
+
1070
1140
  class JwtClaims
1071
1141
  # @private
1072
1142
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1349,12 +1419,30 @@ module Google
1349
1419
  end
1350
1420
  end
1351
1421
 
1422
+ class ResourceLimits
1423
+ # @private
1424
+ class Representation < Google::Apis::Core::JsonRepresentation
1425
+ property :cpu, as: 'cpu'
1426
+ property :memory, as: 'memory'
1427
+ end
1428
+ end
1429
+
1430
+ class ResourceRequests
1431
+ # @private
1432
+ class Representation < Google::Apis::Core::JsonRepresentation
1433
+ property :cpu, as: 'cpu'
1434
+ property :memory, as: 'memory'
1435
+ end
1436
+ end
1437
+
1352
1438
  class ResultMetadata
1353
1439
  # @private
1354
1440
  class Representation < Google::Apis::Core::JsonRepresentation
1355
1441
  property :data_type, as: 'dataType'
1356
1442
  property :description, as: 'description'
1357
1443
  property :field, as: 'field'
1444
+ property :json_schema, as: 'jsonSchema', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
1445
+
1358
1446
  end
1359
1447
  end
1360
1448
 
@@ -1379,8 +1467,12 @@ module Google
1379
1467
  # @private
1380
1468
  class Representation < Google::Apis::Core::JsonRepresentation
1381
1469
  property :action, as: 'action'
1470
+ property :input_json_schema, as: 'inputJsonSchema', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
1471
+
1382
1472
  collection :input_parameters, as: 'inputParameters', class: Google::Apis::ConnectorsV1::InputParameter, decorator: Google::Apis::ConnectorsV1::InputParameter::Representation
1383
1473
 
1474
+ property :result_json_schema, as: 'resultJsonSchema', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
1475
+
1384
1476
  collection :result_metadata, as: 'resultMetadata', class: Google::Apis::ConnectorsV1::ResultMetadata, decorator: Google::Apis::ConnectorsV1::ResultMetadata::Representation
1385
1477
 
1386
1478
  end
@@ -1408,6 +1500,8 @@ module Google
1408
1500
  property :entity, as: 'entity'
1409
1501
  collection :fields, as: 'fields', class: Google::Apis::ConnectorsV1::Field, decorator: Google::Apis::ConnectorsV1::Field::Representation
1410
1502
 
1503
+ property :json_schema, as: 'jsonSchema', class: Google::Apis::ConnectorsV1::JsonSchema, decorator: Google::Apis::ConnectorsV1::JsonSchema::Representation
1504
+
1411
1505
  end
1412
1506
  end
1413
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.36.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-08-13 00:00:00.000000000 Z
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.36.0
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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Connectors API V1