google-apis-networkconnectivity_v1 0.48.0 → 0.50.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3fb67610a0aed6a56faa4f46105d0d1f5836503aaf5c9aea227cbb21641dd1c9
4
- data.tar.gz: 1f96f8df0fdc4b98dd500689ffb0548900cc73ddc618767c2b962cc4a81b06a1
3
+ metadata.gz: c51628a9dfb291efa6b5afab6633032afa25cfd51e2626824a125b67d4b3f950
4
+ data.tar.gz: fb1c78497b4a1fa05ac6af2aa0823a18c994a55c833e3ba92b455d15391e8a14
5
5
  SHA512:
6
- metadata.gz: 5c23bab5ab57ba1840116e1cae1160ab71d91163e8d90e9daa2a36794620fa163696bf4e633faded0103a6c02cce34be1667ca7d4465f9c6aa9d1eae1f35b19f
7
- data.tar.gz: ec886a12830be9c1a6079ec67c592ceeaa373d791a7d60daada4e46dd724e70fbabce8d7cc94a260d2ac6c7a712ad5c93c99ceeb8b54323ad3a6daccd3350007
6
+ metadata.gz: bea17c80ef1f974675ecececa8f21b86d3ff28706cb9ace1ad713d84384c3201989e92be3cdc8585f023016d9ba9ef8aabb93db09018ad92d7644781882ededc
7
+ data.tar.gz: 15035b72cd7aa8060032362e01766a9836f6536ed8a3d87dd5839631af00f07138ff81be83b2c51dbd5e2262e853c1f6b8c0bc6638ee00632a9f4483e5361e81
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkconnectivity_v1
2
2
 
3
+ ### v0.50.0 (2024-11-10)
4
+
5
+ * Regenerated from discovery document revision 20241030
6
+
7
+ ### v0.49.0 (2024-10-20)
8
+
9
+ * Regenerated from discovery document revision 20241009
10
+
3
11
  ### v0.48.0 (2024-09-29)
4
12
 
5
13
  * Regenerated from discovery document revision 20240923
@@ -298,6 +298,11 @@ module Google
298
298
  attr_accessor :disable_global_access
299
299
  alias_method :disable_global_access?, :disable_global_access
300
300
 
301
+ # The requested IP version for the PSC connection.
302
+ # Corresponds to the JSON property `ipVersion`
303
+ # @return [String]
304
+ attr_accessor :ip_version
305
+
301
306
  # The resource path of the consumer network where PSC connections are allowed to
302
307
  # be created in. Note, this network does not need be in the ConsumerPscConfig.
303
308
  # project in the case of SharedVPC. Example: projects/`projectNumOrId`/global/
@@ -343,6 +348,7 @@ module Google
343
348
  def update!(**args)
344
349
  @consumer_instance_project = args[:consumer_instance_project] if args.key?(:consumer_instance_project)
345
350
  @disable_global_access = args[:disable_global_access] if args.key?(:disable_global_access)
351
+ @ip_version = args[:ip_version] if args.key?(:ip_version)
346
352
  @network = args[:network] if args.key?(:network)
347
353
  @producer_instance_id = args[:producer_instance_id] if args.key?(:producer_instance_id)
348
354
  @producer_instance_metadata = args[:producer_instance_metadata] if args.key?(:producer_instance_metadata)
@@ -402,6 +408,11 @@ module Google
402
408
  # @return [String]
403
409
  attr_accessor :ip
404
410
 
411
+ # The requested IP version for the PSC connection.
412
+ # Corresponds to the JSON property `ipVersion`
413
+ # @return [String]
414
+ attr_accessor :ip_version
415
+
405
416
  # The consumer network whose PSC forwarding rule is connected to the service
406
417
  # attachments in this service connection map. Note that the network could be on
407
418
  # a different project (shared VPC).
@@ -460,6 +471,7 @@ module Google
460
471
  @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
461
472
  @gce_operation = args[:gce_operation] if args.key?(:gce_operation)
