google-apis-networkmanagement_v1beta1 0.42.0 → 0.44.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: f6d7c72f4606f9e6c7a6ec94af78ffcd768750fa1c7d5b2059f6dae1d1a30048
|
4
|
+
data.tar.gz: f9d509ca60640a487d1b1bad0670e50ed9b0ba957a5626c1462482473fafd1fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b28dd9761fdbe526c7ecb3cd326dab6621c3d0e3feb31222eaef6db938da3a6176064fd7ddaadc7ec88c8c7a955b1711f7275b77e7a21c59c5274641eb04430
|
7
|
+
data.tar.gz: c229a9b8e6334f60f8204722b6ec2a67bde0ff0458f0dfaabeb0767ae21d6b4df9d1ccb5f3884e1f4ccf1931ded24d77a0c8e3637bef33bf8014099cf8bc18e6
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1beta1
|
2
2
|
|
3
|
+
### v0.44.0 (2024-03-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240306
|
6
|
+
|
7
|
+
### v0.43.0 (2024-03-03)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240221
|
10
|
+
|
3
11
|
### v0.42.0 (2024-02-24)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240207
|
@@ -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
|
@@ -472,6 +477,13 @@ module Google
|
|
472
477
|
class ConnectivityTest
|
473
478
|
include Google::Apis::Core::Hashable
|
474
479
|
|
480
|
+
# Whether the test should skip firewall checking. If not provided, we assume
|
481
|
+
# false.
|
482
|
+
# Corresponds to the JSON property `bypassFirewallChecks`
|
483
|
+
# @return [Boolean]
|
484
|
+
attr_accessor :bypass_firewall_checks
|
485
|
+
alias_method :bypass_firewall_checks?, :bypass_firewall_checks
|
486
|
+
|
475
487
|
# Output only. The time the test was created.
|
476
488
|
# Corresponds to the JSON property `createTime`
|
477
489
|
# @return [String]
|
@@ -541,6 +553,7 @@ module Google
|
|
541
553
|
|
542
554
|
# Update properties of this object
|
543
555
|
def update!(**args)
|
556
|
+
@bypass_firewall_checks = args[:bypass_firewall_checks] if args.key?(:bypass_firewall_checks)
|
544
557
|
@create_time = args[:create_time] if args.key?(:create_time)
|
545
558
|
@description = args[:description] if args.key?(:description)
|
546
559
|
@destination = args[:destination] if args.key?(:destination)
|
@@ -560,6 +573,11 @@ module Google
|
|
560
573
|
class DeliverInfo
|
561
574
|
include Google::Apis::Core::Hashable
|
562
575
|
|
576
|
+
# IP address of the target (if applicable).
|
577
|
+
# Corresponds to the JSON property `ipAddress`
|
578
|
+
# @return [String]
|
579
|
+
attr_accessor :ip_address
|
580
|
+
|
563
581
|
# URI of the resource that the packet is delivered to.
|
564
582
|
# Corresponds to the JSON property `resourceUri`
|
565
583
|
# @return [String]
|
@@ -576,6 +594,7 @@ module Google
|
|
576
594
|
|
577
595
|
# Update properties of this object
|
578
596
|
def update!(**args)
|
597
|
+
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
579
598
|
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
580
599
|
@target = args[:target] if args.key?(:target)
|
581
600
|
end
|
@@ -978,6 +997,11 @@ module Google
|
|
978
997
|
class ForwardInfo
|
979
998
|
include Google::Apis::Core::Hashable
|
980
999
|
|
1000
|
+
# IP address of the target (if applicable).
|
1001
|
+
# Corresponds to the JSON property `ipAddress`
|
1002
|
+
# @return [String]
|
1003
|
+
attr_accessor :ip_address
|
1004
|
+
|
981
1005
|
# URI of the resource that the packet is forwarded to.
|
982
1006
|
# Corresponds to the JSON property `resourceUri`
|
983
1007
|
# @return [String]
|
@@ -994,6 +1018,7 @@ module Google
|
|
994
1018
|
|
995
1019
|
# Update properties of this object
|
996
1020
|
def update!(**args)
|
1021
|
+
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
997
1022
|
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
998
1023
|
@target = args[:target] if args.key?(:target)
|
999
1024
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.44.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240306"
|
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
|
@@ -461,6 +462,7 @@ module Google
|
|
461
462
|
class ConnectivityTest
|
462
463
|
# @private
|
463
464
|
class Representation < Google::Apis::Core::JsonRepresentation
|
465
|
+
property :bypass_firewall_checks, as: 'bypassFirewallChecks'
|
464
466
|
property :create_time, as: 'createTime'
|
465
467
|
property :description, as: 'description'
|
466
468
|
property :destination, as: 'destination', class: Google::Apis::NetworkmanagementV1beta1::Endpoint, decorator: Google::Apis::NetworkmanagementV1beta1::Endpoint::Representation
|
@@ -483,6 +485,7 @@ module Google
|
|
483
485
|
class DeliverInfo
|
484
486
|
# @private
|
485
487
|
class Representation < Google::Apis::Core::JsonRepresentation
|
488
|
+
property :ip_address, as: 'ipAddress'
|
486
489
|
property :resource_uri, as: 'resourceUri'
|
487
490
|
property :target, as: 'target'
|
488
491
|
end
|
@@ -579,6 +582,7 @@ module Google
|
|
579
582
|
class ForwardInfo
|
580
583
|
# @private
|
581
584
|
class Representation < Google::Apis::Core::JsonRepresentation
|
585
|
+
property :ip_address, as: 'ipAddress'
|
582
586
|
property :resource_uri, as: 'resourceUri'
|
583
587
|
property :target, as: 'target'
|
584
588
|
end
|
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.
|
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-
|
11
|
+
date: 2024-03-17 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.44.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: []
|