google-apis-compute_alpha 0.70.0 → 0.71.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: 124b5bf20876a812516c5b7a9735d7d0045b998e7f49a4a4996ff23d38cf6246
|
4
|
+
data.tar.gz: 6a0f807ddb3a12f90928b1ce45b0e35065211d9496008f4ccd0149b59edbd592
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f93d2e74a078091f8f1f837c86e42314a0678036e7a9debe98bacb80af133354c65a6e67abb4cffd82d5f7ae0e4538544d38e60799b5af193012e29306918dff
|
7
|
+
data.tar.gz: d1d78697b8fb848645351fc0741c3e7f91d65e7a4af43c774f7385b041cdded62389baf8028652d206bf201b2d4758546fc957f7e96e424c7a0ba5012c68dec6
|
data/CHANGELOG.md
CHANGED
@@ -665,7 +665,7 @@ module Google
|
|
665
665
|
attr_accessor :id
|
666
666
|
|
667
667
|
# The IP version that will be used by this address. Valid options are IPV4 or
|
668
|
-
# IPV6.
|
668
|
+
# IPV6.
|
669
669
|
# Corresponds to the JSON property `ipVersion`
|
670
670
|
# @return [String]
|
671
671
|
attr_accessor :ip_version
|
@@ -10943,6 +10943,32 @@ module Google
|
|
10943
10943
|
class FutureReservation
|
10944
10944
|
include Google::Apis::Core::Hashable
|
10945
10945
|
|
10946
|
+
# Future timestamp when the FR auto-created reservations will be deleted by GCE.
|
10947
|
+
# Format of this field must be a valid href="https://www.ietf.org/rfc/rfc3339.
|
10948
|
+
# txt">RFC3339 value.
|
10949
|
+
# Corresponds to the JSON property `autoCreatedReservationsDeleteTime`
|
10950
|
+
# @return [String]
|
10951
|
+
attr_accessor :auto_created_reservations_delete_time
|
10952
|
+
|
10953
|
+
# A Duration represents a fixed-length span of time represented as a count of
|
10954
|
+
# seconds and fractions of seconds at nanosecond resolution. It is independent
|
10955
|
+
# of any calendar and concepts like "day" or "month". Range is approximately 10,
|
10956
|
+
# 000 years.
|
10957
|
+
# Corresponds to the JSON property `autoCreatedReservationsDuration`
|
10958
|
+
# @return [Google::Apis::ComputeAlpha::Duration]
|
10959
|
+
attr_accessor :auto_created_reservations_duration
|
10960
|
+
|
10961
|
+
# Setting for enabling or disabling automatic deletion for auto-created
|
10962
|
+
# reservation. If omitted or set to true, auto-created reservations will be
|
10963
|
+
# deleted at Future Reservation's end time (default) or at user's defined
|
10964
|
+
# timestamp if any of the [auto_created_reservations_delete_time,
|
10965
|
+
# auto_created_reservations_duration] values is specified. For keeping auto-
|
10966
|
+
# created reservation indefinitely, this value should be set to false.
|
10967
|
+
# Corresponds to the JSON property `autoDeleteAutoCreatedReservations`
|
10968
|
+
# @return [Boolean]
|
10969
|
+
attr_accessor :auto_delete_auto_created_reservations
|
10970
|
+
alias_method :auto_delete_auto_created_reservations?, :auto_delete_auto_created_reservations
|
10971
|
+
|
10946
10972
|
# [Output Only] The creation timestamp for this future reservation in RFC3339
|
10947
10973
|
# text format.
|
10948
10974
|
# Corresponds to the JSON property `creationTimestamp`
|
@@ -11032,6 +11058,9 @@ module Google
|
|
11032
11058
|
|
11033
11059
|
# Update properties of this object
|
11034
11060
|
def update!(**args)
|
11061
|
+
@auto_created_reservations_delete_time = args[:auto_created_reservations_delete_time] if args.key?(:auto_created_reservations_delete_time)
|
11062
|
+
@auto_created_reservations_duration = args[:auto_created_reservations_duration] if args.key?(:auto_created_reservations_duration)
|
11063
|
+
@auto_delete_auto_created_reservations = args[:auto_delete_auto_created_reservations] if args.key?(:auto_delete_auto_created_reservations)
|
11035
11064
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
11036
11065
|
@description = args[:description] if args.key?(:description)
|
11037
11066
|
@id = args[:id] if args.key?(:id)
|
@@ -16994,7 +17023,11 @@ module Google
|
|
16994
17023
|
class InstanceGroupManagerInstanceLifecyclePolicy
|
16995
17024
|
include Google::Apis::Core::Hashable
|
16996
17025
|
|
16997
|
-
#
|
17026
|
+
# The action that a MIG performs on a failed or an unhealthy VM. A VM is marked
|
17027
|
+
# as unhealthy when the application running on that VM fails a health check.
|
17028
|
+
# Valid values are - REPAIR (default): MIG automatically repairs a failed or an
|
17029
|
+
# unhealthy VM by recreating it. For more information, see About repairing VMs
|
17030
|
+
# in a MIG. - DO_NOTHING: MIG does not repair a failed or an unhealthy VM.
|
16998
17031
|
# Corresponds to the JSON property `defaultActionOnFailure`
|
16999
17032
|
# @return [String]
|
17000
17033
|
attr_accessor :default_action_on_failure
|
@@ -17751,12 +17784,12 @@ module Google
|
|
17751
17784
|
attr_accessor :minimal_action
|
17752
17785
|
|
17753
17786
|
# Most disruptive action that is allowed to be taken on an instance. You can
|
17754
|
-
# specify either NONE to forbid any actions, REFRESH to
|
17755
|
-
#
|
17756
|
-
# without instance replacing or REPLACE to allow all possible actions.
|
17757
|
-
# Updater determines that the minimal update action needed is more
|
17758
|
-
# than most disruptive allowed action you specify it will not perform
|
17759
|
-
# at all.
|
17787
|
+
# specify either NONE to forbid any actions, REFRESH to avoid restarting the VM
|
17788
|
+
# and to limit disruption as much as possible. RESTART to allow actions that can
|
17789
|
+
# be applied without instance replacing or REPLACE to allow all possible actions.
|
17790
|
+
# If the Updater determines that the minimal update action needed is more
|
17791
|
+
# disruptive than most disruptive allowed action you specify it will not perform
|
17792
|
+
# the update at all.
|
17760
17793
|
# Corresponds to the JSON property `mostDisruptiveAllowedAction`
|
17761
17794
|
# @return [String]
|
17762
17795
|
attr_accessor :most_disruptive_allowed_action
|
@@ -17883,20 +17916,22 @@ module Google
|
|
17883
17916
|
|
17884
17917
|
# The minimal action that you want to perform on each instance during the update:
|
17885
17918
|
# - REPLACE: At minimum, delete the instance and create it again. - RESTART:
|
17886
|
-
# Stop the instance and start it again. - REFRESH: Do not stop the instance
|
17887
|
-
# NONE: Do not disrupt the instance at
|
17888
|
-
# NONE. If your update requires a more
|
17889
|
-
# flag, the necessary action is
|
17919
|
+
# Stop the instance and start it again. - REFRESH: Do not stop the instance and
|
17920
|
+
# limit disruption as much as possible. - NONE: Do not disrupt the instance at
|
17921
|
+
# all. By default, the minimum action is NONE. If your update requires a more
|
17922
|
+
# disruptive action than you set with this flag, the necessary action is
|
17923
|
+
# performed to execute the update.
|
17890
17924
|
# Corresponds to the JSON property `minimalAction`
|
17891
17925
|
# @return [String]
|
17892
17926
|
attr_accessor :minimal_action
|
17893
17927
|
|
17894
17928
|
# The most disruptive action that you want to perform on each instance during
|
17895
17929
|
# the update: - REPLACE: Delete the instance and create it again. - RESTART:
|
17896
|
-
# Stop the instance and start it again. - REFRESH: Do not stop the instance
|
17897
|
-
# NONE: Do not disrupt the instance at
|
17898
|
-
# allowed action is REPLACE. If your update
|
17899
|
-
# than you set with this flag, the update
|
17930
|
+
# Stop the instance and start it again. - REFRESH: Do not stop the instance and
|
17931
|
+
# limit disruption as much as possible. - NONE: Do not disrupt the instance at
|
17932
|
+
# all. By default, the most disruptive allowed action is REPLACE. If your update
|
17933
|
+
# requires a more disruptive action than you set with this flag, the update
|
17934
|
+
# request will fail.
|
17900
17935
|
# Corresponds to the JSON property `mostDisruptiveAllowedAction`
|
17901
17936
|
# @return [String]
|
17902
17937
|
attr_accessor :most_disruptive_allowed_action
|
@@ -33370,7 +33405,7 @@ module Google
|
|
33370
33405
|
# @return [String]
|
33371
33406
|
attr_accessor :description
|
33372
33407
|
|
33373
|
-
# The
|
33408
|
+
# The address to be used for reverse DNS verification.
|
33374
33409
|
# Corresponds to the JSON property `dnsVerificationIp`
|
33375
33410
|
# @return [String]
|
33376
33411
|
attr_accessor :dns_verification_ip
|
@@ -33392,7 +33427,7 @@ module Google
|
|
33392
33427
|
# @return [Fixnum]
|
33393
33428
|
attr_accessor :id
|
33394
33429
|
|
33395
|
-
# The
|
33430
|
+
# The address range, in CIDR format, represented by this public advertised
|
33396
33431
|
# prefix.
|
33397
33432
|
# Corresponds to the JSON property `ipCidrRange`
|
33398
33433
|
# @return [String]
|
@@ -35742,20 +35777,22 @@ module Google
|
|
35742
35777
|
|
35743
35778
|
# The minimal action that you want to perform on each instance during the update:
|
35744
35779
|
# - REPLACE: At minimum, delete the instance and create it again. - RESTART:
|
35745
|
-
# Stop the instance and start it again. - REFRESH: Do not stop the instance
|
35746
|
-
# NONE: Do not disrupt the instance at
|
35747
|
-
# NONE. If your update requires a more
|
35748
|
-
# flag, the necessary action is
|
35780
|
+
# Stop the instance and start it again. - REFRESH: Do not stop the instance and
|
35781
|
+
# limit disruption as much as possible. - NONE: Do not disrupt the instance at
|
35782
|
+
# all. By default, the minimum action is NONE. If your update requires a more
|
35783
|
+
# disruptive action than you set with this flag, the necessary action is
|
35784
|
+
# performed to execute the update.
|
35749
35785
|
# Corresponds to the JSON property `minimalAction`
|
35750
35786
|
# @return [String]
|
35751
35787
|
attr_accessor :minimal_action
|
35752
35788
|
|
35753
35789
|
# The most disruptive action that you want to perform on each instance during
|
35754
35790
|
# the update: - REPLACE: Delete the instance and create it again. - RESTART:
|
35755
|
-
# Stop the instance and start it again. - REFRESH: Do not stop the instance
|
35756
|
-
# NONE: Do not disrupt the instance at
|
35757
|
-
# allowed action is REPLACE. If your update
|
35758
|
-
# than you set with this flag, the update
|
35791
|
+
# Stop the instance and start it again. - REFRESH: Do not stop the instance and
|
35792
|
+
# limit disruption as much as possible. - NONE: Do not disrupt the instance at
|
35793
|
+
# all. By default, the most disruptive allowed action is REPLACE. If your update
|
35794
|
+
# requires a more disruptive action than you set with this flag, the update
|
35795
|
+
# request will fail.
|
35759
35796
|
# Corresponds to the JSON property `mostDisruptiveAllowedAction`
|
35760
35797
|
# @return [String]
|
35761
35798
|
attr_accessor :most_disruptive_allowed_action
|
@@ -36825,6 +36862,20 @@ module Google
|
|
36825
36862
|
# @return [String]
|
36826
36863
|
attr_accessor :creation_timestamp
|
36827
36864
|
|
36865
|
+
# A Duration represents a fixed-length span of time represented as a count of
|
36866
|
+
# seconds and fractions of seconds at nanosecond resolution. It is independent
|
36867
|
+
# of any calendar and concepts like "day" or "month". Range is approximately 10,
|
36868
|
+
# 000 years.
|
36869
|
+
# Corresponds to the JSON property `deleteAfterDuration`
|
36870
|
+
# @return [Google::Apis::ComputeAlpha::Duration]
|
36871
|
+
attr_accessor :delete_after_duration
|
36872
|
+
|
36873
|
+
# Absolute time in future when the reservation will be auto-deleted by GCE.
|
36874
|
+
# Timestamp is represented in RFC3339 text format.
|
36875
|
+
# Corresponds to the JSON property `deleteAtTime`
|
36876
|
+
# @return [String]
|
36877
|
+
attr_accessor :delete_at_time
|
36878
|
+
|
36828
36879
|
# An optional description of this resource. Provide this property when you
|
36829
36880
|
# create the resource.
|
36830
36881
|
# Corresponds to the JSON property `description`
|
@@ -36921,6 +36972,8 @@ module Google
|
|
36921
36972
|
@aggregate_reservation = args[:aggregate_reservation] if args.key?(:aggregate_reservation)
|
36922
36973
|
@commitment = args[:commitment] if args.key?(:commitment)
|
36923
36974
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
36975
|
+
@delete_after_duration = args[:delete_after_duration] if args.key?(:delete_after_duration)
|
36976
|
+
@delete_at_time = args[:delete_at_time] if args.key?(:delete_at_time)
|
36924
36977
|
@description = args[:description] if args.key?(:description)
|
36925
36978
|
@id = args[:id] if args.key?(:id)
|
36926
36979
|
@kind = args[:kind] if args.key?(:kind)
|
@@ -43400,6 +43453,11 @@ module Google
|
|
43400
43453
|
class ServiceAttachmentConnectedEndpoint
|
43401
43454
|
include Google::Apis::Core::Hashable
|
43402
43455
|
|
43456
|
+
# The url of the consumer network.
|
43457
|
+
# Corresponds to the JSON property `consumerNetwork`
|
43458
|
+
# @return [String]
|
43459
|
+
attr_accessor :consumer_network
|
43460
|
+
|
43403
43461
|
# The url of a connected endpoint.
|
43404
43462
|
# Corresponds to the JSON property `endpoint`
|
43405
43463
|
# @return [String]
|
@@ -43421,6 +43479,7 @@ module Google
|
|
43421
43479
|
|
43422
43480
|
# Update properties of this object
|
43423
43481
|
def update!(**args)
|
43482
|
+
@consumer_network = args[:consumer_network] if args.key?(:consumer_network)
|
43424
43483
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
43425
43484
|
@psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
|
43426
43485
|
@status = args[:status] if args.key?(:status)
|
@@ -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.71.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230610"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -9653,6 +9653,10 @@ module Google
|
|
9653
9653
|
class FutureReservation
|
9654
9654
|
# @private
|
9655
9655
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9656
|
+
property :auto_created_reservations_delete_time, as: 'autoCreatedReservationsDeleteTime'
|
9657
|
+
property :auto_created_reservations_duration, as: 'autoCreatedReservationsDuration', class: Google::Apis::ComputeAlpha::Duration, decorator: Google::Apis::ComputeAlpha::Duration::Representation
|
9658
|
+
|
9659
|
+
property :auto_delete_auto_created_reservations, as: 'autoDeleteAutoCreatedReservations'
|
9656
9660
|
property :creation_timestamp, as: 'creationTimestamp'
|
9657
9661
|
property :description, as: 'description'
|
9658
9662
|
property :id, :numeric_string => true, as: 'id'
|
@@ -16239,6 +16243,9 @@ module Google
|
|
16239
16243
|
|
16240
16244
|
property :commitment, as: 'commitment'
|
16241
16245
|
property :creation_timestamp, as: 'creationTimestamp'
|
16246
|
+
property :delete_after_duration, as: 'deleteAfterDuration', class: Google::Apis::ComputeAlpha::Duration, decorator: Google::Apis::ComputeAlpha::Duration::Representation
|
16247
|
+
|
16248
|
+
property :delete_at_time, as: 'deleteAtTime'
|
16242
16249
|
property :description, as: 'description'
|
16243
16250
|
property :id, :numeric_string => true, as: 'id'
|
16244
16251
|
property :kind, as: 'kind'
|
@@ -17860,6 +17867,7 @@ module Google
|
|
17860
17867
|
class ServiceAttachmentConnectedEndpoint
|
17861
17868
|
# @private
|
17862
17869
|
class Representation < Google::Apis::Core::JsonRepresentation
|
17870
|
+
property :consumer_network, as: 'consumerNetwork'
|
17863
17871
|
property :endpoint, as: 'endpoint'
|
17864
17872
|
property :psc_connection_id, :numeric_string => true, as: 'pscConnectionId'
|
17865
17873
|
property :status, as: 'status'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.71.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-06-
|
11
|
+
date: 2023-06-25 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_alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.71.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|