google-apis-networkmanagement_v1 0.42.0 → 0.44.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03d66a72cbc4190bed030183696b7eb29689a4263bb8f01c915cb5c11285bbd4
|
4
|
+
data.tar.gz: cb13054157ebee38a1f8e688af7cf32c8d541ed5b8df6ed80a778e3f87393da7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 697eb91f9f2bdcb1c400624049ccdcd0f4ca22076a3a12940f91810cfca3e72b4a8d39ffc902b4516a0ffacfd7f8518c2fe3999b0d15521f94557b89ec7d1caa
|
7
|
+
data.tar.gz: ac6ec13fd7505735e2f7b42496cdfdb7e8875a06f2d259803626c333d2292ac05c6d5d8c90e75fc25de789f1ccfdeebed03f062434759cfea1b069d6b2183021
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1
|
2
2
|
|
3
|
+
### v0.44.0 (2024-08-04)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240718
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
8
|
+
### v0.43.0 (2024-05-26)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240515
|
11
|
+
* Regenerated using generator version 0.15.0
|
12
|
+
|
3
13
|
### v0.42.0 (2024-04-28)
|
4
14
|
|
5
15
|
* Regenerated from discovery document revision 20240417
|
@@ -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
|
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
|
-
#
|
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
|
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.
|
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
|
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)
|
@@ -1174,6 +1211,11 @@ module Google
|
|
1174
1211
|
# @return [String]
|
1175
1212
|
attr_accessor :network_uri
|
1176
1213
|
|
1214
|
+
# URI of the PSC network attachment the NIC is attached to (if relevant).
|
1215
|
+
# Corresponds to the JSON property `pscNetworkAttachmentUri`
|
1216
|
+
# @return [String]
|
1217
|
+
attr_accessor :psc_network_attachment_uri
|
1218
|
+
|
1177
1219
|
# Service account authorized for the instance.
|
1178
1220
|
# Corresponds to the JSON property `serviceAccount`
|
1179
1221
|
# @return [String]
|
@@ -1196,6 +1238,7 @@ module Google
|
|
1196
1238
|
@internal_ip = args[:internal_ip] if args.key?(:internal_ip)
|
1197
1239
|
@network_tags = args[:network_tags] if args.key?(:network_tags)
|
1198
1240
|
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
1241
|
+
@psc_network_attachment_uri = args[:psc_network_attachment_uri] if args.key?(:psc_network_attachment_uri)
|
1199
1242
|
@service_account = args[:service_account] if args.key?(:service_account)
|
1200
1243
|
@uri = args[:uri] if args.key?(:uri)
|
1201
1244
|
end
|
@@ -2203,6 +2246,26 @@ module Google
|
|
2203
2246
|
end
|
2204
2247
|
end
|
2205
2248
|
|
2249
|
+
# For display only. Metadata associated with the serverless network endpoint
|
2250
|
+
# group backend.
|
2251
|
+
class ServerlessNegInfo
|
2252
|
+
include Google::Apis::Core::Hashable
|
2253
|
+
|
2254
|
+
# URI of the serverless network endpoint group.
|
2255
|
+
# Corresponds to the JSON property `negUri`
|
2256
|
+
# @return [String]
|
2257
|
+
attr_accessor :neg_uri
|
2258
|
+
|
2259
|
+
def initialize(**args)
|
2260
|
+
update!(**args)
|
2261
|
+
end
|
2262
|
+
|
2263
|
+
# Update properties of this object
|
2264
|
+
def update!(**args)
|
2265
|
+
@neg_uri = args[:neg_uri] if args.key?(:neg_uri)
|
2266
|
+
end
|
2267
|
+
end
|
2268
|
+
|
2206
2269
|
# Request message for `SetIamPolicy` method.
|
2207
2270
|
class SetIamPolicyRequest
|
2208
2271
|
include Google::Apis::Core::Hashable
|
@@ -2424,6 +2487,12 @@ module Google
|
|
2424
2487
|
# @return [Google::Apis::NetworkmanagementV1::RouteInfo]
|
2425
2488
|
attr_accessor :route
|
2426
2489
|
|
2490
|
+
# For display only. Metadata associated with the serverless network endpoint
|
2491
|
+
# group backend.
|
2492
|
+
# Corresponds to the JSON property `serverlessNeg`
|
2493
|
+
# @return [Google::Apis::NetworkmanagementV1::ServerlessNegInfo]
|
2494
|
+
attr_accessor :serverless_neg
|
2495
|
+
|
2427
2496
|
# Each step is in one of the pre-defined states.
|
2428
2497
|
# Corresponds to the JSON property `state`
|
2429
2498
|
# @return [String]
|
@@ -2478,6 +2547,7 @@ module Google
|
|
2478
2547
|
@project_id = args[:project_id] if args.key?(:project_id)
|
2479
2548
|
@proxy_connection = args[:proxy_connection] if args.key?(:proxy_connection)
|
2480
2549
|
@route = args[:route] if args.key?(:route)
|
2550
|
+
@serverless_neg = args[:serverless_neg] if args.key?(:serverless_neg)
|
2481
2551
|
@state = args[:state] if args.key?(:state)
|
2482
2552
|
@storage_bucket = args[:storage_bucket] if args.key?(:storage_bucket)
|
2483
2553
|
@vpc_connector = args[:vpc_connector] if args.key?(:vpc_connector)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkmanagementV1
|
18
18
|
# Version of the google-apis-networkmanagement_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.44.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240718"
|
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'
|
@@ -627,6 +639,7 @@ module Google
|
|
627
639
|
property :internal_ip, as: 'internalIp'
|
628
640
|
collection :network_tags, as: 'networkTags'
|
629
641
|
property :network_uri, as: 'networkUri'
|
642
|
+
property :psc_network_attachment_uri, as: 'pscNetworkAttachmentUri'
|
630
643
|
property :service_account, as: 'serviceAccount'
|
631
644
|
property :uri, as: 'uri'
|
632
645
|
end
|
@@ -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::NetworkmanagementV1::RouteInfo, decorator: Google::Apis::NetworkmanagementV1::RouteInfo::Representation
|
933
953
|
|
954
|
+
property :serverless_neg, as: 'serverlessNeg', class: Google::Apis::NetworkmanagementV1::ServerlessNegInfo, decorator: Google::Apis::NetworkmanagementV1::ServerlessNegInfo::Representation
|
955
|
+
|
934
956
|
property :state, as: 'state'
|
935
957
|
property :storage_bucket, as: 'storageBucket', class: Google::Apis::NetworkmanagementV1::StorageBucketInfo, decorator: Google::Apis::NetworkmanagementV1::StorageBucketInfo::Representation
|
936
958
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkmanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.44.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-04
|
11
|
+
date: 2024-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.15.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.15.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.44.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|