google-apis-networkmanagement_v1beta1 0.47.0 → 0.48.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: 58861d6b9b9d06775057f3fc9e7b57aad701e94f5b49ab7a64d3b61e6c86c509
4
+ data.tar.gz: 10bcfa1eb432dcdd69b58ea7c30bce8f7963b2ddcde3fd6a4dd98517375ac5e9
5
5
  SHA512:
6
- metadata.gz: 7944e7ead02b49bed93dcdf8eb631a71050c3321fff6b420ccfacfdd057f7bdbaaacaf2f0226688ee4243608ac5158bfaf630a345cc7154b0cb6eb4dc615ff01
7
- data.tar.gz: c0ff5a14b805cae293d7eb2436d062d021c8f0e21ff220259688f055b2591583c3a5677235c9f366b8bb6de7140f01e188f0b055f155a505ec84b043071336e4
6
+ metadata.gz: 18bda0a59b6eff87bb17fbae7640a404b7eca86ea4bca22d489b2b7657e7216928d573e02409d55f327ce6824bd9c1c14ff67290c86de019ebf9d645823f0cee
7
+ data.tar.gz: 68dc1b0293a6e1b1a79051cfbd21444e0d586d3496c17a89c21daf8d9f7d4e3bc9a69bb2bb2e0c454a58aecbc22f8938d1a8c4832491869f8676c31af0571dac
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkmanagement_v1beta1
2
2
 
3
+ ### v0.48.0 (2024-05-26)
4
+
5
+ * Regenerated from discovery document revision 20240515
6
+
3
7
  ### v0.47.0 (2024-05-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20240501
@@ -572,11 +572,21 @@ module Google
572
572
  # @return [String]
573
573
  attr_accessor :ip_address
574
574
 
575
+ # PSC Google API target the packet is delivered to (if applicable).
576
+ # Corresponds to the JSON property `pscGoogleApiTarget`
577
+ # @return [String]
578
+ attr_accessor :psc_google_api_target
579
+
575
580
  # URI of the resource that the packet is delivered to.
576
581
  # Corresponds to the JSON property `resourceUri`
577
582
  # @return [String]
578
583
  attr_accessor :resource_uri
579
584
 
585
+ # Name of the Cloud Storage Bucket the packet is delivered to (if applicable).
586
+ # Corresponds to the JSON property `storageBucket`
587
+ # @return [String]
588
+ attr_accessor :storage_bucket
589
+
580
590
  # Target type where the packet is delivered to.
581
591
  # Corresponds to the JSON property `target`
582
592
  # @return [String]
@@ -589,7 +599,9 @@ module Google
589
599
  # Update properties of this object
590
600
  def update!(**args)
591
601
  @ip_address = args[:ip_address] if args.key?(:ip_address)
602
+ @psc_google_api_target = args[:psc_google_api_target] if args.key?(:psc_google_api_target)
592
603
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
604
+ @storage_bucket = args[:storage_bucket] if args.key?(:storage_bucket)
593
605
  @target = args[:target] if args.key?(:target)
594
606
  end
595
607
  end
@@ -1022,32 +1034,53 @@ module Google
1022
1034
  class ForwardingRuleInfo
1023
1035
  include Google::Apis::Core::Hashable
1024
1036
 
1025
- # Name of a Compute Engine forwarding rule.
1037
+ # Name of the forwarding rule.
1026
1038
  # Corresponds to the JSON property `displayName`
1027
1039
  # @return [String]
1028
1040
  attr_accessor :display_name
1029
1041
 
1030
- # Port range defined in the forwarding rule that matches the test.
1042
+ # Name of the load balancer the forwarding rule belongs to. Empty for forwarding
1043
+ # rules not related to load balancers (like PSC forwarding rules).
1044
+ # Corresponds to the JSON property `loadBalancerName`
1045
+ # @return [String]
1046
+ attr_accessor :load_balancer_name
1047
+
1048
+ # Port range defined in the forwarding rule that matches the packet.
1031
1049
  # Corresponds to the JSON property `matchedPortRange`
