google-apis-networkmanagement_v1 0.39.0 → 0.40.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: 807ae57b33f2429b5688094fa939faa43838c5e84f2a9e768b627f4b31c70352
4
- data.tar.gz: c24329df115a8fe76bbb5742a33f495def9ff55b18589c58c356c134549c62ea
3
+ metadata.gz: e5e955a3bc71063a064ae69ec698df7b132d447720e8d23682c942fbc025d7c8
4
+ data.tar.gz: 94cb9d2d1cbf9d36804c3fbf455bf1aa19962b0545f7b745353c031dfe9905da
5
5
  SHA512:
6
- metadata.gz: 53c2dbe1ee9e1d1ccd19ec8e54c421139167224fb6cc194d5f30333a09efb2ed6669b8ff3d9125c6768a4eb53f01f7de301656ee3b351fb24c99cbaf7a7db2e9
7
- data.tar.gz: 4ce82dcf3f37dca791cd34cdce8866621f7e735913a2c6944e928451c2786c8b2bbcbca14f450f5db13619b22c6c243df9b8dd7e2468bff2a993fffeaea0461c
6
+ metadata.gz: b09e87de360b808fafd244f61b60fef159ca3487fdcfde63b76df0c57df585819b53f0667f54a472e68171d78af336ff4731d54c6e647cbab0ec199cd614715c
7
+ data.tar.gz: 17cd18d755307ba7911f5cc8c14d91c24105dafc7b5590be30bd03d1d5e1d3d86fba141f35952652a6dbc61d889481d04d0c9b6a591b80ed4ace194a54848ff4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.39.0 (2024-02-24)
4
8
 
5
9
  * 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
@@ -554,6 +559,11 @@ module Google
554
559
  class DeliverInfo
555
560
  include Google::Apis::Core::Hashable
556
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
+
557
567
  # URI of the resource that the packet is delivered to.
558
568
  # Corresponds to the JSON property `resourceUri`
559
569
  # @return [String]
@@ -570,6 +580,7 @@ module Google
570
580
 
571
581
  # Update properties of this object
572
582
  def update!(**args)
583
+ @ip_address = args[:ip_address] if args.key?(:ip_address)
573
584
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
574
585
  @target = args[:target] if args.key?(:target)
575
586
  end
@@ -972,6 +983,11 @@ module Google
972
983
  class ForwardInfo
973
984
  include Google::Apis::Core::Hashable
974
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
+
975
991
  # URI of the resource that the packet is forwarded to.
976
992
  # Corresponds to the JSON property `resourceUri`
977
993
  # @return [String]
@@ -988,6 +1004,7 @@ module Google
988
1004
 
989
1005
  # Update properties of this object
990
1006
  def update!(**args)
1007
+ @ip_address = args[:ip_address] if args.key?(:ip_address)
991
1008
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
992
1009
  @target = args[:target] if args.key?(:target)
993
1010
  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.40.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 = "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
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.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-02-25 00:00:00.000000000 Z
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
@@ -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.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: []