462
473
  @ip = args[:ip] if args.key?(:ip)
474
+ @ip_version = args[:ip_version] if args.key?(:ip_version)
463
475
  @network = args[:network] if args.key?(:network)
464
476
  @producer_instance_id = args[:producer_instance_id] if args.key?(:producer_instance_id)
465
477
  @producer_instance_metadata = args[:producer_instance_metadata] if args.key?(:producer_instance_metadata)
@@ -971,6 +983,37 @@ module Google
971
983
  end
972
984
  end
973
985
 
986
+ # The hub status entry.
987
+ class HubStatusEntry
988
+ include Google::Apis::Core::Hashable
989
+
990
+ # The number of status. If group_by is not set in the request, the default is 1.
991
+ # Corresponds to the JSON property `count`
992
+ # @return [Fixnum]
993
+ attr_accessor :count
994
+
995
+ # The same group_by field from the request.
996
+ # Corresponds to the JSON property `groupBy`
997
+ # @return [String]
998
+ attr_accessor :group_by
999
+
1000
+ # The PSC propagation status in a hub.
1001
+ # Corresponds to the JSON property `pscPropagationStatus`
1002
+ # @return [Google::Apis::NetworkconnectivityV1::PscPropagationStatus]
1003
+ attr_accessor :psc_propagation_status
1004
+
1005
+ def initialize(**args)
1006
+ update!(**args)
1007
+ end
1008
+
1009
+ # Update properties of this object
1010
+ def update!(**args)
1011
+ @count = args[:count] if args.key?(:count)
1012
+ @group_by = args[:group_by] if args.key?(:group_by)
1013
+ @psc_propagation_status = args[:psc_propagation_status] if args.key?(:psc_propagation_status)
1014
+ end
1015
+ end
1016
+
974
1017
  # InterconnectAttachment that this route applies to.
975
1018
  class InterconnectAttachment
976
1019
  include Google::Apis::Core::Hashable
@@ -1160,7 +1203,7 @@ module Google
1160
1203
  end
1161
1204
  end
1162
1205
 
1163
- # Next ID: 7
1206
+ #
1164
1207
  class LinkedProducerVpcNetwork
1165
1208
  include Google::Apis::Core::Hashable
1166
1209
 
@@ -1169,6 +1212,11 @@ module Google
1169
1212
  # @return [Array<String>]
1170
1213
  attr_accessor :exclude_export_ranges
1171
1214
 
1215
+ # Optional. IP ranges allowed to be included from peering.
1216
+ # Corresponds to the JSON property `includeExportRanges`
1217
+ # @return [Array<String>]
1218
+ attr_accessor :include_export_ranges
1219
+
1172
1220
  # Immutable. The URI of the Service Consumer VPC that the Producer VPC is peered
1173
1221
  # with.
1174
1222
  # Corresponds to the JSON property `network`
@@ -1199,6 +1247,7 @@ module Google
1199
1247
  # Update properties of this object
1200
1248
  def update!(**args)
1201
1249
  @exclude_export_ranges = args[:exclude_export_ranges] if args.key?(:exclude_export_ranges)
1250
+ @include_export_ranges = args[:include_export_ranges] if args.key?(:include_export_ranges)
1202
1251
  @network = args[:network] if args.key?(:network)
1203
1252
  @peering = args[:peering] if args.key?(:peering)
1204
1253
  @producer_network = args[:producer_network] if args.key?(:producer_network)
@@ -2402,6 +2451,11 @@ module Google
2402
2451
  # @return [String]
2403
2452
  attr_accessor :gce_operation
2404
2453
 
2454
+ # The requested IP version for the PSC connection.
2455
+ # Corresponds to the JSON property `ipVersion`
2456
+ # @return [String]
2457
+ attr_accessor :ip_version
2458
+
2405
2459
  # Immutable. Deprecated. Use producer_instance_metadata instead. An immutable
2406
2460
  # identifier for the producer instance.
2407
2461
  # Corresponds to the JSON property `producerInstanceId`