1032
1050
  # @return [String]
1033
1051
  attr_accessor :matched_port_range
1034
1052
 
1035
- # Protocol defined in the forwarding rule that matches the test.
1053
+ # Protocol defined in the forwarding rule that matches the packet.
1036
1054
  # Corresponds to the JSON property `matchedProtocol`
1037
1055
  # @return [String]
1038
1056
  attr_accessor :matched_protocol
1039
1057
 
1040
- # Network URI. Only valid for Internal Load Balancer.
1058
+ # Network URI.
1041
1059
  # Corresponds to the JSON property `networkUri`
1042
1060
  # @return [String]
1043
1061
  attr_accessor :network_uri
1044
1062
 
1063
+ # PSC Google API target this forwarding rule targets (if applicable).
1064
+ # Corresponds to the JSON property `pscGoogleApiTarget`
1065
+ # @return [String]
1066
+ attr_accessor :psc_google_api_target
1067
+
1068
+ # URI of the PSC service attachment this forwarding rule targets (if applicable).
1069
+ # Corresponds to the JSON property `pscServiceAttachmentUri`
1070
+ # @return [String]
1071
+ attr_accessor :psc_service_attachment_uri
1072
+
1073
+ # Region of the forwarding rule. Set only for regional forwarding rules.
1074
+ # Corresponds to the JSON property `region`
1075
+ # @return [String]
1076
+ attr_accessor :region
1077
+
1045
1078
  # Target type of the forwarding rule.
1046
1079
  # Corresponds to the JSON property `target`
1047
1080
  # @return [String]
1048
1081
  attr_accessor :target
1049
1082
 
1050
- # URI of a Compute Engine forwarding rule.
1083
+ # URI of the forwarding rule.
1051
1084
  # Corresponds to the JSON property `uri`
1052
1085
  # @return [String]
1053
1086
  attr_accessor :uri
@@ -1064,9 +1097,13 @@ module Google
1064
1097
  # Update properties of this object
1065
1098
  def update!(**args)
1066
1099
  @display_name = args[:display_name] if args.key?(:display_name)
1100
+ @load_balancer_name = args[:load_balancer_name] if args.key?(:load_balancer_name)
1067
1101
  @matched_port_range = args[:matched_port_range] if args.key?(:matched_port_range)
1068
1102
  @matched_protocol = args[:matched_protocol] if args.key?(:matched_protocol)
1069
1103
  @network_uri = args[:network_uri] if args.key?(:network_uri)
1104
+ @psc_google_api_target = args[:psc_google_api_target] if args.key?(:psc_google_api_target)
1105
+ @psc_service_attachment_uri = args[:psc_service_attachment_uri] if args.key?(:psc_service_attachment_uri)
1106
+ @region = args[:region] if args.key?(:region)
1070
1107
  @target = args[:target] if args.key?(:target)
1071
1108
  @uri = args[:uri] if args.key?(:uri)
1072
1109
  @vip = args[:vip] if args.key?(:vip)
@@ -2203,6 +2240,26 @@ module Google
2203
2240
  end
2204
2241
  end
2205
2242
 
2243
+ # For display only. Metadata associated with the serverless network endpoint
2244
+ # group backend.
2245
+ class ServerlessNegInfo
2246
+ include Google::Apis::Core::Hashable
2247
+
2248
+ # URI of the serverless network endpoint group.
2249
+ # Corresponds to the JSON property `negUri`
2250
+ # @return [String]
2251
+ attr_accessor :neg_uri
2252
+
2253
+ def initialize(**args)
2254
+ update!(**args)
2255
+ end
2256
+
2257
+ # Update properties of this object
2258
+ def update!(**args)
2259
+ @neg_uri = args[:neg_uri] if args.key?(:neg_uri)
2260
+ end
2261
+ end
2262
+
2206
2263
  # Request message for `SetIamPolicy` method.
2207
2264
  class SetIamPolicyRequest
2208
2265
  include Google::Apis::Core::Hashable
@@ -2424,6 +2481,12 @@ module Google
2424
2481
  # @return [Google::Apis::NetworkmanagementV1beta1::RouteInfo]
2425
2482
  attr_accessor :route
2426
2483
 
2484
+ # For display only. Metadata associated with the serverless network endpoint
2485
+ # group backend.
2486
+ # Corresponds to the JSON property `serverlessNeg`
2487
+ # @return [Google::Apis::NetworkmanagementV1beta1::ServerlessNegInfo]
2488
+ attr_accessor :serverless_neg
2489
+
2427
2490
  # Each step is in one of the pre-defined states.
2428
2491
  # Corresponds to the JSON property `state`
2429
2492
  # @return [String]
@@ -2478,6 +2541,7 @@ module Google
2478
2541
  @project_id = args[:project_id] if args.key?(:project_id)
2479
2542
  @proxy_connection = args[:proxy_connection] if args.key?(:proxy_connection)
2480
2543
  @route = args[:route] if args.key?(:route)
2544
+ @serverless_neg = args[:serverless_neg] if args.key?(:serverless_neg)
2481
2545
  @state = args[:state] if args.key?(:state)
2482
2546
  @storage_bucket = args[:storage_bucket] if args.key?(:storage_bucket)
2483
2547
  @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.48.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 = "20240515"
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
 
@@ -485,7 +491,9 @@ module Google
485
491
  # @private
486
492
  class Representation < Google::Apis::Core::JsonRepresentation
487
493
  property :ip_address, as: 'ipAddress'
494
+ property :psc_google_api_target, as: 'pscGoogleApiTarget'
488
495
  property :resource_uri, as: 'resourceUri'
496
+ property :storage_bucket, as: 'storageBucket'
489
497
  property :target, as: 'target'
490
498
  end
491
499
  end
@@ -591,9 +599,13 @@ module Google
591
599
  # @private
592
600
  class Representation < Google::Apis::Core::JsonRepresentation
593
601
  property :display_name, as: 'displayName'
602
+ property :load_balancer_name, as: 'loadBalancerName'
594
603
  property :matched_port_range, as: 'matchedPortRange'
595
604
  property :matched_protocol, as: 'matchedProtocol'
596
605
  property :network_uri, as: 'networkUri'
606
+ property :psc_google_api_target, as: 'pscGoogleApiTarget'
607
+ property :psc_service_attachment_uri, as: 'pscServiceAttachmentUri'
608
+ property :region, as: 'region'
597
609
  property :target, as: 'target'
598
610
  property :uri, as: 'uri'
599
611
  property :vip, as: 'vip'
@@ -867,6 +879,13 @@ module Google
867
879
  end
868
880
  end
869
881
 
882
+ class ServerlessNegInfo
883
+ # @private
884
+ class Representation < Google::Apis::Core::JsonRepresentation
885
+ property :neg_uri, as: 'negUri'
886
+ end
887
+ end
888
+
870
889
  class SetIamPolicyRequest
871
890
  # @private
872
891
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -931,6 +950,8 @@ module Google
931
950
 
932
951
  property :route, as: 'route', class: Google::Apis::NetworkmanagementV1beta1::RouteInfo, decorator: Google::Apis::NetworkmanagementV1beta1::RouteInfo::Representation
933
952
 
953
+ property :serverless_neg, as: 'serverlessNeg', class: Google::Apis::NetworkmanagementV1beta1::ServerlessNegInfo, decorator: Google::Apis::NetworkmanagementV1beta1::ServerlessNegInfo::Representation
954
+
934
955
  property :state, as: 'state'
935
956
  property :storage_bucket, as: 'storageBucket', class: Google::Apis::NetworkmanagementV1beta1::StorageBucketInfo, decorator: Google::Apis::NetworkmanagementV1beta1::StorageBucketInfo::Representation
936
957
 
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.48.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-05-26 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.48.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: []