google-apis-compute_alpha 0.144.0 → 0.145.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: 37127df0e3abe812a75e37775f3329ec0aa288ac609ef142c18d7491b1707138
|
|
4
|
+
data.tar.gz: 9ba5bf3bacc63b0d2fa4db9a9b67782aee4370c68ebc1e274552bc56ef2b7616
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60bdd5ad985bb4702d200fc01eecbf611c0c33b9f7b6285afd0d9eca21913a9b5be30faed6312eb7689e659a6570923ca88f48fdb320d395d67b9c93e4967f3f
|
|
7
|
+
data.tar.gz: 761877f2c2934cec1f8c11e3112ebe4b411ba72daca710451be0ba43b48b8ee09de1f5dd989e823088696fd43f27c1616729d0b3b3813c2a90359973d1cbba86
|
data/CHANGELOG.md
CHANGED
|
@@ -5493,6 +5493,13 @@ module Google
|
|
|
5493
5493
|
# @return [String]
|
|
5494
5494
|
attr_accessor :network
|
|
5495
5495
|
|
|
5496
|
+
# Optional. The URL of the network attachment that this resource
|
|
5497
|
+
# belongs to.projects/`project`/regions/`region_name`/networkAttachments/`
|
|
5498
|
+
# network_attachment_name`.
|
|
5499
|
+
# Corresponds to the JSON property `networkAttachment`
|
|
5500
|
+
# @return [String]
|
|
5501
|
+
attr_accessor :network_attachment
|
|
5502
|
+
|
|
5496
5503
|
# Configures traffic steering properties of internal passthrough Network
|
|
5497
5504
|
# Load Balancers.
|
|
5498
5505
|
# networkPassThroughLbTrafficPolicy cannot be specified with haPolicy.
|
|
@@ -5587,6 +5594,15 @@ module Google
|
|
|
5587
5594
|
# @return [Array<String>]
|
|
5588
5595
|
attr_accessor :service_bindings
|
|
5589
5596
|
|
|
5597
|
+
# Optional. The service class ID associated with this resource.
|
|
5598
|
+
# Producer Service's Service class ID for the region of this backend
|
|
5599
|
+
# service. Can only be used with network_attachment. It is not possible to
|
|
5600
|
+
# use on its own; however, network_attachment can be used without
|
|
5601
|
+
# service_class_id.
|
|
5602
|
+
# Corresponds to the JSON property `serviceClassId`
|
|
5603
|
+
# @return [String]
|
|
5604
|
+
attr_accessor :service_class_id
|
|
5605
|
+
|
|
5590
5606
|
# URL to networkservices.ServiceLbPolicy resource.
|
|
5591
5607
|
# Can only be set if load balancing scheme is EXTERNAL_MANAGED,
|
|
5592
5608
|
# INTERNAL_MANAGED or INTERNAL_SELF_MANAGED for a global backend service, and
|
|
@@ -5690,6 +5706,7 @@ module Google
|
|
|
5690
5706
|
@metadatas = args[:metadatas] if args.key?(:metadatas)
|
|
5691
5707
|
@name = args[:name] if args.key?(:name)
|
|
5692
5708
|
@network = args[:network] if args.key?(:network)
|
|
5709
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
|
5693
5710
|
@network_pass_through_lb_traffic_policy = args[:network_pass_through_lb_traffic_policy] if args.key?(:network_pass_through_lb_traffic_policy)
|
|
5694
5711
|
@orchestration_info = args[:orchestration_info] if args.key?(:orchestration_info)
|
|
5695
5712
|
@outlier_detection = args[:outlier_detection] if args.key?(:outlier_detection)
|
|
@@ -5703,6 +5720,7 @@ module Google
|
|
|
5703
5720
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
5704
5721
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
|
5705
5722
|
@service_bindings = args[:service_bindings] if args.key?(:service_bindings)
|
|
5723
|
+
@service_class_id = args[:service_class_id] if args.key?(:service_class_id)
|
|
5706
5724
|
@service_lb_policy = args[:service_lb_policy] if args.key?(:service_lb_policy)
|
|
5707
5725
|
@session_affinity = args[:session_affinity] if args.key?(:session_affinity)
|
|
5708
5726
|
@strong_session_affinity_cookie = args[:strong_session_affinity_cookie] if args.key?(:strong_session_affinity_cookie)
|
|
@@ -6514,7 +6532,8 @@ module Google
|
|
|
6514
6532
|
# The name of the VM instance of the leader network endpoint. The
|
|
6515
6533
|
# instance must already be attached to the NEG specified in the
|
|
6516
6534
|
# haPolicy.leader.backendGroup.
|
|
6517
|
-
# The
|
|
6535
|
+
# The value must be a valid RFC1035 name (1-63 characters) or a valid
|
|
6536
|
+
# instance URL.
|
|
6518
6537
|
# Authorization requires the following IAM permission on the
|
|
6519
6538
|
# specified resource instance: compute.instances.use
|
|
6520
6539
|
# Corresponds to the JSON property `instance`
|
|
@@ -8677,18 +8696,18 @@ module Google
|
|
|
8677
8696
|
end
|
|
8678
8697
|
end
|
|
8679
8698
|
|
|
8680
|
-
# A request to recommend the
|
|
8681
|
-
#
|
|
8682
|
-
# extension duration.
|
|
8699
|
+
# A request to recommend the maximum duration for extending an existing future
|
|
8700
|
+
# reservation in calendar mode. The recommended duration is shorter than or
|
|
8701
|
+
# equal to the specified extension duration.
|
|
8683
8702
|
class CalendarModeExtensionAdviceRequest
|
|
8684
8703
|
include Google::Apis::Core::Hashable
|
|
8685
8704
|
|
|
8686
|
-
# Required. The desired end time
|
|
8705
|
+
# Required. The desired end time for the extension.
|
|
8687
8706
|
# Corresponds to the JSON property `endTimeNotLaterThan`
|
|
8688
8707
|
# @return [String]
|
|
8689
8708
|
attr_accessor :end_time_not_later_than
|
|
8690
8709
|
|
|
8691
|
-
# Required. Reference to the
|
|
8710
|
+
# Required. Reference to the future reservation, in the format:
|
|
8692
8711
|
# projects/`project`/zones/`zone`/futureReservations/`name`
|
|
8693
8712
|
# Full URIs that include hostnames (like compute.googleapis.com or
|
|
8694
8713
|
# www.googleapis.com) are also supported.
|
|
@@ -8707,16 +8726,16 @@ module Google
|
|
|
8707
8726
|
end
|
|
8708
8727
|
end
|
|
8709
8728
|
|
|
8710
|
-
# A response
|
|
8711
|
-
#
|
|
8712
|
-
# the extension period.
|
|
8729
|
+
# A response that contains the recommended duration for extending
|
|
8730
|
+
# a future reservation in calendar mode based on available capacity
|
|
8731
|
+
# during the extension period.
|
|
8713
8732
|
class CalendarModeExtensionAdviceResponse
|
|
8714
8733
|
include Google::Apis::Core::Hashable
|
|
8715
8734
|
|
|
8716
|
-
# The recommended end time for the extension, which
|
|
8717
|
-
#
|
|
8718
|
-
#
|
|
8719
|
-
#
|
|
8735
|
+
# The recommended end time for the extension, which is either the end time
|
|
8736
|
+
# requested by the caller or the longest alternative with sufficient
|
|
8737
|
+
# capacity. If the extension is not possible, this field is empty, and
|
|
8738
|
+
# notRecommendedReason is populated instead.
|
|
8720
8739
|
# Corresponds to the JSON property `endTime`
|
|
8721
8740
|
# @return [String]
|
|
8722
8741
|
attr_accessor :end_time
|
|
@@ -8726,7 +8745,8 @@ module Google
|
|
|
8726
8745
|
# @return [Google::Apis::ComputeAlpha::CalendarModeExtensionAdviceResponseNotRecommendedReason]
|
|
8727
8746
|
attr_accessor :not_recommended_reason
|
|
8728
8747
|
|
|
8729
|
-
#
|
|
8748
|
+
# The unique ID of the recommendation, which is a UUID string generated by
|
|
8749
|
+
# the API.
|
|
8730
8750
|
# Corresponds to the JSON property `recommendationId`
|
|
8731
8751
|
# @return [String]
|
|
8732
8752
|
attr_accessor :recommendation_id
|
|
@@ -8747,10 +8767,9 @@ module Google
|
|
|
8747
8767
|
class CalendarModeExtensionAdviceResponseNotRecommendedReason
|
|
8748
8768
|
include Google::Apis::Core::Hashable
|
|
8749
8769
|
|
|
8750
|
-
#
|
|
8751
|
-
#
|
|
8752
|
-
#
|
|
8753
|
-
# extension duration is not eligible.
|
|
8770
|
+
# Human-readable details describing why the recommendation wasn't provided.
|
|
8771
|
+
# For example, if the status is CONDITIONS_NOT_MET, this field explains why
|
|
8772
|
+
# the requested extension duration isn't possible.
|
|
8754
8773
|
# Corresponds to the JSON property `details`
|
|
8755
8774
|
# @return [String]
|
|
8756
8775
|
attr_accessor :details
|
|
@@ -14176,6 +14195,26 @@ module Google
|
|
|
14176
14195
|
end
|
|
14177
14196
|
end
|
|
14178
14197
|
|
|
14198
|
+
# Dynamic compression policy for this URL Map's route.
|
|
14199
|
+
class DynamicCompressionPolicy
|
|
14200
|
+
include Google::Apis::Core::Hashable
|
|
14201
|
+
|
|
14202
|
+
# Compress text responses using Brotli or gzip compression, based on
|
|
14203
|
+
# the client's Accept-Encoding header.
|
|
14204
|
+
# Corresponds to the JSON property `compressionMode`
|
|
14205
|
+
# @return [String]
|
|
14206
|
+
attr_accessor :compression_mode
|
|
14207
|
+
|
|
14208
|
+
def initialize(**args)
|
|
14209
|
+
update!(**args)
|
|
14210
|
+
end
|
|
14211
|
+
|
|
14212
|
+
# Update properties of this object
|
|
14213
|
+
def update!(**args)
|
|
14214
|
+
@compression_mode = args[:compression_mode] if args.key?(:compression_mode)
|
|
14215
|
+
end
|
|
14216
|
+
end
|
|
14217
|
+
|
|
14179
14218
|
# Describes the cause of the error with structured details.
|
|
14180
14219
|
# Example of an error when contacting the "pubsub.googleapis.com" API when it
|
|
14181
14220
|
# is not enabled:
|
|
@@ -17039,6 +17078,13 @@ module Google
|
|
|
17039
17078
|
# @return [String]
|
|
17040
17079
|
attr_accessor :network
|
|
17041
17080
|
|
|
17081
|
+
# Optional. The URL of the network attachment that this resource
|
|
17082
|
+
# belongs to.projects/`project`/regions/`region_name`/networkAttachments/`
|
|
17083
|
+
# network_attachment_name`.
|
|
17084
|
+
# Corresponds to the JSON property `networkAttachment`
|
|
17085
|
+
# @return [String]
|
|
17086
|
+
attr_accessor :network_attachment
|
|
17087
|
+
|
|
17042
17088
|
# This signifies the networking tier used for configuring
|
|
17043
17089
|
# this load balancer and can only take the following values:PREMIUM, STANDARD.
|
|
17044
17090
|
# For regional ForwardingRule, the valid values are PREMIUM andSTANDARD. For
|
|
@@ -17147,6 +17193,14 @@ module Google
|
|
|
17147
17193
|
# @return [String]
|
|
17148
17194
|
attr_accessor :self_link_with_id
|
|
17149
17195
|
|
|
17196
|
+
# Optional. Producer Service's Service class ID for the region of this
|
|
17197
|
+
# forwarding rule.
|
|
17198
|
+
# Can only be used with network_attachment. It is not possible to use on its
|
|
17199
|
+
# own; however, network_attachment can be used without service_class_id.
|
|
17200
|
+
# Corresponds to the JSON property `serviceClassId`
|
|
17201
|
+
# @return [String]
|
|
17202
|
+
attr_accessor :service_class_id
|
|
17203
|
+
|
|
17150
17204
|
# Service Directory resources to register this forwarding rule with.
|
|
17151
17205
|
# Currently, only supports a single Service Directory resource.
|
|
17152
17206
|
# Corresponds to the JSON property `serviceDirectoryRegistrations`
|
|
@@ -17260,6 +17314,7 @@ module Google
|
|
|
17260
17314
|
@metadata_filters = args[:metadata_filters] if args.key?(:metadata_filters)
|
|
17261
17315
|
@name = args[:name] if args.key?(:name)
|
|
17262
17316
|
@network = args[:network] if args.key?(:network)
|
|
17317
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
|
17263
17318
|
@network_tier = args[:network_tier] if args.key?(:network_tier)
|
|
17264
17319
|
@no_automate_dns_zone = args[:no_automate_dns_zone] if args.key?(:no_automate_dns_zone)
|
|
17265
17320
|
@parent_forwarding_rule = args[:parent_forwarding_rule] if args.key?(:parent_forwarding_rule)
|
|
@@ -17270,6 +17325,7 @@ module Google
|
|
|
17270
17325
|
@region = args[:region] if args.key?(:region)
|
|
17271
17326
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
17272
17327
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
|
17328
|
+
@service_class_id = args[:service_class_id] if args.key?(:service_class_id)
|
|
17273
17329
|
@service_directory_registrations = args[:service_directory_registrations] if args.key?(:service_directory_registrations)
|
|
17274
17330
|
@service_label = args[:service_label] if args.key?(:service_label)
|
|
17275
17331
|
@service_name = args[:service_name] if args.key?(:service_name)
|
|
@@ -25644,6 +25700,11 @@ module Google
|
|
|
25644
25700
|
# @return [Google::Apis::ComputeAlpha::CorsPolicy]
|
|
25645
25701
|
attr_accessor :cors_policy
|
|
25646
25702
|
|
|
25703
|
+
# Dynamic compression policy for this URL Map's route.
|
|
25704
|
+
# Corresponds to the JSON property `dynamicCompressionPolicy`
|
|
25705
|
+
# @return [Google::Apis::ComputeAlpha::DynamicCompressionPolicy]
|
|
25706
|
+
attr_accessor :dynamic_compression_policy
|
|
25707
|
+
|
|
25647
25708
|
# The specification for fault injection introduced into traffic to test
|
|
25648
25709
|
# the resiliency of clients to backend service failure. As part of fault
|
|
25649
25710
|
# injection, when clients send requests to a backend service, delays can be
|
|
@@ -25721,6 +25782,7 @@ module Google
|
|
|
25721
25782
|
def update!(**args)
|
|
25722
25783
|
@cache_policy = args[:cache_policy] if args.key?(:cache_policy)
|
|
25723
25784
|
@cors_policy = args[:cors_policy] if args.key?(:cors_policy)
|
|
25785
|
+
@dynamic_compression_policy = args[:dynamic_compression_policy] if args.key?(:dynamic_compression_policy)
|
|
25724
25786
|
@fault_injection_policy = args[:fault_injection_policy] if args.key?(:fault_injection_policy)
|
|
25725
25787
|
@image_optimization_policy = args[:image_optimization_policy] if args.key?(:image_optimization_policy)
|
|
25726
25788
|
@max_stream_duration = args[:max_stream_duration] if args.key?(:max_stream_duration)
|
|
@@ -44425,6 +44487,11 @@ module Google
|
|
|
44425
44487
|
# @return [String]
|
|
44426
44488
|
attr_accessor :i_pv4_range
|
|
44427
44489
|
|
|
44490
|
+
# Output only. [Output Only] Additional tags for this resource.
|
|
44491
|
+
# Corresponds to the JSON property `additionalTags`
|
|
44492
|
+
# @return [Array<String>]
|
|
44493
|
+
attr_accessor :additional_tags
|
|
44494
|
+
|
|
44428
44495
|
# Must be set to create a VPC network. If not set, a legacy network is
|
|
44429
44496
|
# created.
|
|
44430
44497
|
# When set to true, the VPC network is created in auto mode.
|
|
@@ -44582,6 +44649,7 @@ module Google
|
|
|
44582
44649
|
# Update properties of this object
|
|
44583
44650
|
def update!(**args)
|
|
44584
44651
|
@i_pv4_range = args[:i_pv4_range] if args.key?(:i_pv4_range)
|
|
44652
|
+
@additional_tags = args[:additional_tags] if args.key?(:additional_tags)
|
|
44585
44653
|
@auto_create_subnetworks = args[:auto_create_subnetworks] if args.key?(:auto_create_subnetworks)
|
|
44586
44654
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
44587
44655
|
@description = args[:description] if args.key?(:description)
|
|
@@ -63958,6 +64026,13 @@ module Google
|
|
|
63958
64026
|
# @return [String]
|
|
63959
64027
|
attr_accessor :host
|
|
63960
64028
|
|
|
64029
|
+
# Output only. [Output Only] The ID of the machine on which the running instance
|
|
64030
|
+
# is
|
|
64031
|
+
# located. It is only populated for machines which have multiple hosts.
|
|
64032
|
+
# Corresponds to the JSON property `machine`
|
|
64033
|
+
# @return [String]
|
|
64034
|
+
attr_accessor :machine
|
|
64035
|
+
|
|
63961
64036
|
# [Output Only] The ID of the sub-block in which the running instance is
|
|
63962
64037
|
# located. Instances in the same sub-block experience lower network latency
|
|
63963
64038
|
# than instances in the same block.
|
|
@@ -63975,6 +64050,7 @@ module Google
|
|
|
63975
64050
|
@block = args[:block] if args.key?(:block)
|
|
63976
64051
|
@cluster = args[:cluster] if args.key?(:cluster)
|
|
63977
64052
|
@host = args[:host] if args.key?(:host)
|
|
64053
|
+
@machine = args[:machine] if args.key?(:machine)
|
|
63978
64054
|
@subblock = args[:subblock] if args.key?(:subblock)
|
|
63979
64055
|
end
|
|
63980
64056
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ComputeAlpha
|
|
18
18
|
# Version of the google-apis-compute_alpha gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.145.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260828"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1672,6 +1672,12 @@ module Google
|
|
|
1672
1672
|
include Google::Apis::Core::JsonObjectSupport
|
|
1673
1673
|
end
|
|
1674
1674
|
|
|
1675
|
+
class DynamicCompressionPolicy
|
|
1676
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1677
|
+
|
|
1678
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1679
|
+
end
|
|
1680
|
+
|
|
1675
1681
|
class ErrorInfo
|
|
1676
1682
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1677
1683
|
|
|
@@ -12040,6 +12046,7 @@ module Google
|
|
|
12040
12046
|
hash :metadatas, as: 'metadatas'
|
|
12041
12047
|
property :name, as: 'name'
|
|
12042
12048
|
property :network, as: 'network'
|
|
12049
|
+
property :network_attachment, as: 'networkAttachment'
|
|
12043
12050
|
property :network_pass_through_lb_traffic_policy, as: 'networkPassThroughLbTrafficPolicy', class: Google::Apis::ComputeAlpha::BackendServiceNetworkPassThroughLbTrafficPolicy, decorator: Google::Apis::ComputeAlpha::BackendServiceNetworkPassThroughLbTrafficPolicy::Representation
|
|
12044
12051
|
|
|
12045
12052
|
property :orchestration_info, as: 'orchestrationInfo', class: Google::Apis::ComputeAlpha::BackendServiceOrchestrationInfo, decorator: Google::Apis::ComputeAlpha::BackendServiceOrchestrationInfo::Representation
|
|
@@ -12058,6 +12065,7 @@ module Google
|
|
|
12058
12065
|
property :self_link, as: 'selfLink'
|
|
12059
12066
|
property :self_link_with_id, as: 'selfLinkWithId'
|
|
12060
12067
|
collection :service_bindings, as: 'serviceBindings'
|
|
12068
|
+
property :service_class_id, as: 'serviceClassId'
|
|
12061
12069
|
property :service_lb_policy, as: 'serviceLbPolicy'
|
|
12062
12070
|
property :session_affinity, as: 'sessionAffinity'
|
|
12063
12071
|
property :strong_session_affinity_cookie, as: 'strongSessionAffinityCookie', class: Google::Apis::ComputeAlpha::BackendServiceHttpCookie, decorator: Google::Apis::ComputeAlpha::BackendServiceHttpCookie::Representation
|
|
@@ -13993,6 +14001,13 @@ module Google
|
|
|
13993
14001
|
end
|
|
13994
14002
|
end
|
|
13995
14003
|
|
|
14004
|
+
class DynamicCompressionPolicy
|
|
14005
|
+
# @private
|
|
14006
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
14007
|
+
property :compression_mode, as: 'compressionMode'
|
|
14008
|
+
end
|
|
14009
|
+
end
|
|
14010
|
+
|
|
13996
14011
|
class ErrorInfo
|
|
13997
14012
|
# @private
|
|
13998
14013
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -14547,6 +14562,7 @@ module Google
|
|
|
14547
14562
|
|
|
14548
14563
|
property :name, as: 'name'
|
|
14549
14564
|
property :network, as: 'network'
|
|
14565
|
+
property :network_attachment, as: 'networkAttachment'
|
|
14550
14566
|
property :network_tier, as: 'networkTier'
|
|
14551
14567
|
property :no_automate_dns_zone, as: 'noAutomateDnsZone'
|
|
14552
14568
|
property :parent_forwarding_rule, as: 'parentForwardingRule'
|
|
@@ -14557,6 +14573,7 @@ module Google
|
|
|
14557
14573
|
property :region, as: 'region'
|
|
14558
14574
|
property :self_link, as: 'selfLink'
|
|
14559
14575
|
property :self_link_with_id, as: 'selfLinkWithId'
|
|
14576
|
+
property :service_class_id, as: 'serviceClassId'
|
|
14560
14577
|
collection :service_directory_registrations, as: 'serviceDirectoryRegistrations', class: Google::Apis::ComputeAlpha::ForwardingRuleServiceDirectoryRegistration, decorator: Google::Apis::ComputeAlpha::ForwardingRuleServiceDirectoryRegistration::Representation
|
|
14561
14578
|
|
|
14562
14579
|
property :service_label, as: 'serviceLabel'
|
|
@@ -16580,6 +16597,8 @@ module Google
|
|
|
16580
16597
|
|
|
16581
16598
|
property :cors_policy, as: 'corsPolicy', class: Google::Apis::ComputeAlpha::CorsPolicy, decorator: Google::Apis::ComputeAlpha::CorsPolicy::Representation
|
|
16582
16599
|
|
|
16600
|
+
property :dynamic_compression_policy, as: 'dynamicCompressionPolicy', class: Google::Apis::ComputeAlpha::DynamicCompressionPolicy, decorator: Google::Apis::ComputeAlpha::DynamicCompressionPolicy::Representation
|
|
16601
|
+
|
|
16583
16602
|
property :fault_injection_policy, as: 'faultInjectionPolicy', class: Google::Apis::ComputeAlpha::HttpFaultInjection, decorator: Google::Apis::ComputeAlpha::HttpFaultInjection::Representation
|
|
16584
16603
|
|
|
16585
16604
|
property :image_optimization_policy, as: 'imageOptimizationPolicy', class: Google::Apis::ComputeAlpha::ImageOptimizationPolicy, decorator: Google::Apis::ComputeAlpha::ImageOptimizationPolicy::Representation
|
|
@@ -21026,6 +21045,7 @@ module Google
|
|
|
21026
21045
|
# @private
|
|
21027
21046
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
21028
21047
|
property :i_pv4_range, as: 'IPv4Range'
|
|
21048
|
+
collection :additional_tags, as: 'additionalTags'
|
|
21029
21049
|
property :auto_create_subnetworks, as: 'autoCreateSubnetworks'
|
|
21030
21050
|
property :creation_timestamp, as: 'creationTimestamp'
|
|
21031
21051
|
property :description, as: 'description'
|
|
@@ -25779,6 +25799,7 @@ module Google
|
|
|
25779
25799
|
property :block, as: 'block'
|
|
25780
25800
|
property :cluster, as: 'cluster'
|
|
25781
25801
|
property :host, as: 'host'
|
|
25802
|
+
property :machine, as: 'machine'
|
|
25782
25803
|
property :subblock, as: 'subblock'
|
|
25783
25804
|
end
|
|
25784
25805
|
end
|
|
@@ -1253,10 +1253,10 @@ module Google
|
|
|
1253
1253
|
execute_or_queue_command(command, &block)
|
|
1254
1254
|
end
|
|
1255
1255
|
|
|
1256
|
-
#
|
|
1257
|
-
# based on the desired extension end time. If capacity
|
|
1258
|
-
# the entire requested duration, the method
|
|
1259
|
-
#
|
|
1256
|
+
# Advises on whether extending an existing future reservation is possible
|
|
1257
|
+
# based on the desired extension end time. If capacity isn't available for
|
|
1258
|
+
# the entire requested duration, the method recommends the longest possible
|
|
1259
|
+
# extension.
|
|
1260
1260
|
# @param [String] project
|
|
1261
1261
|
# Project ID for this request.
|
|
1262
1262
|
# @param [String] region
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-compute_alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.145.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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_alpha/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.145.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|