google-apis-compute_v1 0.115.0 → 0.116.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: 47984a654ef5bec6361a5eeb4063924438c748631711bc9d2374026f916993bc
|
4
|
+
data.tar.gz: dc6f1f016fc302cf893986e2a5cfdaf6d5200c64ff657326c3e4239eb2df6112
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48d4b5d82f1e8fc22e10d9d529388ea9a3d0ca2b5f55701b4195e8fb9db7dd3993d9d05907aa2c22d160581342b75e26f58ef1f86482f349808d95bfe2791510
|
7
|
+
data.tar.gz: 6cc539eb6e3c3614c4cc10e4bfafa78221db8a2a015bbc8fc0f4df97fe64b0c09d57100a9d23027b2a624a2350cdbd5f0caeaf375a653185c9f8050790cdb18c
|
data/CHANGELOG.md
CHANGED
@@ -35378,6 +35378,11 @@ module Google
|
|
35378
35378
|
# @return [String]
|
35379
35379
|
attr_accessor :physical_host
|
35380
35380
|
|
35381
|
+
# Represents the physical host topology of the host on which the VM is running.
|
35382
|
+
# Corresponds to the JSON property `physicalHostTopology`
|
35383
|
+
# @return [Google::Apis::ComputeV1::ResourceStatusPhysicalHostTopology]
|
35384
|
+
attr_accessor :physical_host_topology
|
35385
|
+
|
35381
35386
|
#
|
35382
35387
|
# Corresponds to the JSON property `scheduling`
|
35383
35388
|
# @return [Google::Apis::ComputeV1::ResourceStatusScheduling]
|
@@ -35395,11 +35400,54 @@ module Google
|
|
35395
35400
|
# Update properties of this object
|
35396
35401
|
def update!(**args)
|
35397
35402
|
@physical_host = args[:physical_host] if args.key?(:physical_host)
|
35403
|
+
@physical_host_topology = args[:physical_host_topology] if args.key?(:physical_host_topology)
|
35398
35404
|
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
35399
35405
|
@upcoming_maintenance = args[:upcoming_maintenance] if args.key?(:upcoming_maintenance)
|
35400
35406
|
end
|
35401
35407
|
end
|
35402
35408
|
|
35409
|
+
# Represents the physical host topology of the host on which the VM is running.
|
35410
|
+
class ResourceStatusPhysicalHostTopology
|
35411
|
+
include Google::Apis::Core::Hashable
|
35412
|
+
|
35413
|
+
# [Output Only] The ID of the block in which the running instance is located.
|
35414
|
+
# Instances within the same block experience low network latency.
|
35415
|
+
# Corresponds to the JSON property `block`
|
35416
|
+
# @return [String]
|
35417
|
+
attr_accessor :block
|
35418
|
+
|
35419
|
+
# [Output Only] The global name of the Compute Engine cluster where the running
|
35420
|
+
# instance is located.
|
35421
|
+
# Corresponds to the JSON property `cluster`
|
35422
|
+
# @return [String]
|
35423
|
+
attr_accessor :cluster
|
35424
|
+
|
35425
|
+
# [Output Only] The ID of the host on which the running instance is located.
|
35426
|
+
# Instances on the same host experience the lowest possible network latency.
|
35427
|
+
# Corresponds to the JSON property `host`
|
35428
|
+
# @return [String]
|
35429
|
+
attr_accessor :host
|
35430
|
+
|
35431
|
+
# [Output Only] The ID of the sub-block in which the running instance is located.
|
35432
|
+
# Instances in the same sub-block experience lower network latency than
|
35433
|
+
# instances in the same block.
|
35434
|
+
# Corresponds to the JSON property `subblock`
|
35435
|
+
# @return [String]
|
35436
|
+
attr_accessor :subblock
|
35437
|
+
|
35438
|
+
def initialize(**args)
|
35439
|
+
update!(**args)
|
35440
|
+
end
|
35441
|
+
|
35442
|
+
# Update properties of this object
|
35443
|
+
def update!(**args)
|
35444
|
+
@block = args[:block] if args.key?(:block)
|
35445
|
+
@cluster = args[:cluster] if args.key?(:cluster)
|
35446
|
+
@host = args[:host] if args.key?(:host)
|
35447
|
+
@subblock = args[:subblock] if args.key?(:subblock)
|
35448
|
+
end
|
35449
|
+
end
|
35450
|
+
|
35403
35451
|
#
|
35404
35452
|
class ResourceStatusScheduling
|
35405
35453
|
include Google::Apis::Core::Hashable
|
@@ -44056,6 +44104,18 @@ module Google
|
|
44056
44104
|
# @return [String]
|
44057
44105
|
attr_accessor :ip_cidr_range
|
44058
44106
|
|
44107
|
+
# Reference to the source of IP, like a PublicDelegatedPrefix (PDP) for BYOIP.
|
44108
|
+
# The PDP must be a sub-PDP in EXTERNAL_IPV6_SUBNETWORK_CREATION mode. Use one
|
44109
|
+
# of the following formats to specify a sub-PDP when creating a dual stack
|
44110
|
+
# subnetwork with external access using BYOIP: - Full resource URL, as in https:/
|
44111
|
+
# /www.googleapis.com/compute/v1/projects/projectId/regions/region /
|
44112
|
+
# publicDelegatedPrefixes/sub-pdp-name - Partial URL, as in - projects/projectId/
|
44113
|
+
# regions/region/publicDelegatedPrefixes/ sub-pdp-name - regions/region/
|
44114
|
+
# publicDelegatedPrefixes/sub-pdp-name
|
44115
|
+
# Corresponds to the JSON property `ipCollection`
|
44116
|
+
# @return [String]
|
44117
|
+
attr_accessor :ip_collection
|
44118
|
+
|
44059
44119
|
# The access type of IPv6 address this subnet holds. It's immutable and can only
|
44060
44120
|
# be specified during creation or the first time the subnet is updated into
|
44061
44121
|
# IPV4_IPV6 dual stack.
|
@@ -44068,6 +44128,18 @@ module Google
|
|
44068
44128
|
# @return [String]
|
44069
44129
|
attr_accessor :ipv6_cidr_range
|
44070
44130
|
|
44131
|
+
# [Output Only] Possible endpoints of this subnetwork. It can be one of the
|
44132
|
+
# following: - VM_ONLY: The subnetwork can be used for creating instances and
|
44133
|
+
# IPv6 addresses with VM endpoint type. Such a subnetwork gets external IPv6
|
44134
|
+
# ranges from a public delegated prefix and cannot be used to create NetLb. -
|
44135
|
+
# VM_AND_FR: The subnetwork can be used for creating both VM instances and
|
44136
|
+
# Forwarding Rules. It can also be used to reserve IPv6 addresses with both VM
|
44137
|
+
# and FR endpoint types. Such a subnetwork gets its IPv6 range from Google IP
|
44138
|
+
# Pool directly.
|
44139
|
+
# Corresponds to the JSON property `ipv6GceEndpoint`
|
44140
|
+
# @return [String]
|
44141
|
+
attr_accessor :ipv6_gce_endpoint
|
44142
|
+
|
44071
44143
|
# [Output Only] Type of the resource. Always compute#subnetwork for Subnetwork
|
44072
44144
|
# resources.
|
44073
44145
|
# Corresponds to the JSON property `kind`
|
@@ -44195,8 +44267,10 @@ module Google
|
|
44195
44267
|
@id = args[:id] if args.key?(:id)
|
44196
44268
|
@internal_ipv6_prefix = args[:internal_ipv6_prefix] if args.key?(:internal_ipv6_prefix)
|
44197
44269
|
@ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
|
44270
|
+
@ip_collection = args[:ip_collection] if args.key?(:ip_collection)
|
44198
44271
|
@ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
|
44199
44272
|
@ipv6_cidr_range = args[:ipv6_cidr_range] if args.key?(:ipv6_cidr_range)
|
44273
|
+
@ipv6_gce_endpoint = args[:ipv6_gce_endpoint] if args.key?(:ipv6_gce_endpoint)
|
44200
44274
|
@kind = args[:kind] if args.key?(:kind)
|
44201
44275
|
@log_config = args[:log_config] if args.key?(:log_config)
|
44202
44276
|
@name = args[:name] if args.key?(:name)
|
@@ -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.116.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250302"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -4642,6 +4642,12 @@ module Google
|
|
4642
4642
|
include Google::Apis::Core::JsonObjectSupport
|
4643
4643
|
end
|
4644
4644
|
|
4645
|
+
class ResourceStatusPhysicalHostTopology
|
4646
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4647
|
+
|
4648
|
+
include Google::Apis::Core::JsonObjectSupport
|
4649
|
+
end
|
4650
|
+
|
4645
4651
|
class ResourceStatusScheduling
|
4646
4652
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4647
4653
|
|
@@ -15403,6 +15409,8 @@ module Google
|
|
15403
15409
|
# @private
|
15404
15410
|
class Representation < Google::Apis::Core::JsonRepresentation
|
15405
15411
|
property :physical_host, as: 'physicalHost'
|
15412
|
+
property :physical_host_topology, as: 'physicalHostTopology', class: Google::Apis::ComputeV1::ResourceStatusPhysicalHostTopology, decorator: Google::Apis::ComputeV1::ResourceStatusPhysicalHostTopology::Representation
|
15413
|
+
|
15406
15414
|
property :scheduling, as: 'scheduling', class: Google::Apis::ComputeV1::ResourceStatusScheduling, decorator: Google::Apis::ComputeV1::ResourceStatusScheduling::Representation
|
15407
15415
|
|
15408
15416
|
property :upcoming_maintenance, as: 'upcomingMaintenance', class: Google::Apis::ComputeV1::UpcomingMaintenance, decorator: Google::Apis::ComputeV1::UpcomingMaintenance::Representation
|
@@ -15410,6 +15418,16 @@ module Google
|
|
15410
15418
|
end
|
15411
15419
|
end
|
15412
15420
|
|
15421
|
+
class ResourceStatusPhysicalHostTopology
|
15422
|
+
# @private
|
15423
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15424
|
+
property :block, as: 'block'
|
15425
|
+
property :cluster, as: 'cluster'
|
15426
|
+
property :host, as: 'host'
|
15427
|
+
property :subblock, as: 'subblock'
|
15428
|
+
end
|
15429
|
+
end
|
15430
|
+
|
15413
15431
|
class ResourceStatusScheduling
|
15414
15432
|
# @private
|
15415
15433
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -17521,8 +17539,10 @@ module Google
|
|
17521
17539
|
property :id, :numeric_string => true, as: 'id'
|
17522
17540
|
property :internal_ipv6_prefix, as: 'internalIpv6Prefix'
|
17523
17541
|
property :ip_cidr_range, as: 'ipCidrRange'
|
17542
|
+
property :ip_collection, as: 'ipCollection'
|
17524
17543
|
property :ipv6_access_type, as: 'ipv6AccessType'
|
17525
17544
|
property :ipv6_cidr_range, as: 'ipv6CidrRange'
|
17545
|
+
property :ipv6_gce_endpoint, as: 'ipv6GceEndpoint'
|
17526
17546
|
property :kind, as: 'kind'
|
17527
17547
|
property :log_config, as: 'logConfig', class: Google::Apis::ComputeV1::SubnetworkLogConfig, decorator: Google::Apis::ComputeV1::SubnetworkLogConfig::Representation
|
17528
17548
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.116.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.116.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|