google-apis-networkmanagement_v1beta1 0.47.0 → 0.49.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: 5db709432c9a00d65f9304119d38beded7903cbe3733a7efeff537a56aae355f
4
- data.tar.gz: e33cf9218eb41f9e0e93b52685df0891b448067347a082e350eb8fd10dd8c20e
3
+ metadata.gz: be906612660f44f0e9b6d8d28c4425660d88d2ee588cfc56e8cd84e7da3d7ffa
4
+ data.tar.gz: 36c50da7fcb10376fbc1e353ad3c34d2eed6d8d0a8d10aa5726f0f4c79e04bd1
5
5
  SHA512:
6
- metadata.gz: 7944e7ead02b49bed93dcdf8eb631a71050c3321fff6b420ccfacfdd057f7bdbaaacaf2f0226688ee4243608ac5158bfaf630a345cc7154b0cb6eb4dc615ff01
7
- data.tar.gz: c0ff5a14b805cae293d7eb2436d062d021c8f0e21ff220259688f055b2591583c3a5677235c9f366b8bb6de7140f01e188f0b055f155a505ec84b043071336e4
6
+ metadata.gz: 04d6eb36ffbca103e31f72602892c5797b59a0db82e1348ee8dbe0ab0fad97a894c4f5d39996de042c26cbba8ff01adf6bf5094db955b7f41b01c1e8f8deb91b
7
+ data.tar.gz: a382836206299cecdd48dcb71469006efe26552c34d4d2a226ea6738174c579d3d9beba92519e00a67f26b28d12cbb1f02e3d3d5b72044a70022b49ac653a425
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkmanagement_v1beta1
2
2
 
3
+ ### v0.49.0 (2024-06-16)
4
+
5
+ * Regenerated from discovery document revision 20240605
6
+
7
+ ### v0.48.0 (2024-05-26)
8
+
9
+ * Regenerated from discovery document revision 20240515
10
+
3
11
  ### v0.47.0 (2024-05-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20240501
@@ -394,6 +394,12 @@ module Google
394
394
  # @return [String]
395
395
  attr_accessor :location
396
396
 
397
+ # ID of Cloud Run Service this revision belongs to. Was never set, is not
398
+ # exported to v1 proto and public protos. Do not export to v1beta1 public proto.
399
+ # Corresponds to the JSON property `serviceName`
400
+ # @return [String]
401
+ attr_accessor :service_name
402
+
397
403
  # URI of Cloud Run service this revision belongs to.
398
404
  # Corresponds to the JSON property `serviceUri`
399
405
  # @return [String]
@@ -412,6 +418,7 @@ module Google
412
418
  def update!(**args)
413
419
  @display_name = args[:display_name] if args.key?(:display_name)
414
420
  @location = args[:location] if args.key?(:location)
421
+ @service_name = args[:service_name] if args.key?(:service_name)
415
422
  @service_uri = args[:service_uri] if args.key?(:service_uri)
416
423
  @uri = args[:uri] if args.key?(:uri)
417
424
  end
@@ -572,11 +579,21 @@ module Google
572
579
  # @return [String]
573
580
  attr_accessor :ip_address
574
581
 
582
+ # PSC Google API target the packet is delivered to (if applicable).
583
+ # Corresponds to the JSON property `pscGoogleApiTarget`
584
+ # @return [String]
585
+ attr_accessor :psc_google_api_target
586
+
575
587
  # URI of the resource that the packet is delivered to.
576
588
  # Corresponds to the JSON property `resourceUri`
577
589
  # @return [String]
578
590
  attr_accessor :resource_uri
579
591
 
592
+ # Name of the Cloud Storage Bucket the packet is delivered to (if applicable).
593
+ # Corresponds to the JSON property `storageBucket`
594
+ # @return [String]
595
+ attr_accessor :storage_bucket
596
+
580
597
  # Target type where the packet is delivered to.
581
598
  # Corresponds to the JSON property `target`
582
599
  # @return [String]
@@ -589,7 +606,9 @@ module Google
589
606
  # Update properties of this object
590
607
  def update!(**args)
591
608
  @ip_address = args[:ip_address] if args.key?(:ip_address)
609
+ @psc_google_api_target = args[:psc_google_api_target] if args.key?(:psc_google_api_target)
592
610
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
611
+ @storage_bucket = args[:storage_bucket] if args.key?(:storage_bucket)
593
612
  @target = args[:target] if args.key?(:target)
594
613
  end
595
614
  end
@@ -1022,32 +1041,53 @@ module Google
1022
1041
  class ForwardingRuleInfo
1023
1042
  include Google::Apis::Core::Hashable
1024
1043
 
1025
- # Name of a Compute Engine forwarding rule.
1044
+ # Name of the forwarding rule.
1026
1045
  # Corresponds to the JSON property `displayName`
1027
1046
  # @return [String]