@@ -2449,6 +2503,7 @@ module Google
2449
2503
  @error_info = args[:error_info] if args.key?(:error_info)
2450
2504
  @error_type = args[:error_type] if args.key?(:error_type)
2451
2505
  @gce_operation = args[:gce_operation] if args.key?(:gce_operation)
2506
+ @ip_version = args[:ip_version] if args.key?(:ip_version)
2452
2507
  @producer_instance_id = args[:producer_instance_id] if args.key?(:producer_instance_id)
2453
2508
  @producer_instance_metadata = args[:producer_instance_metadata] if args.key?(:producer_instance_metadata)
2454
2509
  @psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
@@ -2458,6 +2513,88 @@ module Google
2458
2513
  end
2459
2514
  end
2460
2515
 
2516
+ # The PSC propagation status in a hub.
2517
+ class PscPropagationStatus
2518
+ include Google::Apis::Core::Hashable
2519
+
2520
+ # The propagation status.
2521
+ # Corresponds to the JSON property `code`
2522
+ # @return [String]
2523
+ attr_accessor :code
2524
+
2525
+ # The human-readable summary of the PSC connection propagation status.
2526
+ # Corresponds to the JSON property `message`
2527
+ # @return [String]
2528
+ attr_accessor :message
2529
+
2530
+ # The name of the forwarding rule exported to the hub.
2531
+ # Corresponds to the JSON property `sourceForwardingRule`
2532
+ # @return [String]
2533
+ attr_accessor :source_forwarding_rule
2534
+
2535
+ # The name of the group that the source spoke belongs to.
2536
+ # Corresponds to the JSON property `sourceGroup`
2537
+ # @return [String]
2538
+ attr_accessor :source_group
2539
+
2540
+ # The name of the spoke that the source forwarding rule belongs to.
2541
+ # Corresponds to the JSON property `sourceSpoke`
2542
+ # @return [String]
2543
+ attr_accessor :source_spoke
2544
+
2545
+ # The name of the group that the target spoke belongs to.
2546
+ # Corresponds to the JSON property `targetGroup`
2547
+ # @return [String]
2548
+ attr_accessor :target_group
2549
+
2550
+ # The name of the spoke that the source forwarding rule propagates to.
2551
+ # Corresponds to the JSON property `targetSpoke`
2552
+ # @return [String]
2553
+ attr_accessor :target_spoke
2554
+
2555
+ def initialize(**args)
2556
+ update!(**args)
2557
+ end
2558
+
2559
+ # Update properties of this object
2560
+ def update!(**args)
2561
+ @code = args[:code] if args.key?(:code)
2562
+ @message = args[:message] if args.key?(:message)
2563
+ @source_forwarding_rule = args[:source_forwarding_rule] if args.key?(:source_forwarding_rule)
2564
+ @source_group = args[:source_group] if args.key?(:source_group)
2565
+ @source_spoke = args[:source_spoke] if args.key?(:source_spoke)
2566
+ @target_group = args[:target_group] if args.key?(:target_group)
2567
+ @target_spoke = args[:target_spoke] if args.key?(:target_spoke)
2568
+ end
2569
+ end
2570
+
2571
+ # The response for HubService.QueryHubStatus.
2572
+ class QueryHubStatusResponse
2573
+ include Google::Apis::Core::Hashable
2574
+
2575
+ # The list of hub status.
2576
+ # Corresponds to the JSON property `hubStatusEntries`
2577
+ # @return [Array<Google::Apis::NetworkconnectivityV1::HubStatusEntry>]
2578
+ attr_accessor :hub_status_entries
2579
+
2580
+ # The token for the next page of the response. To see more results, use this
2581
+ # value as the page_token for your next request. If this value is empty, there
2582
+ # are no more results.
2583
+ # Corresponds to the JSON property `nextPageToken`
2584
+ # @return [String]
2585
+ attr_accessor :next_page_token
2586
+
2587
+ def initialize(**args)
2588
+ update!(**args)
2589
+ end
2590
+
2591
+ # Update properties of this object
2592
+ def update!(**args)
2593
+ @hub_status_entries = args[:hub_status_entries] if args.key?(:hub_status_entries)
2594
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2595
+ end
2596
+ end
2597
+
2461
2598
  # The RegionalEndpoint resource.
