google-apis-networkmanagement_v1beta1 0.64.0 → 0.65.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: ff27060c15bfa4565b42e60081de4bf0867fa00ca7d5a041824ab68d2b8645e3
4
- data.tar.gz: 267a1c9cd7e6b2f9bcd994107e711ed79b59904895efcb42f93211391348bf37
3
+ metadata.gz: 8899db822307512e914125dc3a71da14ac7a0eb0bbf44a98900aaea35c7394ff
4
+ data.tar.gz: a52868dd5853372620d6f7a9e696cdfda76aa17177856f8b05921abe4d70c4ad
5
5
  SHA512:
6
- metadata.gz: 142f13f3dcc3dc41144606ba318fa9ac07eebf449dd4c6282c8b0aa864b46cb7282cdc794cb9f0e180982af3774f4717eb9806882abb2462409042ea6542dd71
7
- data.tar.gz: 52bf718ac049cc6b43e7190d97d36679580dc354695c072edc27261bd4aaf4657ecd8cb6e77c6a5a3aee6dcaf0ed771251bf7360fe1ff1911f1fc01e98726819
6
+ metadata.gz: c13c965ccd1b6736616ea1ba07c182a9f9a2779e1243fb4b6327d6fb5109ddd78ebfd9c5a41caf82cfc7240583cfa5c9d2c77ee1d2369b331a42fae037601ecb
7
+ data.tar.gz: 237791db06aa1dd20566a75ca715d12973806a19a9111f19a228dc6b087081320f4825dc499a8b0249c57ee56367e7974c959056d18d9cf424616e2298345a9e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkmanagement_v1beta1
2
2
 
3
+ ### v0.65.0 (2025-09-07)
4
+
5
+ * Regenerated from discovery document revision 20250901
6
+
3
7
  ### v0.64.0 (2025-08-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20250813
@@ -1314,6 +1314,37 @@ module Google
1314
1314
  end
1315
1315
  end
1316
1316
 
1317
+ # For display only. Metadata associated with a hybrid subnet.
1318
+ class HybridSubnetInfo
1319
+ include Google::Apis::Core::Hashable
1320
+
1321
+ # Name of a hybrid subnet.
1322
+ # Corresponds to the JSON property `displayName`
1323
+ # @return [String]
1324
+ attr_accessor :display_name
1325
+
1326
+ # Name of a Google Cloud region where the hybrid subnet is configured.
1327
+ # Corresponds to the JSON property `region`
1328
+ # @return [String]
1329
+ attr_accessor :region
1330
+
1331
+ # URI of a hybrid subnet.
1332
+ # Corresponds to the JSON property `uri`
1333
+ # @return [String]
1334
+ attr_accessor :uri
1335
+
1336
+ def initialize(**args)
1337
+ update!(**args)
1338
+ end
1339
+
1340
+ # Update properties of this object
1341
+ def update!(**args)
1342
+ @display_name = args[:display_name] if args.key?(:display_name)
1343
+ @region = args[:region] if args.key?(:region)
1344
+ @uri = args[:uri] if args.key?(:uri)
1345
+ end
1346
+ end
1347
+
1317
1348
  # For display only. Metadata associated with a Compute Engine instance.
1318
1349
  class InstanceInfo
1319
1350
  include Google::Apis::Core::Hashable
@@ -1414,11 +1445,21 @@ module Google
1414
1445
  # @return [String]
1415
1446
  attr_accessor :interconnect_uri
1416
1447
 
1448
+ # Appliance IP address that was matched for L2_DEDICATED attachments.
1449
+ # Corresponds to the JSON property `l2AttachmentMatchedIpAddress`
1450
+ # @return [String]
1451
+ attr_accessor :l2_attachment_matched_ip_address
1452
+
1417
1453
  # Name of a Google Cloud region where the Interconnect attachment is configured.
1418
1454
  # Corresponds to the JSON property `region`
1419
1455
  # @return [String]
1420
1456
  attr_accessor :region
1421
1457
 
1458
+ # The type of interconnect attachment this is.
1459
+ # Corresponds to the JSON property `type`
1460
+ # @return [String]
1461
+ attr_accessor :type
1462
+
1422
1463
  # URI of an Interconnect attachment.
1423
1464
  # Corresponds to the JSON property `uri`
1424
1465
  # @return [String]
@@ -1433,7 +1474,9 @@ module Google
1433
1474
  @cloud_router_uri = args[:cloud_router_uri] if args.key?(:cloud_router_uri)
1434
1475
  @display_name = args[:display_name] if args.key?(:display_name)
1435
1476
  @interconnect_uri = args[:interconnect_uri] if args.key?(:interconnect_uri)
1477
+ @l2_attachment_matched_ip_address = args[:l2_attachment_matched_ip_address] if args.key?(:l2_attachment_matched_ip_address)
1436
1478
  @region = args[:region] if args.key?(:region)
1479
+ @type = args[:type] if args.key?(:type)
1437
1480
  @uri = args[:uri] if args.key?(:uri)
1438
1481
  end
1439
1482
  end
@@ -2966,6 +3009,11 @@ module Google
2966
3009
  # @return [Google::Apis::NetworkmanagementV1beta1::GoogleServiceInfo]
2967
3010
  attr_accessor :google_service
2968
3011
 
3012
+ # For display only. Metadata associated with a hybrid subnet.
3013
+ # Corresponds to the JSON property `hybridSubnet`
3014
+ # @return [Google::Apis::NetworkmanagementV1beta1::HybridSubnetInfo]
3015
+ attr_accessor :hybrid_subnet
3016
+
2969
3017
  # For display only. Metadata associated with a Compute Engine instance.
2970
3018
  # Corresponds to the JSON property `instance`
2971
3019
  # @return [Google::Apis::NetworkmanagementV1beta1::InstanceInfo]
@@ -3079,6 +3127,7 @@ module Google
3079
3127
  @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
3080
3128
  @gke_master = args[:gke_master] if args.key?(:gke_master)
3081
3129
  @google_service = args[:google_service] if args.key?(:google_service)
3130
+ @hybrid_subnet = args[:hybrid_subnet] if args.key?(:hybrid_subnet)
3082
3131
  @instance = args[:instance] if args.key?(:instance)
3083
3132
  @interconnect_attachment = args[:interconnect_attachment] if args.key?(:interconnect_attachment)
3084
3133
  @load_balancer = args[:load_balancer] if args.key?(:load_balancer)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworkmanagementV1beta1
18
18
  # Version of the google-apis-networkmanagement_v1beta1 gem
19
- GEM_VERSION = "0.64.0"
19
+ GEM_VERSION = "0.65.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250813"
25
+ REVISION = "20250901"
26
26
  end
27
27
  end
28
28
  end
@@ -178,6 +178,12 @@ module Google
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
+ class HybridSubnetInfo
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
181
187
  class InstanceInfo
182
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
189
 
@@ -710,6 +716,15 @@ module Google
710
716
  end
711
717
  end
712
718
 
719
+ class HybridSubnetInfo
720
+ # @private
721
+ class Representation < Google::Apis::Core::JsonRepresentation
722
+ property :display_name, as: 'displayName'
723
+ property :region, as: 'region'
724
+ property :uri, as: 'uri'
725
+ end
726
+ end
727
+
713
728
  class InstanceInfo
714
729
  # @private
715
730
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -733,7 +748,9 @@ module Google
733
748
  property :cloud_router_uri, as: 'cloudRouterUri'
734
749
  property :display_name, as: 'displayName'
735
750
  property :interconnect_uri, as: 'interconnectUri'
751
+ property :l2_attachment_matched_ip_address, as: 'l2AttachmentMatchedIpAddress'
736
752
  property :region, as: 'region'
753
+ property :type, as: 'type'
737
754
  property :uri, as: 'uri'
738
755
  end
739
756
  end
@@ -1109,6 +1126,8 @@ module Google
1109
1126
 
1110
1127
  property :google_service, as: 'googleService', class: Google::Apis::NetworkmanagementV1beta1::GoogleServiceInfo, decorator: Google::Apis::NetworkmanagementV1beta1::GoogleServiceInfo::Representation
1111
1128
 
1129
+ property :hybrid_subnet, as: 'hybridSubnet', class: Google::Apis::NetworkmanagementV1beta1::HybridSubnetInfo, decorator: Google::Apis::NetworkmanagementV1beta1::HybridSubnetInfo::Representation
1130
+
1112
1131
  property :instance, as: 'instance', class: Google::Apis::NetworkmanagementV1beta1::InstanceInfo, decorator: Google::Apis::NetworkmanagementV1beta1::InstanceInfo::Representation
1113
1132
 
1114
1133
  property :interconnect_attachment, as: 'interconnectAttachment', class: Google::Apis::NetworkmanagementV1beta1::InterconnectAttachmentInfo, decorator: Google::Apis::NetworkmanagementV1beta1::InterconnectAttachmentInfo::Representation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkmanagement_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.64.0
4
+ version: 0.65.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-networkmanagement_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.64.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.65.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: