google-apis-networkconnectivity_v1 0.56.0 → 0.58.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: 90e25deb26c7212e3512eadcaef0b3ad646ef58edfa18cd8fee806db5da3f434
4
+ data.tar.gz: 13936e1d2edf020641ed8a7b9ffbcc267c71125d1e855893c9364688fb9256b0
5
5
  SHA512:
6
- metadata.gz: 8e8e4954617e41278d0927bf66149342fdc842b0262ed28342b00f57e2320b1e6a9a95fa6250ec5433cc837f9ad78e4e0beae73b5d656c291b66b05bc503f8c8
7
- data.tar.gz: b3a3edd54ec8439076acb22f355e01052b7e3e64e62a2bfe5ffddf3755a71470eda73aabee8aab6b997ebe0b43849889e2540ce001b837c12772d577d97b7d6a
6
+ metadata.gz: f1acec1680219c6f272c6497e16421cddc04e250067f59ed037b6262bd5fa8a816afd5d597a7e924386d5ba2bdfe732bf493b33319ff2e2fd81ed4e016e19c0b
7
+ data.tar.gz: a802fbd167407fd3511f460950d24b4884267c79c6aa9a05e4cac09593d79e5b044fb137b2c00039cb67d2590900b8065bdc8ea4d64fac131b05444cc9698bcb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkconnectivity_v1
2
2
 
3
+ ### v0.58.0 (2025-04-27)
4
+
5
+ * Regenerated from discovery document revision 20250414
6
+
7
+ ### v0.57.0 (2025-03-30)
8
+
9
+ * Regenerated from discovery document revision 20250318
10
+
3
11
  ### v0.56.0 (2025-03-23)
4
12
 
5
13
  * 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)
@@ -1379,7 +1395,7 @@ module Google
1379
1395
  # Output only. The list of Producer VPC spokes that this VPC spoke is a service
1380
1396
  # consumer VPC spoke for. These producer VPCs are connected through VPC peering
1381
1397
  # to this spoke's backing VPC network. Because they are directly connected
1382
- # throuh VPC peering, NCC export filters do not apply between the service
1398
+ # through VPC peering, NCC export filters do not apply between the service
1383
1399
  # consumer VPC spoke and any of its producer VPC spokes. This VPC spoke cannot
1384
1400
  # be deleted as long as any of these producer VPC spokes are connected to the
1385
1401
  # NCC Hub.
@@ -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.58.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 = "20250414"
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
@@ -84,6 +84,9 @@ module Google
84
84
  # Lists information about the supported locations for this service.
85
85
  # @param [String] name
86
86
  # The resource that owns the locations collection, if applicable.
87
+ # @param [Array<String>, String] extra_location_types
88
+ # Optional. A list of extra location types that should be used as conditions for
89
+ # controlling the visibility of the locations.
87
90
  # @param [String] filter
88
91
  # A filter to narrow down results to a preferred subset. The filtering language
89
92
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -111,11 +114,12 @@ module Google
111
114
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
112
115
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
113
116
  # @raise [Google::Apis::AuthorizationError] Authorization is required
114
- def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
117
+ def list_project_locations(name, extra_location_types: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
115
118
  command = make_simple_command(:get, 'v1/{+name}/locations', options)
116
119
  command.response_representation = Google::Apis::NetworkconnectivityV1::ListLocationsResponse::Representation
117
120
  command.response_class = Google::Apis::NetworkconnectivityV1::ListLocationsResponse
118
121
  command.params['name'] = name unless name.nil?
122
+ command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
119
123
  command.query['filter'] = filter unless filter.nil?
120
124
  command.query['pageSize'] = page_size unless page_size.nil?
121
125
  command.query['pageToken'] = page_token unless page_token.nil?
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.58.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-04-27 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.58.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: