google-apis-networkservices_v1beta1 0.70.0 → 0.71.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a81ae46a40984f0b74b68ad801259b6e5544cdf11451ed0c5e03c57ed31ea56
4
- data.tar.gz: 4131f9a132e842c9a9f344b15b8e5e38392c9e199cdd43d4d8341bb0fc38f5d1
3
+ metadata.gz: ba9bf098d1b4226050351dc9a09a66fedd31ae430d5f579b8b584690ef11e8f8
4
+ data.tar.gz: 6fafb74a5b55da515463c8ebf263770cacc3b356cb60f652753d5add0fb9e8df
5
5
  SHA512:
6
- metadata.gz: 46537cd48642d840d3baf1dd9a8ad74a9d793008eb68defdb4aed011213e6f3a11c5f528918dbff73af4efec648422a51a962912549b2461228de9fe750c2e7c
7
- data.tar.gz: 18e3f36ef4a699b1b603a3d35a6f470e1c6f56bb24d3c7f4948defb67ea5b30f7bcb37567725cb810e9950f436d57af50145fdbb9c97eef0a911b08487516b78
6
+ metadata.gz: '06186e0cc0741877508e3532f69b193910189067ca3d275f64ecde6c71ca4c72ad0ae9604b6b10d1ff7f8573c0e89c17b366ce47323c1bbba24f0677582cc174'
7
+ data.tar.gz: 00a288576efe38b448d5376eb1fc1c366e4d3eaa5af0da667f9f93b0dcb8a0f7553809e8201b3f3de28280ec9ca76c351ec61c2d697da509904290d5f5246e3a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkservices_v1beta1
2
2
 
3
+ ### v0.71.0 (2026-06-28)
4
+
5
+ * Regenerated from discovery document revision 20260610
6
+
3
7
  ### v0.70.0 (2026-06-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20260605
@@ -235,6 +235,11 @@ module Google
235
235
  # @return [String]
236
236
  attr_accessor :network_attachment
237
237
 
238
+ # TrustConfig defines the trust configuration for egress.
239
+ # Corresponds to the JSON property `trustConfig`
240
+ # @return [Google::Apis::NetworkservicesV1beta1::AgentGatewayNetworkConfigEgressTrustConfig]
241
+ attr_accessor :trust_config
242
+
238
243
  def initialize(**args)
239
244
  update!(**args)
240
245
  end
@@ -242,6 +247,27 @@ module Google
242
247
  # Update properties of this object
243
248
  def update!(**args)
244
249
  @network_attachment = args[:network_attachment] if args.key?(:network_attachment)
250
+ @trust_config = args[:trust_config] if args.key?(:trust_config)
251
+ end
252
+ end
253
+
254
+ # TrustConfig defines the trust configuration for egress.
255
+ class AgentGatewayNetworkConfigEgressTrustConfig
256
+ include Google::Apis::Core::Hashable
257
+
258
+ # Required. PEM encoded root certificates used to validate the identity of the
259
+ # upstream servers/destinations during egress connections.
260
+ # Corresponds to the JSON property `pemCertificates`
261
+ # @return [Array<String>]
262
+ attr_accessor :pem_certificates
263
+
264
+ def initialize(**args)
265
+ update!(**args)
266
+ end
267
+
268
+ # Update properties of this object
269
+ def update!(**args)
270
+ @pem_certificates = args[:pem_certificates] if args.key?(:pem_certificates)
245
271
  end
246
272
  end
247
273
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworkservicesV1beta1
18
18
  # Version of the google-apis-networkservices_v1beta1 gem
19
- GEM_VERSION = "0.70.0"
19
+ GEM_VERSION = "0.71.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260605"
25
+ REVISION = "20260610"
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 AgentGatewayNetworkConfigEgressTrustConfig
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
61
67
  class AgentGatewaySelfManaged
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
@@ -707,6 +713,15 @@ module Google
707
713
  # @private
708
714
  class Representation < Google::Apis::Core::JsonRepresentation
709
715
  property :network_attachment, as: 'networkAttachment'
716
+ property :trust_config, as: 'trustConfig', class: Google::Apis::NetworkservicesV1beta1::AgentGatewayNetworkConfigEgressTrustConfig, decorator: Google::Apis::NetworkservicesV1beta1::AgentGatewayNetworkConfigEgressTrustConfig::Representation
717
+
718
+ end
719
+ end
720
+
721
+ class AgentGatewayNetworkConfigEgressTrustConfig
722
+ # @private
723
+ class Representation < Google::Apis::Core::JsonRepresentation
724
+ collection :pem_certificates, as: 'pemCertificates'
710
725
  end
711
726
  end
712
727
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkservices_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.70.0
4
+ version: 0.71.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.70.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.71.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: