google-apis-networkconnectivity_v1 0.20.0 → 0.21.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: efcde015b0d5c355e411c6ca61f5bf64c298b2f1cc1736f74e937be31dbdd257
4
- data.tar.gz: 7f6441408da7b620ed7035c5ca1f1834e5c0a29fd48a532fc0c22d17a668620b
3
+ metadata.gz: 60e399d0cd105c3c65ae6073c1d505d405e9f41850d81260baaf44637b5190d9
4
+ data.tar.gz: 8146f6f132b140ccfe32717ce77c4b7762ea4350835a75b3f633cb4684b246dc
5
5
  SHA512:
6
- metadata.gz: 9b315302f0fe40050d1ff01316e6c86e3293af7d0d660a9ee79f5504ebb8038ef2197c33fbd77556c78b5069474a9d5595f2e937632c32ddfdcf713fa9c32bb4
7
- data.tar.gz: d7f54e5a5a810bbcf8ea326475f732743435a8654e31c8fafaf68fb87a0072c8386508bbf819b8e6ae2156da6d6207a7cd90992469f2a704c68f1c88021eb32f
6
+ metadata.gz: b18bab06b5269f02ca9dd4b4328f916df2b51af4c766cf156005327c891e75ac6bdd72cabc088ec1f40889742c5c5109c55f30f3606a491c72b0b5893d1a5ed9
7
+ data.tar.gz: 635cca256b62b2f0d7f651fa8f48eb27aaa219b4240f69c13d0f81d66b0b1a6faaa401067d49ff123cc0ff141993e2c5177a3efee0bd438616e8b45b4d321717
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-networkconnectivity_v1
2
2
 
3
+ ### v0.21.0 (2023-01-15)
4
+
5
+ * Regenerated from discovery document revision 20230105
6
+ * Regenerated using generator version 0.11.1
7
+
3
8
  ### v0.20.0 (2022-12-07)
4
9
 
5
10
  * Regenerated from discovery document revision 20221201
@@ -451,14 +451,14 @@ module Google
451
451
  end
452
452
  end
453
453
 
454
- # The InternalRange resource for IPAM operations within a VPC network. Used to
454
+ # The internal range resource for IPAM operations within a VPC network. Used to
455
455
  # represent a private address range along with behavioral characterstics of that
456
- # range (it's usage and peering behavior). Networking resources can link to this
457
- # range if they are created as belonging to it. Next id: 14
456
+ # range (its usage and peering behavior). Networking resources can link to this
457
+ # range if they are created as belonging to it.
458
458
  class InternalRange
459
459
  include Google::Apis::Core::Hashable
460
460
 
461
- # Time when the InternalRange was created.
461
+ # Time when the internal range was created.
462
462
  # Corresponds to the JSON property `createTime`
463
463
  # @return [String]
464
464
  attr_accessor :create_time
@@ -468,7 +468,7 @@ module Google
468
468
  # @return [String]
469
469
  attr_accessor :description
470
470
 
471
- # IP range that this InternalRange defines.
471
+ # The IP range that this internal range defines.
472
472
  # Corresponds to the JSON property `ipCidrRange`
473
473
  # @return [String]
474
474
  attr_accessor :ip_cidr_range
@@ -478,16 +478,16 @@ module Google
478
478
  # @return [Hash<String,String>]
479
479
  attr_accessor :labels
480
480
 
481
- # Immutable. The name of a InternalRange. Format: projects/`project`/locations/`
482
- # location`/internalRanges/`internal_range` See: https://google.aip.dev/122#
481
+ # Immutable. The name of an internal range. Format: projects/`project`/locations/
482
+ # `location`/internalRanges/`internal_range` See: https://google.aip.dev/122#
483
483
  # fields-representing-resource-names
484
484
  # Corresponds to the JSON property `name`
485
485
  # @return [String]
486
486
  attr_accessor :name
487
487
 
488
- # The URL or resource ID of the network in which to reserve the Internal Range.
489
- # The network cannot be deleted if there are any reserved Internal Ranges
490
- # referring to it. Legacy network is not supported. This can only be specified
488
+ # The URL or resource ID of the network in which to reserve the internal range.
489
+ # The network cannot be deleted if there are any reserved internal ranges
490
+ # referring to it. Legacy networks are not supported. This can only be specified
491
491
  # for a global internal address. Example: - URL: /compute/v1/projects/`project`/
492
492
  # global/networks/`resourceId` - ID: network123
493
493
  # Corresponds to the JSON property `network`
@@ -495,20 +495,20 @@ module Google
495
495
  attr_accessor :network
496
496
 
497
497
  # Optional. Types of resources that are allowed to overlap with the current
498
- # InternalRange.
498
+ # internal range.
499
499
  # Corresponds to the JSON property `overlaps`
500
500
  # @return [Array<String>]
501
501
  attr_accessor :overlaps
502
502
 
503
- # The type of peering set for this InternalRange.
503
+ # The type of peering set for this internal range.
504
504
  # Corresponds to the JSON property `peering`
505
505
  # @return [String]
506
506
  attr_accessor :peering
507
507
 
508
508
  # An alternate to ip_cidr_range. Can be set when trying to create a reservation
