google-apis-compute_alpha 0.32.0 → 0.33.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: 045d64a54ed57bfb077cddbe7ff027301924f5b58ecf0f1b97e9a57ec46cc143
|
4
|
+
data.tar.gz: bb24390b6289b8c3abcf966e2b8d3beb16c7c05ebb3683d5bd2852b95ccf5b3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c4dc2ae28ea1aea8334e1893cb15033736eccc917c0b94de51bbb8b3b1b78442b291ab4c3d2a8b254d61758bf20c3301468f975e01eb572e5dfbf292fea9791
|
7
|
+
data.tar.gz: '02799ebe0e8dbb23706986cd6e934e1440b5b62935f968e0c85670a0e7b12f04ecc71391160062fb134f778a3a0f151a58e600883c23394d9d3a53101fe2c4b0'
|
data/CHANGELOG.md
CHANGED
@@ -15291,7 +15291,7 @@ module Google
|
|
15291
15291
|
# @return [String]
|
15292
15292
|
attr_accessor :instance_group
|
15293
15293
|
|
15294
|
-
#
|
15294
|
+
# The repair policy for this managed instance group.
|
15295
15295
|
# Corresponds to the JSON property `instanceLifecyclePolicy`
|
15296
15296
|
# @return [Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceLifecyclePolicy]
|
15297
15297
|
attr_accessor :instance_lifecycle_policy
|
@@ -15748,11 +15748,6 @@ module Google
|
|
15748
15748
|
# @return [Google::Apis::ComputeAlpha::FixedOrPercent]
|
15749
15749
|
attr_accessor :max_unavailable
|
15750
15750
|
|
15751
|
-
#
|
15752
|
-
# Corresponds to the JSON property `updateInstances`
|
15753
|
-
# @return [String]
|
15754
|
-
attr_accessor :update_instances
|
15755
|
-
|
15756
15751
|
def initialize(**args)
|
15757
15752
|
update!(**args)
|
15758
15753
|
end
|
@@ -15763,7 +15758,6 @@ module Google
|
|
15763
15758
|
@health_check = args[:health_check] if args.key?(:health_check)
|
15764
15759
|
@initial_delay_sec = args[:initial_delay_sec] if args.key?(:initial_delay_sec)
|
15765
15760
|
@max_unavailable = args[:max_unavailable] if args.key?(:max_unavailable)
|
15766
|
-
@update_instances = args[:update_instances] if args.key?(:update_instances)
|
15767
15761
|
end
|
15768
15762
|
end
|
15769
15763
|
|
@@ -15796,6 +15790,16 @@ module Google
|
|
15796
15790
|
class InstanceGroupManagerInstanceLifecyclePolicy
|
15797
15791
|
include Google::Apis::Core::Hashable
|
15798
15792
|
|
15793
|
+
# A bit indicating whether to forcefully apply the group's latest configuration
|
15794
|
+
# when repairing a VM. Valid options are: - NO (default): If configuration
|
15795
|
+
# updates are available, they are not forcefully applied during repair. However,
|
15796
|
+
# if you've set up a proactive type of update policy, then configuration updates
|
15797
|
+
# are applied as usual. - YES: If configuration updates are available, they are
|
15798
|
+
# applied during repair.
|
15799
|
+
# Corresponds to the JSON property `forceUpdateOnRepair`
|
15800
|
+
# @return [String]
|
15801
|
+
attr_accessor :force_update_on_repair
|
15802
|
+
|
15799
15803
|
# The configuration for metadata based readiness signal sent by the instance
|
15800
15804
|
# during initialization when stopping / suspending an instance. The Instance
|
15801
15805
|
# Group Manager will wait for a signal that indicates successful initialization
|
@@ -15816,6 +15820,7 @@ module Google
|
|
15816
15820
|
|
15817
15821
|
# Update properties of this object
|
15818
15822
|
def update!(**args)
|
15823
|
+
@force_update_on_repair = args[:force_update_on_repair] if args.key?(:force_update_on_repair)
|
15819
15824
|
@metadata_based_readiness_signal = args[:metadata_based_readiness_signal] if args.key?(:metadata_based_readiness_signal)
|
15820
15825
|
end
|
15821
15826
|
end
|
@@ -20172,6 +20177,16 @@ module Google
|
|
20172
20177
|
# @return [Array<Google::Apis::ComputeAlpha::InterconnectDiagnosticsArpEntry>]
|
20173
20178
|
attr_accessor :arp_caches
|
20174
20179
|
|
20180
|
+
# The aggregation type of the bundle interface.
|
20181
|
+
# Corresponds to the JSON property `bundleAggregationType`
|
20182
|
+
# @return [String]
|
20183
|
+
attr_accessor :bundle_aggregation_type
|
20184
|
+
|
20185
|
+
# The operational status of the bundle interface.
|
20186
|
+
# Corresponds to the JSON property `bundleOperationalStatus`
|
20187
|
+
# @return [String]
|
20188
|
+
attr_accessor :bundle_operational_status
|
20189
|
+
|
20175
20190
|
# A list of InterconnectDiagnostics.LinkStatus objects, describing the status
|
20176
20191
|
# for each link on the Interconnect.
|
20177
20192
|
# Corresponds to the JSON property `links`
|
@@ -20190,6 +20205,8 @@ module Google
|
|
20190
20205
|
# Update properties of this object
|
20191
20206
|
def update!(**args)
|
20192
20207
|
@arp_caches = args[:arp_caches] if args.key?(:arp_caches)
|
20208
|
+
@bundle_aggregation_type = args[:bundle_aggregation_type] if args.key?(:bundle_aggregation_type)
|
20209
|
+
@bundle_operational_status = args[:bundle_operational_status] if args.key?(:bundle_operational_status)
|
20193
20210
|
@links = args[:links] if args.key?(:links)
|
20194
20211
|
@mac_address = args[:mac_address] if args.key?(:mac_address)
|
20195
20212
|
end
|
@@ -20318,6 +20335,11 @@ module Google
|
|
20318
20335
|
# @return [Google::Apis::ComputeAlpha::InterconnectDiagnosticsMacsecStatus]
|
20319
20336
|
attr_accessor :macsec
|
20320
20337
|
|
20338
|
+
# The operational status of the link.
|
20339
|
+
# Corresponds to the JSON property `operationalStatus`
|
20340
|
+
# @return [String]
|
20341
|
+
attr_accessor :operational_status
|
20342
|
+
|
20321
20343
|
# An InterconnectDiagnostics.LinkOpticalPower object, describing the current
|
20322
20344
|
# value and status of the received light level.
|
20323
20345
|
# Corresponds to the JSON property `receivingOpticalPower`
|
@@ -20341,6 +20363,7 @@ module Google
|
|
20341
20363
|
@google_demarc = args[:google_demarc] if args.key?(:google_demarc)
|
20342
20364
|
@lacp_status = args[:lacp_status] if args.key?(:lacp_status)
|
20343
20365
|
@macsec = args[:macsec] if args.key?(:macsec)
|
20366
|
+
@operational_status = args[:operational_status] if args.key?(:operational_status)
|
20344
20367
|
@receiving_optical_power = args[:receiving_optical_power] if args.key?(:receiving_optical_power)
|
20345
20368
|
@transmitting_optical_power = args[:transmitting_optical_power] if args.key?(:transmitting_optical_power)
|
20346
20369
|
end
|
@@ -32776,6 +32799,13 @@ module Google
|
|
32776
32799
|
# @return [String]
|
32777
32800
|
attr_accessor :name
|
32778
32801
|
|
32802
|
+
# Resource policies to be added to this reservation. The key is defined by user,
|
32803
|
+
# and the value is resource policy url. This is to define placement policy with
|
32804
|
+
# reservation.
|
32805
|
+
# Corresponds to the JSON property `resourcePolicies`
|
32806
|
+
# @return [Hash<String,String>]
|
32807
|
+
attr_accessor :resource_policies
|
32808
|
+
|
32779
32809
|
# [Output Only] Reserved for future use.
|
32780
32810
|
# Corresponds to the JSON property `satisfiesPzs`
|
32781
32811
|
# @return [Boolean]
|
@@ -32834,6 +32864,7 @@ module Google
|
|
32834
32864
|
@id = args[:id] if args.key?(:id)
|
32835
32865
|
@kind = args[:kind] if args.key?(:kind)
|
32836
32866
|
@name = args[:name] if args.key?(:name)
|
32867
|
+
@resource_policies = args[:resource_policies] if args.key?(:resource_policies)
|
32837
32868
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
32838
32869
|
@self_link = args[:self_link] if args.key?(:self_link)
|
32839
32870
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
@@ -35595,7 +35626,7 @@ module Google
|
|
35595
35626
|
attr_accessor :enable_endpoint_independent_mapping
|
35596
35627
|
alias_method :enable_endpoint_independent_mapping?, :enable_endpoint_independent_mapping
|
35597
35628
|
|
35598
|
-
# List of
|
35629
|
+
# List of NAT-ted endpoint types supported by the Nat Gateway. If the list is
|
35599
35630
|
# empty, then it will be equivalent to include ENDPOINT_TYPE_VM
|
35600
35631
|
# Corresponds to the JSON property `endpointTypes`
|
35601
35632
|
# @return [Array<String>]
|
@@ -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.33.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220426"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -10004,7 +10004,6 @@ module Google
|
|
10004
10004
|
property :initial_delay_sec, as: 'initialDelaySec'
|
10005
10005
|
property :max_unavailable, as: 'maxUnavailable', class: Google::Apis::ComputeAlpha::FixedOrPercent, decorator: Google::Apis::ComputeAlpha::FixedOrPercent::Representation
|
10006
10006
|
|
10007
|
-
property :update_instances, as: 'updateInstances'
|
10008
10007
|
end
|
10009
10008
|
end
|
10010
10009
|
|
@@ -10018,6 +10017,7 @@ module Google
|
|
10018
10017
|
class InstanceGroupManagerInstanceLifecyclePolicy
|
10019
10018
|
# @private
|
10020
10019
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10020
|
+
property :force_update_on_repair, as: 'forceUpdateOnRepair'
|
10021
10021
|
property :metadata_based_readiness_signal, as: 'metadataBasedReadinessSignal', class: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceLifecyclePolicyMetadataBasedReadinessSignal, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceLifecyclePolicyMetadataBasedReadinessSignal::Representation
|
10022
10022
|
|
10023
10023
|
end
|
@@ -11163,6 +11163,8 @@ module Google
|
|
11163
11163
|
class Representation < Google::Apis::Core::JsonRepresentation
|
11164
11164
|
collection :arp_caches, as: 'arpCaches', class: Google::Apis::ComputeAlpha::InterconnectDiagnosticsArpEntry, decorator: Google::Apis::ComputeAlpha::InterconnectDiagnosticsArpEntry::Representation
|
11165
11165
|
|
11166
|
+
property :bundle_aggregation_type, as: 'bundleAggregationType'
|
11167
|
+
property :bundle_operational_status, as: 'bundleOperationalStatus'
|
11166
11168
|
collection :links, as: 'links', class: Google::Apis::ComputeAlpha::InterconnectDiagnosticsLinkStatus, decorator: Google::Apis::ComputeAlpha::InterconnectDiagnosticsLinkStatus::Representation
|
11167
11169
|
|
11168
11170
|
property :mac_address, as: 'macAddress'
|
@@ -11205,6 +11207,7 @@ module Google
|
|
11205
11207
|
|
11206
11208
|
property :macsec, as: 'macsec', class: Google::Apis::ComputeAlpha::InterconnectDiagnosticsMacsecStatus, decorator: Google::Apis::ComputeAlpha::InterconnectDiagnosticsMacsecStatus::Representation
|
11207
11209
|
|
11210
|
+
property :operational_status, as: 'operationalStatus'
|
11208
11211
|
property :receiving_optical_power, as: 'receivingOpticalPower', class: Google::Apis::ComputeAlpha::InterconnectDiagnosticsLinkOpticalPower, decorator: Google::Apis::ComputeAlpha::InterconnectDiagnosticsLinkOpticalPower::Representation
|
11209
11212
|
|
11210
11213
|
property :transmitting_optical_power, as: 'transmittingOpticalPower', class: Google::Apis::ComputeAlpha::InterconnectDiagnosticsLinkOpticalPower, decorator: Google::Apis::ComputeAlpha::InterconnectDiagnosticsLinkOpticalPower::Representation
|
@@ -14431,6 +14434,7 @@ module Google
|
|
14431
14434
|
property :id, :numeric_string => true, as: 'id'
|
14432
14435
|
property :kind, as: 'kind'
|
14433
14436
|
property :name, as: 'name'
|
14437
|
+
hash :resource_policies, as: 'resourcePolicies'
|
14434
14438
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
14435
14439
|
property :self_link, as: 'selfLink'
|
14436
14440
|
property :self_link_with_id, as: 'selfLinkWithId'
|
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.33.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-05-02 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.33.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: []
|