google-apis-networkservices_v1 0.46.0 → 0.47.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: 7c6deecd5605f1995e6af35739e19d4850c06649f5680f3a9695bb771752604a
4
- data.tar.gz: 45f77a847093ac240adedd621e17d907c80cd1fcc7f428e1b90702330755e004
3
+ metadata.gz: 5b299afbff986fbcba98b7b53c28814d44f7abc009029b3befd940138bebf56e
4
+ data.tar.gz: 22bb80ab10c9a581aa1b0c5c16c8f3afe0579dc23b97d40d7e256c33d6d9ab48
5
5
  SHA512:
6
- metadata.gz: 1b3ec9d5a33505ff4a4a122fe08b6c2f220785e2c05a515c63f4f35a96fdaa490fac695f32acfdefeaa0d906eefdaca82541d16ab8b07c564dfecaf38097b331
7
- data.tar.gz: da0cce7245485048c1ab0a6de020dc9a8ecc1d0d46d60f09cb5ff2d20fd90f7c436caf387afa37aa1749bf5df7eb268770f60fb7991caad05b4fca3e22c3009a
6
+ metadata.gz: a3222fb7b857752ad4fcf8d43b75f5635eeea55e5327e71887f565a033353a3670d2f605a19f309186b4dc9af63aa449c4040dccb5217824182863b10519ba2c
7
+ data.tar.gz: dcb6a79652a58d702b15508fb50f7e45e5359f1eb248e35d4577719577e82ffa52c4249b0e06644855392ee4d9479f567ecdf9859b05a908c892e4fa645b694b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkservices_v1
2
2
 
3
+ ### v0.47.0 (2024-09-22)
4
+
5
+ * Regenerated from discovery document revision 20240913
6
+
3
7
  ### v0.46.0 (2024-08-25)
4
8
 
5
9
  * Regenerated from discovery document revision 20240818
@@ -2186,7 +2186,8 @@ module Google
2186
2186
  # message sent to the extension server. The metadata is available under the
2187
2187
  # namespace `com.google.lb_route_extension.`. The following variables are
2188
2188
  # supported in the metadata Struct: ``forwarding_rule_id`` - substituted with
2189
- # the forwarding rule's fully qualified resource name.
2189
+ # the forwarding rule's fully qualified resource name. Only one of the resource
2190
+ # level metadata and extension level metadata can be set.
2190
2191
  # Corresponds to the JSON property `metadata`
2191
2192
  # @return [Hash<String,Object>]
2192
2193
  attr_accessor :metadata
@@ -2274,7 +2275,8 @@ module Google
2274
2275
  # metadata_context.filter_metadata` map field. The metadata is available under
2275
2276
  # the key `com.google.lb_traffic_extension.`. The following variables are
2276
2277
  # supported in the metadata: ``forwarding_rule_id`` - substituted with the
2277
- # forwarding rule's fully qualified resource name.
2278
+ # forwarding rule's fully qualified resource name. Only one of the resource
2279
+ # level metadata and extension level metadata can be set.
2278
2280
  # Corresponds to the JSON property `metadata`
2279
2281
  # @return [Hash<String,Object>]
2280
2282
  attr_accessor :metadata
@@ -2717,6 +2719,28 @@ module Google
2717
2719
  end
2718
2720
  end
2719
2721
 
2722
+ # The configuration for Platform Telemetry logging for Eventarc Avdvanced
2723
+ # resources.
2724
+ class LoggingConfig
2725
+ include Google::Apis::Core::Hashable
2726
+
2727
+ # Optional. The minimum severity of logs that will be sent to Stackdriver/
2728
+ # Platform Telemetry. Logs at severitiy ≥ this value will be sent, unless it is
2729
+ # NONE.
2730
+ # Corresponds to the JSON property `logSeverity`
2731
+ # @return [String]
2732
+ attr_accessor :log_severity
2733
+
2734
+ def initialize(**args)
2735
+ update!(**args)
2736
+ end
2737
+
2738
+ # Update properties of this object
2739
+ def update!(**args)
2740
+ @log_severity = args[:log_severity] if args.key?(:log_severity)
2741
+ end
2742
+ end
2743
+
2720
2744
  # Mesh represents a logical configuration grouping for workload to workload
2721
2745
  # communication within a service mesh. Routes that point to mesh dictate how
2722
2746
  # requests are routed within this logical mesh boundary.
@@ -3003,6 +3027,25 @@ module Google
3003
3027
  end
3004
3028
  end
3005
3029
 
3030
+ #
3031
+ class RetryFilterPerRouteConfig
3032
+ include Google::Apis::Core::Hashable
3033
+
3034
+ # The name of the crypto key to use for encrypting event data.
3035
+ # Corresponds to the JSON property `cryptoKeyName`
3036
+ # @return [String]
3037
+ attr_accessor :crypto_key_name
3038
+
3039
+ def initialize(**args)
3040
+ update!(**args)
3041
+ end
3042
+
3043
+ # Update properties of this object
3044
+ def update!(**args)
3045
+ @crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name)
3046
+ end
3047
+ end
3048
+
3006
3049
  # ServiceBinding is the resource that defines a Service Directory Service to be
3007
3050
  # used in a BackendService resource.
3008
3051
  class ServiceBinding
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworkservicesV1
18
18
  # Version of the google-apis-networkservices_v1 gem
19
- GEM_VERSION = "0.46.0"
19
+ GEM_VERSION = "0.47.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240818"
25
+ REVISION = "20240913"
26
26
  end
27
27
  end
28
28
  end
@@ -388,6 +388,12 @@ module Google
388
388
  include Google::Apis::Core::JsonObjectSupport
389
389
  end
390
390
 
391
+ class LoggingConfig
392
+ class Representation < Google::Apis::Core::JsonRepresentation; end
393
+
394
+ include Google::Apis::Core::JsonObjectSupport
395
+ end
396
+
391
397
  class Mesh
392
398
  class Representation < Google::Apis::Core::JsonRepresentation; end
393
399
 
@@ -412,6 +418,12 @@ module Google
412
418
  include Google::Apis::Core::JsonObjectSupport
413
419
  end
414
420
 
421
+ class RetryFilterPerRouteConfig
422
+ class Representation < Google::Apis::Core::JsonRepresentation; end
423
+
424
+ include Google::Apis::Core::JsonObjectSupport
425
+ end
426
+
415
427
  class ServiceBinding
416
428
  class Representation < Google::Apis::Core::JsonRepresentation; end
417
429
 
@@ -1178,6 +1190,13 @@ module Google
1178
1190
  end
1179
1191
  end
1180
1192
 
1193
+ class LoggingConfig
1194
+ # @private
1195
+ class Representation < Google::Apis::Core::JsonRepresentation
1196
+ property :log_severity, as: 'logSeverity'
1197
+ end
1198
+ end
1199
+
1181
1200
  class Mesh
1182
1201
  # @private
1183
1202
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1229,6 +1248,13 @@ module Google
1229
1248
  end
1230
1249
  end
1231
1250
 
1251
+ class RetryFilterPerRouteConfig
1252
+ # @private
1253
+ class Representation < Google::Apis::Core::JsonRepresentation
1254
+ property :crypto_key_name, as: 'cryptoKeyName'
1255
+ end
1256
+ end
1257
+
1232
1258
  class ServiceBinding
1233
1259
  # @private
1234
1260
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkservices_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.46.0
4
+ version: 0.47.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-08-25 00:00:00.000000000 Z
11
+ date: 2024-09-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-networkservices_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.46.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.47.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1
63
63
  post_install_message:
64
64
  rdoc_options: []