google-apis-compute_v1 0.19.0 → 0.20.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/compute_v1/classes.rb +632 -425
- data/lib/google/apis/compute_v1/gem_version.rb +2 -2
- data/lib/google/apis/compute_v1/representations.rb +55 -1
- data/lib/google/apis/compute_v1/service.rb +2320 -1584
- metadata +3 -3
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeV1
|
18
18
|
# Version of the google-apis-compute_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.20.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211025"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -406,6 +406,12 @@ module Google
|
|
406
406
|
include Google::Apis::Core::JsonObjectSupport
|
407
407
|
end
|
408
408
|
|
409
|
+
class BackendServiceConnectionTrackingPolicy
|
410
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
|
+
|
412
|
+
include Google::Apis::Core::JsonObjectSupport
|
413
|
+
end
|
414
|
+
|
409
415
|
class BackendServiceFailoverPolicy
|
410
416
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
417
|
|
@@ -2494,6 +2500,12 @@ module Google
|
|
2494
2500
|
include Google::Apis::Core::JsonObjectSupport
|
2495
2501
|
end
|
2496
2502
|
|
2503
|
+
class NetworkPerformanceConfig
|
2504
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2505
|
+
|
2506
|
+
include Google::Apis::Core::JsonObjectSupport
|
2507
|
+
end
|
2508
|
+
|
2497
2509
|
class NetworkRoutingConfig
|
2498
2510
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2499
2511
|
|
@@ -4078,6 +4090,12 @@ module Google
|
|
4078
4090
|
include Google::Apis::Core::JsonObjectSupport
|
4079
4091
|
end
|
4080
4092
|
|
4093
|
+
class ShareSettingsProjectConfig
|
4094
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4095
|
+
|
4096
|
+
include Google::Apis::Core::JsonObjectSupport
|
4097
|
+
end
|
4098
|
+
|
4081
4099
|
class ShieldedInstanceConfig
|
4082
4100
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4083
4101
|
|
@@ -5826,6 +5844,7 @@ module Google
|
|
5826
5844
|
property :creation_timestamp, as: 'creationTimestamp'
|
5827
5845
|
collection :custom_response_headers, as: 'customResponseHeaders'
|
5828
5846
|
property :description, as: 'description'
|
5847
|
+
property :edge_security_policy, as: 'edgeSecurityPolicy'
|
5829
5848
|
property :enable_cdn, as: 'enableCdn'
|
5830
5849
|
property :id, :numeric_string => true, as: 'id'
|
5831
5850
|
property :kind, as: 'kind'
|
@@ -5912,12 +5931,15 @@ module Google
|
|
5912
5931
|
|
5913
5932
|
property :connection_draining, as: 'connectionDraining', class: Google::Apis::ComputeV1::ConnectionDraining, decorator: Google::Apis::ComputeV1::ConnectionDraining::Representation
|
5914
5933
|
|
5934
|
+
property :connection_tracking_policy, as: 'connectionTrackingPolicy', class: Google::Apis::ComputeV1::BackendServiceConnectionTrackingPolicy, decorator: Google::Apis::ComputeV1::BackendServiceConnectionTrackingPolicy::Representation
|
5935
|
+
|
5915
5936
|
property :consistent_hash, as: 'consistentHash', class: Google::Apis::ComputeV1::ConsistentHashLoadBalancerSettings, decorator: Google::Apis::ComputeV1::ConsistentHashLoadBalancerSettings::Representation
|
5916
5937
|
|
5917
5938
|
property :creation_timestamp, as: 'creationTimestamp'
|
5918
5939
|
collection :custom_request_headers, as: 'customRequestHeaders'
|
5919
5940
|
collection :custom_response_headers, as: 'customResponseHeaders'
|
5920
5941
|
property :description, as: 'description'
|
5942
|
+
property :edge_security_policy, as: 'edgeSecurityPolicy'
|
5921
5943
|
property :enable_cdn, as: 'enableCDN'
|
5922
5944
|
property :failover_policy, as: 'failoverPolicy', class: Google::Apis::ComputeV1::BackendServiceFailoverPolicy, decorator: Google::Apis::ComputeV1::BackendServiceFailoverPolicy::Representation
|
5923
5945
|
|
@@ -6021,6 +6043,15 @@ module Google
|
|
6021
6043
|
end
|
6022
6044
|
end
|
6023
6045
|
|
6046
|
+
class BackendServiceConnectionTrackingPolicy
|
6047
|
+
# @private
|
6048
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6049
|
+
property :connection_persistence_on_unhealthy_backends, as: 'connectionPersistenceOnUnhealthyBackends'
|
6050
|
+
property :idle_timeout_sec, as: 'idleTimeoutSec'
|
6051
|
+
property :tracking_mode, as: 'trackingMode'
|
6052
|
+
end
|
6053
|
+
end
|
6054
|
+
|
6024
6055
|
class BackendServiceFailoverPolicy
|
6025
6056
|
# @private
|
6026
6057
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7999,6 +8030,8 @@ module Google
|
|
7999
8030
|
property :name, as: 'name'
|
8000
8031
|
collection :network_interfaces, as: 'networkInterfaces', class: Google::Apis::ComputeV1::NetworkInterface, decorator: Google::Apis::ComputeV1::NetworkInterface::Representation
|
8001
8032
|
|
8033
|
+
property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ComputeV1::NetworkPerformanceConfig, decorator: Google::Apis::ComputeV1::NetworkPerformanceConfig::Representation
|
8034
|
+
|
8002
8035
|
property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
|
8003
8036
|
property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::ComputeV1::ReservationAffinity, decorator: Google::Apis::ComputeV1::ReservationAffinity::Representation
|
8004
8037
|
|
@@ -8308,6 +8341,7 @@ module Google
|
|
8308
8341
|
property :max_unavailable, as: 'maxUnavailable', class: Google::Apis::ComputeV1::FixedOrPercent, decorator: Google::Apis::ComputeV1::FixedOrPercent::Representation
|
8309
8342
|
|
8310
8343
|
property :minimal_action, as: 'minimalAction'
|
8344
|
+
property :most_disruptive_allowed_action, as: 'mostDisruptiveAllowedAction'
|
8311
8345
|
property :replacement_method, as: 'replacementMethod'
|
8312
8346
|
property :type, as: 'type'
|
8313
8347
|
end
|
@@ -8689,6 +8723,8 @@ module Google
|
|
8689
8723
|
property :min_cpu_platform, as: 'minCpuPlatform'
|
8690
8724
|
collection :network_interfaces, as: 'networkInterfaces', class: Google::Apis::ComputeV1::NetworkInterface, decorator: Google::Apis::ComputeV1::NetworkInterface::Representation
|
8691
8725
|
|
8726
|
+
property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ComputeV1::NetworkPerformanceConfig, decorator: Google::Apis::ComputeV1::NetworkPerformanceConfig::Representation
|
8727
|
+
|
8692
8728
|
property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
|
8693
8729
|
property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::ComputeV1::ReservationAffinity, decorator: Google::Apis::ComputeV1::ReservationAffinity::Representation
|
8694
8730
|
|
@@ -9953,6 +9989,13 @@ module Google
|
|
9953
9989
|
end
|
9954
9990
|
end
|
9955
9991
|
|
9992
|
+
class NetworkPerformanceConfig
|
9993
|
+
# @private
|
9994
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9995
|
+
property :total_egress_bandwidth_tier, as: 'totalEgressBandwidthTier'
|
9996
|
+
end
|
9997
|
+
end
|
9998
|
+
|
9956
9999
|
class NetworkRoutingConfig
|
9957
10000
|
# @private
|
9958
10001
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10922,7 +10965,6 @@ module Google
|
|
10922
10965
|
collection :bindings, as: 'bindings', class: Google::Apis::ComputeV1::Binding, decorator: Google::Apis::ComputeV1::Binding::Representation
|
10923
10966
|
|
10924
10967
|
property :etag, :base64 => true, as: 'etag'
|
10925
|
-
property :iam_owned, as: 'iamOwned'
|
10926
10968
|
collection :rules, as: 'rules', class: Google::Apis::ComputeV1::Rule, decorator: Google::Apis::ComputeV1::Rule::Representation
|
10927
10969
|
|
10928
10970
|
property :version, as: 'version'
|
@@ -12268,10 +12310,12 @@ module Google
|
|
12268
12310
|
# @private
|
12269
12311
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12270
12312
|
collection :drain_nat_ips, as: 'drainNatIps'
|
12313
|
+
property :enable_dynamic_port_allocation, as: 'enableDynamicPortAllocation'
|
12271
12314
|
property :enable_endpoint_independent_mapping, as: 'enableEndpointIndependentMapping'
|
12272
12315
|
property :icmp_idle_timeout_sec, as: 'icmpIdleTimeoutSec'
|
12273
12316
|
property :log_config, as: 'logConfig', class: Google::Apis::ComputeV1::RouterNatLogConfig, decorator: Google::Apis::ComputeV1::RouterNatLogConfig::Representation
|
12274
12317
|
|
12318
|
+
property :max_ports_per_vm, as: 'maxPortsPerVm'
|
12275
12319
|
property :min_ports_per_vm, as: 'minPortsPerVm'
|
12276
12320
|
property :name, as: 'name'
|
12277
12321
|
property :nat_ip_allocate_option, as: 'natIpAllocateOption'
|
@@ -12529,6 +12573,7 @@ module Google
|
|
12529
12573
|
collection :rules, as: 'rules', class: Google::Apis::ComputeV1::SecurityPolicyRule, decorator: Google::Apis::ComputeV1::SecurityPolicyRule::Representation
|
12530
12574
|
|
12531
12575
|
property :self_link, as: 'selfLink'
|
12576
|
+
property :type, as: 'type'
|
12532
12577
|
end
|
12533
12578
|
end
|
12534
12579
|
|
@@ -12798,10 +12843,19 @@ module Google
|
|
12798
12843
|
class ShareSettings
|
12799
12844
|
# @private
|
12800
12845
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12846
|
+
hash :project_map, as: 'projectMap', class: Google::Apis::ComputeV1::ShareSettingsProjectConfig, decorator: Google::Apis::ComputeV1::ShareSettingsProjectConfig::Representation
|
12847
|
+
|
12801
12848
|
property :share_type, as: 'shareType'
|
12802
12849
|
end
|
12803
12850
|
end
|
12804
12851
|
|
12852
|
+
class ShareSettingsProjectConfig
|
12853
|
+
# @private
|
12854
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
12855
|
+
property :project_id, as: 'projectId'
|
12856
|
+
end
|
12857
|
+
end
|
12858
|
+
|
12805
12859
|
class ShieldedInstanceConfig
|
12806
12860
|
# @private
|
12807
12861
|
class Representation < Google::Apis::Core::JsonRepresentation
|