google-apis-networkmanagement_v1 0.38.0 → 0.40.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e5e955a3bc71063a064ae69ec698df7b132d447720e8d23682c942fbc025d7c8
|
4
|
+
data.tar.gz: 94cb9d2d1cbf9d36804c3fbf455bf1aa19962b0545f7b745353c031dfe9905da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b09e87de360b808fafd244f61b60fef159ca3487fdcfde63b76df0c57df585819b53f0667f54a472e68171d78af336ff4731d54c6e647cbab0ec199cd614715c
|
7
|
+
data.tar.gz: 17cd18d755307ba7911f5cc8c14d91c24105dafc7b5590be30bd03d1d5e1d3d86fba141f35952652a6dbc61d889481d04d0c9b6a591b80ed4ace194a54848ff4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1
|
2
2
|
|
3
|
+
### v0.40.0 (2024-03-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240221
|
6
|
+
|
7
|
+
### v0.39.0 (2024-02-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240207
|
10
|
+
* Regenerated using generator version 0.14.0
|
11
|
+
|
3
12
|
### v0.38.0 (2024-01-28)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240117
|
data/OVERVIEW.md
CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/) may provide guidance rega
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby 2.
|
86
|
+
This library is supported on Ruby 2.7+.
|
87
87
|
|
88
|
-
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life.
|
88
|
+
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
90
90
|
## License
|
91
91
|
|
@@ -31,9 +31,13 @@ module Google
|
|
31
31
|
# @return [String]
|
32
32
|
attr_accessor :cause
|
33
33
|
|
34
|
-
#
|
35
|
-
#
|
36
|
-
#
|
34
|
+
# IP address that caused the abort.
|
35
|
+
# Corresponds to the JSON property `ipAddress`
|
36
|
+
# @return [String]
|
37
|
+
attr_accessor :ip_address
|
38
|
+
|
39
|
+
# List of project IDs the user specified in the request but lacks access to. In
|
40
|
+
# this case, analysis is aborted with the PERMISSION_DENIED cause.
|
37
41
|
# Corresponds to the JSON property `projectsMissingPermission`
|
38
42
|
# @return [Array<String>]
|
39
43
|
attr_accessor :projects_missing_permission
|
@@ -50,6 +54,7 @@ module Google
|
|
50
54
|
# Update properties of this object
|
51
55
|
def update!(**args)
|
52
56
|
@cause = args[:cause] if args.key?(:cause)
|
57
|
+
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
53
58
|
@projects_missing_permission = args[:projects_missing_permission] if args.key?(:projects_missing_permission)
|
54
59
|
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
55
60
|
end
|
@@ -265,7 +270,10 @@ module Google
|
|
265
270
|
attr_accessor :members
|
266
271
|
|
267
272
|
# Role that is assigned to the list of `members`, or principals. For example, `
|
268
|
-
# roles/viewer`, `roles/editor`, or `roles/owner`.
|
273
|
+
# roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM
|
274
|
+
# roles and permissions, see the [IAM documentation](https://cloud.google.com/
|
275
|
+
# iam/docs/roles-overview). For a list of the available pre-defined roles, see [
|
276
|
+
# here](https://cloud.google.com/iam/docs/understanding-roles).
|
269
277
|
# Corresponds to the JSON property `role`
|
270
278
|
# @return [String]
|
271
279
|
attr_accessor :role
|
@@ -551,6 +559,11 @@ module Google
|
|
551
559
|
class DeliverInfo
|
552
560
|
include Google::Apis::Core::Hashable
|
553
561
|
|
562
|
+
# IP address of the target (if applicable).
|
563
|
+
# Corresponds to the JSON property `ipAddress`
|
564
|
+
# @return [String]
|
565
|
+
attr_accessor :ip_address
|
566
|
+
|
554
567
|
# URI of the resource that the packet is delivered to.
|
555
568
|
# Corresponds to the JSON property `resourceUri`
|
556
569
|
# @return [String]
|
@@ -567,6 +580,7 @@ module Google
|
|
567
580
|
|
568
581
|
# Update properties of this object
|
569
582
|
def update!(**args)
|
583
|
+
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
570
584
|
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
571
585
|
@target = args[:target] if args.key?(:target)
|
572
586
|
end
|
@@ -969,6 +983,11 @@ module Google
|
|
969
983
|
class ForwardInfo
|
970
984
|
include Google::Apis::Core::Hashable
|
971
985
|
|
986
|
+
# IP address of the target (if applicable).
|
987
|
+
# Corresponds to the JSON property `ipAddress`
|
988
|
+
# @return [String]
|
989
|
+
attr_accessor :ip_address
|
990
|
+
|
972
991
|
# URI of the resource that the packet is forwarded to.
|
973
992
|
# Corresponds to the JSON property `resourceUri`
|
974
993
|
# @return [String]
|
@@ -985,6 +1004,7 @@ module Google
|
|
985
1004
|
|
986
1005
|
# Update properties of this object
|
987
1006
|
def update!(**args)
|
1007
|
+
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
988
1008
|
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
989
1009
|
@target = args[:target] if args.key?(:target)
|
990
1010
|
end
|
@@ -1346,6 +1366,11 @@ module Google
|
|
1346
1366
|
class LoadBalancerBackendInfo
|
1347
1367
|
include Google::Apis::Core::Hashable
|
1348
1368
|
|
1369
|
+
# URI of the backend bucket this backend targets (if applicable).
|
1370
|
+
# Corresponds to the JSON property `backendBucketUri`
|
1371
|
+
# @return [String]
|
1372
|
+
attr_accessor :backend_bucket_uri
|
1373
|
+
|
1349
1374
|
# URI of the backend service this backend belongs to (if applicable).
|
1350
1375
|
# Corresponds to the JSON property `backendServiceUri`
|
1351
1376
|
# @return [String]
|
@@ -1389,12 +1414,23 @@ module Google
|
|
1389
1414
|
# @return [String]
|
1390
1415
|
attr_accessor :network_endpoint_group_uri
|
1391
1416
|
|
1417
|
+
# PSC Google API target this PSC NEG backend targets (if applicable).
|
1418
|
+
# Corresponds to the JSON property `pscGoogleApiTarget`
|
1419
|
+
# @return [String]
|
1420
|
+
attr_accessor :psc_google_api_target
|
1421
|
+
|
1422
|
+
# URI of the PSC service attachment this PSC NEG backend targets (if applicable).
|
1423
|
+
# Corresponds to the JSON property `pscServiceAttachmentUri`
|
1424
|
+
# @return [String]
|
1425
|
+
attr_accessor :psc_service_attachment_uri
|
1426
|
+
|
1392
1427
|
def initialize(**args)
|
1393
1428
|
update!(**args)
|
1394
1429
|
end
|
1395
1430
|
|
1396
1431
|
# Update properties of this object
|
1397
1432
|
def update!(**args)
|
1433
|
+
@backend_bucket_uri = args[:backend_bucket_uri] if args.key?(:backend_bucket_uri)
|
1398
1434
|
@backend_service_uri = args[:backend_service_uri] if args.key?(:backend_service_uri)
|
1399
1435
|
@health_check_firewalls_config_state = args[:health_check_firewalls_config_state] if args.key?(:health_check_firewalls_config_state)
|
1400
1436
|
@health_check_uri = args[:health_check_uri] if args.key?(:health_check_uri)
|
@@ -1402,6 +1438,8 @@ module Google
|
|
1402
1438
|
@instance_uri = args[:instance_uri] if args.key?(:instance_uri)
|
1403
1439
|
@name = args[:name] if args.key?(:name)
|
1404
1440
|
@network_endpoint_group_uri = args[:network_endpoint_group_uri] if args.key?(:network_endpoint_group_uri)
|
1441
|
+
@psc_google_api_target = args[:psc_google_api_target] if args.key?(:psc_google_api_target)
|
1442
|
+
@psc_service_attachment_uri = args[:psc_service_attachment_uri] if args.key?(:psc_service_attachment_uri)
|
1405
1443
|
end
|
1406
1444
|
end
|
1407
1445
|
|
@@ -2515,6 +2553,13 @@ module Google
|
|
2515
2553
|
# @return [Google::Apis::NetworkmanagementV1::EndpointInfo]
|
2516
2554
|
attr_accessor :endpoint_info
|
2517
2555
|
|
2556
|
+
# ID of trace. For forward traces, this ID is unique for each trace. For return
|
2557
|
+
# traces, it matches ID of associated forward trace. A single forward trace can
|
2558
|
+
# be associated with none, one or more than one return trace.
|
2559
|
+
# Corresponds to the JSON property `forwardTraceId`
|
2560
|
+
# @return [Fixnum]
|
2561
|
+
attr_accessor :forward_trace_id
|
2562
|
+
|
2518
2563
|
# A trace of a test contains multiple steps from the initial state to the final
|
2519
2564
|
# state (delivered, dropped, forwarded, or aborted). The steps are ordered by
|
2520
2565
|
# the processing sequence within the simulated network state machine. It is
|
@@ -2531,6 +2576,7 @@ module Google
|
|
2531
2576
|
# Update properties of this object
|
2532
2577
|
def update!(**args)
|
2533
2578
|
@endpoint_info = args[:endpoint_info] if args.key?(:endpoint_info)
|
2579
|
+
@forward_trace_id = args[:forward_trace_id] if args.key?(:forward_trace_id)
|
2534
2580
|
@steps = args[:steps] if args.key?(:steps)
|
2535
2581
|
end
|
2536
2582
|
end
|
@@ -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.40.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240221"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -356,6 +356,7 @@ module Google
|
|
356
356
|
# @private
|
357
357
|
class Representation < Google::Apis::Core::JsonRepresentation
|
358
358
|
property :cause, as: 'cause'
|
359
|
+
property :ip_address, as: 'ipAddress'
|
359
360
|
collection :projects_missing_permission, as: 'projectsMissingPermission'
|
360
361
|
property :resource_uri, as: 'resourceUri'
|
361
362
|
end
|
@@ -482,6 +483,7 @@ module Google
|
|
482
483
|
class DeliverInfo
|
483
484
|
# @private
|
484
485
|
class Representation < Google::Apis::Core::JsonRepresentation
|
486
|
+
property :ip_address, as: 'ipAddress'
|
485
487
|
property :resource_uri, as: 'resourceUri'
|
486
488
|
property :target, as: 'target'
|
487
489
|
end
|
@@ -578,6 +580,7 @@ module Google
|
|
578
580
|
class ForwardInfo
|
579
581
|
# @private
|
580
582
|
class Representation < Google::Apis::Core::JsonRepresentation
|
583
|
+
property :ip_address, as: 'ipAddress'
|
581
584
|
property :resource_uri, as: 'resourceUri'
|
582
585
|
property :target, as: 'target'
|
583
586
|
end
|
@@ -686,6 +689,7 @@ module Google
|
|
686
689
|
class LoadBalancerBackendInfo
|
687
690
|
# @private
|
688
691
|
class Representation < Google::Apis::Core::JsonRepresentation
|
692
|
+
property :backend_bucket_uri, as: 'backendBucketUri'
|
689
693
|
property :backend_service_uri, as: 'backendServiceUri'
|
690
694
|
property :health_check_firewalls_config_state, as: 'healthCheckFirewallsConfigState'
|
691
695
|
property :health_check_uri, as: 'healthCheckUri'
|
@@ -693,6 +697,8 @@ module Google
|
|
693
697
|
property :instance_uri, as: 'instanceUri'
|
694
698
|
property :name, as: 'name'
|
695
699
|
property :network_endpoint_group_uri, as: 'networkEndpointGroupUri'
|
700
|
+
property :psc_google_api_target, as: 'pscGoogleApiTarget'
|
701
|
+
property :psc_service_attachment_uri, as: 'pscServiceAttachmentUri'
|
696
702
|
end
|
697
703
|
end
|
698
704
|
|
@@ -962,6 +968,7 @@ module Google
|
|
962
968
|
class Representation < Google::Apis::Core::JsonRepresentation
|
963
969
|
property :endpoint_info, as: 'endpointInfo', class: Google::Apis::NetworkmanagementV1::EndpointInfo, decorator: Google::Apis::NetworkmanagementV1::EndpointInfo::Representation
|
964
970
|
|
971
|
+
property :forward_trace_id, as: 'forwardTraceId'
|
965
972
|
collection :steps, as: 'steps', class: Google::Apis::NetworkmanagementV1::Step, decorator: Google::Apis::NetworkmanagementV1::Step::Representation
|
966
973
|
|
967
974
|
end
|
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.40.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-
|
11
|
+
date: 2024-03-03 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.14.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.14.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.40.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: []
|
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
68
|
requirements:
|
69
69
|
- - ">="
|
70
70
|
- !ruby/object:Gem::Version
|
71
|
-
version: '2.
|
71
|
+
version: '2.7'
|
72
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - ">="
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.6
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Network Management API V1
|