google-apis-compute_v1 0.47.0 → 0.48.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: 6106c1dacbe40eefee1e19bc2bf0bf6050cde7f7c90bd7c85dbe6f0e79de9486
|
4
|
+
data.tar.gz: 12b15fd9e882b01a027335738f02a044e4e979c9c853eaaa2ae5419df356dc4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e96a7a981f004847027cb42c929d7e59e5fc91b7f258c470a490964b958a3c142578ea3c332d81d1dfb3fe4c1f8d589db62d56a7104044f0e884200292f025f6
|
7
|
+
data.tar.gz: ac38b6fbfb1d0d1f54f80f34e8c596c3dd64cde691f8a758d631941d4ff1b5b15f6e296fead89def3ecedc7c0ff49bd903d7e1788dc9e4326584ceb2f33867ee
|
data/CHANGELOG.md
CHANGED
@@ -1274,6 +1274,14 @@ module Google
|
|
1274
1274
|
# @return [Fixnum]
|
1275
1275
|
attr_accessor :disk_size_gb
|
1276
1276
|
|
1277
|
+
# [Input Only] Whether to force attach the regional disk even if it's currently
|
1278
|
+
# attached to another instance. If you try to force attach a zonal disk to an
|
1279
|
+
# instance, you will receive an error.
|
1280
|
+
# Corresponds to the JSON property `forceAttach`
|
1281
|
+
# @return [Boolean]
|
1282
|
+
attr_accessor :force_attach
|
1283
|
+
alias_method :force_attach?, :force_attach
|
1284
|
+
|
1277
1285
|
# A list of features to enable on the guest operating system. Applicable only
|
1278
1286
|
# for bootable images. Read Enabling guest operating system features to see a
|
1279
1287
|
# list of available options.
|
@@ -1359,6 +1367,7 @@ module Google
|
|
1359
1367
|
@device_name = args[:device_name] if args.key?(:device_name)
|
1360
1368
|
@disk_encryption_key = args[:disk_encryption_key] if args.key?(:disk_encryption_key)
|
1361
1369
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
1370
|
+
@force_attach = args[:force_attach] if args.key?(:force_attach)
|
1362
1371
|
@guest_os_features = args[:guest_os_features] if args.key?(:guest_os_features)
|
1363
1372
|
@index = args[:index] if args.key?(:index)
|
1364
1373
|
@initialize_params = args[:initialize_params] if args.key?(:initialize_params)
|
@@ -4885,6 +4894,11 @@ module Google
|
|
4885
4894
|
# @return [Google::Apis::ComputeV1::LicenseResourceCommitment]
|
4886
4895
|
attr_accessor :license_resource
|
4887
4896
|
|
4897
|
+
# List of source commitments to be merged into a new commitment.
|
4898
|
+
# Corresponds to the JSON property `mergeSourceCommitments`
|
4899
|
+
# @return [Array<String>]
|
4900
|
+
attr_accessor :merge_source_commitments
|
4901
|
+
|
4888
4902
|
# Name of the resource. Provided by the client when the resource is created. The
|
4889
4903
|
# name must be 1-63 characters long, and comply with RFC1035. Specifically, the
|
4890
4904
|
# name must be 1-63 characters long and match the regular expression `[a-z]([-a-
|
@@ -4923,6 +4937,11 @@ module Google
|
|
4923
4937
|
# @return [String]
|
4924
4938
|
attr_accessor :self_link
|
4925
4939
|
|
4940
|
+
# Source commitment to be splitted into a new commitment.
|
4941
|
+
# Corresponds to the JSON property `splitSourceCommitment`
|
4942
|
+
# @return [String]
|
4943
|
+
attr_accessor :split_source_commitment
|
4944
|
+
|
4926
4945
|
# [Output Only] Commitment start time in RFC3339 text format.
|
4927
4946
|
# Corresponds to the JSON property `startTimestamp`
|
4928
4947
|
# @return [String]
|
@@ -4962,12 +4981,14 @@ module Google
|
|
4962
4981
|
@id = args[:id] if args.key?(:id)
|
4963
4982
|
@kind = args[:kind] if args.key?(:kind)
|
4964
4983
|
@license_resource = args[:license_resource] if args.key?(:license_resource)
|
4984
|
+
@merge_source_commitments = args[:merge_source_commitments] if args.key?(:merge_source_commitments)
|
4965
4985
|
@name = args[:name] if args.key?(:name)
|
4966
4986
|
@plan = args[:plan] if args.key?(:plan)
|
4967
4987
|
@region = args[:region] if args.key?(:region)
|
4968
4988
|
@reservations = args[:reservations] if args.key?(:reservations)
|
4969
4989
|
@resources = args[:resources] if args.key?(:resources)
|
4970
4990
|
@self_link = args[:self_link] if args.key?(:self_link)
|
4991
|
+
@split_source_commitment = args[:split_source_commitment] if args.key?(:split_source_commitment)
|
4971
4992
|
@start_timestamp = args[:start_timestamp] if args.key?(:start_timestamp)
|
4972
4993
|
@status = args[:status] if args.key?(:status)
|
4973
4994
|
@status_message = args[:status_message] if args.key?(:status_message)
|
@@ -11632,9 +11653,9 @@ module Google
|
|
11632
11653
|
# forwarding the request to the selected backend. If routeAction specifies any
|
11633
11654
|
# weightedBackendServices, service must not be set. Conversely if service is set,
|
11634
11655
|
# routeAction cannot contain any weightedBackendServices. Only one of
|
11635
|
-
# urlRedirect, service or routeAction.weightedBackendService must be set.
|
11636
|
-
#
|
11637
|
-
# within a route rule's routeAction.
|
11656
|
+
# urlRedirect, service or routeAction.weightedBackendService must be set. URL
|
11657
|
+
# maps for Classic external HTTP(S) load balancers only support the urlRewrite
|
11658
|
+
# action within a route rule's routeAction.
|
11638
11659
|
# Corresponds to the JSON property `routeAction`
|
11639
11660
|
# @return [Google::Apis::ComputeV1::HttpRouteAction]
|
11640
11661
|
attr_accessor :route_action
|
@@ -18134,7 +18155,7 @@ module Google
|
|
18134
18155
|
class LocalizedMessage
|
18135
18156
|
include Google::Apis::Core::Hashable
|
18136
18157
|
|
18137
|
-
# The locale used following the specification defined at
|
18158
|
+
# The locale used following the specification defined at https://www.rfc-editor.
|
18138
18159
|
# org/rfc/bcp/bcp47.txt. Examples are: "en-US", "fr-CH", "es-MX"
|
18139
18160
|
# Corresponds to the JSON property `locale`
|
18140
18161
|
# @return [String]
|
@@ -24884,8 +24905,9 @@ module Google
|
|
24884
24905
|
# If defaultRouteAction specifies any weightedBackendServices, defaultService
|
24885
24906
|
# must not be set. Conversely if defaultService is set, defaultRouteAction
|
24886
24907
|
# cannot contain any weightedBackendServices. Only one of defaultRouteAction or
|
24887
|
-
# defaultUrlRedirect must be set.
|
24888
|
-
#
|
24908
|
+
# defaultUrlRedirect must be set. URL maps for Classic external HTTP(S) load
|
24909
|
+
# balancers only support the urlRewrite action within a path matcher's
|
24910
|
+
# defaultRouteAction.
|
24889
24911
|
# Corresponds to the JSON property `defaultRouteAction`
|
24890
24912
|
# @return [Google::Apis::ComputeV1::HttpRouteAction]
|
24891
24913
|
attr_accessor :default_route_action
|
@@ -24984,8 +25006,9 @@ module Google
|
|
24984
25006
|
# the request to the selected backend. If routeAction specifies any
|
24985
25007
|
# weightedBackendServices, service must not be set. Conversely if service is set,
|
24986
25008
|
# routeAction cannot contain any weightedBackendServices. Only one of
|
24987
|
-
# routeAction or urlRedirect must be set. URL maps for external HTTP(S)
|
24988
|
-
# balancers support
|
25009
|
+
# routeAction or urlRedirect must be set. URL maps for Classic external HTTP(S)
|
25010
|
+
# load balancers only support the urlRewrite action within a path rule's
|
25011
|
+
# routeAction.
|
24989
25012
|
# Corresponds to the JSON property `routeAction`
|
24990
25013
|
# @return [Google::Apis::ComputeV1::HttpRouteAction]
|
24991
25014
|
attr_accessor :route_action
|
@@ -38916,8 +38939,8 @@ module Google
|
|
38916
38939
|
# defaultRouteAction specifies any weightedBackendServices, defaultService must
|
38917
38940
|
# not be set. Conversely if defaultService is set, defaultRouteAction cannot
|
38918
38941
|
# contain any weightedBackendServices. Only one of defaultRouteAction or
|
38919
|
-
# defaultUrlRedirect must be set.
|
38920
|
-
#
|
38942
|
+
# defaultUrlRedirect must be set. URL maps for Classic external HTTP(S) load
|
38943
|
+
# balancers only support the urlRewrite action within defaultRouteAction.
|
38921
38944
|
# defaultRouteAction has no effect when the URL map is bound to a target gRPC
|
38922
38945
|
# proxy that has the validateForProxyless field set to true.
|
38923
38946
|
# Corresponds to the JSON property `defaultRouteAction`
|
@@ -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.48.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
|
@@ -5867,6 +5867,7 @@ module Google
|
|
5867
5867
|
property :disk_encryption_key, as: 'diskEncryptionKey', class: Google::Apis::ComputeV1::CustomerEncryptionKey, decorator: Google::Apis::ComputeV1::CustomerEncryptionKey::Representation
|
5868
5868
|
|
5869
5869
|
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
5870
|
+
property :force_attach, as: 'forceAttach'
|
5870
5871
|
collection :guest_os_features, as: 'guestOsFeatures', class: Google::Apis::ComputeV1::GuestOsFeature, decorator: Google::Apis::ComputeV1::GuestOsFeature::Representation
|
5871
5872
|
|
5872
5873
|
property :index, as: 'index'
|
@@ -6631,6 +6632,7 @@ module Google
|
|
6631
6632
|
property :kind, as: 'kind'
|
6632
6633
|
property :license_resource, as: 'licenseResource', class: Google::Apis::ComputeV1::LicenseResourceCommitment, decorator: Google::Apis::ComputeV1::LicenseResourceCommitment::Representation
|
6633
6634
|
|
6635
|
+
collection :merge_source_commitments, as: 'mergeSourceCommitments'
|
6634
6636
|
property :name, as: 'name'
|
6635
6637
|
property :plan, as: 'plan'
|
6636
6638
|
property :region, as: 'region'
|
@@ -6639,6 +6641,7 @@ module Google
|
|
6639
6641
|
collection :resources, as: 'resources', class: Google::Apis::ComputeV1::ResourceCommitment, decorator: Google::Apis::ComputeV1::ResourceCommitment::Representation
|
6640
6642
|
|
6641
6643
|
property :self_link, as: 'selfLink'
|
6644
|
+
property :split_source_commitment, as: 'splitSourceCommitment'
|
6642
6645
|
property :start_timestamp, as: 'startTimestamp'
|
6643
6646
|
property :status, as: 'status'
|
6644
6647
|
property :status_message, as: 'statusMessage'
|
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.48.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_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.48.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: []
|