google-apis-apigee_v1 0.87.0 → 0.88.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: ea1ebfdddec6f2382deaa6106fbebe307722539ee5b5d36d716d17fd6f8f4de7
4
- data.tar.gz: 49d9a8eec0e538df8b51a59f6edbeff4c88ecff540e3d8cac813528bb16ad426
3
+ metadata.gz: c6681a76955abe2eed16a9dbf429ed02eec50c2a45a384f467c1a2cfd1e13e30
4
+ data.tar.gz: 309a7da4748d92eddc878dbc48d4279f03f7ac9ac8db279170ce0c9936207a6c
5
5
  SHA512:
6
- metadata.gz: 5f9299d5acd3a75f36a83065ebf89d974a1e96b4809f54474b7d372a78df1b37e33397d23fd23b53ab11550ea94b7a58db7cbf40aa009fff07aca4f088b51f21
7
- data.tar.gz: 2bb31033a95da00e2147b908c2b46dc5c115d20cd13a997166a5f5c3158b4dea970d500e95f2b3a16e2f665dab32fa0fd82398a2de2a557b4ddb53c58e27ac45
6
+ metadata.gz: 4554a8396f8017841ba389241c66fb531038d36fa9274afccf51b1b263611f8f8fc8514490a3ef5efae9995bb2974792f00bd4cbca41357bdc142fcd6201e13a
7
+ data.tar.gz: d5c069ccd639f2097b00cd23a627153b945f29e82cad78531fd19e7df2d3a70322ba4df8cb2af52918eaaea6579ec7adf6399569ae49912940fc6495fee52d83
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.88.0 (2024-03-24)
4
+
5
+ * Regenerated from discovery document revision 20240318
6
+
3
7
  ### v0.87.0 (2024-03-17)
4
8
 
5
9
  * Regenerated from discovery document revision 20240312
@@ -202,6 +202,40 @@ module Google
202
202
  end
203
203
  end
204
204
 
205
+ # Access logging configuration enables customers to ship the access logs from
206
+ # the tenant projects to their own project's cloud logging. The feature is at
207
+ # the instance level ad disabled by default. It can be enabled during
208
+ # CreateInstance or UpdateInstance.
209
+ class GoogleCloudApigeeV1AccessLoggingConfig
210
+ include Google::Apis::Core::Hashable
211
+
212
+ # Optional. Boolean flag that specifies whether the customer access log feature
213
+ # is enabled.
214
+ # Corresponds to the JSON property `enabled`
215
+ # @return [Boolean]
216
+ attr_accessor :enabled
217
+ alias_method :enabled?, :enabled
218
+
219
+ # Optional. Ship the access log entries that match the status_code defined in
220
+ # the filter. The status_code is the only expected/supported filter field. (Ex:
221
+ # status_code) The filter will parse it to the Common Expression Language
222
+ # semantics for expression evaluation to build the filter condition. (Ex: "
223
+ # filter": status_code >= 200 && status_code < 300 )
224
+ # Corresponds to the JSON property `filter`
225
+ # @return [String]
226
+ attr_accessor :filter
227
+
228
+ def initialize(**args)
229
+ update!(**args)
230
+ end
231
+
232
+ # Update properties of this object
233
+ def update!(**args)
234
+ @enabled = args[:enabled] if args.key?(:enabled)
235
+ @filter = args[:filter] if args.key?(:filter)
236
+ end
237
+ end
238
+
205
239
  # Remove action. For example, "Remove" : ` "name" : "target.name", "success" :
206
240
  # true `
207
241
  class GoogleCloudApigeeV1AccessRemove
@@ -5068,6 +5102,14 @@ module Google
5068
5102
  class GoogleCloudApigeeV1Instance
5069
5103
  include Google::Apis::Core::Hashable
5070
5104
 
5105
+ # Access logging configuration enables customers to ship the access logs from
5106
+ # the tenant projects to their own project's cloud logging. The feature is at
5107
+ # the instance level ad disabled by default. It can be enabled during
5108
+ # CreateInstance or UpdateInstance.
5109
+ # Corresponds to the JSON property `accessLoggingConfig`
5110
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AccessLoggingConfig]
5111
+ attr_accessor :access_logging_config
5112
+
5071
5113
  # Optional. Customer accept list represents the list of projects (id/number) on
5072
5114
  # customer side that can privately connect to the service attachment. It is an
5073
5115
  # optional field which the customers can provide during the instance creation.
@@ -5172,6 +5214,7 @@ module Google
5172
5214
 
5173
5215
  # Update properties of this object
5174
5216
  def update!(**args)
5217
+ @access_logging_config = args[:access_logging_config] if args.key?(:access_logging_config)
5175
5218
  @consumer_accept_list = args[:consumer_accept_list] if args.key?(:consumer_accept_list)
5176
5219
  @created_at = args[:created_at] if args.key?(:created_at)
5177
5220
  @description = args[:description] if args.key?(:description)
@@ -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.87.0"
19
+ GEM_VERSION = "0.88.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240312"
25
+ REVISION = "20240318"
26
26
  end
27
27
  end
28
28
  end
@@ -58,6 +58,12 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
+ class GoogleCloudApigeeV1AccessLoggingConfig
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
61
67
  class GoogleCloudApigeeV1AccessRemove
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
@@ -1767,6 +1773,14 @@ module Google
1767
1773
  end
1768
1774
  end
1769
1775
 
1776
+ class GoogleCloudApigeeV1AccessLoggingConfig
1777
+ # @private
1778
+ class Representation < Google::Apis::Core::JsonRepresentation
1779
+ property :enabled, as: 'enabled'
1780
+ property :filter, as: 'filter'
1781
+ end
1782
+ end
1783
+
1770
1784
  class GoogleCloudApigeeV1AccessRemove
1771
1785
  # @private
1772
1786
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2986,6 +3000,8 @@ module Google
2986
3000
  class GoogleCloudApigeeV1Instance
2987
3001
  # @private
2988
3002
  class Representation < Google::Apis::Core::JsonRepresentation
3003
+ property :access_logging_config, as: 'accessLoggingConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AccessLoggingConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AccessLoggingConfig::Representation
3004
+
2989
3005
  collection :consumer_accept_list, as: 'consumerAcceptList'
2990
3006
  property :created_at, :numeric_string => true, as: 'createdAt'
2991
3007
  property :description, as: 'description'
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.87.0
4
+ version: 0.88.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: 2024-03-17 00:00:00.000000000 Z
11
+ date: 2024-03-24 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.87.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.88.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: []