2462
2599
  class RegionalEndpoint
2463
2600
  include Google::Apis::Core::Hashable
@@ -2863,7 +3000,7 @@ module Google
2863
3000
  end
2864
3001
  end
2865
3002
 
2866
- # The ServiceClass resource. Next id: 9
3003
+ # The ServiceClass resource.
2867
3004
  class ServiceClass
2868
3005
  include Google::Apis::Core::Hashable
2869
3006
 
@@ -2922,7 +3059,7 @@ module Google
2922
3059
  end
2923
3060
  end
2924
3061
 
2925
- # The ServiceConnectionMap resource. Next id: 15
3062
+ # The ServiceConnectionMap resource.
2926
3063
  class ServiceConnectionMap
2927
3064
  include Google::Apis::Core::Hashable
2928
3065
 
@@ -3020,7 +3157,7 @@ module Google
3020
3157
  end
3021
3158
  end
3022
3159
 
3023
- # The ServiceConnectionPolicy resource. Next id: 12
3160
+ # The ServiceConnectionPolicy resource.
3024
3161
  class ServiceConnectionPolicy
3025
3162
  include Google::Apis::Core::Hashable
3026
3163
 
@@ -3109,7 +3246,7 @@ module Google
3109
3246
  end
3110
3247
  end
3111
3248
 
3112
- # The ServiceConnectionToken resource. Next id: 10
3249
+ # The ServiceConnectionToken resource.
3113
3250
  class ServiceConnectionToken
3114
3251
  include Google::Apis::Core::Hashable
3115
3252
 
@@ -3276,7 +3413,7 @@ module Google
3276
3413
  # @return [Google::Apis::NetworkconnectivityV1::LinkedInterconnectAttachments]
3277
3414
  attr_accessor :linked_interconnect_attachments
3278
3415
 
3279
- # Next ID: 7
3416
+ # Optional. The linked producer VPC that is associated with the spoke.
3280
3417
  # Corresponds to the JSON property `linkedProducerVpcNetwork`
3281
3418
  # @return [Google::Apis::NetworkconnectivityV1::LinkedProducerVpcNetwork]
3282
3419
  attr_accessor :linked_producer_vpc_network
@@ -3309,8 +3446,7 @@ module Google
3309
3446
  # @return [String]
3310
3447
  attr_accessor :name
3311
3448
 
3312
- # Output only. The reasons for current state of the spoke. Only present when the
3313
- # spoke is in the `INACTIVE` state.
3449
+ # Output only. The reasons for current state of the spoke.
3314
3450
  # Corresponds to the JSON property `reasons`
3315
3451
  # @return [Array<Google::Apis::NetworkconnectivityV1::StateReason>]
3316
3452
  attr_accessor :reasons
@@ -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.48.0"
19
+ GEM_VERSION = "0.50.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240923"
25
+ REVISION = "20241030"
26
26
  end
27
27
  end
28
28
  end
@@ -130,6 +130,12 @@ module Google
130
130
  include Google::Apis::Core::JsonObjectSupport
131
131
  end
132
132
 
133
+ class HubStatusEntry
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
133
139
  class InterconnectAttachment
134
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
141
 
@@ -334,6 +340,18 @@ module Google
334
340
  include Google::Apis::Core::JsonObjectSupport
335
341
  end
336
342
 
343
+ class PscPropagationStatus
344
+ class Representation < Google::Apis::Core::JsonRepresentation; end
345
+
346
+ include Google::Apis::Core::JsonObjectSupport
347
+ end
348
+
349
+ class QueryHubStatusResponse
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
337
355
  class RegionalEndpoint
338
356
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
357
 
