google-apis-networkconnectivity_v1 0.63.0 → 0.64.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/networkconnectivity_v1/classes.rb +251 -67
- data/lib/google/apis/networkconnectivity_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkconnectivity_v1/representations.rb +82 -0
- data/lib/google/apis/networkconnectivity_v1/service.rb +424 -118
- metadata +2 -2
@@ -64,6 +64,12 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
+
class AutoCreatedSubnetworkInfo
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
67
73
|
class Binding
|
68
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
75
|
|
@@ -262,6 +268,12 @@ module Google
|
|
262
268
|
include Google::Apis::Core::JsonObjectSupport
|
263
269
|
end
|
264
270
|
|
271
|
+
class ListRemoteTransportProfilesResponse
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
265
277
|
class ListRouteTablesResponse
|
266
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
279
|
|
@@ -304,6 +316,12 @@ module Google
|
|
304
316
|
include Google::Apis::Core::JsonObjectSupport
|
305
317
|
end
|
306
318
|
|
319
|
+
class ListTransportsResponse
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
+
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
323
|
+
end
|
324
|
+
|
307
325
|
class Location
|
308
326
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
327
|
|
@@ -436,6 +454,12 @@ module Google
|
|
436
454
|
include Google::Apis::Core::JsonObjectSupport
|
437
455
|
end
|
438
456
|
|
457
|
+
class RemoteTransportProfile
|
458
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
459
|
+
|
460
|
+
include Google::Apis::Core::JsonObjectSupport
|
461
|
+
end
|
462
|
+
|
439
463
|
class Route
|
440
464
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
465
|
|
@@ -556,6 +580,12 @@ module Google
|
|
556
580
|
include Google::Apis::Core::JsonObjectSupport
|
557
581
|
end
|
558
582
|
|
583
|
+
class Transport
|
584
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
585
|
+
|
586
|
+
include Google::Apis::Core::JsonObjectSupport
|
587
|
+
end
|
588
|
+
|
559
589
|
class VirtualMachine
|
560
590
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
561
591
|
|
@@ -625,6 +655,16 @@ module Google
|
|
625
655
|
end
|
626
656
|
end
|
627
657
|
|
658
|
+
class AutoCreatedSubnetworkInfo
|
659
|
+
# @private
|
660
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
661
|
+
property :internal_range, as: 'internalRange'
|
662
|
+
property :internal_range_ref, as: 'internalRangeRef'
|
663
|
+
property :subnetwork, as: 'subnetwork'
|
664
|
+
property :subnetwork_ref, as: 'subnetworkRef'
|
665
|
+
end
|
666
|
+
end
|
667
|
+
|
628
668
|
class Binding
|
629
669
|
# @private
|
630
670
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1006,6 +1046,16 @@ module Google
|
|
1006
1046
|
end
|
1007
1047
|
end
|
1008
1048
|
|
1049
|
+
class ListRemoteTransportProfilesResponse
|
1050
|
+
# @private
|
1051
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1052
|
+
property :next_page_token, as: 'nextPageToken'
|
1053
|
+
collection :remote_transport_profiles, as: 'remoteTransportProfiles', class: Google::Apis::NetworkconnectivityV1::RemoteTransportProfile, decorator: Google::Apis::NetworkconnectivityV1::RemoteTransportProfile::Representation
|
1054
|
+
|
1055
|
+
collection :unreachable, as: 'unreachable'
|
1056
|
+
end
|
1057
|
+
end
|
1058
|
+
|
1009
1059
|
class ListRouteTablesResponse
|
1010
1060
|
# @private
|
1011
1061
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1076,6 +1126,16 @@ module Google
|
|
1076
1126
|
end
|
1077
1127
|
end
|
1078
1128
|
|
1129
|
+
class ListTransportsResponse
|
1130
|
+
# @private
|
1131
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1132
|
+
property :next_page_token, as: 'nextPageToken'
|
1133
|
+
collection :transports, as: 'transports', class: Google::Apis::NetworkconnectivityV1::Transport, decorator: Google::Apis::NetworkconnectivityV1::Transport::Representation
|
1134
|
+
|
1135
|
+
collection :unreachable, as: 'unreachable'
|
1136
|
+
end
|
1137
|
+
end
|
1138
|
+
|
1079
1139
|
class Location
|
1080
1140
|
# @private
|
1081
1141
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1326,6 +1386,16 @@ module Google
|
|
1326
1386
|
end
|
1327
1387
|
end
|
1328
1388
|
|
1389
|
+
class RemoteTransportProfile
|
1390
|
+
# @private
|
1391
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1392
|
+
property :create_time, as: 'createTime'
|
1393
|
+
hash :labels, as: 'labels'
|
1394
|
+
property :name, as: 'name'
|
1395
|
+
property :update_time, as: 'updateTime'
|
1396
|
+
end
|
1397
|
+
end
|
1398
|
+
|
1329
1399
|
class Route
|
1330
1400
|
# @private
|
1331
1401
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1429,6 +1499,8 @@ module Google
|
|
1429
1499
|
class ServiceConnectionPolicy
|
1430
1500
|
# @private
|
1431
1501
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1502
|
+
property :auto_created_subnet_info, as: 'autoCreatedSubnetInfo', class: Google::Apis::NetworkconnectivityV1::AutoCreatedSubnetworkInfo, decorator: Google::Apis::NetworkconnectivityV1::AutoCreatedSubnetworkInfo::Representation
|
1503
|
+
|
1432
1504
|
property :create_time, as: 'createTime'
|
1433
1505
|
property :description, as: 'description'
|
1434
1506
|
property :etag, as: 'etag'
|
@@ -1574,6 +1646,16 @@ module Google
|
|
1574
1646
|
end
|
1575
1647
|
end
|
1576
1648
|
|
1649
|
+
class Transport
|
1650
|
+
# @private
|
1651
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1652
|
+
property :create_time, as: 'createTime'
|
1653
|
+
hash :labels, as: 'labels'
|
1654
|
+
property :name, as: 'name'
|
1655
|
+
property :update_time, as: 'updateTime'
|
1656
|
+
end
|
1657
|
+
end
|
1658
|
+
|
1577
1659
|
class VirtualMachine
|
1578
1660
|
# @private
|
1579
1661
|
class Representation < Google::Apis::Core::JsonRepresentation
|