google-apis-apigee_v1 0.53.0 → 0.54.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: 8345972228cffd551439f1a3312b0f79b9a7e6dae23e525f8a560073eefc19b7
4
- data.tar.gz: a7a6538b0b5235d4bf902ca5a694cf120ebfc0f9532f59559c4af7d00df16c22
3
+ metadata.gz: 0a78daa0b8c2ef915be5d7c08b634daf28080893bdcf76e6329b1b6a83a9b73d
4
+ data.tar.gz: 14056cff4f1f880f898b3a7173f848d7612fea7f1884ad19fb0552d53906b1a1
5
5
  SHA512:
6
- metadata.gz: ff11bbbe76c4b2848bdd33299c7193df3e4f49cdbb950ae51a634287546d257fc87cd85b9ba085a39687e1c2ba48643776c60a6cbeefbc90365331b341ee1bfc
7
- data.tar.gz: b36c202e68da707fabdb3427fc22ee2535de52f1a8ce9b681c89a4965fa207fadd3a1b4b4bab63c8fbb4ecb7580c1eb745158b32169efb3a75b8f2fcc81eb4bf
6
+ metadata.gz: 8344ba7b75a4e3a67aa1947ef1ae83abbc1fded0fc2d76ac4d0b5ddb5100a2578e3503d14a227d4615735373a948dd1a6f66de31ccd26da299440dd666c1b7f9
7
+ data.tar.gz: 7cf95a62bfd1ad4bdd9123fe7d145b693b07619444799332414b7bbd6f469c5f81027ce344eebdc24e30ff7a256c0d22f4d3fc4c2eed2f60a2ee1a1fb120e6d0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.54.0 (2022-08-16)
4
+
5
+ * Regenerated from discovery document revision 20220811
6
+
3
7
  ### v0.53.0 (2022-08-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20220804
@@ -592,6 +592,18 @@ module Google
592
592
  # @return [String]
593
593
  attr_accessor :quota
594
594
 
595
+ # Scope of the quota decides how the quota counter gets applied and evaluate for
596
+ # quota violation. If the Scope is set as PROXY, then all the operations defined
597
+ # for the APIproduct that are associated with the same proxy will share the same
598
+ # quota counter set at the APIproduct level, making it a global counter at a
599
+ # proxy level. If the Scope is set as OPERATION, then each operations get the
600
+ # counter set at the API product dedicated, making it a local counter. Note that,
601
+ # the QuotaCounterScope applies only when an operation does not have dedicated
602
+ # quota set for itself.
603
+ # Corresponds to the JSON property `quotaCounterScope`
604
+ # @return [String]
605
+ attr_accessor :quota_counter_scope
606
+
595
607
  # Time interval over which the number of request messages is calculated.
596
608
  # Corresponds to the JSON property `quotaInterval`
597
609
  # @return [String]
@@ -629,6 +641,7 @@ module Google
629
641
  @operation_group = args[:operation_group] if args.key?(:operation_group)
630
642
  @proxies = args[:proxies] if args.key?(:proxies)
631
643
  @quota = args[:quota] if args.key?(:quota)
644
+ @quota_counter_scope = args[:quota_counter_scope] if args.key?(:quota_counter_scope)
632
645
  @quota_interval = args[:quota_interval] if args.key?(:quota_interval)
633
646
  @quota_time_unit = args[:quota_time_unit] if args.key?(:quota_time_unit)
634
647
  @scopes = args[:scopes] if args.key?(:scopes)
@@ -3068,6 +3081,12 @@ module Google
3068
3081
  class GoogleCloudApigeeV1EndpointAttachment
3069
3082
  include Google::Apis::Core::Hashable
3070
3083
 
3084
+ # Output only. State of the endpoint attachment connection to the service
3085
+ # attachment.
3086
+ # Corresponds to the JSON property `connectionState`
3087
+ # @return [String]
3088
+ attr_accessor :connection_state
3089
+
3071
3090
  # Output only. Host that can be used in either the HTTP target endpoint directly
3072
3091
  # or as the host in target server.
3073
3092
  # Corresponds to the JSON property `host`
@@ -3102,6 +3121,7 @@ module Google
3102
3121
 
3103
3122
  # Update properties of this object
3104
3123
  def update!(**args)
3124
+ @connection_state = args[:connection_state] if args.key?(:connection_state)
3105
3125
  @host = args[:host] if args.key?(:host)
3106
3126
  @location = args[:location] if args.key?(:location)
3107
3127
  @name = args[:name] if args.key?(:name)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApigeeV1
18
18
  # Version of the google-apis-apigee_v1 gem
19
- GEM_VERSION = "0.53.0"
19
+ GEM_VERSION = "0.54.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220804"
25
+ REVISION = "20220811"
26
26
  end
27
27
  end
28
28
  end
@@ -1579,6 +1579,7 @@ module Google
1579
1579
 
1580
1580
  collection :proxies, as: 'proxies'
1581
1581
  property :quota, as: 'quota'
1582
+ property :quota_counter_scope, as: 'quotaCounterScope'
1582
1583
  property :quota_interval, as: 'quotaInterval'
1583
1584
  property :quota_time_unit, as: 'quotaTimeUnit'
1584
1585
  collection :scopes, as: 'scopes'
@@ -2193,6 +2194,7 @@ module Google
2193
2194
  class GoogleCloudApigeeV1EndpointAttachment
2194
2195
  # @private
2195
2196
  class Representation < Google::Apis::Core::JsonRepresentation
2197
+ property :connection_state, as: 'connectionState'
2196
2198
  property :host, as: 'host'
2197
2199
  property :location, as: 'location'
2198
2200
  property :name, as: 'name'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-apigee_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.53.0
4
+ version: 0.54.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: 2022-08-15 00:00:00.000000000 Z
11
+ date: 2022-08-22 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-apigee_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.53.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.54.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
63
63
  post_install_message:
64
64
  rdoc_options: []