@@ -521,6 +539,7 @@ module Google
521
539
  class Representation < Google::Apis::Core::JsonRepresentation
522
540
  property :consumer_instance_project, as: 'consumerInstanceProject'
523
541
  property :disable_global_access, as: 'disableGlobalAccess'
542
+ property :ip_version, as: 'ipVersion'
524
543
  property :network, as: 'network'
525
544
  property :producer_instance_id, as: 'producerInstanceId'
526
545
  hash :producer_instance_metadata, as: 'producerInstanceMetadata'
@@ -541,6 +560,7 @@ module Google
541
560
  property :forwarding_rule, as: 'forwardingRule'
542
561
  property :gce_operation, as: 'gceOperation'
543
562
  property :ip, as: 'ip'
563
+ property :ip_version, as: 'ipVersion'
544
564
  property :network, as: 'network'
545
565
  property :producer_instance_id, as: 'producerInstanceId'
546
566
  hash :producer_instance_metadata, as: 'producerInstanceMetadata'
@@ -660,6 +680,16 @@ module Google
660
680
  end
661
681
  end
662
682
 
683
+ class HubStatusEntry
684
+ # @private
685
+ class Representation < Google::Apis::Core::JsonRepresentation
686
+ property :count, as: 'count'
687
+ property :group_by, as: 'groupBy'
688
+ property :psc_propagation_status, as: 'pscPropagationStatus', class: Google::Apis::NetworkconnectivityV1::PscPropagationStatus, decorator: Google::Apis::NetworkconnectivityV1::PscPropagationStatus::Representation
689
+
690
+ end
691
+ end
692
+
663
693
  class InterconnectAttachment
664
694
  # @private
665
695
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -702,6 +732,7 @@ module Google
702
732
  # @private
703
733
  class Representation < Google::Apis::Core::JsonRepresentation
704
734
  collection :exclude_export_ranges, as: 'excludeExportRanges'
735
+ collection :include_export_ranges, as: 'includeExportRanges'
705
736
  property :network, as: 'network'
706
737
  property :peering, as: 'peering'
707
738
  property :producer_network, as: 'producerNetwork'
@@ -1018,6 +1049,7 @@ module Google
1018
1049
 
1019
1050
  property :error_type, as: 'errorType'
1020
1051
  property :gce_operation, as: 'gceOperation'
1052
+ property :ip_version, as: 'ipVersion'
1021
1053
  property :producer_instance_id, as: 'producerInstanceId'
1022
1054
  hash :producer_instance_metadata, as: 'producerInstanceMetadata'
1023
1055
  property :psc_connection_id, as: 'pscConnectionId'
@@ -1027,6 +1059,28 @@ module Google
1027
1059
  end
1028
1060
  end
1029
1061
 
1062
+ class PscPropagationStatus
1063
+ # @private
1064
+ class Representation < Google::Apis::Core::JsonRepresentation
1065
+ property :code, as: 'code'
1066
+ property :message, as: 'message'
1067
+ property :source_forwarding_rule, as: 'sourceForwardingRule'
1068
+ property :source_group, as: 'sourceGroup'
1069
+ property :source_spoke, as: 'sourceSpoke'
1070
+ property :target_group, as: 'targetGroup'
1071
+ property :target_spoke, as: 'targetSpoke'
1072
+ end
1073
+ end
1074
+
1075
+ class QueryHubStatusResponse
1076
+ # @private
1077
+ class Representation < Google::Apis::Core::JsonRepresentation
1078
+ collection :hub_status_entries, as: 'hubStatusEntries', class: Google::Apis::NetworkconnectivityV1::HubStatusEntry, decorator: Google::Apis::NetworkconnectivityV1::HubStatusEntry::Representation
1079
+
1080
+ property :next_page_token, as: 'nextPageToken'
1081
+ end
1082
+ end
1083
+
1030
1084
  class RegionalEndpoint
1031
1085
  # @private
1032
1086
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -476,6 +476,66 @@ module Google
476
476
  execute_or_queue_command(command, &block)
