google-apis-compute_v1 0.111.0 → 0.112.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb21086effa23c3eaadbc8ddf63028907870118db4d4ee1e5991bb39f831ab61
|
|
4
|
+
data.tar.gz: 6a15af74fa129d88b1136a3d109e7899147d64fe8ab66a7e6b9ac21b8028747b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0b617c9fccc99043bc6a3f52735c53b56066e15a8712dca31806aa8820cbf4c5c96399dbc53214b2802014e14da4624776f3165a4c0f78749d496a1a03c9f362
|
|
7
|
+
data.tar.gz: 5354c7ed48242c2297bba4c1e467c952d22aad689b29c2f657e33fc1beff804cb61159d6f2321cedd706773f14b848385de7a09b9ef2d56007a0ac1b1790081b
|
data/CHANGELOG.md
CHANGED
|
@@ -2991,8 +2991,7 @@ 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.
|
|
2995
|
-
# cdnPolicy.cacheMode, it defaults to CACHE_ALL_STATIC.
|
|
2994
|
+
# content (including HTML), will not be cached.
|
|
2996
2995
|
# Corresponds to the JSON property `cacheMode`
|
|
2997
2996
|
# @return [String]
|
|
2998
2997
|
attr_accessor :cache_mode
|
|
@@ -3904,8 +3903,7 @@ module Google
|
|
|
3904
3903
|
# CACHE_ALL_STATIC Automatically cache static content, including common image
|
|
3905
3904
|
# formats, media (video and audio), and web assets (JavaScript and CSS).
|
|
3906
3905
|
# Requests and responses that are marked as uncacheable, as well as dynamic
|
|
3907
|
-
# content (including HTML), will not be cached.
|
|
3908
|
-
# cdnPolicy.cacheMode, it defaults to CACHE_ALL_STATIC.
|
|
3906
|
+
# content (including HTML), will not be cached.
|
|
3909
3907
|
# Corresponds to the JSON property `cacheMode`
|
|
3910
3908
|
# @return [String]
|
|
3911
3909
|
attr_accessor :cache_mode
|
|
@@ -25604,27 +25602,6 @@ module Google
|
|
|
25604
25602
|
class NetworkRoutingConfig
|
|
25605
25603
|
include Google::Apis::Core::Hashable
|
|
25606
25604
|
|
|
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
|
-
|
|
25628
25605
|
# The network-wide routing mode to use. If set to REGIONAL, this network's Cloud
|
|
25629
25606
|
# Routers will only advertise routes with subnets of this network in the same
|
|
25630
25607
|
# region as the router. If set to GLOBAL, this network's Cloud Routers will
|
|
@@ -25639,9 +25616,6 @@ module Google
|
|
|
25639
25616
|
|
|
25640
25617
|
# Update properties of this object
|
|
25641
25618
|
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)
|
|
25645
25619
|
@routing_mode = args[:routing_mode] if args.key?(:routing_mode)
|
|
25646
25620
|
end
|
|
25647
25621
|
end
|
|
@@ -34306,13 +34280,6 @@ module Google
|
|
|
34306
34280
|
# @return [String]
|
|
34307
34281
|
attr_accessor :next_hop_instance
|
|
34308
34282
|
|
|
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
|
-
|
|
34316
34283
|
# The network IP address of an instance that should handle matching packets.
|
|
34317
34284
|
# Both IPv6 address and IPv4 addresses are supported. Must specify an IPv4
|
|
34318
34285
|
# address in dot-decimal notation (e.g. 192.0.2.99) or an IPv6 address in RFC
|
|
@@ -34323,23 +34290,11 @@ module Google
|
|
|
34323
34290
|
# @return [String]
|
|
34324
34291
|
attr_accessor :next_hop_ip
|
|
34325
34292
|
|
|
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
|
-
|
|
34332
34293
|
# The URL of the local network if it should handle matching packets.
|
|
34333
34294
|
# Corresponds to the JSON property `nextHopNetwork`
|
|
34334
34295
|
# @return [String]
|
|
34335
34296
|
attr_accessor :next_hop_network
|
|
34336
34297
|
|
|
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
|
-
|
|
34343
34298
|
# [Output Only] The network peering name that should handle matching packets,
|
|
34344
34299
|
# which should conform to RFC1035.
|
|
34345
34300
|
# Corresponds to the JSON property `nextHopPeering`
|
|
@@ -34408,11 +34363,8 @@ module Google
|
|
|
34408
34363
|
@next_hop_hub = args[:next_hop_hub] if args.key?(:next_hop_hub)
|
|
34409
34364
|
@next_hop_ilb = args[:next_hop_ilb] if args.key?(:next_hop_ilb)
|
|
34410
34365
|
@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)
|
|
34412
34366
|
@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)
|
|
34414
34367
|
@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)
|
|
34416
34368
|
@next_hop_peering = args[:next_hop_peering] if args.key?(:next_hop_peering)
|
|
34417
34369
|
@next_hop_vpn_tunnel = args[:next_hop_vpn_tunnel] if args.key?(:next_hop_vpn_tunnel)
|
|
34418
34370
|
@priority = args[:priority] if args.key?(:priority)
|
|
@@ -42518,7 +42470,7 @@ module Google
|
|
|
42518
42470
|
attr_accessor :private_ipv6_google_access
|
|
42519
42471
|
|
|
42520
42472
|
# The purpose of the resource. This field can be either PRIVATE,
|
|
42521
|
-
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, or
|
|
42473
|
+
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PRIVATE_SERVICE_CONNECT, or
|
|
42522
42474
|
# PRIVATE is the default purpose for user-created subnets or subnets that are
|
|
42523
42475
|
# automatically created in auto mode networks. Subnets with purpose set to
|
|
42524
42476
|
# GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY are user-created subnetworks
|
|
@@ -47657,7 +47609,7 @@ module Google
|
|
|
47657
47609
|
attr_accessor :network
|
|
47658
47610
|
|
|
47659
47611
|
# The purpose of the resource. This field can be either PRIVATE,
|
|
47660
|
-
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, or
|
|
47612
|
+
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PRIVATE_SERVICE_CONNECT, or
|
|
47661
47613
|
# PRIVATE is the default purpose for user-created subnets or subnets that are
|
|
47662
47614
|
# automatically created in auto mode networks. Subnets with purpose set to
|
|
47663
47615
|
# 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.112.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 = "20241105"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -12592,9 +12592,6 @@ 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'
|
|
12598
12595
|
property :routing_mode, as: 'routingMode'
|
|
12599
12596
|
end
|
|
12600
12597
|
end
|
|
@@ -14880,11 +14877,8 @@ module Google
|
|
|
14880
14877
|
property :next_hop_hub, as: 'nextHopHub'
|
|
14881
14878
|
property :next_hop_ilb, as: 'nextHopIlb'
|
|
14882
14879
|
property :next_hop_instance, as: 'nextHopInstance'
|
|
14883
|
-
property :next_hop_inter_region_cost, as: 'nextHopInterRegionCost'
|
|
14884
14880
|
property :next_hop_ip, as: 'nextHopIp'
|
|
14885
|
-
property :next_hop_med, as: 'nextHopMed'
|
|
14886
14881
|
property :next_hop_network, as: 'nextHopNetwork'
|
|
14887
|
-
property :next_hop_origin, as: 'nextHopOrigin'
|
|
14888
14882
|
property :next_hop_peering, as: 'nextHopPeering'
|
|
14889
14883
|
property :next_hop_vpn_tunnel, as: 'nextHopVpnTunnel'
|
|
14890
14884
|
property :priority, as: 'priority'
|
|
@@ -12903,9 +12903,7 @@ 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.
|
|
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.
|
|
12906
|
+
# interpreted as the most recent 3 bytes written to the serial console.
|
|
12909
12907
|
# @param [String] fields
|
|
12910
12908
|
# Selector specifying which fields to include in a partial response.
|
|
12911
12909
|
# @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.112.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-12-04 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.112.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: []
|
|
@@ -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.
|
|
78
|
+
rubygems_version: 3.5.22
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Compute Engine API V1
|