1028
1047
  attr_accessor :display_name
1029
1048
 
1030
- # Port range defined in the forwarding rule that matches the test.
1049
+ # Name of the load balancer the forwarding rule belongs to. Empty for forwarding
1050
+ # rules not related to load balancers (like PSC forwarding rules).
1051
+ # Corresponds to the JSON property `loadBalancerName`
1052
+ # @return [String]
1053
+ attr_accessor :load_balancer_name
1054
+
1055
+ # Port range defined in the forwarding rule that matches the packet.
1031
1056
  # Corresponds to the JSON property `matchedPortRange`
1032
1057
  # @return [String]
1033
1058
  attr_accessor :matched_port_range
1034
1059
 
1035
- # Protocol defined in the forwarding rule that matches the test.
1060
+ # Protocol defined in the forwarding rule that matches the packet.
1036
1061
  # Corresponds to the JSON property `matchedProtocol`
1037
1062
  # @return [String]
1038
1063
  attr_accessor :matched_protocol
1039
1064
 
1040
- # Network URI. Only valid for Internal Load Balancer.
1065
+ # Network URI.
1041
1066
  # Corresponds to the JSON property `networkUri`
1042
1067
  # @return [String]
1043
1068
  attr_accessor :network_uri
1044
1069
 
1070
+ # PSC Google API target this forwarding rule targets (if applicable).
1071
+ # Corresponds to the JSON property `pscGoogleApiTarget`
1072
+ # @return [String]
1073
+ attr_accessor :psc_google_api_target
1074
+
1075
+ # URI of the PSC service attachment this forwarding rule targets (if applicable).
1076
+ # Corresponds to the JSON property `pscServiceAttachmentUri`
1077
+ # @return [String]
1078
+ attr_accessor :psc_service_attachment_uri
1079
+
1080
+ # Region of the forwarding rule. Set only for regional forwarding rules.
1081
+ # Corresponds to the JSON property `region`
1082
+ # @return [String]
1083
+ attr_accessor :region
1084
+
1045
1085
  # Target type of the forwarding rule.
1046
1086
  # Corresponds to the JSON property `target`
1047
1087
  # @return [String]
1048
1088
  attr_accessor :target
1049
1089
 
1050
- # URI of a Compute Engine forwarding rule.
1090
+ # URI of the forwarding rule.
1051
1091
  # Corresponds to the JSON property `uri`
1052
1092
  # @return [String]
1053
1093
  attr_accessor :uri
@@ -1064,9 +1104,13 @@ module Google
1064
1104
  # Update properties of this object
1065
1105
  def update!(**args)
1066
1106
  @display_name = args[:display_name] if args.key?(:display_name)
1107
+ @load_balancer_name = args[:load_balancer_name] if args.key?(:load_balancer_name)
1067
1108
  @matched_port_range = args[:matched_port_range] if args.key?(:matched_port_range)
1068
1109
  @matched_protocol = args[:matched_protocol] if args.key?(:matched_protocol)
1069
1110
  @network_uri = args[:network_uri] if args.key?(:network_uri)
1111
+ @psc_google_api_target = args[:psc_google_api_target] if args.key?(:psc_google_api_target)
1112
+ @psc_service_attachment_uri = args[:psc_service_attachment_uri] if args.key?(:psc_service_attachment_uri)
1113
+ @region = args[:region] if args.key?(:region)
1070
1114
  @target = args[:target] if args.key?(:target)
1071
1115
  @uri = args[:uri] if args.key?(:uri)
1072
1116
  @vip = args[:vip] if args.key?(:vip)
@@ -2203,6 +2247,26 @@ module Google
2203
2247
  end
2204
2248
  end
2205
2249
 
2250
+ # For display only. Metadata associated with the serverless network endpoint
2251
+ # group backend.
2252
+ class ServerlessNegInfo
2253
+ include Google::Apis::Core::Hashable
2254
+
2255
+ # URI of the serverless network endpoint group.
2256
+ # Corresponds to the JSON property `negUri`
2257
+ # @return [String]
2258
+ attr_accessor :neg_uri
2259
+
2260
+ def initialize(**args)
2261
+ update!(**args)
2262
+ end
2263
+
2264
+ # Update properties of this object
2265
+ def update!(**args)
2266
+ @neg_uri = args[:neg_uri] if args.key?(:neg_uri)
2267
+ end
2268
+ end
2269
+
2206
2270
  # Request message for `SetIamPolicy` method.
2207
2271
  class SetIamPolicyRequest
2208
2272
  include Google::Apis::Core::Hashable
@@ -2424,6 +2488,12 @@ module Google
2424
2488
  # @return [Google::Apis::NetworkmanagementV1beta1::RouteInfo]
2425
2489
  attr_accessor :route
2426
2490
 