509
509
  # that automatically finds a free range of the given size. If both ip_cidr_range
510
- # and prefix_length are set, it's an error if the range sizes don't match. Can
511
- # also be used during updates to change the range size.
510
+ # and prefix_length are set, there is an error if the range sizes do not match.
511
+ # Can also be used during updates to change the range size.
512
512
  # Corresponds to the JSON property `prefixLength`
513
513
  # @return [Fixnum]
514
514
  attr_accessor :prefix_length
@@ -521,7 +521,7 @@ module Google
521
521
  # @return [Array<String>]
522
522
  attr_accessor :target_cidr_range
523
523
 
524
- # Time when the InternalRange was updated.
524
+ # Time when the internal range was updated.
525
525
  # Corresponds to the JSON property `updateTime`
526
526
  # @return [String]
527
527
  attr_accessor :update_time
@@ -532,10 +532,11 @@ module Google
532
532
  attr_accessor :usage
533
533
 
534
534
  # Output only. The list of resources that refer to this internal range.
535
- # Resources that use the InternalRange for their range allocation are referred
535
+ # Resources that use the internal range for their range allocation are referred
536
536
  # to as users of the range. Other resources mark themselves as users while doing
537
- # so by creating a reference to this InternalRange. Having a user, based on this
538
- # reference, prevents deletion of the InternalRange referred to. Can be empty.
537
+ # so by creating a reference to this internal range. Having a user, based on
538
+ # this reference, prevents deletion of the internal range referred to. Can be
539
+ # empty.
539
540
  # Corresponds to the JSON property `users`
540
541
  # @return [Array<String>]
541
542
  attr_accessor :users
@@ -713,7 +714,7 @@ module Google
713
714
  class ListInternalRangesResponse
714
715
  include Google::Apis::Core::Hashable
715
716
 
716
- # InternalRanges to be returned.
717
+ # Internal ranges to be returned.
717
718
  # Corresponds to the JSON property `internalRanges`
718
719
  # @return [Array<Google::Apis::NetworkconnectivityV1::InternalRange>]
719
720
  attr_accessor :internal_ranges
@@ -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.20.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221201"
25
+ REVISION = "20230105"
26
26
  end
27
27
  end
28
28
  end
@@ -582,9 +582,9 @@ module Google
582
582
  execute_or_queue_command(command, &block)
583
583
  end
584
584
 
585
- # Creates a new InternalRange in a given project and location.
585
+ # Creates a new internal range in a given project and location.
586
586
  # @param [String] parent
587
- # Required. The parent resource's name of the InternalRange.
587
+ # Required. The parent resource's name of the internal range.
588
588
  # @param [Google::Apis::NetworkconnectivityV1::InternalRange] internal_range_object
589
589
  # @param [String] internal_range_id
590
590
  # Optional. Resource ID (i.e. 'foo' in '[...]/projects/p/locations/l/
@@ -632,9 +632,9 @@ module Google
632
632
  execute_or_queue_command(command, &block)
633
633
  end
634
634
 
635
- # Deletes a single InternalRange.
635
+ # Deletes a single internal range.
636
636
  # @param [String] name
637
- # Required. The name of the InternalRange to delete.
637
+ # Required. The name of the internal range to delete.
638
638
  # @param [String] request_id
639
639
  # Optional. An optional request ID to identify requests. Specify a unique
640
640
  # request ID so that if you must retry your request, the server will know to
@@ -674,7 +674,7 @@ module Google
674
674
  execute_or_queue_command(command, &block)
675
675
  end
676
676
 
677
- # Gets details of a single InternalRange.
677
+ # Gets details of a single internal range.
678
678
  # @param [String] name
679
679
  # Required. Name of the InternalRange to get.
680
680
  # @param [String] fields
@@ -704,7 +704,7 @@ module Google
704
704
  execute_or_queue_command(command, &block)
705
705
  end
706
706
 
707
- # Lists InternalRanges in a given project and location.
707
+ # Lists internal ranges in a given project and location.
708
708
  # @param [String] parent
709
709
  # Required. The parent resource's name.
710
710
  # @param [String] filter
@@ -746,10 +746,10 @@ module Google
746
746
  execute_or_queue_command(command, &block)
747
747
  end
748
748
 
749
- # Updates the parameters of a single InternalRange.
749
+ # Updates the parameters of a single internal range.
750
750
  # @param [String] name
751
- # Immutable. The name of a InternalRange. Format: projects/`project`/locations/`
752
- # location`/internalRanges/`internal_range` See: https://google.aip.dev/122#
751
+ # Immutable. The name of an internal range. Format: projects/`project`/locations/
752
+ # `location`/internalRanges/`internal_range` See: https://google.aip.dev/122#
753
753
  # fields-representing-resource-names
754
754
  # @param [Google::Apis::NetworkconnectivityV1::InternalRange] internal_range_object
755
755
  # @param [String] request_id
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.20.0
4
+ version: 0.21.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: 2022-12-12 00:00:00.000000000 Z
11
+ date: 2023-01-15 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.20.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkconnectivity_v1/v0.21.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.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Network Connectivity API V1