google-apis-networksecurity_v1 0.53.0 → 0.55.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: 41b3aafd36566e93ad2d3afed5a42f40de334b3acc52ae9be5b6644ef1046e59
4
- data.tar.gz: 299f9f6f22c9ceb7d65ef8fc659535c0b71ededc6182365ca0adb62dd52f68a9
3
+ metadata.gz: 92f86b75bb2095f13a4f4339d4b1120b12a473945dc6cabbc74c50dcd7acb41c
4
+ data.tar.gz: 07ac9ca264ae8e7b271278da34c8c8b2e750cb43ea7ed63b85645616ce6be20e
5
5
  SHA512:
6
- metadata.gz: 5366905bf64d59263356f939c5dae9e6d41e64ed3f4793f959e9513feb0a3fb17b1eff8167a8cc3bdc65142978495cbb854447a8d7d0f241d51d462694980a39
7
- data.tar.gz: f01558c828f2a4282e6ed45f053bccc7cb3ecf2273ec3e7cb098c251a9cd92c69431095b0fd75fc6542aef77c902a3f760ed15ef2b6c7d8537012daf849a5896
6
+ metadata.gz: d1e68ac9509441fe3bb79658e407d2ede589d6430c25acca4fc7ad209fd11d6afa25f0d2c3b9948a9bfa3b66e1676ad9c6507411c5a23951e1a4fec8a770681d
7
+ data.tar.gz: d43c9eec3376b8b4c85d635c4b8c600385c34d9a92b59d60d0a4070841d2d5798ecbcbc4575d116d18a25fd67e4b1ce43d643e3cbc425f4403b7c393d078acd8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-networksecurity_v1
2
2
 
3
+ ### v0.55.0 (2026-07-05)
4
+
5
+ * Regenerated from discovery document revision 20260617
6
+
7
+ ### v0.54.0 (2026-06-14)
8
+
9
+ * Regenerated from discovery document revision 20260524
10
+ * Regenerated using generator version 0.19.0
11
+
3
12
  ### v0.53.0 (2026-05-24)
4
13
 
5
14
  * Regenerated from discovery document revision 20260518
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/networking) may provide gui
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 3.1+.
86
+ This library is supported on Ruby 3.2+.
87
87
 
88
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
 
@@ -3210,7 +3210,8 @@ module Google
3210
3210
  # @return [String]
3211
3211
  attr_accessor :next_page_token
3212
3212
 
3213
- # Locations that could not be reached.
3213
+ # Unordered list. Locations that could not be reached. See https://google.aip.
3214
+ # dev/217 for more details.
3214
3215
  # Corresponds to the JSON property `unreachable`
3215
3216
  # @return [Array<String>]
3216
3217
  attr_accessor :unreachable
@@ -3997,6 +3998,13 @@ module Google
3997
3998
  # @return [String]
3998
3999
  attr_accessor :network
3999
4000
 
4001
+ # Output only. Identifier used by the data-path. See the NSI GENEVE format for
4002
+ # more details: https://docs.cloud.google.com/network-security-integration/docs/
4003
+ # understand-geneve#network_id
4004
+ # Corresponds to the JSON property `networkCookie`
4005
+ # @return [Fixnum]
4006
+ attr_accessor :network_cookie
4007
+
4000
4008
  # Output only. The current state of the resource does not match the user's
4001
4009
  # intended state, and the system is working to reconcile them. This part of the
4002
4010
  # normal operation (e.g. adding a new location to the target deployment group).
@@ -4030,6 +4038,7 @@ module Google
4030
4038
  @mirroring_endpoint_group = args[:mirroring_endpoint_group] if args.key?(:mirroring_endpoint_group)
4031
4039
  @name = args[:name] if args.key?(:name)
4032
4040
  @network = args[:network] if args.key?(:network)
4041
+ @network_cookie = args[:network_cookie] if args.key?(:network_cookie)
4033
4042
  @reconciling = args[:reconciling] if args.key?(:reconciling)
4034
4043
  @state = args[:state] if args.key?(:state)
4035
4044
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworksecurityV1
18
18
  # Version of the google-apis-networksecurity_v1 gem
19
- GEM_VERSION = "0.53.0"
19
+ GEM_VERSION = "0.55.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.18.0"
22
+ GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260518"
25
+ REVISION = "20260617"
26
26
  end
27
27
  end
28
28
  end
@@ -1757,6 +1757,7 @@ module Google
1757
1757
  property :mirroring_endpoint_group, as: 'mirroringEndpointGroup'
1758
1758
  property :name, as: 'name'
1759
1759
  property :network, as: 'network'
1760
+ property :network_cookie, as: 'networkCookie'
1760
1761
  property :reconciling, as: 'reconciling'
1761
1762
  property :state, as: 'state'
1762
1763
  property :update_time, as: 'updateTime'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networksecurity_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.53.0
4
+ version: 0.55.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1/v0.53.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1/v0.55.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '3.1'
69
+ version: '3.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="