2491
+ # For display only. Metadata associated with the serverless network endpoint
2492
+ # group backend.
2493
+ # Corresponds to the JSON property `serverlessNeg`
2494
+ # @return [Google::Apis::NetworkmanagementV1beta1::ServerlessNegInfo]
2495
+ attr_accessor :serverless_neg
2496
+
2427
2497
  # Each step is in one of the pre-defined states.
2428
2498
  # Corresponds to the JSON property `state`
2429
2499
  # @return [String]
@@ -2478,6 +2548,7 @@ module Google
2478
2548
  @project_id = args[:project_id] if args.key?(:project_id)
2479
2549
  @proxy_connection = args[:proxy_connection] if args.key?(:proxy_connection)
2480
2550
  @route = args[:route] if args.key?(:route)
2551
+ @serverless_neg = args[:serverless_neg] if args.key?(:serverless_neg)
2481
2552
  @state = args[:state] if args.key?(:state)
2482
2553
  @storage_bucket = args[:storage_bucket] if args.key?(:storage_bucket)
2483
2554
  @vpc_connector = args[:vpc_connector] if args.key?(:vpc_connector)
@@ -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.47.0"
19
+ GEM_VERSION = "0.49.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240501"
25
+ REVISION = "20240605"
26
26
  end
27
27
  end
28
28
  end
@@ -292,6 +292,12 @@ module Google
292
292
  include Google::Apis::Core::JsonObjectSupport
293
293
  end
294
294
 
295
+ class ServerlessNegInfo
296
+ class Representation < Google::Apis::Core::JsonRepresentation; end
297
+
298
+ include Google::Apis::Core::JsonObjectSupport
299
+ end
300
+
295
301
  class SetIamPolicyRequest
296
302
  class Representation < Google::Apis::Core::JsonRepresentation; end
297
303
 
@@ -441,6 +447,7 @@ module Google
441
447
  class Representation < Google::Apis::Core::JsonRepresentation
442
448
  property :display_name, as: 'displayName'
443
449
  property :location, as: 'location'
450
+ property :service_name, as: 'serviceName'
444
451
  property :service_uri, as: 'serviceUri'
445
452
  property :uri, as: 'uri'
446
453
  end
@@ -485,7 +492,9 @@ module Google
485
492
  # @private
486
493
  class Representation < Google::Apis::Core::JsonRepresentation
487
494
  property :ip_address, as: 'ipAddress'
495
+ property :psc_google_api_target, as: 'pscGoogleApiTarget'
488
496
  property :resource_uri, as: 'resourceUri'
497
+ property :storage_bucket, as: 'storageBucket'
489
498
  property :target, as: 'target'
490
499
  end
491
500
  end
@@ -591,9 +600,13 @@ module Google
591
600
  # @private
592
601
  class Representation < Google::Apis::Core::JsonRepresentation
593
602
  property :display_name, as: 'displayName'
603
+ property :load_balancer_name, as: 'loadBalancerName'
594
604
  property :matched_port_range, as: 'matchedPortRange'
595
605
  property :matched_protocol, as: 'matchedProtocol'
596
606
  property :network_uri, as: 'networkUri'
607
+ property :psc_google_api_target, as: 'pscGoogleApiTarget'
608
+ property :psc_service_attachment_uri, as: 'pscServiceAttachmentUri'
609
+ property :region, as: 'region'
597
610
  property :target, as: 'target'
598
611
  property :uri, as: 'uri'
599
612
  property :vip, as: 'vip'
@@ -867,6 +880,13 @@ module Google
867
880
  end
868
881
  end
869
882
 
883
+ class ServerlessNegInfo
884
+ # @private
885
+ class Representation < Google::Apis::Core::JsonRepresentation
886
+ property :neg_uri, as: 'negUri'
887
+ end
888
+ end
889
+
870
890
  class SetIamPolicyRequest
871
891
  # @private
872
892
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -931,6 +951,8 @@ module Google
931
951
 
932
952
  property :route, as: 'route', class: Google::Apis::NetworkmanagementV1beta1::RouteInfo, decorator: Google::Apis::NetworkmanagementV1beta1::RouteInfo::Representation
933
953
 
954
+ property :serverless_neg, as: 'serverlessNeg', class: Google::Apis::NetworkmanagementV1beta1::ServerlessNegInfo, decorator: Google::Apis::NetworkmanagementV1beta1::ServerlessNegInfo::Representation
955
+
934
956
  property :state, as: 'state'
935
957
  property :storage_bucket, as: 'storageBucket', class: Google::Apis::NetworkmanagementV1beta1::StorageBucketInfo, decorator: Google::Apis::NetworkmanagementV1beta1::StorageBucketInfo::Representation
936
958
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkmanagement_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.47.0
4
+ version: 0.49.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-05-19 00:00:00.000000000 Z
11
+ date: 2024-06-16 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-networkmanagement_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.47.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.49.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []