google-apis-compute_beta 0.82.0 → 0.83.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: dd2fc79eb92011c20c957c8020980672c254c748fc38e565736a3acd93de75db
|
4
|
+
data.tar.gz: 8208e3aef3084c539f6ffae8b1f1a66828ee1decf72d4b5db41ed0470f45822b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e1762ca82c7b9328aa3bb736230d46d521bf4db0e2364465db44c91de6d931821cea5f4b6e2f3cfad608a61e254900f691afee54521eb2e6d8d25ae4810203c
|
7
|
+
data.tar.gz: 4f734f951f6212a5b28d071e69f11fea93e957f50e35e46310c80966a76d6deabea5bc816b8925b17fcdc2fb5184a235f1ead6c492abad94252593eb6f65e51a
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
# Release history for google-apis-compute_beta
|
2
2
|
|
3
|
-
### v0.
|
3
|
+
### v0.83.0 (2023-10-22)
|
4
4
|
|
5
|
-
* Regenerated from discovery document revision
|
5
|
+
* Regenerated from discovery document revision 20231011
|
6
|
+
|
7
|
+
### v0.82.0 (2023-10-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231003
|
6
10
|
|
7
11
|
### v0.81.0 (2023-10-01)
|
8
12
|
|
@@ -6084,6 +6084,11 @@ module Google
|
|
6084
6084
|
class ConfidentialInstanceConfig
|
6085
6085
|
include Google::Apis::Core::Hashable
|
6086
6086
|
|
6087
|
+
# Defines the type of technology used by the confidential instance.
|
6088
|
+
# Corresponds to the JSON property `confidentialInstanceType`
|
6089
|
+
# @return [String]
|
6090
|
+
attr_accessor :confidential_instance_type
|
6091
|
+
|
6087
6092
|
# Defines whether the instance should have confidential compute enabled.
|
6088
6093
|
# Corresponds to the JSON property `enableConfidentialCompute`
|
6089
6094
|
# @return [Boolean]
|
@@ -6096,6 +6101,7 @@ module Google
|
|
6096
6101
|
|
6097
6102
|
# Update properties of this object
|
6098
6103
|
def update!(**args)
|
6104
|
+
@confidential_instance_type = args[:confidential_instance_type] if args.key?(:confidential_instance_type)
|
6099
6105
|
@enable_confidential_compute = args[:enable_confidential_compute] if args.key?(:enable_confidential_compute)
|
6100
6106
|
end
|
6101
6107
|
end
|
@@ -16397,6 +16403,12 @@ module Google
|
|
16397
16403
|
# @return [String]
|
16398
16404
|
attr_accessor :name
|
16399
16405
|
|
16406
|
+
# The number of instances to be created by this resize request. The group's
|
16407
|
+
# target size will be increased by this number.
|
16408
|
+
# Corresponds to the JSON property `resizeBy`
|
16409
|
+
# @return [Fixnum]
|
16410
|
+
attr_accessor :resize_by
|
16411
|
+
|
16400
16412
|
# [Output Only] The URL for this resize request. The server defines this URL.
|
16401
16413
|
# Corresponds to the JSON property `selfLink`
|
16402
16414
|
# @return [String]
|
@@ -16435,6 +16447,7 @@ module Google
|
|
16435
16447
|
@id = args[:id] if args.key?(:id)
|
16436
16448
|
@kind = args[:kind] if args.key?(:kind)
|
16437
16449
|
@name = args[:name] if args.key?(:name)
|
16450
|
+
@resize_by = args[:resize_by] if args.key?(:resize_by)
|
16438
16451
|
@self_link = args[:self_link] if args.key?(:self_link)
|
16439
16452
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
16440
16453
|
@state = args[:state] if args.key?(:state)
|
@@ -23923,7 +23936,7 @@ module Google
|
|
23923
23936
|
# @return [Google::Apis::ComputeBeta::ManagedInstanceLastAttempt]
|
23924
23937
|
attr_accessor :last_attempt
|
23925
23938
|
|
23926
|
-
# [Output Only] The name of the instance. The name
|
23939
|
+
# [Output Only] The name of the instance. The name always exists even if the
|
23927
23940
|
# instance has not yet been created.
|
23928
23941
|
# Corresponds to the JSON property `name`
|
23929
23942
|
# @return [String]
|
@@ -24831,6 +24844,13 @@ module Google
|
|
24831
24844
|
# @return [String]
|
24832
24845
|
attr_accessor :ip_address
|
24833
24846
|
|
24847
|
+
# The IPv6 address assigned to the producer instance network interface. This is
|
24848
|
+
# only assigned when the stack types of both the instance network interface and
|
24849
|
+
# the consumer subnet are IPv4_IPv6.
|
24850
|
+
# Corresponds to the JSON property `ipv6Address`
|
24851
|
+
# @return [String]
|
24852
|
+
attr_accessor :ipv6_address
|
24853
|
+
|
24834
24854
|
# The project id or number of the interface to which the IP was assigned.
|
24835
24855
|
# Corresponds to the JSON property `projectIdOrNum`
|
24836
24856
|
# @return [String]
|
@@ -24852,6 +24872,12 @@ module Google
|
|
24852
24872
|
# @return [String]
|
24853
24873
|
attr_accessor :subnetwork
|
24854
24874
|
|
24875
|
+
# [Output Only] The CIDR range of the subnet from which the IPv4 internal IP was
|
24876
|
+
# allocated from.
|
24877
|
+
# Corresponds to the JSON property `subnetworkCidrRange`
|
24878
|
+
# @return [String]
|
24879
|
+
attr_accessor :subnetwork_cidr_range
|
24880
|
+
|
24855
24881
|
def initialize(**args)
|
24856
24882
|
update!(**args)
|
24857
24883
|
end
|
@@ -24859,10 +24885,12 @@ module Google
|
|
24859
24885
|
# Update properties of this object
|
24860
24886
|
def update!(**args)
|
24861
24887
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
24888
|
+
@ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
|
24862
24889
|
@project_id_or_num = args[:project_id_or_num] if args.key?(:project_id_or_num)
|
24863
24890
|
@secondary_ip_cidr_ranges = args[:secondary_ip_cidr_ranges] if args.key?(:secondary_ip_cidr_ranges)
|
24864
24891
|
@status = args[:status] if args.key?(:status)
|
24865
24892
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
24893
|
+
@subnetwork_cidr_range = args[:subnetwork_cidr_range] if args.key?(:subnetwork_cidr_range)
|
24866
24894
|
end
|
24867
24895
|
end
|
24868
24896
|
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.83.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 = "
|
25
|
+
REVISION = "20231011"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -8020,6 +8020,7 @@ module Google
|
|
8020
8020
|
class ConfidentialInstanceConfig
|
8021
8021
|
# @private
|
8022
8022
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8023
|
+
property :confidential_instance_type, as: 'confidentialInstanceType'
|
8023
8024
|
property :enable_confidential_compute, as: 'enableConfidentialCompute'
|
8024
8025
|
end
|
8025
8026
|
end
|
@@ -10380,6 +10381,7 @@ module Google
|
|
10380
10381
|
property :id, :numeric_string => true, as: 'id'
|
10381
10382
|
property :kind, as: 'kind'
|
10382
10383
|
property :name, as: 'name'
|
10384
|
+
property :resize_by, as: 'resizeBy'
|
10383
10385
|
property :self_link, as: 'selfLink'
|
10384
10386
|
property :self_link_with_id, as: 'selfLinkWithId'
|
10385
10387
|
property :state, as: 'state'
|
@@ -12576,10 +12578,12 @@ module Google
|
|
12576
12578
|
# @private
|
12577
12579
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12578
12580
|
property :ip_address, as: 'ipAddress'
|
12581
|
+
property :ipv6_address, as: 'ipv6Address'
|
12579
12582
|
property :project_id_or_num, as: 'projectIdOrNum'
|
12580
12583
|
collection :secondary_ip_cidr_ranges, as: 'secondaryIpCidrRanges'
|
12581
12584
|
property :status, as: 'status'
|
12582
12585
|
property :subnetwork, as: 'subnetwork'
|
12586
|
+
property :subnetwork_cidr_range, as: 'subnetworkCidrRange'
|
12583
12587
|
end
|
12584
12588
|
end
|
12585
12589
|
|
@@ -17480,7 +17480,11 @@ module Google
|
|
17480
17480
|
execute_or_queue_command(command, &block)
|
17481
17481
|
end
|
17482
17482
|
|
17483
|
-
# Returns the interconnectDiagnostics for the specified Interconnect.
|
17483
|
+
# Returns the interconnectDiagnostics for the specified Interconnect. In the
|
17484
|
+
# event of a global outage, do not use this API to make decisions about where to
|
17485
|
+
# redirect your network traffic. Unlike a VLAN attachment, which is regional, a
|
17486
|
+
# Cloud Interconnect connection is a global resource. A global outage can
|
17487
|
+
# prevent this API from functioning properly.
|
17484
17488
|
# @param [String] project
|
17485
17489
|
# Project ID for this request.
|
17486
17490
|
# @param [String] interconnect
|
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.
|
4
|
+
version: 0.83.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-10-
|
11
|
+
date: 2023-10-22 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.83.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: []
|