google-apis-compute_alpha 0.143.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
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-compute_alpha
|
|
2
2
|
|
|
3
|
+
### v0.145.0 (2026-09-06)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260828
|
|
6
|
+
|
|
7
|
+
### v0.144.0 (2026-08-30)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260821
|
|
10
|
+
|
|
3
11
|
### v0.143.0 (2026-08-23)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260807
|
|
@@ -3528,6 +3528,28 @@ module Google
|
|
|
3528
3528
|
# @return [String]
|
|
3529
3529
|
attr_accessor :predictive_method
|
|
3530
3530
|
|
|
3531
|
+
# Defines how scaling signal is aggregated in a group. Operates on the
|
|
3532
|
+
# results of the `TimeAggregation`, reducing the per-instance
|
|
3533
|
+
# values down to a single aggregate value across the entire instance group.
|
|
3534
|
+
# Corresponds to the JSON property `signalAggregation`
|
|
3535
|
+
# @return [Google::Apis::ComputeAlpha::AutoscalingPolicySignalAggregation]
|
|
3536
|
+
attr_accessor :signal_aggregation
|
|
3537
|
+
|
|
3538
|
+
# Defines how scaling signal is aggregated over a time window. Operates on
|
|
3539
|
+
# all signal samples produced over the `time_window_sec`, reducing them to
|
|
3540
|
+
# exactly one value.
|
|
3541
|
+
# Corresponds to the JSON property `timeAggregation`
|
|
3542
|
+
# @return [Google::Apis::ComputeAlpha::AutoscalingPolicyTimeAggregation]
|
|
3543
|
+
attr_accessor :time_aggregation
|
|
3544
|
+
|
|
3545
|
+
# Represents a range of acceptable utilization values.
|
|
3546
|
+
# This message is used to configure range-based scaling policies,
|
|
3547
|
+
# allowing Autoscaler to maintain utilization within a specified range
|
|
3548
|
+
# instead of aiming for a single target point.
|
|
3549
|
+
# Corresponds to the JSON property `utilizationRange`
|
|
3550
|
+
# @return [Google::Apis::ComputeAlpha::UtilizationRange]
|
|
3551
|
+
attr_accessor :utilization_range
|
|
3552
|
+
|
|
3531
3553
|
# The target CPU utilization that the autoscaler maintains. Must be
|
|
3532
3554
|
# a float value in the range (0, 1]. If not specified, the default is0.6.
|
|
3533
3555
|
# If the CPU level is below the target utilization, the autoscaler scales
|
|
@@ -3549,6 +3571,9 @@ module Google
|
|
|
3549
3571
|
# Update properties of this object
|
|
3550
3572
|
def update!(**args)
|
|
3551
3573
|
@predictive_method = args[:predictive_method] if args.key?(:predictive_method)
|
|
3574
|
+
@signal_aggregation = args[:signal_aggregation] if args.key?(:signal_aggregation)
|
|
3575
|
+
@time_aggregation = args[:time_aggregation] if args.key?(:time_aggregation)
|
|
3576
|
+
@utilization_range = args[:utilization_range] if args.key?(:utilization_range)
|
|
3552
3577
|
@utilization_target = args[:utilization_target] if args.key?(:utilization_target)
|
|
3553
3578
|
end
|
|
3554
3579
|
end
|
|
@@ -3798,6 +3823,71 @@ module Google
|
|
|
3798
3823
|
end
|
|
3799
3824
|
end
|
|
3800
3825
|
|
|
3826
|
+
# Defines how scaling signal is aggregated in a group. Operates on the
|
|
3827
|
+
# results of the `TimeAggregation`, reducing the per-instance
|
|
3828
|
+
# values down to a single aggregate value across the entire instance group.
|
|
3829
|
+
class AutoscalingPolicySignalAggregation
|
|
3830
|
+
include Google::Apis::Core::Hashable
|
|
3831
|
+
|
|
3832
|
+
# If statistic is PERCENTILE, percentile must be defined. This value is
|
|
3833
|
+
# used only when statistic is PERCENTILE.
|
|
3834
|
+
# Corresponds to the JSON property `percentile`
|
|
3835
|
+
# @return [Fixnum]
|
|
3836
|
+
attr_accessor :percentile
|
|
3837
|
+
|
|
3838
|
+
# Required. The aggregator used to aggregate signal samples across the entire
|
|
3839
|
+
# instance group. This field is required.
|
|
3840
|
+
# Corresponds to the JSON property `statistic`
|
|
3841
|
+
# @return [String]
|
|
3842
|
+
attr_accessor :statistic
|
|
3843
|
+
|
|
3844
|
+
def initialize(**args)
|
|
3845
|
+
update!(**args)
|
|
3846
|
+
end
|
|
3847
|
+
|
|
3848
|
+
# Update properties of this object
|
|
3849
|
+
def update!(**args)
|
|
3850
|
+
@percentile = args[:percentile] if args.key?(:percentile)
|
|
3851
|
+
@statistic = args[:statistic] if args.key?(:statistic)
|
|
3852
|
+
end
|
|
3853
|
+
end
|
|
3854
|
+
|
|
3855
|
+
# Defines how scaling signal is aggregated over a time window. Operates on
|
|
3856
|
+
# all signal samples produced over the `time_window_sec`, reducing them to
|
|
3857
|
+
# exactly one value.
|
|
3858
|
+
class AutoscalingPolicyTimeAggregation
|
|
3859
|
+
include Google::Apis::Core::Hashable
|
|
3860
|
+
|
|
3861
|
+
# If statistic is PERCENTILE, percentile must be defined. This value is
|
|
3862
|
+
# used only when statistic is PERCENTILE.
|
|
3863
|
+
# Corresponds to the JSON property `percentile`
|
|
3864
|
+
# @return [Fixnum]
|
|
3865
|
+
attr_accessor :percentile
|
|
3866
|
+
|
|
3867
|
+
# Required. The aggregator used to aggregate signal samples over the
|
|
3868
|
+
# `time_window_sec`. This field is required.
|
|
3869
|
+
# Corresponds to the JSON property `statistic`
|
|
3870
|
+
# @return [String]
|
|
3871
|
+
attr_accessor :statistic
|
|
3872
|
+
|
|
3873
|
+
# Required. The duration of the time window over which the signal samples are
|
|
3874
|
+
# aggregated. This field is required.
|
|
3875
|
+
# Corresponds to the JSON property `timeWindowSec`
|
|
3876
|
+
# @return [Fixnum]
|
|
3877
|
+
attr_accessor :time_window_sec
|
|
3878
|
+
|
|
3879
|
+
def initialize(**args)
|
|
3880
|
+
update!(**args)
|
|
3881
|
+
end
|
|
3882
|
+
|
|
3883
|
+
# Update properties of this object
|
|
3884
|
+
def update!(**args)
|
|
3885
|
+
@percentile = args[:percentile] if args.key?(:percentile)
|
|
3886
|
+
@statistic = args[:statistic] if args.key?(:statistic)
|
|
3887
|
+
@time_window_sec = args[:time_window_sec] if args.key?(:time_window_sec)
|
|
3888
|
+
end
|
|
3889
|
+
end
|
|
3890
|
+
|
|
3801
3891
|
# Message containing information of one individual backend.
|
|
3802
3892
|
class Backend
|
|
3803
3893
|
include Google::Apis::Core::Hashable
|
|
@@ -5403,6 +5493,13 @@ module Google
|
|
|
5403
5493
|
# @return [String]
|
|
5404
5494
|
attr_accessor :network
|
|
5405
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
|
+
|
|
5406
5503
|
# Configures traffic steering properties of internal passthrough Network
|
|
5407
5504
|
# Load Balancers.
|
|
5408
5505
|
# networkPassThroughLbTrafficPolicy cannot be specified with haPolicy.
|
|
@@ -5497,6 +5594,15 @@ module Google
|
|
|
5497
5594
|
# @return [Array<String>]
|
|
5498
5595
|
attr_accessor :service_bindings
|
|
5499
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
|
+
|
|
5500
5606
|
# URL to networkservices.ServiceLbPolicy resource.
|
|
5501
5607
|
# Can only be set if load balancing scheme is EXTERNAL_MANAGED,
|
|
5502
5608
|
# INTERNAL_MANAGED or INTERNAL_SELF_MANAGED for a global backend service, and
|
|
@@ -5600,6 +5706,7 @@ module Google
|
|
|
5600
5706
|
@metadatas = args[:metadatas] if args.key?(:metadatas)
|
|
5601
5707
|
@name = args[:name] if args.key?(:name)
|
|
5602
5708
|
@network = args[:network] if args.key?(:network)
|
|
5709
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
|
5603
5710
|
@network_pass_through_lb_traffic_policy = args[:network_pass_through_lb_traffic_policy] if args.key?(:network_pass_through_lb_traffic_policy)
|
|
5604
5711
|
@orchestration_info = args[:orchestration_info] if args.key?(:orchestration_info)
|
|
5605
5712
|
@outlier_detection = args[:outlier_detection] if args.key?(:outlier_detection)
|
|
@@ -5613,6 +5720,7 @@ module Google
|
|
|
5613
5720
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
5614
5721
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
|
5615
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)
|
|
5616
5724
|
@service_lb_policy = args[:service_lb_policy] if args.key?(:service_lb_policy)
|
|
5617
5725
|
@session_affinity = args[:session_affinity] if args.key?(:session_affinity)
|
|
5618
5726
|
@strong_session_affinity_cookie = args[:strong_session_affinity_cookie] if args.key?(:strong_session_affinity_cookie)
|
|
@@ -6424,7 +6532,8 @@ module Google
|
|
|
6424
6532
|
# The name of the VM instance of the leader network endpoint. The
|
|
6425
6533
|
# instance must already be attached to the NEG specified in the
|
|
6426
6534
|
# haPolicy.leader.backendGroup.
|
|
6427
|
-
# The
|
|
6535
|
+
# The value must be a valid RFC1035 name (1-63 characters) or a valid
|
|
6536
|
+
# instance URL.
|
|
6428
6537
|
# Authorization requires the following IAM permission on the
|
|
6429
6538
|
# specified resource instance: compute.instances.use
|
|
6430
6539
|
# Corresponds to the JSON property `instance`
|
|
@@ -8587,18 +8696,18 @@ module Google
|
|
|
8587
8696
|
end
|
|
8588
8697
|
end
|
|
8589
8698
|
|
|
8590
|
-
# A request to recommend the
|
|
8591
|
-
#
|
|
8592
|
-
# 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.
|
|
8593
8702
|
class CalendarModeExtensionAdviceRequest
|
|
8594
8703
|
include Google::Apis::Core::Hashable
|
|
8595
8704
|
|
|
8596
|
-
# Required. The desired end time
|
|
8705
|
+
# Required. The desired end time for the extension.
|
|
8597
8706
|
# Corresponds to the JSON property `endTimeNotLaterThan`
|
|
8598
8707
|
# @return [String]
|
|
8599
8708
|
attr_accessor :end_time_not_later_than
|
|
8600
8709
|
|
|
8601
|
-
# Required. Reference to the
|
|
8710
|
+
# Required. Reference to the future reservation, in the format:
|
|
8602
8711
|
# projects/`project`/zones/`zone`/futureReservations/`name`
|
|
8603
8712
|
# Full URIs that include hostnames (like compute.googleapis.com or
|
|
8604
8713
|
# www.googleapis.com) are also supported.
|
|
@@ -8617,16 +8726,16 @@ module Google
|
|
|
8617
8726
|
end
|
|
8618
8727
|
end
|
|
8619
8728
|
|
|
8620
|
-
# A response
|
|
8621
|
-
#
|
|
8622
|
-
# 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.
|
|
8623
8732
|
class CalendarModeExtensionAdviceResponse
|
|
8624
8733
|
include Google::Apis::Core::Hashable
|
|
8625
8734
|
|
|
8626
|
-
# The recommended end time for the extension, which
|
|
8627
|
-
#
|
|
8628
|
-
#
|
|
8629
|
-
#
|
|
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.
|
|
8630
8739
|
# Corresponds to the JSON property `endTime`
|
|
8631
8740
|
# @return [String]
|
|
8632
8741
|
attr_accessor :end_time
|
|
@@ -8636,7 +8745,8 @@ module Google
|
|
|
8636
8745
|
# @return [Google::Apis::ComputeAlpha::CalendarModeExtensionAdviceResponseNotRecommendedReason]
|
|
8637
8746
|
attr_accessor :not_recommended_reason
|
|
8638
8747
|
|
|
8639
|
-
#
|
|
8748
|
+
# The unique ID of the recommendation, which is a UUID string generated by
|
|
8749
|
+
# the API.
|
|
8640
8750
|
# Corresponds to the JSON property `recommendationId`
|
|
8641
8751
|
# @return [String]
|
|
8642
8752
|
attr_accessor :recommendation_id
|
|
@@ -8657,10 +8767,9 @@ module Google
|
|
|
8657
8767
|
class CalendarModeExtensionAdviceResponseNotRecommendedReason
|
|
8658
8768
|
include Google::Apis::Core::Hashable
|
|
8659
8769
|
|
|
8660
|
-
#
|
|
8661
|
-
#
|
|
8662
|
-
#
|
|
8663
|
-
# 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.
|
|
8664
8773
|
# Corresponds to the JSON property `details`
|
|
8665
8774
|
# @return [String]
|
|
8666
8775
|
attr_accessor :details
|
|
@@ -14086,6 +14195,26 @@ module Google
|
|
|
14086
14195
|
end
|
|
14087
14196
|
end
|
|
14088
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
|
+
|
|
14089
14218
|
# Describes the cause of the error with structured details.
|
|
14090
14219
|
# Example of an error when contacting the "pubsub.googleapis.com" API when it
|
|
14091
14220
|
# is not enabled:
|
|
@@ -15346,6 +15475,15 @@ module Google
|
|
|
15346
15475
|
class FirewallPolicy
|
|
15347
15476
|
include Google::Apis::Core::Hashable
|
|
15348
15477
|
|
|
15478
|
+
# Optional. If specified, it defines what should happen in case of backend
|
|
15479
|
+
# issues for
|
|
15480
|
+
# rules with apply_security_profile_group action.
|
|
15481
|
+
# Allowed values: ALLOW, DENY. If not specified, the default behavior is
|
|
15482
|
+
# ALLOW.
|
|
15483
|
+
# Corresponds to the JSON property `applySecurityProfileFallbackAction`
|
|
15484
|
+
# @return [String]
|
|
15485
|
+
attr_accessor :apply_security_profile_fallback_action
|
|
15486
|
+
|
|
15349
15487
|
# A list of associations that belong to this firewall policy.
|
|
15350
15488
|
# Corresponds to the JSON property `associations`
|
|
15351
15489
|
# @return [Array<Google::Apis::ComputeAlpha::FirewallPolicyAssociation>]
|
|
@@ -15512,6 +15650,7 @@ module Google
|
|
|
15512
15650
|
|
|
15513
15651
|
# Update properties of this object
|
|
15514
15652
|
def update!(**args)
|
|
15653
|
+
@apply_security_profile_fallback_action = args[:apply_security_profile_fallback_action] if args.key?(:apply_security_profile_fallback_action)
|
|
15515
15654
|
@associations = args[:associations] if args.key?(:associations)
|
|
15516
15655
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
15517
15656
|
@description = args[:description] if args.key?(:description)
|
|
@@ -16939,6 +17078,13 @@ module Google
|
|
|
16939
17078
|
# @return [String]
|
|
16940
17079
|
attr_accessor :network
|
|
16941
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
|
+
|
|
16942
17088
|
# This signifies the networking tier used for configuring
|
|
16943
17089
|
# this load balancer and can only take the following values:PREMIUM, STANDARD.
|
|
16944
17090
|
# For regional ForwardingRule, the valid values are PREMIUM andSTANDARD. For
|
|
@@ -17047,6 +17193,14 @@ module Google
|
|
|
17047
17193
|
# @return [String]
|
|
17048
17194
|
attr_accessor :self_link_with_id
|
|
17049
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
|
+
|
|
17050
17204
|
# Service Directory resources to register this forwarding rule with.
|
|
17051
17205
|
# Currently, only supports a single Service Directory resource.
|
|
17052
17206
|
# Corresponds to the JSON property `serviceDirectoryRegistrations`
|
|
@@ -17160,6 +17314,7 @@ module Google
|
|
|
17160
17314
|
@metadata_filters = args[:metadata_filters] if args.key?(:metadata_filters)
|
|
17161
17315
|
@name = args[:name] if args.key?(:name)
|
|
17162
17316
|
@network = args[:network] if args.key?(:network)
|
|
17317
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
|
17163
17318
|
@network_tier = args[:network_tier] if args.key?(:network_tier)
|
|
17164
17319
|
@no_automate_dns_zone = args[:no_automate_dns_zone] if args.key?(:no_automate_dns_zone)
|
|
17165
17320
|
@parent_forwarding_rule = args[:parent_forwarding_rule] if args.key?(:parent_forwarding_rule)
|
|
@@ -17170,6 +17325,7 @@ module Google
|
|
|
17170
17325
|
@region = args[:region] if args.key?(:region)
|
|
17171
17326
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
17172
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)
|
|
17173
17329
|
@service_directory_registrations = args[:service_directory_registrations] if args.key?(:service_directory_registrations)
|
|
17174
17330
|
@service_label = args[:service_label] if args.key?(:service_label)
|
|
17175
17331
|
@service_name = args[:service_name] if args.key?(:service_name)
|
|
@@ -19241,6 +19397,106 @@ module Google
|
|
|
19241
19397
|
end
|
|
19242
19398
|
end
|
|
19243
19399
|
|
|
19400
|
+
# Represents the Global Frontend Bundle settings for a single project.
|
|
19401
|
+
class GlobalFrontendSettings
|
|
19402
|
+
include Google::Apis::Core::Hashable
|
|
19403
|
+
|
|
19404
|
+
# Customer-settable bundle type.
|
|
19405
|
+
# Corresponds to the JSON property `bundleType`
|
|
19406
|
+
# @return [String]
|
|
19407
|
+
attr_accessor :bundle_type
|
|
19408
|
+
|
|
19409
|
+
# Output only. [Output Only] Creation timestamp in RFC3339 text format.
|
|
19410
|
+
# Corresponds to the JSON property `creationTimestamp`
|
|
19411
|
+
# @return [String]
|
|
19412
|
+
attr_accessor :creation_timestamp
|
|
19413
|
+
|
|
19414
|
+
# Output only. [Output Only] An optional description of this resource.
|
|
19415
|
+
# Corresponds to the JSON property `description`
|
|
19416
|
+
# @return [String]
|
|
19417
|
+
attr_accessor :description
|
|
19418
|
+
|
|
19419
|
+
# Output only. For optimistic locking
|
|
19420
|
+
# Corresponds to the JSON property `etag`
|
|
19421
|
+
# @return [String]
|
|
19422
|
+
attr_accessor :etag
|
|
19423
|
+
|
|
19424
|
+
# Output only. [Output Only] The unique identifier for the resource. This
|
|
19425
|
+
# identifier is
|
|
19426
|
+
# defined by the server.
|
|
19427
|
+
# Corresponds to the JSON property `id`
|
|
19428
|
+
# @return [Fixnum]
|
|
19429
|
+
attr_accessor :id
|
|
19430
|
+
|
|
19431
|
+
# Output only. OUTPUT_ONLY fields
|
|
19432
|
+
# [Output Only] Name of the resource. Must be 1-63 characters long and match
|
|
19433
|
+
# the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
|
|
19434
|
+
# character must be a lowercase letter, and all following characters must
|
|
19435
|
+
# be a dash, lowercase letter, or digit, except the last character, which
|
|
19436
|
+
# cannot be a dash.
|
|
19437
|
+
# Corresponds to the JSON property `name`
|
|
19438
|
+
# @return [String]
|
|
19439
|
+
attr_accessor :name
|
|
19440
|
+
|
|
19441
|
+
# Output only. [Output Only] Server-defined URL for the resource.
|
|
19442
|
+
# Corresponds to the JSON property `selfLink`
|
|
19443
|
+
# @return [String]
|
|
19444
|
+
attr_accessor :self_link
|
|
19445
|
+
|
|
19446
|
+
def initialize(**args)
|
|
19447
|
+
update!(**args)
|
|
19448
|
+
end
|
|
19449
|
+
|
|
19450
|
+
# Update properties of this object
|
|
19451
|
+
def update!(**args)
|
|
19452
|
+
@bundle_type = args[:bundle_type] if args.key?(:bundle_type)
|
|
19453
|
+
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
19454
|
+
@description = args[:description] if args.key?(:description)
|
|
19455
|
+
@etag = args[:etag] if args.key?(:etag)
|
|
19456
|
+
@id = args[:id] if args.key?(:id)
|
|
19457
|
+
@name = args[:name] if args.key?(:name)
|
|
19458
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
|
19459
|
+
end
|
|
19460
|
+
end
|
|
19461
|
+
|
|
19462
|
+
# Response to an UpdateGlobalFrontendSettingsRequest.
|
|
19463
|
+
class GlobalFrontendSettingsPatchResponse
|
|
19464
|
+
include Google::Apis::Core::Hashable
|
|
19465
|
+
|
|
19466
|
+
# Represents an Operation resource.
|
|
19467
|
+
# Google Compute Engine has three Operation resources:
|
|
19468
|
+
# * [Global](/compute/docs/reference/rest/alpha/globalOperations)
|
|
19469
|
+
# * [Regional](/compute/docs/reference/rest/alpha/regionOperations)
|
|
19470
|
+
# * [Zonal](/compute/docs/reference/rest/alpha/zoneOperations)
|
|
19471
|
+
# You can use an operation resource to manage asynchronous API requests.
|
|
19472
|
+
# For more information, readHandling
|
|
19473
|
+
# API responses.
|
|
19474
|
+
# Operations can be global, regional or zonal.
|
|
19475
|
+
#
|
|
19476
|
+
# - For global operations, use the `globalOperations`
|
|
19477
|
+
# resource.
|
|
19478
|
+
# - For regional operations, use the
|
|
19479
|
+
# `regionOperations` resource.
|
|
19480
|
+
# - For zonal operations, use
|
|
19481
|
+
# the `zoneOperations` resource.
|
|
19482
|
+
# For more information, read
|
|
19483
|
+
# Global, Regional, and Zonal Resources.
|
|
19484
|
+
# Note that completed Operation resources have a limited
|
|
19485
|
+
# retention period.
|
|
19486
|
+
# Corresponds to the JSON property `operation`
|
|
19487
|
+
# @return [Google::Apis::ComputeAlpha::Operation]
|
|
19488
|
+
attr_accessor :operation
|
|
19489
|
+
|
|
19490
|
+
def initialize(**args)
|
|
19491
|
+
update!(**args)
|
|
19492
|
+
end
|
|
19493
|
+
|
|
19494
|
+
# Update properties of this object
|
|
19495
|
+
def update!(**args)
|
|
19496
|
+
@operation = args[:operation] if args.key?(:operation)
|
|
19497
|
+
end
|
|
19498
|
+
end
|
|
19499
|
+
|
|
19244
19500
|
#
|
|
19245
19501
|
class GlobalListVmExtensionsResponse
|
|
19246
19502
|
include Google::Apis::Core::Hashable
|
|
@@ -20479,6 +20735,7 @@ module Google
|
|
|
20479
20735
|
# - IDPF
|
|
20480
20736
|
# - SNP_SVSM_CAPABLE
|
|
20481
20737
|
# - CCA_CAPABLE
|
|
20738
|
+
# - SUSPEND_SAFE_FPR
|
|
20482
20739
|
# For more information, see
|
|
20483
20740
|
# Enabling guest operating system features.
|
|
20484
20741
|
# Corresponds to the JSON property `type`
|
|
@@ -25443,6 +25700,11 @@ module Google
|
|
|
25443
25700
|
# @return [Google::Apis::ComputeAlpha::CorsPolicy]
|
|
25444
25701
|
attr_accessor :cors_policy
|
|
25445
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
|
+
|
|
25446
25708
|
# The specification for fault injection introduced into traffic to test
|
|
25447
25709
|
# the resiliency of clients to backend service failure. As part of fault
|
|
25448
25710
|
# injection, when clients send requests to a backend service, delays can be
|
|
@@ -25520,6 +25782,7 @@ module Google
|
|
|
25520
25782
|
def update!(**args)
|
|
25521
25783
|
@cache_policy = args[:cache_policy] if args.key?(:cache_policy)
|
|
25522
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)
|
|
25523
25786
|
@fault_injection_policy = args[:fault_injection_policy] if args.key?(:fault_injection_policy)
|
|
25524
25787
|
@image_optimization_policy = args[:image_optimization_policy] if args.key?(:image_optimization_policy)
|
|
25525
25788
|
@max_stream_duration = args[:max_stream_duration] if args.key?(:max_stream_duration)
|
|
@@ -30393,11 +30656,6 @@ module Google
|
|
|
30393
30656
|
# @return [Array<String>]
|
|
30394
30657
|
attr_accessor :allowed_actions
|
|
30395
30658
|
|
|
30396
|
-
# Whether the boot disk is allowed to be updated with restart.
|
|
30397
|
-
# Corresponds to the JSON property `disruptionMode`
|
|
30398
|
-
# @return [String]
|
|
30399
|
-
attr_accessor :disruption_mode
|
|
30400
|
-
|
|
30401
30659
|
# The
|
|
30402
30660
|
# instance redistribution policy for regional managed instance groups.
|
|
30403
30661
|
# Valid values are:
|
|
@@ -30477,7 +30735,6 @@ module Google
|
|
|
30477
30735
|
# Update properties of this object
|
|
30478
30736
|
def update!(**args)
|
|
30479
30737
|
@allowed_actions = args[:allowed_actions] if args.key?(:allowed_actions)
|
|
30480
|
-
@disruption_mode = args[:disruption_mode] if args.key?(:disruption_mode)
|
|
30481
30738
|
@instance_redistribution_type = args[:instance_redistribution_type] if args.key?(:instance_redistribution_type)
|
|
30482
30739
|
@max_surge = args[:max_surge] if args.key?(:max_surge)
|
|
30483
30740
|
@max_unavailable = args[:max_unavailable] if args.key?(:max_unavailable)
|
|
@@ -30573,11 +30830,6 @@ module Google
|
|
|
30573
30830
|
# @return [Array<String>]
|
|
30574
30831
|
attr_accessor :allowed_actions
|
|
30575
30832
|
|
|
30576
|
-
# Whether the boot disk is allowed to be updated with restart.
|
|
30577
|
-
# Corresponds to the JSON property `disruptionMode`
|
|
30578
|
-
# @return [String]
|
|
30579
|
-
attr_accessor :disruption_mode
|
|
30580
|
-
|
|
30581
30833
|
# The list of URLs of one or more instances for which you want to apply
|
|
30582
30834
|
# updates. Each URL can be a full URL or a partial URL, such aszones/[ZONE]/
|
|
30583
30835
|
# instances/[INSTANCE_NAME].
|
|
@@ -30636,7 +30888,6 @@ module Google
|
|
|
30636
30888
|
def update!(**args)
|
|
30637
30889
|
@all_instances = args[:all_instances] if args.key?(:all_instances)
|
|
30638
30890
|
@allowed_actions = args[:allowed_actions] if args.key?(:allowed_actions)
|
|
30639
|
-
@disruption_mode = args[:disruption_mode] if args.key?(:disruption_mode)
|
|
30640
30891
|
@instances = args[:instances] if args.key?(:instances)
|
|
30641
30892
|
@maximal_action = args[:maximal_action] if args.key?(:maximal_action)
|
|
30642
30893
|
@minimal_action = args[:minimal_action] if args.key?(:minimal_action)
|
|
@@ -34949,8 +35200,7 @@ module Google
|
|
|
34949
35200
|
# @return [String]
|
|
34950
35201
|
attr_accessor :self_link
|
|
34951
35202
|
|
|
34952
|
-
# Output only.
|
|
34953
|
-
# resource id.
|
|
35203
|
+
# Output only. Server-defined URL for this resource with the resource id.
|
|
34954
35204
|
# Corresponds to the JSON property `selfLinkWithId`
|
|
34955
35205
|
# @return [String]
|
|
34956
35206
|
attr_accessor :self_link_with_id
|
|
@@ -38726,6 +38976,19 @@ module Google
|
|
|
38726
38976
|
# @return [String]
|
|
38727
38977
|
attr_accessor :city
|
|
38728
38978
|
|
|
38979
|
+
# Output only. The maximum unmetered bandwidth for dynamic paths allowable per
|
|
38980
|
+
# WireGroup for this metro.
|
|
38981
|
+
# Corresponds to the JSON property `maxDynamicPathBandwidthGbps`
|
|
38982
|
+
# @return [Fixnum]
|
|
38983
|
+
attr_accessor :max_dynamic_path_bandwidth_gbps
|
|
38984
|
+
|
|
38985
|
+
# Output only. The maximum unmetered bandwidth for fixed paths allowable per
|
|
38986
|
+
# WireGroup
|
|
38987
|
+
# for this metro.
|
|
38988
|
+
# Corresponds to the JSON property `maxFixedPathBandwidthGbps`
|
|
38989
|
+
# @return [Fixnum]
|
|
38990
|
+
attr_accessor :max_fixed_path_bandwidth_gbps
|
|
38991
|
+
|
|
38729
38992
|
# Output only. The maximum gbps for a single flow to this metro.
|
|
38730
38993
|
# This limits the total bandwidth which may be configured per wire.
|
|
38731
38994
|
# Corresponds to the JSON property `maxSingleFlowGbps`
|
|
@@ -38739,6 +39002,8 @@ module Google
|
|
|
38739
39002
|
# Update properties of this object
|
|
38740
39003
|
def update!(**args)
|
|
38741
39004
|
@city = args[:city] if args.key?(:city)
|
|
39005
|
+
@max_dynamic_path_bandwidth_gbps = args[:max_dynamic_path_bandwidth_gbps] if args.key?(:max_dynamic_path_bandwidth_gbps)
|
|
39006
|
+
@max_fixed_path_bandwidth_gbps = args[:max_fixed_path_bandwidth_gbps] if args.key?(:max_fixed_path_bandwidth_gbps)
|
|
38742
39007
|
@max_single_flow_gbps = args[:max_single_flow_gbps] if args.key?(:max_single_flow_gbps)
|
|
38743
39008
|
end
|
|
38744
39009
|
end
|
|
@@ -42445,8 +42710,7 @@ module Google
|
|
|
42445
42710
|
# @return [String]
|
|
42446
42711
|
attr_accessor :tag
|
|
42447
42712
|
|
|
42448
|
-
# Output only.
|
|
42449
|
-
# group
|
|
42713
|
+
# Output only. The eventual status of the instance. The instance group
|
|
42450
42714
|
# manager will not be identified as stable till each managed instance reaches
|
|
42451
42715
|
# its targetStatus.
|
|
42452
42716
|
# Corresponds to the JSON property `targetStatus`
|
|
@@ -43136,8 +43400,8 @@ module Google
|
|
|
43136
43400
|
attr_accessor :subnetwork
|
|
43137
43401
|
|
|
43138
43402
|
# Required. The type of management service this interface provides.
|
|
43139
|
-
# Supported types include NMX-C for partition management
|
|
43140
|
-
# monitoring
|
|
43403
|
+
# Supported types include NMX-C for partition management and gNMI for switch
|
|
43404
|
+
# monitoring.
|
|
43141
43405
|
# Corresponds to the JSON property `type`
|
|
43142
43406
|
# @return [String]
|
|
43143
43407
|
attr_accessor :type
|
|
@@ -44223,6 +44487,11 @@ module Google
|
|
|
44223
44487
|
# @return [String]
|
|
44224
44488
|
attr_accessor :i_pv4_range
|
|
44225
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
|
+
|
|
44226
44495
|
# Must be set to create a VPC network. If not set, a legacy network is
|
|
44227
44496
|
# created.
|
|
44228
44497
|
# When set to true, the VPC network is created in auto mode.
|
|
@@ -44380,6 +44649,7 @@ module Google
|
|
|
44380
44649
|
# Update properties of this object
|
|
44381
44650
|
def update!(**args)
|
|
44382
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)
|
|
44383
44653
|
@auto_create_subnetworks = args[:auto_create_subnetworks] if args.key?(:auto_create_subnetworks)
|
|
44384
44654
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
44385
44655
|
@description = args[:description] if args.key?(:description)
|
|
@@ -57004,8 +57274,8 @@ module Google
|
|
|
57004
57274
|
# @return [String]
|
|
57005
57275
|
attr_accessor :creation_timestamp
|
|
57006
57276
|
|
|
57007
|
-
# Output only. [Output Only]
|
|
57008
|
-
#
|
|
57277
|
+
# Output only. [Output Only] Deletion timestamp of snapshot inRFC3339 text
|
|
57278
|
+
# format.
|
|
57009
57279
|
# Corresponds to the JSON property `deletionTimestamp`
|
|
57010
57280
|
# @return [String]
|
|
57011
57281
|
attr_accessor :deletion_timestamp
|
|
@@ -58613,11 +58883,6 @@ module Google
|
|
|
58613
58883
|
# @return [Array<String>]
|
|
58614
58884
|
attr_accessor :allowed_actions
|
|
58615
58885
|
|
|
58616
|
-
# Whether the boot disk is allowed to be updated with restart.
|
|
58617
|
-
# Corresponds to the JSON property `disruptionMode`
|
|
58618
|
-
# @return [String]
|
|
58619
|
-
attr_accessor :disruption_mode
|
|
58620
|
-
|
|
58621
58886
|
# The list of URLs of one or more instances for which you want to apply
|
|
58622
58887
|
# updates. Each URL can be a full URL or a partial URL, such aszones/[ZONE]/
|
|
58623
58888
|
# instances/[INSTANCE_NAME].
|
|
@@ -58676,7 +58941,6 @@ module Google
|
|
|
58676
58941
|
def update!(**args)
|
|
58677
58942
|
@all_instances = args[:all_instances] if args.key?(:all_instances)
|
|
58678
58943
|
@allowed_actions = args[:allowed_actions] if args.key?(:allowed_actions)
|
|
58679
|
-
@disruption_mode = args[:disruption_mode] if args.key?(:disruption_mode)
|
|
58680
58944
|
@instances = args[:instances] if args.key?(:instances)
|
|
58681
58945
|
@maximal_action = args[:maximal_action] if args.key?(:maximal_action)
|
|
58682
58946
|
@minimal_action = args[:minimal_action] if args.key?(:minimal_action)
|
|
@@ -63762,6 +64026,13 @@ module Google
|
|
|
63762
64026
|
# @return [String]
|
|
63763
64027
|
attr_accessor :host
|
|
63764
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
|
+
|
|
63765
64036
|
# [Output Only] The ID of the sub-block in which the running instance is
|
|
63766
64037
|
# located. Instances in the same sub-block experience lower network latency
|
|
63767
64038
|
# than instances in the same block.
|
|
@@ -63779,6 +64050,7 @@ module Google
|
|
|
63779
64050
|
@block = args[:block] if args.key?(:block)
|
|
63780
64051
|
@cluster = args[:cluster] if args.key?(:cluster)
|
|
63781
64052
|
@host = args[:host] if args.key?(:host)
|
|
64053
|
+
@machine = args[:machine] if args.key?(:machine)
|
|
63782
64054
|
@subblock = args[:subblock] if args.key?(:subblock)
|
|
63783
64055
|
end
|
|
63784
64056
|
end
|
|
@@ -83311,6 +83583,50 @@ module Google
|
|
|
83311
83583
|
end
|
|
83312
83584
|
end
|
|
83313
83585
|
|
|
83586
|
+
# Represents a range of acceptable utilization values.
|
|
83587
|
+
# This message is used to configure range-based scaling policies,
|
|
83588
|
+
# allowing Autoscaler to maintain utilization within a specified range
|
|
83589
|
+
# instead of aiming for a single target point.
|
|
83590
|
+
class UtilizationRange
|
|
83591
|
+
include Google::Apis::Core::Hashable
|
|
83592
|
+
|
|
83593
|
+
# Required. The upper bound of the utilization range. Must be greater or equal
|
|
83594
|
+
# to
|
|
83595
|
+
# min_utilization. This value is required when using range-based scaling.
|
|
83596
|
+
# Scaling out is triggered if the utilization exceeds this value.
|
|
83597
|
+
# Corresponds to the JSON property `maxUtilization`
|
|
83598
|
+
# @return [Float]
|
|
83599
|
+
attr_accessor :max_utilization
|
|
83600
|
+
|
|
83601
|
+
# Required. The lower bound of the utilization range. Must be smaller or equal
|
|
83602
|
+
# to
|
|
83603
|
+
# max_utilization. This value is required when using range-based scaling.
|
|
83604
|
+
# Scaling in is considered only if the utilization drops below this value.
|
|
83605
|
+
# Corresponds to the JSON property `minUtilization`
|
|
83606
|
+
# @return [Float]
|
|
83607
|
+
attr_accessor :min_utilization
|
|
83608
|
+
|
|
83609
|
+
# The target utilization that the autoscaler aims to achieve when scaling
|
|
83610
|
+
# is triggered. This value must be within the range [min_utilization,
|
|
83611
|
+
# max_utilization].
|
|
83612
|
+
# If not specified, this will default to the average of max_utilization and
|
|
83613
|
+
# min_utilization.
|
|
83614
|
+
# Corresponds to the JSON property `utilizationTarget`
|
|
83615
|
+
# @return [Float]
|
|
83616
|
+
attr_accessor :utilization_target
|
|
83617
|
+
|
|
83618
|
+
def initialize(**args)
|
|
83619
|
+
update!(**args)
|
|
83620
|
+
end
|
|
83621
|
+
|
|
83622
|
+
# Update properties of this object
|
|
83623
|
+
def update!(**args)
|
|
83624
|
+
@max_utilization = args[:max_utilization] if args.key?(:max_utilization)
|
|
83625
|
+
@min_utilization = args[:min_utilization] if args.key?(:min_utilization)
|
|
83626
|
+
@utilization_target = args[:utilization_target] if args.key?(:utilization_target)
|
|
83627
|
+
end
|
|
83628
|
+
end
|
|
83629
|
+
|
|
83314
83630
|
# Contain information of Nat mapping for a VM endpoint (i.e., NIC).
|
|
83315
83631
|
class VmEndpointNatMappings
|
|
83316
83632
|
include Google::Apis::Core::Hashable
|
|
@@ -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
|
|
@@ -436,6 +436,18 @@ module Google
|
|
|
436
436
|
include Google::Apis::Core::JsonObjectSupport
|
|
437
437
|
end
|
|
438
438
|
|
|
439
|
+
class AutoscalingPolicySignalAggregation
|
|
440
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
441
|
+
|
|
442
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
443
|
+
end
|
|
444
|
+
|
|
445
|
+
class AutoscalingPolicyTimeAggregation
|
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
447
|
+
|
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
449
|
+
end
|
|
450
|
+
|
|
439
451
|
class Backend
|
|
440
452
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
441
453
|
|
|
@@ -1660,6 +1672,12 @@ module Google
|
|
|
1660
1672
|
include Google::Apis::Core::JsonObjectSupport
|
|
1661
1673
|
end
|
|
1662
1674
|
|
|
1675
|
+
class DynamicCompressionPolicy
|
|
1676
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1677
|
+
|
|
1678
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1679
|
+
end
|
|
1680
|
+
|
|
1663
1681
|
class ErrorInfo
|
|
1664
1682
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1665
1683
|
|
|
@@ -2242,6 +2260,18 @@ module Google
|
|
|
2242
2260
|
include Google::Apis::Core::JsonObjectSupport
|
|
2243
2261
|
end
|
|
2244
2262
|
|
|
2263
|
+
class GlobalFrontendSettings
|
|
2264
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2265
|
+
|
|
2266
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2267
|
+
end
|
|
2268
|
+
|
|
2269
|
+
class GlobalFrontendSettingsPatchResponse
|
|
2270
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2271
|
+
|
|
2272
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2273
|
+
end
|
|
2274
|
+
|
|
2245
2275
|
class GlobalListVmExtensionsResponse
|
|
2246
2276
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2247
2277
|
|
|
@@ -10366,6 +10396,12 @@ module Google
|
|
|
10366
10396
|
include Google::Apis::Core::JsonObjectSupport
|
|
10367
10397
|
end
|
|
10368
10398
|
|
|
10399
|
+
class UtilizationRange
|
|
10400
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
10401
|
+
|
|
10402
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
10403
|
+
end
|
|
10404
|
+
|
|
10369
10405
|
class VmEndpointNatMappings
|
|
10370
10406
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
10371
10407
|
|
|
@@ -11631,6 +11667,12 @@ module Google
|
|
|
11631
11667
|
# @private
|
|
11632
11668
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11633
11669
|
property :predictive_method, as: 'predictiveMethod'
|
|
11670
|
+
property :signal_aggregation, as: 'signalAggregation', class: Google::Apis::ComputeAlpha::AutoscalingPolicySignalAggregation, decorator: Google::Apis::ComputeAlpha::AutoscalingPolicySignalAggregation::Representation
|
|
11671
|
+
|
|
11672
|
+
property :time_aggregation, as: 'timeAggregation', class: Google::Apis::ComputeAlpha::AutoscalingPolicyTimeAggregation, decorator: Google::Apis::ComputeAlpha::AutoscalingPolicyTimeAggregation::Representation
|
|
11673
|
+
|
|
11674
|
+
property :utilization_range, as: 'utilizationRange', class: Google::Apis::ComputeAlpha::UtilizationRange, decorator: Google::Apis::ComputeAlpha::UtilizationRange::Representation
|
|
11675
|
+
|
|
11634
11676
|
property :utilization_target, as: 'utilizationTarget'
|
|
11635
11677
|
end
|
|
11636
11678
|
end
|
|
@@ -11683,6 +11725,23 @@ module Google
|
|
|
11683
11725
|
end
|
|
11684
11726
|
end
|
|
11685
11727
|
|
|
11728
|
+
class AutoscalingPolicySignalAggregation
|
|
11729
|
+
# @private
|
|
11730
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11731
|
+
property :percentile, as: 'percentile'
|
|
11732
|
+
property :statistic, as: 'statistic'
|
|
11733
|
+
end
|
|
11734
|
+
end
|
|
11735
|
+
|
|
11736
|
+
class AutoscalingPolicyTimeAggregation
|
|
11737
|
+
# @private
|
|
11738
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11739
|
+
property :percentile, as: 'percentile'
|
|
11740
|
+
property :statistic, as: 'statistic'
|
|
11741
|
+
property :time_window_sec, as: 'timeWindowSec'
|
|
11742
|
+
end
|
|
11743
|
+
end
|
|
11744
|
+
|
|
11686
11745
|
class Backend
|
|
11687
11746
|
# @private
|
|
11688
11747
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -11987,6 +12046,7 @@ module Google
|
|
|
11987
12046
|
hash :metadatas, as: 'metadatas'
|
|
11988
12047
|
property :name, as: 'name'
|
|
11989
12048
|
property :network, as: 'network'
|
|
12049
|
+
property :network_attachment, as: 'networkAttachment'
|
|
11990
12050
|
property :network_pass_through_lb_traffic_policy, as: 'networkPassThroughLbTrafficPolicy', class: Google::Apis::ComputeAlpha::BackendServiceNetworkPassThroughLbTrafficPolicy, decorator: Google::Apis::ComputeAlpha::BackendServiceNetworkPassThroughLbTrafficPolicy::Representation
|
|
11991
12051
|
|
|
11992
12052
|
property :orchestration_info, as: 'orchestrationInfo', class: Google::Apis::ComputeAlpha::BackendServiceOrchestrationInfo, decorator: Google::Apis::ComputeAlpha::BackendServiceOrchestrationInfo::Representation
|
|
@@ -12005,6 +12065,7 @@ module Google
|
|
|
12005
12065
|
property :self_link, as: 'selfLink'
|
|
12006
12066
|
property :self_link_with_id, as: 'selfLinkWithId'
|
|
12007
12067
|
collection :service_bindings, as: 'serviceBindings'
|
|
12068
|
+
property :service_class_id, as: 'serviceClassId'
|
|
12008
12069
|
property :service_lb_policy, as: 'serviceLbPolicy'
|
|
12009
12070
|
property :session_affinity, as: 'sessionAffinity'
|
|
12010
12071
|
property :strong_session_affinity_cookie, as: 'strongSessionAffinityCookie', class: Google::Apis::ComputeAlpha::BackendServiceHttpCookie, decorator: Google::Apis::ComputeAlpha::BackendServiceHttpCookie::Representation
|
|
@@ -13940,6 +14001,13 @@ module Google
|
|
|
13940
14001
|
end
|
|
13941
14002
|
end
|
|
13942
14003
|
|
|
14004
|
+
class DynamicCompressionPolicy
|
|
14005
|
+
# @private
|
|
14006
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
14007
|
+
property :compression_mode, as: 'compressionMode'
|
|
14008
|
+
end
|
|
14009
|
+
end
|
|
14010
|
+
|
|
13943
14011
|
class ErrorInfo
|
|
13944
14012
|
# @private
|
|
13945
14013
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -14213,6 +14281,7 @@ module Google
|
|
|
14213
14281
|
class FirewallPolicy
|
|
14214
14282
|
# @private
|
|
14215
14283
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
14284
|
+
property :apply_security_profile_fallback_action, as: 'applySecurityProfileFallbackAction'
|
|
14216
14285
|
collection :associations, as: 'associations', class: Google::Apis::ComputeAlpha::FirewallPolicyAssociation, decorator: Google::Apis::ComputeAlpha::FirewallPolicyAssociation::Representation
|
|
14217
14286
|
|
|
14218
14287
|
property :creation_timestamp, as: 'creationTimestamp'
|
|
@@ -14493,6 +14562,7 @@ module Google
|
|
|
14493
14562
|
|
|
14494
14563
|
property :name, as: 'name'
|
|
14495
14564
|
property :network, as: 'network'
|
|
14565
|
+
property :network_attachment, as: 'networkAttachment'
|
|
14496
14566
|
property :network_tier, as: 'networkTier'
|
|
14497
14567
|
property :no_automate_dns_zone, as: 'noAutomateDnsZone'
|
|
14498
14568
|
property :parent_forwarding_rule, as: 'parentForwardingRule'
|
|
@@ -14503,6 +14573,7 @@ module Google
|
|
|
14503
14573
|
property :region, as: 'region'
|
|
14504
14574
|
property :self_link, as: 'selfLink'
|
|
14505
14575
|
property :self_link_with_id, as: 'selfLinkWithId'
|
|
14576
|
+
property :service_class_id, as: 'serviceClassId'
|
|
14506
14577
|
collection :service_directory_registrations, as: 'serviceDirectoryRegistrations', class: Google::Apis::ComputeAlpha::ForwardingRuleServiceDirectoryRegistration, decorator: Google::Apis::ComputeAlpha::ForwardingRuleServiceDirectoryRegistration::Representation
|
|
14507
14578
|
|
|
14508
14579
|
property :service_label, as: 'serviceLabel'
|
|
@@ -15055,6 +15126,27 @@ module Google
|
|
|
15055
15126
|
end
|
|
15056
15127
|
end
|
|
15057
15128
|
|
|
15129
|
+
class GlobalFrontendSettings
|
|
15130
|
+
# @private
|
|
15131
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
15132
|
+
property :bundle_type, as: 'bundleType'
|
|
15133
|
+
property :creation_timestamp, as: 'creationTimestamp'
|
|
15134
|
+
property :description, as: 'description'
|
|
15135
|
+
property :etag, as: 'etag'
|
|
15136
|
+
property :id, :numeric_string => true, as: 'id'
|
|
15137
|
+
property :name, as: 'name'
|
|
15138
|
+
property :self_link, as: 'selfLink'
|
|
15139
|
+
end
|
|
15140
|
+
end
|
|
15141
|
+
|
|
15142
|
+
class GlobalFrontendSettingsPatchResponse
|
|
15143
|
+
# @private
|
|
15144
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
15145
|
+
property :operation, as: 'operation', class: Google::Apis::ComputeAlpha::Operation, decorator: Google::Apis::ComputeAlpha::Operation::Representation
|
|
15146
|
+
|
|
15147
|
+
end
|
|
15148
|
+
end
|
|
15149
|
+
|
|
15058
15150
|
class GlobalListVmExtensionsResponse
|
|
15059
15151
|
# @private
|
|
15060
15152
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -16505,6 +16597,8 @@ module Google
|
|
|
16505
16597
|
|
|
16506
16598
|
property :cors_policy, as: 'corsPolicy', class: Google::Apis::ComputeAlpha::CorsPolicy, decorator: Google::Apis::ComputeAlpha::CorsPolicy::Representation
|
|
16507
16599
|
|
|
16600
|
+
property :dynamic_compression_policy, as: 'dynamicCompressionPolicy', class: Google::Apis::ComputeAlpha::DynamicCompressionPolicy, decorator: Google::Apis::ComputeAlpha::DynamicCompressionPolicy::Representation
|
|
16601
|
+
|
|
16508
16602
|
property :fault_injection_policy, as: 'faultInjectionPolicy', class: Google::Apis::ComputeAlpha::HttpFaultInjection, decorator: Google::Apis::ComputeAlpha::HttpFaultInjection::Representation
|
|
16509
16603
|
|
|
16510
16604
|
property :image_optimization_policy, as: 'imageOptimizationPolicy', class: Google::Apis::ComputeAlpha::ImageOptimizationPolicy, decorator: Google::Apis::ComputeAlpha::ImageOptimizationPolicy::Representation
|
|
@@ -17622,7 +17716,6 @@ module Google
|
|
|
17622
17716
|
# @private
|
|
17623
17717
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
17624
17718
|
collection :allowed_actions, as: 'allowedActions'
|
|
17625
|
-
property :disruption_mode, as: 'disruptionMode'
|
|
17626
17719
|
property :instance_redistribution_type, as: 'instanceRedistributionType'
|
|
17627
17720
|
property :max_surge, as: 'maxSurge', class: Google::Apis::ComputeAlpha::FixedOrPercent, decorator: Google::Apis::ComputeAlpha::FixedOrPercent::Representation
|
|
17628
17721
|
|
|
@@ -17659,7 +17752,6 @@ module Google
|
|
|
17659
17752
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
17660
17753
|
property :all_instances, as: 'allInstances'
|
|
17661
17754
|
collection :allowed_actions, as: 'allowedActions'
|
|
17662
|
-
property :disruption_mode, as: 'disruptionMode'
|
|
17663
17755
|
collection :instances, as: 'instances'
|
|
17664
17756
|
property :maximal_action, as: 'maximalAction'
|
|
17665
17757
|
property :minimal_action, as: 'minimalAction'
|
|
@@ -19624,6 +19716,8 @@ module Google
|
|
|
19624
19716
|
# @private
|
|
19625
19717
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
19626
19718
|
property :city, as: 'city'
|
|
19719
|
+
property :max_dynamic_path_bandwidth_gbps, :numeric_string => true, as: 'maxDynamicPathBandwidthGbps'
|
|
19720
|
+
property :max_fixed_path_bandwidth_gbps, :numeric_string => true, as: 'maxFixedPathBandwidthGbps'
|
|
19627
19721
|
property :max_single_flow_gbps, as: 'maxSingleFlowGbps'
|
|
19628
19722
|
end
|
|
19629
19723
|
end
|
|
@@ -20951,6 +21045,7 @@ module Google
|
|
|
20951
21045
|
# @private
|
|
20952
21046
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
20953
21047
|
property :i_pv4_range, as: 'IPv4Range'
|
|
21048
|
+
collection :additional_tags, as: 'additionalTags'
|
|
20954
21049
|
property :auto_create_subnetworks, as: 'autoCreateSubnetworks'
|
|
20955
21050
|
property :creation_timestamp, as: 'creationTimestamp'
|
|
20956
21051
|
property :description, as: 'description'
|
|
@@ -24357,7 +24452,6 @@ module Google
|
|
|
24357
24452
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
24358
24453
|
property :all_instances, as: 'allInstances'
|
|
24359
24454
|
collection :allowed_actions, as: 'allowedActions'
|
|
24360
|
-
property :disruption_mode, as: 'disruptionMode'
|
|
24361
24455
|
collection :instances, as: 'instances'
|
|
24362
24456
|
property :maximal_action, as: 'maximalAction'
|
|
24363
24457
|
property :minimal_action, as: 'minimalAction'
|
|
@@ -25705,6 +25799,7 @@ module Google
|
|
|
25705
25799
|
property :block, as: 'block'
|
|
25706
25800
|
property :cluster, as: 'cluster'
|
|
25707
25801
|
property :host, as: 'host'
|
|
25802
|
+
property :machine, as: 'machine'
|
|
25708
25803
|
property :subblock, as: 'subblock'
|
|
25709
25804
|
end
|
|
25710
25805
|
end
|
|
@@ -30257,6 +30352,15 @@ module Google
|
|
|
30257
30352
|
end
|
|
30258
30353
|
end
|
|
30259
30354
|
|
|
30355
|
+
class UtilizationRange
|
|
30356
|
+
# @private
|
|
30357
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
30358
|
+
property :max_utilization, as: 'maxUtilization'
|
|
30359
|
+
property :min_utilization, as: 'minUtilization'
|
|
30360
|
+
property :utilization_target, as: 'utilizationTarget'
|
|
30361
|
+
end
|
|
30362
|
+
end
|
|
30363
|
+
|
|
30260
30364
|
class VmEndpointNatMappings
|
|
30261
30365
|
# @private
|
|
30262
30366
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -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
|
|
@@ -11242,6 +11242,78 @@ module Google
|
|
|
11242
11242
|
execute_or_queue_command(command, &block)
|
|
11243
11243
|
end
|
|
11244
11244
|
|
|
11245
|
+
# Gets the Global Frontend Billing Bundle Settings for a project.
|
|
11246
|
+
# @param [String] project
|
|
11247
|
+
# @param [String] fields
|
|
11248
|
+
# Selector specifying which fields to include in a partial response.
|
|
11249
|
+
# @param [String] quota_user
|
|
11250
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
11251
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
11252
|
+
# @param [String] user_ip
|
|
11253
|
+
# Legacy name for parameter that has been superseded by `quotaUser`.
|
|
11254
|
+
# @param [Google::Apis::RequestOptions] options
|
|
11255
|
+
# Request-specific options
|
|
11256
|
+
#
|
|
11257
|
+
# @yield [result, err] Result & error if block supplied
|
|
11258
|
+
# @yieldparam result [Google::Apis::ComputeAlpha::GlobalFrontendSettings] parsed result object
|
|
11259
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
11260
|
+
#
|
|
11261
|
+
# @return [Google::Apis::ComputeAlpha::GlobalFrontendSettings]
|
|
11262
|
+
#
|
|
11263
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
11264
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
11265
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
11266
|
+
def get_global_frontend_setting(project, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
|
11267
|
+
command = make_simple_command(:get, 'projects/{project}/global/globalFrontendSettings', options)
|
|
11268
|
+
command.response_representation = Google::Apis::ComputeAlpha::GlobalFrontendSettings::Representation
|
|
11269
|
+
command.response_class = Google::Apis::ComputeAlpha::GlobalFrontendSettings
|
|
11270
|
+
command.params['project'] = project unless project.nil?
|
|
11271
|
+
command.query['fields'] = fields unless fields.nil?
|
|
11272
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
11273
|
+
command.query['userIp'] = user_ip unless user_ip.nil?
|
|
11274
|
+
execute_or_queue_command(command, &block)
|
|
11275
|
+
end
|
|
11276
|
+
|
|
11277
|
+
# Updates the Global Frontend Billing Bundle Settings for a project.
|
|
11278
|
+
# @param [String] project
|
|
11279
|
+
# @param [Google::Apis::ComputeAlpha::GlobalFrontendSettings] global_frontend_settings_object
|
|
11280
|
+
# @param [String] request_id
|
|
11281
|
+
# @param [String] update_mask
|
|
11282
|
+
# e.g., "type"
|
|
11283
|
+
# @param [String] fields
|
|
11284
|
+
# Selector specifying which fields to include in a partial response.
|
|
11285
|
+
# @param [String] quota_user
|
|
11286
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
11287
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
11288
|
+
# @param [String] user_ip
|
|
11289
|
+
# Legacy name for parameter that has been superseded by `quotaUser`.
|
|
11290
|
+
# @param [Google::Apis::RequestOptions] options
|
|
11291
|
+
# Request-specific options
|
|
11292
|
+
#
|
|
11293
|
+
# @yield [result, err] Result & error if block supplied
|
|
11294
|
+
# @yieldparam result [Google::Apis::ComputeAlpha::GlobalFrontendSettingsPatchResponse] parsed result object
|
|
11295
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
11296
|
+
#
|
|
11297
|
+
# @return [Google::Apis::ComputeAlpha::GlobalFrontendSettingsPatchResponse]
|
|
11298
|
+
#
|
|
11299
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
11300
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
11301
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
11302
|
+
def patch_global_frontend_setting(project, global_frontend_settings_object = nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
|
11303
|
+
command = make_simple_command(:patch, 'projects/{project}/global/globalFrontendSettings', options)
|
|
11304
|
+
command.request_representation = Google::Apis::ComputeAlpha::GlobalFrontendSettings::Representation
|
|
11305
|
+
command.request_object = global_frontend_settings_object
|
|
11306
|
+
command.response_representation = Google::Apis::ComputeAlpha::GlobalFrontendSettingsPatchResponse::Representation
|
|
11307
|
+
command.response_class = Google::Apis::ComputeAlpha::GlobalFrontendSettingsPatchResponse
|
|
11308
|
+
command.params['project'] = project unless project.nil?
|
|
11309
|
+
command.query['requestId'] = request_id unless request_id.nil?
|
|
11310
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
|
11311
|
+
command.query['fields'] = fields unless fields.nil?
|
|
11312
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
11313
|
+
command.query['userIp'] = user_ip unless user_ip.nil?
|
|
11314
|
+
execute_or_queue_command(command, &block)
|
|
11315
|
+
end
|
|
11316
|
+
|
|
11245
11317
|
# Attach a network endpoint to the specified network endpoint group.
|
|
11246
11318
|
# @param [String] project
|
|
11247
11319
|
# Project ID for this request.
|
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:
|