477
477
  end
478
478
 
479
+ # Query PSC propagation status the status of a Network Connectivity Center hub.
480
+ # @param [String] name
481
+ # Required. The name of the hub.
482
+ # @param [String] filter
483
+ # Optional. An expression that filters the list of results. The filter can be
484
+ # used to filter the results by the following fields: * psc_propagation_status.
485
+ # source_spoke * psc_propagation_status.source_group * psc_propagation_status.
486
+ # source_forwarding_rule * psc_propagation_status.target_spoke *
487
+ # psc_propagation_status.target_group * psc_propagation_status.code *
488
+ # psc_propagation_status.message
489
+ # @param [String] group_by
490
+ # Optional. A field that counts are grouped by. A comma-separated list of any of
491
+ # these fields: * psc_propagation_status.source_spoke * psc_propagation_status.
492
+ # source_group * psc_propagation_status.source_forwarding_rule *
493
+ # psc_propagation_status.target_spoke * psc_propagation_status.target_group *
494
+ # psc_propagation_status.code
495
+ # @param [String] order_by
496
+ # Optional. Sort the results in the ascending order by specific fields returned
497
+ # in the response. A comma-separated list of any of these fields: *
498
+ # psc_propagation_status.source_spoke * psc_propagation_status.source_group *
499
+ # psc_propagation_status.source_forwarding_rule * psc_propagation_status.
500
+ # target_spoke * psc_propagation_status.target_group * psc_propagation_status.
501
+ # code If `group_by` is set, the value of the `order_by` field must be the same
502
+ # as or a subset of the `group_by` field.
503
+ # @param [Fixnum] page_size
504
+ # Optional. The maximum number of results to return per page.
505
+ # @param [String] page_token
506
+ # Optional. The page token.
507
+ # @param [String] fields
508
+ # Selector specifying which fields to include in a partial response.
509
+ # @param [String] quota_user
510
+ # Available to use for quota purposes for server-side applications. Can be any
511
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
512
+ # @param [Google::Apis::RequestOptions] options
513
+ # Request-specific options
514
+ #
515
+ # @yield [result, err] Result & error if block supplied
516
+ # @yieldparam result [Google::Apis::NetworkconnectivityV1::QueryHubStatusResponse] parsed result object
517
+ # @yieldparam err [StandardError] error object if request failed
518
+ #
519
+ # @return [Google::Apis::NetworkconnectivityV1::QueryHubStatusResponse]
520
+ #
521
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
522
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
523
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
524
+ def query_project_location_global_hub_status(name, filter: nil, group_by: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
525
+ command = make_simple_command(:get, 'v1/{+name}:queryStatus', options)
526
+ command.response_representation = Google::Apis::NetworkconnectivityV1::QueryHubStatusResponse::Representation
527
+ command.response_class = Google::Apis::NetworkconnectivityV1::QueryHubStatusResponse
528
+ command.params['name'] = name unless name.nil?
529
+ command.query['filter'] = filter unless filter.nil?
530
+ command.query['groupBy'] = group_by unless group_by.nil?
531
+ command.query['orderBy'] = order_by unless order_by.nil?
532
+ command.query['pageSize'] = page_size unless page_size.nil?
533
+ command.query['pageToken'] = page_token unless page_token.nil?
534
+ command.query['fields'] = fields unless fields.nil?
535
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
536
+ execute_or_queue_command(command, &block)
537
+ end
538
+
479
539
  # Rejects a Network Connectivity Center spoke from being attached to a hub. If
480
540
  # the spoke was previously in the `ACTIVE` state, it transitions to the `
481
541
  # INACTIVE` state and is no longer able to connect to other spokes that are
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkconnectivity_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.48.0
4
+ version: 0.50.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-29 00:00:00.000000000 Z
11
+ date: 2024-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkconnectivity_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkconnectivity_v1/v0.48.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkconnectivity_v1/v0.50.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkconnectivity_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Network Connectivity API V1