google-apis-compute_beta 0.46.0 → 0.47.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: 92bf80086d078b9889f8f715acc421c9c63a3774ad54d3c6c2c3ebdc21639c3f
|
|
4
|
+
data.tar.gz: 06afc56bae703ebae2ddd21c14b1fb3951e9cd17721891d5da16b0b0ad1692a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cefc3c59e2cbfdbb42bd174d36567877102d8919271949f5b451de01f6bb268271a6234fd733f82232671efac93c9472846f8799c0baa2658c2fbb19af2a69e4
|
|
7
|
+
data.tar.gz: 402af7f6216d4e5e49c5bd4f145e10759b7c2daa566c620c091ddac38ed85221f705d8f2a36c713ddc9e6a198e652fa803919bf637419bf36f90de48a7b820a9
|
data/CHANGELOG.md
CHANGED
|
@@ -1318,6 +1318,14 @@ module Google
|
|
|
1318
1318
|
# @return [Fixnum]
|
|
1319
1319
|
attr_accessor :disk_size_gb
|
|
1320
1320
|
|
|
1321
|
+
# [Input Only] Whether to force attach the regional disk even if it's currently
|
|
1322
|
+
# attached to another instance. If you try to force attach a zonal disk to an
|
|
1323
|
+
# instance, you will receive an error.
|
|
1324
|
+
# Corresponds to the JSON property `forceAttach`
|
|
1325
|
+
# @return [Boolean]
|
|
1326
|
+
attr_accessor :force_attach
|
|
1327
|
+
alias_method :force_attach?, :force_attach
|
|
1328
|
+
|
|
1321
1329
|
# A list of features to enable on the guest operating system. Applicable only
|
|
1322
1330
|
# for bootable images. Read Enabling guest operating system features to see a
|
|
1323
1331
|
# list of available options.
|
|
@@ -1421,6 +1429,7 @@ module Google
|
|
|
1421
1429
|
@device_name = args[:device_name] if args.key?(:device_name)
|
|
1422
1430
|
@disk_encryption_key = args[:disk_encryption_key] if args.key?(:disk_encryption_key)
|
|
1423
1431
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
|
1432
|
+
@force_attach = args[:force_attach] if args.key?(:force_attach)
|
|
1424
1433
|
@guest_os_features = args[:guest_os_features] if args.key?(:guest_os_features)
|
|
1425
1434
|
@index = args[:index] if args.key?(:index)
|
|
1426
1435
|
@initialize_params = args[:initialize_params] if args.key?(:initialize_params)
|
|
@@ -5025,6 +5034,11 @@ module Google
|
|
|
5025
5034
|
# @return [Google::Apis::ComputeBeta::LicenseResourceCommitment]
|
|
5026
5035
|
attr_accessor :license_resource
|
|
5027
5036
|
|
|
5037
|
+
# List of source commitments to be merged into a new commitment.
|
|
5038
|
+
# Corresponds to the JSON property `mergeSourceCommitments`
|
|
5039
|
+
# @return [Array<String>]
|
|
5040
|
+
attr_accessor :merge_source_commitments
|
|
5041
|
+
|
|
5028
5042
|
# Name of the resource. Provided by the client when the resource is created. The
|
|
5029
5043
|
# name must be 1-63 characters long, and comply with RFC1035. Specifically, the
|
|
5030
5044
|
# name must be 1-63 characters long and match the regular expression `[a-z]([-a-
|
|
@@ -5063,6 +5077,11 @@ module Google
|
|
|
5063
5077
|
# @return [String]
|
|
5064
5078
|
attr_accessor :self_link
|
|
5065
5079
|
|
|
5080
|
+
# Source commitment to be splitted into a new commitment.
|
|
5081
|
+
# Corresponds to the JSON property `splitSourceCommitment`
|
|
5082
|
+
# @return [String]
|
|
5083
|
+
attr_accessor :split_source_commitment
|
|
5084
|
+
|
|
5066
5085
|
# [Output Only] Commitment start time in RFC3339 text format.
|
|
5067
5086
|
# Corresponds to the JSON property `startTimestamp`
|
|
5068
5087
|
# @return [String]
|
|
@@ -5102,12 +5121,14 @@ module Google
|
|
|
5102
5121
|
@id = args[:id] if args.key?(:id)
|
|
5103
5122
|
@kind = args[:kind] if args.key?(:kind)
|
|
5104
5123
|
@license_resource = args[:license_resource] if args.key?(:license_resource)
|
|
5124
|
+
@merge_source_commitments = args[:merge_source_commitments] if args.key?(:merge_source_commitments)
|
|
5105
5125
|
@name = args[:name] if args.key?(:name)
|
|
5106
5126
|
@plan = args[:plan] if args.key?(:plan)
|
|
5107
5127
|
@region = args[:region] if args.key?(:region)
|
|
5108
5128
|
@reservations = args[:reservations] if args.key?(:reservations)
|
|
5109
5129
|
@resources = args[:resources] if args.key?(:resources)
|
|
5110
5130
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
5131
|
+
@split_source_commitment = args[:split_source_commitment] if args.key?(:split_source_commitment)
|
|
5111
5132
|
@start_timestamp = args[:start_timestamp] if args.key?(:start_timestamp)
|
|
5112
5133
|
@status = args[:status] if args.key?(:status)
|
|
5113
5134
|
@status_message = args[:status_message] if args.key?(:status_message)
|
|
@@ -11967,9 +11988,9 @@ module Google
|
|
|
11967
11988
|
# forwarding the request to the selected backend. If routeAction specifies any
|
|
11968
11989
|
# weightedBackendServices, service must not be set. Conversely if service is set,
|
|
11969
11990
|
# routeAction cannot contain any weightedBackendServices. Only one of
|
|
11970
|
-
# urlRedirect, service or routeAction.weightedBackendService must be set.
|
|
11971
|
-
#
|
|
11972
|
-
# within a route rule's routeAction.
|
|
11991
|
+
# urlRedirect, service or routeAction.weightedBackendService must be set. URL
|
|
11992
|
+
# maps for Classic external HTTP(S) load balancers only support the urlRewrite
|
|
11993
|
+
# action within a route rule's routeAction.
|
|
11973
11994
|
# Corresponds to the JSON property `routeAction`
|
|
11974
11995
|
# @return [Google::Apis::ComputeBeta::HttpRouteAction]
|
|
11975
11996
|
attr_accessor :route_action
|
|
@@ -18870,7 +18891,7 @@ module Google
|
|
|
18870
18891
|
class LocalizedMessage
|
|
18871
18892
|
include Google::Apis::Core::Hashable
|
|
18872
18893
|
|
|
18873
|
-
# The locale used following the specification defined at
|
|
18894
|
+
# The locale used following the specification defined at https://www.rfc-editor.
|
|
18874
18895
|
# org/rfc/bcp/bcp47.txt. Examples are: "en-US", "fr-CH", "es-MX"
|
|
18875
18896
|
# Corresponds to the JSON property `locale`
|
|
18876
18897
|
# @return [String]
|
|
@@ -25847,8 +25868,9 @@ module Google
|
|
|
25847
25868
|
# If defaultRouteAction specifies any weightedBackendServices, defaultService
|
|
25848
25869
|
# must not be set. Conversely if defaultService is set, defaultRouteAction
|
|
25849
25870
|
# cannot contain any weightedBackendServices. Only one of defaultRouteAction or
|
|
25850
|
-
# defaultUrlRedirect must be set.
|
|
25851
|
-
#
|
|
25871
|
+
# defaultUrlRedirect must be set. URL maps for Classic external HTTP(S) load
|
|
25872
|
+
# balancers only support the urlRewrite action within a path matcher's
|
|
25873
|
+
# defaultRouteAction.
|
|
25852
25874
|
# Corresponds to the JSON property `defaultRouteAction`
|
|
25853
25875
|
# @return [Google::Apis::ComputeBeta::HttpRouteAction]
|
|
25854
25876
|
attr_accessor :default_route_action
|
|
@@ -25947,8 +25969,9 @@ module Google
|
|
|
25947
25969
|
# the request to the selected backend. If routeAction specifies any
|
|
25948
25970
|
# weightedBackendServices, service must not be set. Conversely if service is set,
|
|
25949
25971
|
# routeAction cannot contain any weightedBackendServices. Only one of
|
|
25950
|
-
# routeAction or urlRedirect must be set. URL maps for external HTTP(S)
|
|
25951
|
-
# balancers support
|
|
25972
|
+
# routeAction or urlRedirect must be set. URL maps for Classic external HTTP(S)
|
|
25973
|
+
# load balancers only support the urlRewrite action within a path rule's
|
|
25974
|
+
# routeAction.
|
|
25952
25975
|
# Corresponds to the JSON property `routeAction`
|
|
25953
25976
|
# @return [Google::Apis::ComputeBeta::HttpRouteAction]
|
|
25954
25977
|
attr_accessor :route_action
|
|
@@ -41073,8 +41096,8 @@ module Google
|
|
|
41073
41096
|
# defaultRouteAction specifies any weightedBackendServices, defaultService must
|
|
41074
41097
|
# not be set. Conversely if defaultService is set, defaultRouteAction cannot
|
|
41075
41098
|
# contain any weightedBackendServices. Only one of defaultRouteAction or
|
|
41076
|
-
# defaultUrlRedirect must be set.
|
|
41077
|
-
#
|
|
41099
|
+
# defaultUrlRedirect must be set. URL maps for Classic external HTTP(S) load
|
|
41100
|
+
# balancers only support the urlRewrite action within defaultRouteAction.
|
|
41078
41101
|
# defaultRouteAction has no effect when the URL map is bound to a target gRPC
|
|
41079
41102
|
# proxy that has the validateForProxyless field set to true.
|
|
41080
41103
|
# Corresponds to the JSON property `defaultRouteAction`
|
|
@@ -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.47.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.9.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220816"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -6124,6 +6124,7 @@ module Google
|
|
|
6124
6124
|
property :disk_encryption_key, as: 'diskEncryptionKey', class: Google::Apis::ComputeBeta::CustomerEncryptionKey, decorator: Google::Apis::ComputeBeta::CustomerEncryptionKey::Representation
|
|
6125
6125
|
|
|
6126
6126
|
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
|
6127
|
+
property :force_attach, as: 'forceAttach'
|
|
6127
6128
|
collection :guest_os_features, as: 'guestOsFeatures', class: Google::Apis::ComputeBeta::GuestOsFeature, decorator: Google::Apis::ComputeBeta::GuestOsFeature::Representation
|
|
6128
6129
|
|
|
6129
6130
|
property :index, as: 'index'
|
|
@@ -6908,6 +6909,7 @@ module Google
|
|
|
6908
6909
|
property :kind, as: 'kind'
|
|
6909
6910
|
property :license_resource, as: 'licenseResource', class: Google::Apis::ComputeBeta::LicenseResourceCommitment, decorator: Google::Apis::ComputeBeta::LicenseResourceCommitment::Representation
|
|
6910
6911
|
|
|
6912
|
+
collection :merge_source_commitments, as: 'mergeSourceCommitments'
|
|
6911
6913
|
property :name, as: 'name'
|
|
6912
6914
|
property :plan, as: 'plan'
|
|
6913
6915
|
property :region, as: 'region'
|
|
@@ -6916,6 +6918,7 @@ module Google
|
|
|
6916
6918
|
collection :resources, as: 'resources', class: Google::Apis::ComputeBeta::ResourceCommitment, decorator: Google::Apis::ComputeBeta::ResourceCommitment::Representation
|
|
6917
6919
|
|
|
6918
6920
|
property :self_link, as: 'selfLink'
|
|
6921
|
+
property :split_source_commitment, as: 'splitSourceCommitment'
|
|
6919
6922
|
property :start_timestamp, as: 'startTimestamp'
|
|
6920
6923
|
property :status, as: 'status'
|
|
6921
6924
|
property :status_message, as: 'statusMessage'
|
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.47.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: 2022-08-
|
|
11
|
+
date: 2022-08-29 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.47.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: []
|