google-apis-networkconnectivity_v1 0.55.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17d544050e7bba20a04be69456384f6d36ebcbb699243f1488057a41a4b8b3c8
|
4
|
+
data.tar.gz: cfb1a27f703d126541f99c515fb01c2be0c36e9bbf9db13ce6f6b0071803b169
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5c775d188d123f48dd46d1ce1151b6f3fbfcb910b0683c899cbb8aa87e19aa3e86c80febd407b0a175051d30fb08619560a17611400c00d0a2f18ff3988a560
|
7
|
+
data.tar.gz: 412c082ec75cba06eafea7bff4481258e9f3490f3f06a8e31d8dcf93c21f8b8ab55f1be8e3fc8463d4d4b5dca2c85f11b84df43e1916db23b1e6f29844711012
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
7
|
+
### v0.56.0 (2025-03-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250312
|
10
|
+
|
3
11
|
### v0.55.0 (2025-03-16)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250305
|
@@ -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)
|
@@ -1281,6 +1297,12 @@ module Google
|
|
1281
1297
|
# @return [String]
|
1282
1298
|
attr_accessor :producer_network
|
1283
1299
|
|
1300
|
+
# Output only. The proposed exclude export IP ranges waiting for hub
|
1301
|
+
# administration's approval.
|
1302
|
+
# Corresponds to the JSON property `proposedExcludeExportRanges`
|
1303
|
+
# @return [Array<String>]
|
1304
|
+
attr_accessor :proposed_exclude_export_ranges
|
1305
|
+
|
1284
1306
|
# Optional. The proposed include export IP ranges waiting for hub administration'
|
1285
1307
|
# s approval.
|
1286
1308
|
# Corresponds to the JSON property `proposedIncludeExportRanges`
|
@@ -1303,6 +1325,7 @@ module Google
|
|
1303
1325
|
@network = args[:network] if args.key?(:network)
|
1304
1326
|
@peering = args[:peering] if args.key?(:peering)
|
1305
1327
|
@producer_network = args[:producer_network] if args.key?(:producer_network)
|
1328
|
+
@proposed_exclude_export_ranges = args[:proposed_exclude_export_ranges] if args.key?(:proposed_exclude_export_ranges)
|
1306
1329
|
@proposed_include_export_ranges = args[:proposed_include_export_ranges] if args.key?(:proposed_include_export_ranges)
|
1307
1330
|
@service_consumer_vpc_spoke = args[:service_consumer_vpc_spoke] if args.key?(:service_consumer_vpc_spoke)
|
1308
1331
|
end
|
@@ -1380,6 +1403,12 @@ module Google
|
|
1380
1403
|
# @return [Array<String>]
|
1381
1404
|
attr_accessor :producer_vpc_spokes
|
1382
1405
|
|
1406
|
+
# Output only. The proposed exclude export IP ranges waiting for hub
|
1407
|
+
# administration's approval.
|
1408
|
+
# Corresponds to the JSON property `proposedExcludeExportRanges`
|
1409
|
+
# @return [Array<String>]
|
1410
|
+
attr_accessor :proposed_exclude_export_ranges
|
1411
|
+
|
1383
1412
|
# Optional. The proposed include export IP ranges waiting for hub administration'
|
1384
1413
|
# s approval.
|
1385
1414
|
# Corresponds to the JSON property `proposedIncludeExportRanges`
|
@@ -1400,6 +1429,7 @@ module Google
|
|
1400
1429
|
@exclude_export_ranges = args[:exclude_export_ranges] if args.key?(:exclude_export_ranges)
|
1401
1430
|
@include_export_ranges = args[:include_export_ranges] if args.key?(:include_export_ranges)
|
1402
1431
|
@producer_vpc_spokes = args[:producer_vpc_spokes] if args.key?(:producer_vpc_spokes)
|
1432
|
+
@proposed_exclude_export_ranges = args[:proposed_exclude_export_ranges] if args.key?(:proposed_exclude_export_ranges)
|
1403
1433
|
@proposed_include_export_ranges = args[:proposed_include_export_ranges] if args.key?(:proposed_include_export_ranges)
|
1404
1434
|
@uri = args[:uri] if args.key?(:uri)
|
1405
1435
|
end
|
@@ -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.
|
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 = "
|
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
|
@@ -757,6 +759,7 @@ module Google
|
|
757
759
|
property :network, as: 'network'
|
758
760
|
property :peering, as: 'peering'
|
759
761
|
property :producer_network, as: 'producerNetwork'
|
762
|
+
collection :proposed_exclude_export_ranges, as: 'proposedExcludeExportRanges'
|
760
763
|
collection :proposed_include_export_ranges, as: 'proposedIncludeExportRanges'
|
761
764
|
property :service_consumer_vpc_spoke, as: 'serviceConsumerVpcSpoke'
|
762
765
|
end
|
@@ -779,6 +782,7 @@ module Google
|
|
779
782
|
collection :exclude_export_ranges, as: 'excludeExportRanges'
|
780
783
|
collection :include_export_ranges, as: 'includeExportRanges'
|
781
784
|
collection :producer_vpc_spokes, as: 'producerVpcSpokes'
|
785
|
+
collection :proposed_exclude_export_ranges, as: 'proposedExcludeExportRanges'
|
782
786
|
collection :proposed_include_export_ranges, as: 'proposedIncludeExportRanges'
|
783
787
|
property :uri, as: 'uri'
|
784
788
|
end
|
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.
|
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-
|
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.
|
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:
|