google-apis-networkconnectivity_v1 0.56.0 → 0.57.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: a1431b5b7a57e5cde0fe3d9af4128082523ef5778edb89b99a86412349ed5ea2
4
- data.tar.gz: b45388da2196d70d65868be6373b0aceb28d6f32edfcbb8fa6874fa9a2315bde
3
+ metadata.gz: 17d544050e7bba20a04be69456384f6d36ebcbb699243f1488057a41a4b8b3c8
4
+ data.tar.gz: cfb1a27f703d126541f99c515fb01c2be0c36e9bbf9db13ce6f6b0071803b169
5
5
  SHA512:
6
- metadata.gz: 8e8e4954617e41278d0927bf66149342fdc842b0262ed28342b00f57e2320b1e6a9a95fa6250ec5433cc837f9ad78e4e0beae73b5d656c291b66b05bc503f8c8
7
- data.tar.gz: b3a3edd54ec8439076acb22f355e01052b7e3e64e62a2bfe5ffddf3755a71470eda73aabee8aab6b997ebe0b43849889e2540ce001b837c12772d577d97b7d6a
6
+ metadata.gz: e5c775d188d123f48dd46d1ce1151b6f3fbfcb910b0683c899cbb8aa87e19aa3e86c80febd407b0a175051d30fb08619560a17611400c00d0a2f18ff3988a560
7
+ data.tar.gz: 412c082ec75cba06eafea7bff4481258e9f3490f3f06a8e31d8dcf93c21f8b8ab55f1be8e3fc8463d4d4b5dca2c85f11b84df43e1916db23b1e6f29844711012
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkconnectivity_v1
2
2
 
3
+ ### v0.57.0 (2025-03-30)
4
+
5
+ * Regenerated from discovery document revision 20250318
6
+
3
7
  ### v0.56.0 (2025-03-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20250312
@@ -1097,6 +1097,20 @@ module Google
1097
1097
  # @return [String]
1098
1098
  attr_accessor :description
1099
1099
 
1100
+ # Optional. ExcludeCidrRanges flag. Specifies a set of CIDR blocks that allows
1101
+ # exclusion of particular CIDR ranges from the auto-allocation process, without
1102
+ # having to reserve these blocks
1103
+ # Corresponds to the JSON property `excludeCidrRanges`
1104
+ # @return [Array<String>]
1105
+ attr_accessor :exclude_cidr_ranges
1106
+
1107
+ # Optional. Immutable ranges cannot have their fields modified, except for
1108
+ # labels and description.
1109
+ # Corresponds to the JSON property `immutable`
1110
+ # @return [Boolean]
1111
+ attr_accessor :immutable
1112
+ alias_method :immutable?, :immutable
1113
+
1100
1114
  # The IP range that this internal range defines. NOTE: IPv6 ranges are limited
1101
1115
  # to usage=EXTERNAL_TO_VPC and peering=FOR_SELF. NOTE: For IPv6 Ranges this
1102
1116
  # field is compulsory, i.e. the address range must be specified explicitly.
@@ -1188,6 +1202,8 @@ module Google
1188
1202
  def update!(**args)
1189
1203
  @create_time = args[:create_time] if args.key?(:create_time)
1190
1204
  @description = args[:description] if args.key?(:description)
1205
+ @exclude_cidr_ranges = args[:exclude_cidr_ranges] if args.key?(:exclude_cidr_ranges)
1206
+ @immutable = args[:immutable] if args.key?(:immutable)
1191
1207
  @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
1192
1208
  @labels = args[:labels] if args.key?(:labels)
1193
1209
  @migration = args[:migration] if args.key?(:migration)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworkconnectivityV1
18
18
  # Version of the google-apis-networkconnectivity_v1 gem
19
- GEM_VERSION = "0.56.0"
19
+ GEM_VERSION = "0.57.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250312"
25
+ REVISION = "20250318"
26
26
  end
27
27
  end
28
28
  end
@@ -723,6 +723,8 @@ module Google
723
723
  class Representation < Google::Apis::Core::JsonRepresentation
724
724
  property :create_time, as: 'createTime'
725
725
  property :description, as: 'description'
726
+ collection :exclude_cidr_ranges, as: 'excludeCidrRanges'
727
+ property :immutable, as: 'immutable'
726
728
  property :ip_cidr_range, as: 'ipCidrRange'
727
729
  hash :labels, as: 'labels'
728
730
  property :migration, as: 'migration', class: Google::Apis::NetworkconnectivityV1::Migration, decorator: Google::Apis::NetworkconnectivityV1::Migration::Representation
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkconnectivity_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.56.0
4
+ version: 0.57.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-23 00:00:00.000000000 Z
10
+ date: 2025-03-30 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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-networkconnectivity_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkconnectivity_v1/v0.56.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkconnectivity_v1/v0.57.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkconnectivity_v1
62
62
  rdoc_options: []
63
63
  require_paths: