google-apis-compute_beta 0.85.0 → 0.86.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: 3526ce61f3804860927272ada6784f920de7971d09372842dccf2bdf29466393
4
- data.tar.gz: b7fccbcd49ba87ceebb0a7f2f3cb3b2a35ebd51fa871e09adba3ec82a551738a
3
+ metadata.gz: 5e2af94fcea9e2848bcc164dba3428cb7c1f3fde12ff7f7b0e1d1f2a5b0d4000
4
+ data.tar.gz: bdb583ab1251761e63c2f04fbdf99c0fe7507afe3c596a945dee33fef4e8a9d0
5
5
  SHA512:
6
- metadata.gz: ac15412fe9545ba388b642cd8846e186224a72084bf1f547dac7c427f1585ccea0e3558caace2674889d4ceb4de07b64c35b6597a836ee6ea81502ad68fa4532
7
- data.tar.gz: 75e68815430cf700d416441c0732e587d27e8abe76e17ea5bf115269a8d06d83e61abe4d643da87e4368f45c3c40d89b8ddc7d67ff508690615c5f08144191d3
6
+ metadata.gz: 8ccd02a334a854a04c63964a87da8bce9f28fb7d54ba13b65639e9f0394e0d0fe415a2211332c25795924e703c03e231ec4eec552ef6e68f6426527bc2ed9e48
7
+ data.tar.gz: bb576db296e50915ef2b72db8ea40d453b05b01000a3be2fbef9ac283eedf4dd8707a96672c4d0f7683dba2cfcc5c0ac21517b752f6e956b3d1196653b85a45b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_beta
2
2
 
3
+ ### v0.86.0 (2023-11-19)
4
+
5
+ * Regenerated from discovery document revision 20231110
6
+
3
7
  ### v0.85.0 (2023-11-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20231031
@@ -36367,6 +36367,14 @@ module Google
36367
36367
  # @return [Fixnum]
36368
36368
  attr_accessor :asn
36369
36369
 
36370
+ # Explicitly specifies a range of valid BGP Identifiers for this Router. It is
36371
+ # provided as a link-local IPv4 range (from 169.254.0.0/16), of size at least /
36372
+ # 30, even if the BGP sessions are over IPv6. It must not overlap with any IPv4
36373
+ # BGP session ranges. Other vendors commonly call this "router ID".
36374
+ # Corresponds to the JSON property `identifierRange`
36375
+ # @return [String]
36376
+ attr_accessor :identifier_range
36377
+
36370
36378
  # The interval in seconds between BGP keepalive messages that are sent to the
36371
36379
  # peer. Hold time is three times the interval at which keepalive messages are
36372
36380
  # sent, and the hold time is the maximum number of seconds allowed to elapse
@@ -36388,6 +36396,7 @@ module Google
36388
36396
  @advertised_groups = args[:advertised_groups] if args.key?(:advertised_groups)
36389
36397
  @advertised_ip_ranges = args[:advertised_ip_ranges] if args.key?(:advertised_ip_ranges)
36390
36398
  @asn = args[:asn] if args.key?(:asn)
36399
+ @identifier_range = args[:identifier_range] if args.key?(:identifier_range)
36391
36400
  @keepalive_interval = args[:keepalive_interval] if args.key?(:keepalive_interval)
36392
36401
  end
36393
36402
  end
@@ -36455,6 +36464,13 @@ module Google
36455
36464
  # @return [String]
36456
36465
  attr_accessor :enable
36457
36466
 
36467
+ # Enable IPv4 traffic over BGP Peer. It is enabled by default if the
36468
+ # peerIpAddress is version 4.
36469
+ # Corresponds to the JSON property `enableIpv4`
36470
+ # @return [Boolean]
36471
+ attr_accessor :enable_ipv4
36472
+ alias_method :enable_ipv4?, :enable_ipv4
36473
+
36458
36474
  # Enable IPv6 traffic over BGP Peer. If not specified, it is disabled by default.
36459
36475
  # Corresponds to the JSON property `enableIpv6`
36460
36476
  # @return [Boolean]
@@ -36472,6 +36488,11 @@ module Google
36472
36488
  # @return [String]
36473
36489
  attr_accessor :ip_address
36474
36490
 
36491
+ # IPv4 address of the interface inside Google Cloud Platform.
36492
+ # Corresponds to the JSON property `ipv4NexthopAddress`
36493
+ # @return [String]
36494
+ attr_accessor :ipv4_nexthop_address
36495
+
36475
36496
  # IPv6 address of the interface inside Google Cloud Platform.
36476
36497
  # Corresponds to the JSON property `ipv6NexthopAddress`
36477
36498
  # @return [String]
@@ -36516,6 +36537,11 @@ module Google
36516
36537
  # @return [String]
36517
36538
  attr_accessor :peer_ip_address
36518
36539
 
36540
+ # IPv4 address of the BGP interface outside Google Cloud Platform.
36541
+ # Corresponds to the JSON property `peerIpv4NexthopAddress`
36542
+ # @return [String]
36543
+ attr_accessor :peer_ipv4_nexthop_address
36544
+
36519
36545
  # IPv6 address of the BGP interface outside Google Cloud Platform.
36520
36546
  # Corresponds to the JSON property `peerIpv6NexthopAddress`
36521
36547
  # @return [String]
@@ -36543,15 +36569,18 @@ module Google
36543
36569
  @custom_learned_ip_ranges = args[:custom_learned_ip_ranges] if args.key?(:custom_learned_ip_ranges)
36544
36570
  @custom_learned_route_priority = args[:custom_learned_route_priority] if args.key?(:custom_learned_route_priority)
36545
36571
  @enable = args[:enable] if args.key?(:enable)
