google-apis-networkmanagement_v1 0.39.0 → 0.41.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: 807ae57b33f2429b5688094fa939faa43838c5e84f2a9e768b627f4b31c70352
4
- data.tar.gz: c24329df115a8fe76bbb5742a33f495def9ff55b18589c58c356c134549c62ea
3
+ metadata.gz: f1d727e6cb4a9768300586b2c0b33ec6dace92848b7be8326abc2d08bc309c2d
4
+ data.tar.gz: 432d2c67ab9ea2d993c0d56420c4957a0675ae6e5ff4f0ac564c6138c68b49f6
5
5
  SHA512:
6
- metadata.gz: 53c2dbe1ee9e1d1ccd19ec8e54c421139167224fb6cc194d5f30333a09efb2ed6669b8ff3d9125c6768a4eb53f01f7de301656ee3b351fb24c99cbaf7a7db2e9
7
- data.tar.gz: 4ce82dcf3f37dca791cd34cdce8866621f7e735913a2c6944e928451c2786c8b2bbcbca14f450f5db13619b22c6c243df9b8dd7e2468bff2a993fffeaea0461c
6
+ metadata.gz: d70a8c5f0bb2ed0f7cae56a57acdc552de8105e5eca3cc10f5cbdea612f95721440eff49a0122e14c102bc194c41ba03c97d3225031bc7e3528df2099951cf47
7
+ data.tar.gz: e544ce6f22f3ed93aff1e38a76a0eba26da5fb0455f80b7129b57ff4b8281d05b95a2a95cf77dfda1ea9f21e77c9548762b18611d6b29057a7314622afa53594
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkmanagement_v1
2
2
 
3
+ ### v0.41.0 (2024-03-17)
4
+
5
+ * Regenerated from discovery document revision 20240306
6
+
7
+ ### v0.40.0 (2024-03-03)
8
+
9
+ * Regenerated from discovery document revision 20240221
10
+
3
11
  ### v0.39.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
- # List of project IDs that the user has specified in the request but does not
35
- # have permission to access network configs. Analysis is aborted in this case
36
- # with the PERMISSION_DENIED cause.
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
@@ -466,6 +471,13 @@ module Google
466
471
  class ConnectivityTest
467
472
  include Google::Apis::Core::Hashable
468
473
 
474
+ # Whether the test should skip firewall checking. If not provided, we assume
475
+ # false.
476
+ # Corresponds to the JSON property `bypassFirewallChecks`
477
+ # @return [Boolean]
478
+ attr_accessor :bypass_firewall_checks
479
+ alias_method :bypass_firewall_checks?, :bypass_firewall_checks
480
+
469
481
  # Output only. The time the test was created.
470
482
  # Corresponds to the JSON property `createTime`
471
483
  # @return [String]
@@ -535,6 +547,7 @@ module Google
535
547
 
536
548
  # Update properties of this object
537
549
  def update!(**args)
550
+ @bypass_firewall_checks = args[:bypass_firewall_checks] if args.key?(:bypass_firewall_checks)
538
551
  @create_time = args[:create_time] if args.key?(:create_time)
539
552
  @description = args[:description] if args.key?(:description)
540
553
  @destination = args[:destination] if args.key?(:destination)
@@ -554,6 +567,11 @@ module Google
554
567
  class DeliverInfo
555
568
  include Google::Apis::Core::Hashable
556
569
 
570
+ # IP address of the target (if applicable).
571
+ # Corresponds to the JSON property `ipAddress`
572
+ # @return [String]
573
+ attr_accessor :ip_address
574
+
557
575
  # URI of the resource that the packet is delivered to.
558
576
  # Corresponds to the JSON property `resourceUri`
559
577
  # @return [String]
@@ -570,6 +588,7 @@ module Google
570
588
 
571
589
  # Update properties of this object
572
590
  def update!(**args)
591
+ @ip_address = args[:ip_address] if args.key?(:ip_address)
573
592
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
574
593
  @target = args[:target] if args.key?(:target)
575
594
  end
@@ -972,6 +991,11 @@ module Google
972
991
  class ForwardInfo
973
992
  include Google::Apis::Core::Hashable
974
993
 
994
+ # IP address of the target (if applicable).
995
+ # Corresponds to the JSON property `ipAddress`
996
+ # @return [String]
997
+ attr_accessor :ip_address
998
+
975
999
  # URI of the resource that the packet is forwarded to.
976
1000
  # Corresponds to the JSON property `resourceUri`
977
1001
  # @return [String]
@@ -988,6 +1012,7 @@ module Google
988
1012
 
989
1013
  # Update properties of this object
990
1014
  def update!(**args)
1015
+ @ip_address = args[:ip_address] if args.key?(:ip_address)
991
1016
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
992
1017
  @target = args[:target] if args.key?(:target)
993
1018
  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.39.0"
19
+ GEM_VERSION = "0.41.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 = "20240207"
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
@@ -460,6 +461,7 @@ module Google
460
461
  class ConnectivityTest
461
462
  # @private
462
463
  class Representation < Google::Apis::Core::JsonRepresentation
464
+ property :bypass_firewall_checks, as: 'bypassFirewallChecks'
463
465
  property :create_time, as: 'createTime'
464
466
  property :description, as: 'description'
465
467
  property :destination, as: 'destination', class: Google::Apis::NetworkmanagementV1::Endpoint, decorator: Google::Apis::NetworkmanagementV1::Endpoint::Representation
@@ -482,6 +484,7 @@ module Google
482
484
  class DeliverInfo
483
485
  # @private
484
486
  class Representation < Google::Apis::Core::JsonRepresentation
487
+ property :ip_address, as: 'ipAddress'
485
488
  property :resource_uri, as: 'resourceUri'
486
489
  property :target, as: 'target'
487
490
  end
@@ -578,6 +581,7 @@ module Google
578
581
  class ForwardInfo
579
582
  # @private
580
583
  class Representation < Google::Apis::Core::JsonRepresentation
584
+ property :ip_address, as: 'ipAddress'
581
585
  property :resource_uri, as: 'resourceUri'
582
586
  property :target, as: 'target'
583
587
  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.39.0
4
+ version: 0.41.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-02-25 00:00:00.000000000 Z
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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.39.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.41.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: []