google-apis-connectors_v1 0.39.0 → 0.40.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: 744e6ccf80e515e104977d9c393716a3a8e46f13d37afc9e0720ff39f53df8b1
4
- data.tar.gz: '08a053f656cd9239071e245ae0fb710386d0f3a5a99f0360e6e7972cc2423a85'
3
+ metadata.gz: 1c41a97e98e3be598e393e493b1f2dffe317f5ce82930fca7e4e6e83dcb84af6
4
+ data.tar.gz: 324c8ce55a079cf037f48200576986627cb7afadcf2c7c6c815b2bc761c4ca18
5
5
  SHA512:
6
- metadata.gz: ef8243ecaba18a2eb876ef81077a9790e378d34eaca44cb297e5d61206aa742905865e8cee9d3c4ec0a84237ad0de0c03fc36d95b2462b7d4fdd2402ab59141b
7
- data.tar.gz: 0b567d5a10bed8f9e17d2dc6fa23537cc9d40fe17b94f2da9f76b001cc4e58f365d0598d9cc3af4dbaeff04b355124f6edc5b13d34682f2416e0496d731a7eb8
6
+ metadata.gz: 56f3849f7c24c2528ba5b8d4d5713fe9eb750201283af266adf110a39b3b44b31015a7cf5f83c3d0ab8f6e2a600bc4e79a43a421e6048fc301677c560a8f8359
7
+ data.tar.gz: af49416066c1fa593209c155af5cbe7e5246c08ce8b463e22a5b9136a59dbe08df45f37dec64ec08aece8530d8aa9fbcfeca99e2f87ece7cb60721ab3d358a7f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-connectors_v1
2
2
 
3
+ ### v0.40.0 (2023-10-01)
4
+
5
+ * Regenerated from discovery document revision 20230920
6
+
3
7
  ### v0.39.0 (2023-09-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20230913
@@ -843,6 +843,11 @@ module Google
843
843
  class ConnectorInfraConfig
844
844
  include Google::Apis::Core::Hashable
845
845
 
846
+ # The window used for ratelimiting runtime requests to connections.
847
+ # Corresponds to the JSON property `connectionRatelimitWindowSeconds`
848
+ # @return [Fixnum]
849
+ attr_accessor :connection_ratelimit_window_seconds
850
+
846
851
  # Autoscaling config for connector deployment system metrics.
847
852
  # Corresponds to the JSON property `hpaConfig`
848
853
  # @return [Google::Apis::ConnectorsV1::HpaConfig]
@@ -879,6 +884,7 @@ module Google
879
884
 
880
885
  # Update properties of this object
881
886
  def update!(**args)
887
+ @connection_ratelimit_window_seconds = args[:connection_ratelimit_window_seconds] if args.key?(:connection_ratelimit_window_seconds)
882
888
  @hpa_config = args[:hpa_config] if args.key?(:hpa_config)
883
889
  @internalclient_ratelimit_threshold = args[:internalclient_ratelimit_threshold] if args.key?(:internalclient_ratelimit_threshold)
884
890
  @ratelimit_threshold = args[:ratelimit_threshold] if args.key?(:ratelimit_threshold)
@@ -1020,6 +1026,11 @@ module Google
1020
1026
  class ConnectorVersionInfraConfig
1021
1027
  include Google::Apis::Core::Hashable
1022
1028
 
1029
+ # Output only. The window used for ratelimiting runtime requests to connections.
1030
+ # Corresponds to the JSON property `connectionRatelimitWindowSeconds`
1031
+ # @return [Fixnum]
1032
+ attr_accessor :connection_ratelimit_window_seconds
1033
+
1023
1034
  # Autoscaling config for connector deployment system metrics.
1024
1035
  # Corresponds to the JSON property `hpaConfig`
1025
1036
  # @return [Google::Apis::ConnectorsV1::HpaConfig]
@@ -1057,6 +1068,7 @@ module Google
1057
1068
 
1058
1069
  # Update properties of this object
1059
1070
  def update!(**args)
1071
+ @connection_ratelimit_window_seconds = args[:connection_ratelimit_window_seconds] if args.key?(:connection_ratelimit_window_seconds)
1060
1072
  @hpa_config = args[:hpa_config] if args.key?(:hpa_config)
1061
1073
  @internalclient_ratelimit_threshold = args[:internalclient_ratelimit_threshold] if args.key?(:internalclient_ratelimit_threshold)
1062
1074
  @ratelimit_threshold = args[:ratelimit_threshold] if args.key?(:ratelimit_threshold)
@@ -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.39.0"
19
+ GEM_VERSION = "0.40.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 = "20230913"
25
+ REVISION = "20230920"
26
26
  end
27
27
  end
28
28
  end
@@ -771,6 +771,7 @@ module Google
771
771
  class ConnectorInfraConfig
772
772
  # @private
773
773
  class Representation < Google::Apis::Core::JsonRepresentation
774
+ property :connection_ratelimit_window_seconds, :numeric_string => true, as: 'connectionRatelimitWindowSeconds'
774
775
  property :hpa_config, as: 'hpaConfig', class: Google::Apis::ConnectorsV1::HpaConfig, decorator: Google::Apis::ConnectorsV1::HpaConfig::Representation
775
776
 
776
777
  property :internalclient_ratelimit_threshold, :numeric_string => true, as: 'internalclientRatelimitThreshold'
@@ -819,6 +820,7 @@ module Google
819
820
  class ConnectorVersionInfraConfig
820
821
  # @private
821
822
  class Representation < Google::Apis::Core::JsonRepresentation
823
+ property :connection_ratelimit_window_seconds, :numeric_string => true, as: 'connectionRatelimitWindowSeconds'
822
824
  property :hpa_config, as: 'hpaConfig', class: Google::Apis::ConnectorsV1::HpaConfig, decorator: Google::Apis::ConnectorsV1::HpaConfig::Representation
823
825
 
824
826
  property :internalclient_ratelimit_threshold, :numeric_string => true, as: 'internalclientRatelimitThreshold'
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.39.0
4
+ version: 0.40.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-24 00:00:00.000000000 Z
11
+ date: 2023-10-01 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.39.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-connectors_v1/v0.40.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: []