36572
+ @enable_ipv4 = args[:enable_ipv4] if args.key?(:enable_ipv4)
36546
36573
  @enable_ipv6 = args[:enable_ipv6] if args.key?(:enable_ipv6)
36547
36574
  @interface_name = args[:interface_name] if args.key?(:interface_name)
36548
36575
  @ip_address = args[:ip_address] if args.key?(:ip_address)
36576
+ @ipv4_nexthop_address = args[:ipv4_nexthop_address] if args.key?(:ipv4_nexthop_address)
36549
36577
  @ipv6_nexthop_address = args[:ipv6_nexthop_address] if args.key?(:ipv6_nexthop_address)
36550
36578
  @management_type = args[:management_type] if args.key?(:management_type)
36551
36579
  @md5_authentication_key_name = args[:md5_authentication_key_name] if args.key?(:md5_authentication_key_name)
36552
36580
  @name = args[:name] if args.key?(:name)
36553
36581
  @peer_asn = args[:peer_asn] if args.key?(:peer_asn)
36554
36582
  @peer_ip_address = args[:peer_ip_address] if args.key?(:peer_ip_address)
36583
+ @peer_ipv4_nexthop_address = args[:peer_ipv4_nexthop_address] if args.key?(:peer_ipv4_nexthop_address)
36555
36584
  @peer_ipv6_nexthop_address = args[:peer_ipv6_nexthop_address] if args.key?(:peer_ipv6_nexthop_address)
36556
36585
  @router_appliance_instance = args[:router_appliance_instance] if args.key?(:router_appliance_instance)
36557
36586
  end
@@ -36641,6 +36670,11 @@ module Google
36641
36670
  # @return [String]
36642
36671
  attr_accessor :ip_range
36643
36672
 
36673
+ # IP version of this interface.
36674
+ # Corresponds to the JSON property `ipVersion`
36675
+ # @return [String]
36676
+ attr_accessor :ip_version
36677
+
36644
36678
  # URI of the linked Interconnect attachment. It must be in the same region as
36645
36679
  # the router. Each interface can have one linked resource, which can be a VPN
36646
36680
  # tunnel, an Interconnect attachment, or a subnetwork.
@@ -36711,6 +36745,7 @@ module Google
36711
36745
  # Update properties of this object
36712
36746
  def update!(**args)
36713
36747
  @ip_range = args[:ip_range] if args.key?(:ip_range)
36748
+ @ip_version = args[:ip_version] if args.key?(:ip_version)
36714
36749
  @linked_interconnect_attachment = args[:linked_interconnect_attachment] if args.key?(:linked_interconnect_attachment)
36715
36750
  @linked_vpn_tunnel = args[:linked_vpn_tunnel] if args.key?(:linked_vpn_tunnel)
36716
36751
  @management_type = args[:management_type] if args.key?(:management_type)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComputeBeta
18
18
  # Version of the google-apis-compute_beta gem
19
- GEM_VERSION = "0.85.0"
19
+ GEM_VERSION = "0.86.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231031"
25
+ REVISION = "20231110"
26
26
  end
27
27
  end
28
28
  end
@@ -15591,6 +15591,7 @@ module Google
15591
15591
  collection :advertised_ip_ranges, as: 'advertisedIpRanges', class: Google::Apis::ComputeBeta::RouterAdvertisedIpRange, decorator: Google::Apis::ComputeBeta::RouterAdvertisedIpRange::Representation
15592
15592
 
15593
15593
  property :asn, as: 'asn'
15594
+ property :identifier_range, as: 'identifierRange'
15594
15595
  property :keepalive_interval, as: 'keepaliveInterval'
15595
15596
  end
15596
15597
  end
@@ -15609,15 +15610,18 @@ module Google
15609
15610
 
15610
15611
  property :custom_learned_route_priority, as: 'customLearnedRoutePriority'
15611
15612
  property :enable, as: 'enable'
15613
+ property :enable_ipv4, as: 'enableIpv4'
15612
15614
  property :enable_ipv6, as: 'enableIpv6'
15613
15615
  property :interface_name, as: 'interfaceName'
15614
15616
  property :ip_address, as: 'ipAddress'
15617
+ property :ipv4_nexthop_address, as: 'ipv4NexthopAddress'
15615
15618
  property :ipv6_nexthop_address, as: 'ipv6NexthopAddress'
15616
15619
  property :management_type, as: 'managementType'
15617
15620
  property :md5_authentication_key_name, as: 'md5AuthenticationKeyName'
15618
15621
  property :name, as: 'name'
15619
15622
  property :peer_asn, as: 'peerAsn'
15620
15623
  property :peer_ip_address, as: 'peerIpAddress'
15624
+ property :peer_ipv4_nexthop_address, as: 'peerIpv4NexthopAddress'
15621
15625
  property :peer_ipv6_nexthop_address, as: 'peerIpv6NexthopAddress'
15622
15626
  property :router_appliance_instance, as: 'routerApplianceInstance'
15623
15627
  end
@@ -15644,6 +15648,7 @@ module Google
15644
15648
  # @private
15645
15649
  class Representation < Google::Apis::Core::JsonRepresentation
15646
15650
  property :ip_range, as: 'ipRange'
15651
+ property :ip_version, as: 'ipVersion'
15647
15652
  property :linked_interconnect_attachment, as: 'linkedInterconnectAttachment'
15648
15653
  property :linked_vpn_tunnel, as: 'linkedVpnTunnel'
15649
15654
  property :management_type, as: 'managementType'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.85.0
4
+ version: 0.86.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: 2023-11-12 00:00:00.000000000 Z
11
+ date: 2023-11-19 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-compute_beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.85.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.86.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
63
63
  post_install_message:
64
64
  rdoc_options: []