google-apis-networkmanagement_v1 0.38.0 → 0.39.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: c5df698852353e0ad98d5322af855dcd89cce3e6cf4dfc116bf8c48ad241e06d
4
- data.tar.gz: 304ce85d4fa0c1818dceca1e70bd65a2693b84cb023acbc2f3c9aa3c9e465b95
3
+ metadata.gz: 807ae57b33f2429b5688094fa939faa43838c5e84f2a9e768b627f4b31c70352
4
+ data.tar.gz: c24329df115a8fe76bbb5742a33f495def9ff55b18589c58c356c134549c62ea
5
5
  SHA512:
6
- metadata.gz: 78403bb78f55208f988687f4fee5551a14508788edd2d605b472315c6f599f6cbd462840247c9cf7e36dacbe66fdc43ab6e615db5291847feff2b4fa30cc8444
7
- data.tar.gz: be463778f40369593fe3c9ddea2f5ebb261201d2c3c58bc0a4dfa92257b6d63beae311d1a583af117545bd75332ec1d44518c5aa7029af58de173fbef0272fe4
6
+ metadata.gz: 53c2dbe1ee9e1d1ccd19ec8e54c421139167224fb6cc194d5f30333a09efb2ed6669b8ff3d9125c6768a4eb53f01f7de301656ee3b351fb24c99cbaf7a7db2e9
7
+ data.tar.gz: 4ce82dcf3f37dca791cd34cdce8866621f7e735913a2c6944e928451c2786c8b2bbcbca14f450f5db13619b22c6c243df9b8dd7e2468bff2a993fffeaea0461c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-networkmanagement_v1
2
2
 
3
+ ### v0.39.0 (2024-02-24)
4
+
5
+ * Regenerated from discovery document revision 20240207
6
+ * Regenerated using generator version 0.14.0
7
+
3
8
  ### v0.38.0 (2024-01-28)
4
9
 
5
10
  * 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.5+.
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. Currently, this means Ruby 2.5 and later. 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.
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
 
@@ -265,7 +265,10 @@ module Google
265
265
  attr_accessor :members
266
266
 
267
267
  # Role that is assigned to the list of `members`, or principals. For example, `
268
- # roles/viewer`, `roles/editor`, or `roles/owner`.
268
+ # roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM
269
+ # roles and permissions, see the [IAM documentation](https://cloud.google.com/
270
+ # iam/docs/roles-overview). For a list of the available pre-defined roles, see [
271
+ # here](https://cloud.google.com/iam/docs/understanding-roles).
269
272
  # Corresponds to the JSON property `role`
270
273
  # @return [String]
271
274
  attr_accessor :role
@@ -1346,6 +1349,11 @@ module Google
1346
1349
  class LoadBalancerBackendInfo
1347
1350
  include Google::Apis::Core::Hashable
1348
1351
 
1352
+ # URI of the backend bucket this backend targets (if applicable).
1353
+ # Corresponds to the JSON property `backendBucketUri`
1354
+ # @return [String]
1355
+ attr_accessor :backend_bucket_uri
1356
+
1349
1357
  # URI of the backend service this backend belongs to (if applicable).
1350
1358
  # Corresponds to the JSON property `backendServiceUri`
1351
1359
  # @return [String]
@@ -1389,12 +1397,23 @@ module Google
1389
1397
  # @return [String]
1390
1398
  attr_accessor :network_endpoint_group_uri
1391
1399
 
1400
+ # PSC Google API target this PSC NEG backend targets (if applicable).
1401
+ # Corresponds to the JSON property `pscGoogleApiTarget`
1402
+ # @return [String]
1403
+ attr_accessor :psc_google_api_target
1404
+
1405
+ # URI of the PSC service attachment this PSC NEG backend targets (if applicable).
1406
+ # Corresponds to the JSON property `pscServiceAttachmentUri`
1407
+ # @return [String]
1408
+ attr_accessor :psc_service_attachment_uri
1409
+
1392
1410
  def initialize(**args)
1393
1411
  update!(**args)
1394
1412
  end
1395
1413
 
1396
1414
  # Update properties of this object
1397
1415
  def update!(**args)
1416
+ @backend_bucket_uri = args[:backend_bucket_uri] if args.key?(:backend_bucket_uri)
1398
1417
  @backend_service_uri = args[:backend_service_uri] if args.key?(:backend_service_uri)
1399
1418
  @health_check_firewalls_config_state = args[:health_check_firewalls_config_state] if args.key?(:health_check_firewalls_config_state)
1400
1419
  @health_check_uri = args[:health_check_uri] if args.key?(:health_check_uri)
@@ -1402,6 +1421,8 @@ module Google
1402
1421
  @instance_uri = args[:instance_uri] if args.key?(:instance_uri)
1403
1422
  @name = args[:name] if args.key?(:name)
1404
1423
  @network_endpoint_group_uri = args[:network_endpoint_group_uri] if args.key?(:network_endpoint_group_uri)
1424
+ @psc_google_api_target = args[:psc_google_api_target] if args.key?(:psc_google_api_target)
1425
+ @psc_service_attachment_uri = args[:psc_service_attachment_uri] if args.key?(:psc_service_attachment_uri)
1405
1426
  end
1406
1427
  end
1407
1428
 
@@ -2515,6 +2536,13 @@ module Google
2515
2536
  # @return [Google::Apis::NetworkmanagementV1::EndpointInfo]
2516
2537
  attr_accessor :endpoint_info
2517
2538
 
2539
+ # ID of trace. For forward traces, this ID is unique for each trace. For return
2540
+ # traces, it matches ID of associated forward trace. A single forward trace can
2541
+ # be associated with none, one or more than one return trace.
2542
+ # Corresponds to the JSON property `forwardTraceId`
2543
+ # @return [Fixnum]
2544
+ attr_accessor :forward_trace_id
2545
+
2518
2546
  # A trace of a test contains multiple steps from the initial state to the final
2519
2547
  # state (delivered, dropped, forwarded, or aborted). The steps are ordered by
2520
2548
  # the processing sequence within the simulated network state machine. It is
@@ -2531,6 +2559,7 @@ module Google
2531
2559
  # Update properties of this object
2532
2560
  def update!(**args)
2533
2561
  @endpoint_info = args[:endpoint_info] if args.key?(:endpoint_info)
2562
+ @forward_trace_id = args[:forward_trace_id] if args.key?(:forward_trace_id)
2534
2563
  @steps = args[:steps] if args.key?(:steps)
2535
2564
  end
2536
2565
  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.38.0"
19
+ GEM_VERSION = "0.39.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.1"
22
+ GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240117"
25
+ REVISION = "20240207"
26
26
  end
27
27
  end
28
28
  end
@@ -686,6 +686,7 @@ module Google
686
686
  class LoadBalancerBackendInfo
687
687
  # @private
688
688
  class Representation < Google::Apis::Core::JsonRepresentation
689
+ property :backend_bucket_uri, as: 'backendBucketUri'
689
690
  property :backend_service_uri, as: 'backendServiceUri'
690
691
  property :health_check_firewalls_config_state, as: 'healthCheckFirewallsConfigState'
691
692
  property :health_check_uri, as: 'healthCheckUri'
@@ -693,6 +694,8 @@ module Google
693
694
  property :instance_uri, as: 'instanceUri'
694
695
  property :name, as: 'name'
695
696
  property :network_endpoint_group_uri, as: 'networkEndpointGroupUri'
697
+ property :psc_google_api_target, as: 'pscGoogleApiTarget'
698
+ property :psc_service_attachment_uri, as: 'pscServiceAttachmentUri'
696
699
  end
697
700
  end
698
701
 
@@ -962,6 +965,7 @@ module Google
962
965
  class Representation < Google::Apis::Core::JsonRepresentation
963
966
  property :endpoint_info, as: 'endpointInfo', class: Google::Apis::NetworkmanagementV1::EndpointInfo, decorator: Google::Apis::NetworkmanagementV1::EndpointInfo::Representation
964
967
 
968
+ property :forward_trace_id, as: 'forwardTraceId'
965
969
  collection :steps, as: 'steps', class: Google::Apis::NetworkmanagementV1::Step, decorator: Google::Apis::NetworkmanagementV1::Step::Representation
966
970
 
967
971
  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.38.0
4
+ version: 0.39.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-01-28 00:00:00.000000000 Z
11
+ date: 2024-02-25 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.12.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.12.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.38.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.39.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.5'
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.3
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