google-apis-compute_v1 0.110.0 → 0.111.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 820eb75413988fdd7d14fc5f4b4b3ee7897886ec91438e573c10455c63e59cf1
|
4
|
+
data.tar.gz: 420a4370a9121826bc7fca87d7a4b622f5cd4d0d38e7709e81305a85ffc0e1e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f035689d462d9ccd8856a47c5b0969dd5a2692a6012b9ddaa9d09c03341359fa9312712a18a2afb126e780616e3effc8febb1aff3b702caa6f92788d98c81c9e
|
7
|
+
data.tar.gz: e9c457bb49f930a6f951e3e5b0986a554259262293f7914a119a53c784ed5e419c2e914441d475cb201def68dcf880d36f616221b8101f0905b0a5e8c3e4dd28
|
data/CHANGELOG.md
CHANGED
@@ -2991,7 +2991,8 @@ module Google
|
|
2991
2991
|
# CACHE_ALL_STATIC Automatically cache static content, including common image
|
2992
2992
|
# formats, media (video and audio), and web assets (JavaScript and CSS).
|
2993
2993
|
# Requests and responses that are marked as uncacheable, as well as dynamic
|
2994
|
-
# content (including HTML), will not be cached.
|
2994
|
+
# content (including HTML), will not be cached. If no value is provided for
|
2995
|
+
# cdnPolicy.cacheMode, it defaults to CACHE_ALL_STATIC.
|
2995
2996
|
# Corresponds to the JSON property `cacheMode`
|
2996
2997
|
# @return [String]
|
2997
2998
|
attr_accessor :cache_mode
|
@@ -3903,7 +3904,8 @@ module Google
|
|
3903
3904
|
# CACHE_ALL_STATIC Automatically cache static content, including common image
|
3904
3905
|
# formats, media (video and audio), and web assets (JavaScript and CSS).
|
3905
3906
|
# Requests and responses that are marked as uncacheable, as well as dynamic
|
3906
|
-
# content (including HTML), will not be cached.
|
3907
|
+
# content (including HTML), will not be cached. If no value is provided for
|
3908
|
+
# cdnPolicy.cacheMode, it defaults to CACHE_ALL_STATIC.
|
3907
3909
|
# Corresponds to the JSON property `cacheMode`
|
3908
3910
|
# @return [String]
|
3909
3911
|
attr_accessor :cache_mode
|
@@ -25602,6 +25604,27 @@ module Google
|
|
25602
25604
|
class NetworkRoutingConfig
|
25603
25605
|
include Google::Apis::Core::Hashable
|
25604
25606
|
|
25607
|
+
# Enable comparison of Multi-Exit Discriminators (MED) across routes with
|
25608
|
+
# different neighbor ASNs when using the STANDARD BGP best path selection
|
25609
|
+
# algorithm.
|
25610
|
+
# Corresponds to the JSON property `bgpAlwaysCompareMed`
|
25611
|
+
# @return [Boolean]
|
25612
|
+
attr_accessor :bgp_always_compare_med
|
25613
|
+
alias_method :bgp_always_compare_med?, :bgp_always_compare_med
|
25614
|
+
|
25615
|
+
# The BGP best path selection algorithm to be employed within this network for
|
25616
|
+
# dynamic routes learned by Cloud Routers. Can be LEGACY (default) or STANDARD.
|
25617
|
+
# Corresponds to the JSON property `bgpBestPathSelectionMode`
|
25618
|
+
# @return [String]
|
25619
|
+
attr_accessor :bgp_best_path_selection_mode
|
25620
|
+
|
25621
|
+
# Allows to define a preferred approach for handling inter-region cost in the
|
25622
|
+
# selection process when using the STANDARD BGP best path selection algorithm.
|
25623
|
+
# Can be DEFAULT or ADD_COST_TO_MED.
|
25624
|
+
# Corresponds to the JSON property `bgpInterRegionCost`
|
25625
|
+
# @return [String]
|
25626
|
+
attr_accessor :bgp_inter_region_cost
|
25627
|
+
|
25605
25628
|
# The network-wide routing mode to use. If set to REGIONAL, this network's Cloud
|
25606
25629
|
# Routers will only advertise routes with subnets of this network in the same
|
25607
25630
|
# region as the router. If set to GLOBAL, this network's Cloud Routers will
|
@@ -25616,6 +25639,9 @@ module Google
|
|
25616
25639
|
|
25617
25640
|
# Update properties of this object
|
25618
25641
|
def update!(**args)
|
25642
|
+
@bgp_always_compare_med = args[:bgp_always_compare_med] if args.key?(:bgp_always_compare_med)
|
25643
|
+
@bgp_best_path_selection_mode = args[:bgp_best_path_selection_mode] if args.key?(:bgp_best_path_selection_mode)
|
25644
|
+
@bgp_inter_region_cost = args[:bgp_inter_region_cost] if args.key?(:bgp_inter_region_cost)
|
25619
25645
|
@routing_mode = args[:routing_mode] if args.key?(:routing_mode)
|
25620
25646
|
end
|
25621
25647
|
end
|
@@ -34280,6 +34306,13 @@ module Google
|
|
34280
34306
|
# @return [String]
|
34281
34307
|
attr_accessor :next_hop_instance
|
34282
34308
|
|
34309
|
+
# [Output only] Internal fixed region-to-region cost that Google Cloud
|
34310
|
+
# calculates based on factors such as network performance, distance, and
|
34311
|
+
# available bandwidth between regions.
|
34312
|
+
# Corresponds to the JSON property `nextHopInterRegionCost`
|
34313
|
+
# @return [Fixnum]
|
34314
|
+
attr_accessor :next_hop_inter_region_cost
|
34315
|
+
|
34283
34316
|
# The network IP address of an instance that should handle matching packets.
|
34284
34317
|
# Both IPv6 address and IPv4 addresses are supported. Must specify an IPv4
|
34285
34318
|
# address in dot-decimal notation (e.g. 192.0.2.99) or an IPv6 address in RFC
|
@@ -34290,11 +34323,23 @@ module Google
|
|
34290
34323
|
# @return [String]
|
34291
34324
|
attr_accessor :next_hop_ip
|
34292
34325
|
|
34326
|
+
# [Output Only] Multi-Exit Discriminator, a BGP route metric that indicates the
|
34327
|
+
# desirability of a particular route in a network.
|
34328
|
+
# Corresponds to the JSON property `nextHopMed`
|
34329
|
+
# @return [Fixnum]
|
34330
|
+
attr_accessor :next_hop_med
|
34331
|
+
|
34293
34332
|
# The URL of the local network if it should handle matching packets.
|
34294
34333
|
# Corresponds to the JSON property `nextHopNetwork`
|
34295
34334
|
# @return [String]
|
34296
34335
|
attr_accessor :next_hop_network
|
34297
34336
|
|
34337
|
+
# [Output Only] Indicates the origin of the route. Can be IGP (Interior Gateway
|
34338
|
+
# Protocol), EGP (Exterior Gateway Protocol), or INCOMPLETE.
|
34339
|
+
# Corresponds to the JSON property `nextHopOrigin`
|
34340
|
+
# @return [String]
|
34341
|
+
attr_accessor :next_hop_origin
|
34342
|
+
|
34298
34343
|
# [Output Only] The network peering name that should handle matching packets,
|
34299
34344
|
# which should conform to RFC1035.
|
34300
34345
|
# Corresponds to the JSON property `nextHopPeering`
|
@@ -34363,8 +34408,11 @@ module Google
|
|
34363
34408
|
@next_hop_hub = args[:next_hop_hub] if args.key?(:next_hop_hub)
|
34364
34409
|
@next_hop_ilb = args[:next_hop_ilb] if args.key?(:next_hop_ilb)
|
34365
34410
|
@next_hop_instance = args[:next_hop_instance] if args.key?(:next_hop_instance)
|
34411
|
+
@next_hop_inter_region_cost = args[:next_hop_inter_region_cost] if args.key?(:next_hop_inter_region_cost)
|
34366
34412
|
@next_hop_ip = args[:next_hop_ip] if args.key?(:next_hop_ip)
|
34413
|
+
@next_hop_med = args[:next_hop_med] if args.key?(:next_hop_med)
|
34367
34414
|
@next_hop_network = args[:next_hop_network] if args.key?(:next_hop_network)
|
34415
|
+
@next_hop_origin = args[:next_hop_origin] if args.key?(:next_hop_origin)
|
34368
34416
|
@next_hop_peering = args[:next_hop_peering] if args.key?(:next_hop_peering)
|
34369
34417
|
@next_hop_vpn_tunnel = args[:next_hop_vpn_tunnel] if args.key?(:next_hop_vpn_tunnel)
|
34370
34418
|
@priority = args[:priority] if args.key?(:priority)
|
@@ -42470,7 +42518,7 @@ module Google
|
|
42470
42518
|
attr_accessor :private_ipv6_google_access
|
42471
42519
|
|
42472
42520
|
# The purpose of the resource. This field can be either PRIVATE,
|
42473
|
-
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PRIVATE_SERVICE_CONNECT
|
42521
|
+
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, or PRIVATE_SERVICE_CONNECT.
|
42474
42522
|
# PRIVATE is the default purpose for user-created subnets or subnets that are
|
42475
42523
|
# automatically created in auto mode networks. Subnets with purpose set to
|
42476
42524
|
# GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY are user-created subnetworks
|
@@ -47609,7 +47657,7 @@ module Google
|
|
47609
47657
|
attr_accessor :network
|
47610
47658
|
|
47611
47659
|
# The purpose of the resource. This field can be either PRIVATE,
|
47612
|
-
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PRIVATE_SERVICE_CONNECT
|
47660
|
+
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, or PRIVATE_SERVICE_CONNECT.
|
47613
47661
|
# PRIVATE is the default purpose for user-created subnets or subnets that are
|
47614
47662
|
# automatically created in auto mode networks. Subnets with purpose set to
|
47615
47663
|
# GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY are user-created subnetworks
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeV1
|
18
18
|
# Version of the google-apis-compute_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.111.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 = "
|
25
|
+
REVISION = "20241021"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -12592,6 +12592,9 @@ module Google
|
|
12592
12592
|
class NetworkRoutingConfig
|
12593
12593
|
# @private
|
12594
12594
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12595
|
+
property :bgp_always_compare_med, as: 'bgpAlwaysCompareMed'
|
12596
|
+
property :bgp_best_path_selection_mode, as: 'bgpBestPathSelectionMode'
|
12597
|
+
property :bgp_inter_region_cost, as: 'bgpInterRegionCost'
|
12595
12598
|
property :routing_mode, as: 'routingMode'
|
12596
12599
|
end
|
12597
12600
|
end
|
@@ -14877,8 +14880,11 @@ module Google
|
|
14877
14880
|
property :next_hop_hub, as: 'nextHopHub'
|
14878
14881
|
property :next_hop_ilb, as: 'nextHopIlb'
|
14879
14882
|
property :next_hop_instance, as: 'nextHopInstance'
|
14883
|
+
property :next_hop_inter_region_cost, as: 'nextHopInterRegionCost'
|
14880
14884
|
property :next_hop_ip, as: 'nextHopIp'
|
14885
|
+
property :next_hop_med, as: 'nextHopMed'
|
14881
14886
|
property :next_hop_network, as: 'nextHopNetwork'
|
14887
|
+
property :next_hop_origin, as: 'nextHopOrigin'
|
14882
14888
|
property :next_hop_peering, as: 'nextHopPeering'
|
14883
14889
|
property :next_hop_vpn_tunnel, as: 'nextHopVpnTunnel'
|
14884
14890
|
property :priority, as: 'priority'
|
@@ -12903,7 +12903,9 @@ module Google
|
|
12903
12903
|
# and the adjusted start position is returned as the `start` property value. You
|
12904
12904
|
# can also provide a negative start position, which translates to the most
|
12905
12905
|
# recent number of bytes written to the serial port. For example, -3 is
|
12906
|
-
# interpreted as the most recent 3 bytes written to the serial console.
|
12906
|
+
# interpreted as the most recent 3 bytes written to the serial console. Note
|
12907
|
+
# that the negative start is bounded by the retained buffer size, and the
|
12908
|
+
# returned serial console output will not exceed the max buffer size.
|
12907
12909
|
# @param [String] fields
|
12908
12910
|
# Selector specifying which fields to include in a partial response.
|
12909
12911
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.111.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-
|
11
|
+
date: 2024-11-03 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.111.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|