google-apis-compute_beta 0.50.0 → 0.51.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: 9f380dbfd0c9b3dcbae8d6e1700557d11d57ff46330345ecb780941853f7481a
|
4
|
+
data.tar.gz: 871d0b7ba3bd76d8a6a72d9e6b6611fbe71559032994f1da49f8a3c9c71b18b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6e20b0c5fe8cdc6c24e8291c23d33985d0f7edb4f0a8e6a24e1e890b843df30d8a08cd351b2bf4918b92f16df663a0625dce3dfec71143328c1288b03bcfa60
|
7
|
+
data.tar.gz: cac2cb5c9c5bfb639ab728246783d3d6fd8c27e8100c7768d6c9b50cb989f4398876d46727374a991ab0ae8e6401eb27e4920dfc1d7e32ad122e1c8cac19e046
|
data/CHANGELOG.md
CHANGED
@@ -591,6 +591,13 @@ module Google
|
|
591
591
|
# @return [String]
|
592
592
|
attr_accessor :ip_version
|
593
593
|
|
594
|
+
# The endpoint type of this address, which should be VM or NETLB. This is used
|
595
|
+
# for deciding which type of endpoint this address can be used after the
|
596
|
+
# external IPv6 address reservation.
|
597
|
+
# Corresponds to the JSON property `ipv6EndpointType`
|
598
|
+
# @return [String]
|
599
|
+
attr_accessor :ipv6_endpoint_type
|
600
|
+
|
594
601
|
# [Output Only] Type of the resource. Always compute#address for addresses.
|
595
602
|
# Corresponds to the JSON property `kind`
|
596
603
|
# @return [String]
|
@@ -709,6 +716,7 @@ module Google
|
|
709
716
|
@description = args[:description] if args.key?(:description)
|
710
717
|
@id = args[:id] if args.key?(:id)
|
711
718
|
@ip_version = args[:ip_version] if args.key?(:ip_version)
|
719
|
+
@ipv6_endpoint_type = args[:ipv6_endpoint_type] if args.key?(:ipv6_endpoint_type)
|
712
720
|
@kind = args[:kind] if args.key?(:kind)
|
713
721
|
@label_fingerprint = args[:label_fingerprint] if args.key?(:label_fingerprint)
|
714
722
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -4813,6 +4821,31 @@ module Google
|
|
4813
4821
|
end
|
4814
4822
|
end
|
4815
4823
|
|
4824
|
+
#
|
4825
|
+
class BundledLocalSsds
|
4826
|
+
include Google::Apis::Core::Hashable
|
4827
|
+
|
4828
|
+
# The default disk interface if the interface is not specified.
|
4829
|
+
# Corresponds to the JSON property `defaultInterface`
|
4830
|
+
# @return [String]
|
4831
|
+
attr_accessor :default_interface
|
4832
|
+
|
4833
|
+
# The number of partitions.
|
4834
|
+
# Corresponds to the JSON property `partitionCount`
|
4835
|
+
# @return [Fixnum]
|
4836
|
+
attr_accessor :partition_count
|
4837
|
+
|
4838
|
+
def initialize(**args)
|
4839
|
+
update!(**args)
|
4840
|
+
end
|
4841
|
+
|
4842
|
+
# Update properties of this object
|
4843
|
+
def update!(**args)
|
4844
|
+
@default_interface = args[:default_interface] if args.key?(:default_interface)
|
4845
|
+
@partition_count = args[:partition_count] if args.key?(:partition_count)
|
4846
|
+
end
|
4847
|
+
end
|
4848
|
+
|
4816
4849
|
#
|
4817
4850
|
class CacheInvalidationRule
|
4818
4851
|
include Google::Apis::Core::Hashable
|
@@ -8664,6 +8697,12 @@ module Google
|
|
8664
8697
|
# @return [Array<String>]
|
8665
8698
|
attr_accessor :dest_address_groups
|
8666
8699
|
|
8700
|
+
# Fully Qualified Domain Name (FQDN) which should be matched against traffic
|
8701
|
+
# destination. Maximum number of destination fqdn allowed is 100.
|
8702
|
+
# Corresponds to the JSON property `destFqdns`
|
8703
|
+
# @return [Array<String>]
|
8704
|
+
attr_accessor :dest_fqdns
|
8705
|
+
|
8667
8706
|
# CIDR IP address range. Maximum number of destination CIDR IP ranges allowed is
|
8668
8707
|
# 5000.
|
8669
8708
|
# Corresponds to the JSON property `destIpRanges`
|
@@ -8695,6 +8734,12 @@ module Google
|
|
8695
8734
|
# @return [Array<String>]
|
8696
8735
|
attr_accessor :src_address_groups
|
8697
8736
|
|
8737
|
+
# Fully Qualified Domain Name (FQDN) which should be matched against traffic
|
8738
|
+
# source. Maximum number of source fqdn allowed is 100.
|
8739
|
+
# Corresponds to the JSON property `srcFqdns`
|
8740
|
+
# @return [Array<String>]
|
8741
|
+
attr_accessor :src_fqdns
|
8742
|
+
|
8698
8743
|
# CIDR IP address range. Maximum number of source CIDR IP ranges allowed is 5000.
|
8699
8744
|
# Corresponds to the JSON property `srcIpRanges`
|
8700
8745
|
# @return [Array<String>]
|
@@ -8728,11 +8773,13 @@ module Google
|
|
8728
8773
|
# Update properties of this object
|
8729
8774
|
def update!(**args)
|
8730
8775
|
@dest_address_groups = args[:dest_address_groups] if args.key?(:dest_address_groups)
|
8776
|
+
@dest_fqdns = args[:dest_fqdns] if args.key?(:dest_fqdns)
|
8731
8777
|
@dest_ip_ranges = args[:dest_ip_ranges] if args.key?(:dest_ip_ranges)
|
8732
8778
|
@dest_region_codes = args[:dest_region_codes] if args.key?(:dest_region_codes)
|
8733
8779
|
@dest_threat_intelligences = args[:dest_threat_intelligences] if args.key?(:dest_threat_intelligences)
|
8734
8780
|
@layer4_configs = args[:layer4_configs] if args.key?(:layer4_configs)
|
8735
8781
|
@src_address_groups = args[:src_address_groups] if args.key?(:src_address_groups)
|
8782
|
+
@src_fqdns = args[:src_fqdns] if args.key?(:src_fqdns)
|
8736
8783
|
@src_ip_ranges = args[:src_ip_ranges] if args.key?(:src_ip_ranges)
|
8737
8784
|
@src_region_codes = args[:src_region_codes] if args.key?(:src_region_codes)
|
8738
8785
|
@src_secure_tags = args[:src_secure_tags] if args.key?(:src_secure_tags)
|
@@ -9131,7 +9178,16 @@ module Google
|
|
9131
9178
|
# @return [String]
|
9132
9179
|
attr_accessor :subnetwork
|
9133
9180
|
|
9134
|
-
#
|
9181
|
+
# The URL of the target resource to receive the matched traffic. For regional
|
9182
|
+
# forwarding rules, this target must be in the same region as the forwarding
|
9183
|
+
# rule. For global forwarding rules, this target must be a global load balancing
|
9184
|
+
# resource. The forwarded traffic must be of a type appropriate to the target
|
9185
|
+
# object. For more information, see the "Target" column in [Port specifications](
|
9186
|
+
# https://cloud.google.com/load-balancing/docs/forwarding-rule-concepts#
|
9187
|
+
# ip_address_specifications). For Private Service Connect forwarding rules that
|
9188
|
+
# forward traffic to Google APIs, provide the name of a supported Google API
|
9189
|
+
# bundle: - vpc-sc - APIs that support VPC Service Controls. - all-apis - All
|
9190
|
+
# supported Google APIs.
|
9135
9191
|
# Corresponds to the JSON property `target`
|
9136
9192
|
# @return [String]
|
9137
9193
|
attr_accessor :target
|
@@ -9577,27 +9633,35 @@ module Google
|
|
9577
9633
|
# @return [String]
|
9578
9634
|
attr_accessor :grpc_service_name
|
9579
9635
|
|
9580
|
-
# The port number
|
9581
|
-
#
|
9582
|
-
# Valid values are 1 through 65535.
|
9636
|
+
# The TCP port number to which the health check prober sends packets. Valid
|
9637
|
+
# values are 1 through 65535.
|
9583
9638
|
# Corresponds to the JSON property `port`
|
9584
9639
|
# @return [Fixnum]
|
9585
9640
|
attr_accessor :port
|
9586
9641
|
|
9587
|
-
#
|
9588
|
-
# port_name are defined, port takes precedence. The port_name should conform to
|
9589
|
-
# RFC1035.
|
9642
|
+
# Not supported.
|
9590
9643
|
# Corresponds to the JSON property `portName`
|
9591
9644
|
# @return [String]
|
9592
9645
|
attr_accessor :port_name
|
9593
9646
|
|
9594
|
-
# Specifies how port is selected for health checking
|
9595
|
-
# values: USE_FIXED_PORT:
|
9596
|
-
#
|
9597
|
-
#
|
9598
|
-
#
|
9599
|
-
#
|
9600
|
-
#
|
9647
|
+
# Specifies how a port is selected for health checking. Can be one of the
|
9648
|
+
# following values: USE_FIXED_PORT: Specifies a port number explicitly using the
|
9649
|
+
# port field in the health check. Supported by backend services for pass-through
|
9650
|
+
# load balancers and backend services for proxy load balancers. Not supported by
|
9651
|
+
# target pools. The health check supports all backends supported by the backend
|
9652
|
+
# service provided the backend can be health checked. For example, GCE_VM_IP
|
9653
|
+
# network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance
|
9654
|
+
# group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
|
9655
|
+
# indirect method of specifying the health check port by referring to the
|
9656
|
+
# backend service. Only supported by backend services for proxy load balancers.
|
9657
|
+
# Not supported by target pools. Not supported by backend services for pass-
|
9658
|
+
# through load balancers. Supports all backends that can be health checked; for
|
9659
|
+
# example, GCE_VM_IP_PORT network endpoint groups and instance group backends.
|
9660
|
+
# For GCE_VM_IP_PORT network endpoint group backends, the health check uses the
|
9661
|
+
# port number specified for each endpoint in the network endpoint group. For
|
9662
|
+
# instance group backends, the health check uses the port number determined by
|
9663
|
+
# looking up the backend service's named port in the instance group's list of
|
9664
|
+
# named ports.
|
9601
9665
|
# Corresponds to the JSON property `portSpecification`
|
9602
9666
|
# @return [String]
|
9603
9667
|
attr_accessor :port_specification
|
@@ -9935,31 +9999,43 @@ module Google
|
|
9935
9999
|
include Google::Apis::Core::Hashable
|
9936
10000
|
|
9937
10001
|
# The value of the host header in the HTTP/2 health check request. If left empty
|
9938
|
-
# (default value), the
|
9939
|
-
#
|
10002
|
+
# (default value), the host header is set to the destination IP address to which
|
10003
|
+
# health check packets are sent. The destination IP address depends on the type
|
10004
|
+
# of load balancer. For details, see: https://cloud.google.com/load-balancing/
|
10005
|
+
# docs/health-check-concepts#hc-packet-dest
|
9940
10006
|
# Corresponds to the JSON property `host`
|
9941
10007
|
# @return [String]
|
9942
10008
|
attr_accessor :host
|
9943
10009
|
|
9944
|
-
# The TCP port number
|
9945
|
-
# Valid values are 1 through 65535.
|
10010
|
+
# The TCP port number to which the health check prober sends packets. The
|
10011
|
+
# default value is 443. Valid values are 1 through 65535.
|
9946
10012
|
# Corresponds to the JSON property `port`
|
9947
10013
|
# @return [Fixnum]
|
9948
10014
|
attr_accessor :port
|
9949
10015
|
|
9950
|
-
#
|
9951
|
-
# port_name are defined, port takes precedence.
|
10016
|
+
# Not supported.
|
9952
10017
|
# Corresponds to the JSON property `portName`
|
9953
10018
|
# @return [String]
|
9954
10019
|
attr_accessor :port_name
|
9955
10020
|
|
9956
|
-
# Specifies how port is selected for health checking
|
9957
|
-
# values: USE_FIXED_PORT:
|
9958
|
-
#
|
9959
|
-
#
|
9960
|
-
#
|
9961
|
-
#
|
9962
|
-
#
|
10021
|
+
# Specifies how a port is selected for health checking. Can be one of the
|
10022
|
+
# following values: USE_FIXED_PORT: Specifies a port number explicitly using the
|
10023
|
+
# port field in the health check. Supported by backend services for pass-through
|
10024
|
+
# load balancers and backend services for proxy load balancers. Not supported by
|
10025
|
+
# target pools. The health check supports all backends supported by the backend
|
10026
|
+
# service provided the backend can be health checked. For example, GCE_VM_IP
|
10027
|
+
# network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance
|
10028
|
+
# group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
|
10029
|
+
# indirect method of specifying the health check port by referring to the
|
10030
|
+
# backend service. Only supported by backend services for proxy load balancers.
|
10031
|
+
# Not supported by target pools. Not supported by backend services for pass-
|
10032
|
+
# through load balancers. Supports all backends that can be health checked; for
|
10033
|
+
# example, GCE_VM_IP_PORT network endpoint groups and instance group backends.
|
10034
|
+
# For GCE_VM_IP_PORT network endpoint group backends, the health check uses the
|
10035
|
+
# port number specified for each endpoint in the network endpoint group. For
|
10036
|
+
# instance group backends, the health check uses the port number determined by
|
10037
|
+
# looking up the backend service's named port in the instance group's list of
|
10038
|
+
# named ports.
|
9963
10039
|
# Corresponds to the JSON property `portSpecification`
|
9964
10040
|
# @return [String]
|
9965
10041
|
attr_accessor :port_specification
|
@@ -9975,9 +10051,11 @@ module Google
|
|
9975
10051
|
# @return [String]
|
9976
10052
|
attr_accessor :request_path
|
9977
10053
|
|
9978
|
-
#
|
9979
|
-
#
|
9980
|
-
# response
|
10054
|
+
# Creates a content-based HTTP/2 health check. In addition to the required HTTP
|
10055
|
+
# 200 (OK) status code, you can configure the health check to pass only when the
|
10056
|
+
# backend sends this specific ASCII response string within the first 1024 bytes
|
10057
|
+
# of the HTTP response body. For details, see: https://cloud.google.com/load-
|
10058
|
+
# balancing/docs/health-check-concepts#criteria-protocol-http
|
9981
10059
|
# Corresponds to the JSON property `response`
|
9982
10060
|
# @return [String]
|
9983
10061
|
attr_accessor :response
|
@@ -10003,31 +10081,43 @@ module Google
|
|
10003
10081
|
include Google::Apis::Core::Hashable
|
10004
10082
|
|
10005
10083
|
# The value of the host header in the HTTP health check request. If left empty (
|
10006
|
-
# default value), the
|
10007
|
-
#
|
10084
|
+
# default value), the host header is set to the destination IP address to which
|
10085
|
+
# health check packets are sent. The destination IP address depends on the type
|
10086
|
+
# of load balancer. For details, see: https://cloud.google.com/load-balancing/
|
10087
|
+
# docs/health-check-concepts#hc-packet-dest
|
10008
10088
|
# Corresponds to the JSON property `host`
|
10009
10089
|
# @return [String]
|
10010
10090
|
attr_accessor :host
|
10011
10091
|
|
10012
|
-
# The TCP port number
|
10013
|
-
# Valid values are 1 through 65535.
|
10092
|
+
# The TCP port number to which the health check prober sends packets. The
|
10093
|
+
# default value is 80. Valid values are 1 through 65535.
|
10014
10094
|
# Corresponds to the JSON property `port`
|
10015
10095
|
# @return [Fixnum]
|
10016
10096
|
attr_accessor :port
|
10017
10097
|
|
10018
|
-
#
|
10019
|
-
# port_name are defined, port takes precedence.
|
10098
|
+
# Not supported.
|
10020
10099
|
# Corresponds to the JSON property `portName`
|
10021
10100
|
# @return [String]
|
10022
10101
|
attr_accessor :port_name
|
10023
10102
|
|
10024
|
-
# Specifies how port is selected for health checking
|
10025
|
-
# values: USE_FIXED_PORT:
|
10026
|
-
#
|
10027
|
-
#
|
10028
|
-
#
|
10029
|
-
#
|
10030
|
-
#
|
10103
|
+
# Specifies how a port is selected for health checking. Can be one of the
|
10104
|
+
# following values: USE_FIXED_PORT: Specifies a port number explicitly using the
|
10105
|
+
# port field in the health check. Supported by backend services for pass-through
|
10106
|
+
# load balancers and backend services for proxy load balancers. Also supported
|
10107
|
+
# in legacy HTTP health checks for target pools. The health check supports all
|
10108
|
+
# backends supported by the backend service provided the backend can be health
|
10109
|
+
# checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT
|
10110
|
+
# network endpoint groups, and instance group backends. USE_NAMED_PORT: Not
|
10111
|
+
# supported. USE_SERVING_PORT: Provides an indirect method of specifying the
|
10112
|
+
# health check port by referring to the backend service. Only supported by
|
10113
|
+
# backend services for proxy load balancers. Not supported by target pools. Not
|
10114
|
+
# supported by backend services for pass-through load balancers. Supports all
|
10115
|
+
# backends that can be health checked; for example, GCE_VM_IP_PORT network
|
10116
|
+
# endpoint groups and instance group backends. For GCE_VM_IP_PORT network
|
10117
|
+
# endpoint group backends, the health check uses the port number specified for
|
10118
|
+
# each endpoint in the network endpoint group. For instance group backends, the
|
10119
|
+
# health check uses the port number determined by looking up the backend service'
|
10120
|
+
# s named port in the instance group's list of named ports.
|
10031
10121
|
# Corresponds to the JSON property `portSpecification`
|
10032
10122
|
# @return [String]
|
10033
10123
|
attr_accessor :port_specification
|
@@ -10043,9 +10133,11 @@ module Google
|
|
10043
10133
|
# @return [String]
|
10044
10134
|
attr_accessor :request_path
|
10045
10135
|
|
10046
|
-
#
|
10047
|
-
#
|
10048
|
-
# response
|
10136
|
+
# Creates a content-based HTTP health check. In addition to the required HTTP
|
10137
|
+
# 200 (OK) status code, you can configure the health check to pass only when the
|
10138
|
+
# backend sends this specific ASCII response string within the first 1024 bytes
|
10139
|
+
# of the HTTP response body. For details, see: https://cloud.google.com/load-
|
10140
|
+
# balancing/docs/health-check-concepts#criteria-protocol-http
|
10049
10141
|
# Corresponds to the JSON property `response`
|
10050
10142
|
# @return [String]
|
10051
10143
|
attr_accessor :response
|
@@ -10071,31 +10163,43 @@ module Google
|
|
10071
10163
|
include Google::Apis::Core::Hashable
|
10072
10164
|
|
10073
10165
|
# The value of the host header in the HTTPS health check request. If left empty (
|
10074
|
-
# default value), the
|
10075
|
-
#
|
10166
|
+
# default value), the host header is set to the destination IP address to which
|
10167
|
+
# health check packets are sent. The destination IP address depends on the type
|
10168
|
+
# of load balancer. For details, see: https://cloud.google.com/load-balancing/
|
10169
|
+
# docs/health-check-concepts#hc-packet-dest
|
10076
10170
|
# Corresponds to the JSON property `host`
|
10077
10171
|
# @return [String]
|
10078
10172
|
attr_accessor :host
|
10079
10173
|
|
10080
|
-
# The TCP port number
|
10081
|
-
# Valid values are 1 through 65535.
|
10174
|
+
# The TCP port number to which the health check prober sends packets. The
|
10175
|
+
# default value is 443. Valid values are 1 through 65535.
|
10082
10176
|
# Corresponds to the JSON property `port`
|
10083
10177
|
# @return [Fixnum]
|
10084
10178
|
attr_accessor :port
|
10085
10179
|
|
10086
|
-
#
|
10087
|
-
# port_name are defined, port takes precedence.
|
10180
|
+
# Not supported.
|
10088
10181
|
# Corresponds to the JSON property `portName`
|
10089
10182
|
# @return [String]
|
10090
10183
|
attr_accessor :port_name
|
10091
10184
|
|
10092
|
-
# Specifies how port is selected for health checking
|
10093
|
-
# values: USE_FIXED_PORT:
|
10094
|
-
#
|
10095
|
-
#
|
10096
|
-
#
|
10097
|
-
#
|
10098
|
-
#
|
10185
|
+
# Specifies how a port is selected for health checking. Can be one of the
|
10186
|
+
# following values: USE_FIXED_PORT: Specifies a port number explicitly using the
|
10187
|
+
# port field in the health check. Supported by backend services for pass-through
|
10188
|
+
# load balancers and backend services for proxy load balancers. Not supported by
|
10189
|
+
# target pools. The health check supports all backends supported by the backend
|
10190
|
+
# service provided the backend can be health checked. For example, GCE_VM_IP
|
10191
|
+
# network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance
|
10192
|
+
# group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
|
10193
|
+
# indirect method of specifying the health check port by referring to the
|
10194
|
+
# backend service. Only supported by backend services for proxy load balancers.
|
10195
|
+
# Not supported by target pools. Not supported by backend services for pass-
|
10196
|
+
# through load balancers. Supports all backends that can be health checked; for
|
10197
|
+
# example, GCE_VM_IP_PORT network endpoint groups and instance group backends.
|
10198
|
+
# For GCE_VM_IP_PORT network endpoint group backends, the health check uses the
|
10199
|
+
# port number specified for each endpoint in the network endpoint group. For
|
10200
|
+
# instance group backends, the health check uses the port number determined by
|
10201
|
+
# looking up the backend service's named port in the instance group's list of
|
10202
|
+
# named ports.
|
10099
10203
|
# Corresponds to the JSON property `portSpecification`
|
10100
10204
|
# @return [String]
|
10101
10205
|
attr_accessor :port_specification
|
@@ -10111,9 +10215,11 @@ module Google
|
|
10111
10215
|
# @return [String]
|
10112
10216
|
attr_accessor :request_path
|
10113
10217
|
|
10114
|
-
#
|
10115
|
-
#
|
10116
|
-
# response
|
10218
|
+
# Creates a content-based HTTPS health check. In addition to the required HTTP
|
10219
|
+
# 200 (OK) status code, you can configure the health check to pass only when the
|
10220
|
+
# backend sends this specific ASCII response string within the first 1024 bytes
|
10221
|
+
# of the HTTP response body. For details, see: https://cloud.google.com/load-
|
10222
|
+
# balancing/docs/health-check-concepts#criteria-protocol-http
|
10117
10223
|
# Corresponds to the JSON property `response`
|
10118
10224
|
# @return [String]
|
10119
10225
|
attr_accessor :response
|
@@ -13076,6 +13182,13 @@ module Google
|
|
13076
13182
|
# @return [Array<String>]
|
13077
13183
|
attr_accessor :resource_policies
|
13078
13184
|
|
13185
|
+
# Contains output only fields. Use this sub-message for actual values set on
|
13186
|
+
# Instance attributes as compared to the value requested by the user (intent) in
|
13187
|
+
# their instance CRUD calls.
|
13188
|
+
# Corresponds to the JSON property `resourceStatus`
|
13189
|
+
# @return [Google::Apis::ComputeBeta::ResourceStatus]
|
13190
|
+
attr_accessor :resource_status
|
13191
|
+
|
13079
13192
|
# [Output Only] Reserved for future use.
|
13080
13193
|
# Corresponds to the JSON property `satisfiesPzs`
|
13081
13194
|
# @return [Boolean]
|
@@ -13204,6 +13317,7 @@ module Google
|
|
13204
13317
|
@private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
|
13205
13318
|
@reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
|
13206
13319
|
@resource_policies = args[:resource_policies] if args.key?(:resource_policies)
|
13320
|
+
@resource_status = args[:resource_status] if args.key?(:resource_status)
|
13207
13321
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
13208
13322
|
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
13209
13323
|
@self_link = args[:self_link] if args.key?(:self_link)
|
@@ -19397,6 +19511,11 @@ module Google
|
|
19397
19511
|
# @return [Array<Google::Apis::ComputeBeta::MachineType::Accelerator>]
|
19398
19512
|
attr_accessor :accelerators
|
19399
19513
|
|
19514
|
+
# [Output Only] The configuration of bundled local SSD for the machine type.
|
19515
|
+
# Corresponds to the JSON property `bundledLocalSsds`
|
19516
|
+
# @return [Google::Apis::ComputeBeta::BundledLocalSsds]
|
19517
|
+
attr_accessor :bundled_local_ssds
|
19518
|
+
|
19400
19519
|
# [Output Only] Creation timestamp in RFC3339 text format.
|
19401
19520
|
# Corresponds to the JSON property `creationTimestamp`
|
19402
19521
|
# @return [String]
|
@@ -19475,6 +19594,7 @@ module Google
|
|
19475
19594
|
# Update properties of this object
|
19476
19595
|
def update!(**args)
|
19477
19596
|
@accelerators = args[:accelerators] if args.key?(:accelerators)
|
19597
|
+
@bundled_local_ssds = args[:bundled_local_ssds] if args.key?(:bundled_local_ssds)
|
19478
19598
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
19479
19599
|
@deprecated = args[:deprecated] if args.key?(:deprecated)
|
19480
19600
|
@description = args[:description] if args.key?(:description)
|
@@ -30428,6 +30548,27 @@ module Google
|
|
30428
30548
|
end
|
30429
30549
|
end
|
30430
30550
|
|
30551
|
+
# Contains output only fields. Use this sub-message for actual values set on
|
30552
|
+
# Instance attributes as compared to the value requested by the user (intent) in
|
30553
|
+
# their instance CRUD calls.
|
30554
|
+
class ResourceStatus
|
30555
|
+
include Google::Apis::Core::Hashable
|
30556
|
+
|
30557
|
+
# [Output Only] An opaque ID of the host on which the VM is running.
|
30558
|
+
# Corresponds to the JSON property `physicalHost`
|
30559
|
+
# @return [String]
|
30560
|
+
attr_accessor :physical_host
|
30561
|
+
|
30562
|
+
def initialize(**args)
|
30563
|
+
update!(**args)
|
30564
|
+
end
|
30565
|
+
|
30566
|
+
# Update properties of this object
|
30567
|
+
def update!(**args)
|
30568
|
+
@physical_host = args[:physical_host] if args.key?(:physical_host)
|
30569
|
+
end
|
30570
|
+
end
|
30571
|
+
|
30431
30572
|
# A rollout policy configuration.
|
30432
30573
|
class RolloutPolicy
|
30433
30574
|
include Google::Apis::Core::Hashable
|
@@ -31963,11 +32104,22 @@ module Google
|
|
31963
32104
|
# @return [Google::Apis::ComputeBeta::BfdStatus]
|
31964
32105
|
attr_accessor :bfd_status
|
31965
32106
|
|
32107
|
+
# Enable IPv6 traffic over BGP Peer. If not specified, it is disabled by default.
|
32108
|
+
# Corresponds to the JSON property `enableIpv6`
|
32109
|
+
# @return [Boolean]
|
32110
|
+
attr_accessor :enable_ipv6
|
32111
|
+
alias_method :enable_ipv6?, :enable_ipv6
|
32112
|
+
|
31966
32113
|
# IP address of the local BGP interface.
|
31967
32114
|
# Corresponds to the JSON property `ipAddress`
|
31968
32115
|
# @return [String]
|
31969
32116
|
attr_accessor :ip_address
|
31970
32117
|
|
32118
|
+
# IPv6 address of the local BGP interface.
|
32119
|
+
# Corresponds to the JSON property `ipv6NexthopAddress`
|
32120
|
+
# @return [String]
|
32121
|
+
attr_accessor :ipv6_nexthop_address
|
32122
|
+
|
31971
32123
|
# URL of the VPN tunnel that this BGP peer controls.
|
31972
32124
|
# Corresponds to the JSON property `linkedVpnTunnel`
|
31973
32125
|
# @return [String]
|
@@ -31994,6 +32146,11 @@ module Google
|
|
31994
32146
|
# @return [String]
|
31995
32147
|
attr_accessor :peer_ip_address
|
31996
32148
|
|
32149
|
+
# IPv6 address of the remote BGP interface.
|
32150
|
+
# Corresponds to the JSON property `peerIpv6NexthopAddress`
|
32151
|
+
# @return [String]
|
32152
|
+
attr_accessor :peer_ipv6_nexthop_address
|
32153
|
+
|
31997
32154
|
# [Output only] URI of the VM instance that is used as third-party router
|
31998
32155
|
# appliances such as Next Gen Firewalls, Virtual Routers, or Router Appliances.
|
31999
32156
|
# The VM instance is the peer side of the BGP session.
|
@@ -32036,12 +32193,15 @@ module Google
|
|
32036
32193
|
def update!(**args)
|
32037
32194
|
@advertised_routes = args[:advertised_routes] if args.key?(:advertised_routes)
|
32038
32195
|
@bfd_status = args[:bfd_status] if args.key?(:bfd_status)
|
32196
|
+
@enable_ipv6 = args[:enable_ipv6] if args.key?(:enable_ipv6)
|
32039
32197
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
32198
|
+
@ipv6_nexthop_address = args[:ipv6_nexthop_address] if args.key?(:ipv6_nexthop_address)
|
32040
32199
|
@linked_vpn_tunnel = args[:linked_vpn_tunnel] if args.key?(:linked_vpn_tunnel)
|
32041
32200
|
@md5_auth_enabled = args[:md5_auth_enabled] if args.key?(:md5_auth_enabled)
|
32042
32201
|
@name = args[:name] if args.key?(:name)
|
32043
32202
|
@num_learned_routes = args[:num_learned_routes] if args.key?(:num_learned_routes)
|
32044
32203
|
@peer_ip_address = args[:peer_ip_address] if args.key?(:peer_ip_address)
|
32204
|
+
@peer_ipv6_nexthop_address = args[:peer_ipv6_nexthop_address] if args.key?(:peer_ipv6_nexthop_address)
|
32045
32205
|
@router_appliance_instance = args[:router_appliance_instance] if args.key?(:router_appliance_instance)
|
32046
32206
|
@state = args[:state] if args.key?(:state)
|
32047
32207
|
@status = args[:status] if args.key?(:status)
|
@@ -32364,25 +32524,35 @@ module Google
|
|
32364
32524
|
class SslHealthCheck
|
32365
32525
|
include Google::Apis::Core::Hashable
|
32366
32526
|
|
32367
|
-
# The TCP port number
|
32368
|
-
# Valid values are 1 through 65535.
|
32527
|
+
# The TCP port number to which the health check prober sends packets. The
|
32528
|
+
# default value is 443. Valid values are 1 through 65535.
|
32369
32529
|
# Corresponds to the JSON property `port`
|
32370
32530
|
# @return [Fixnum]
|
32371
32531
|
attr_accessor :port
|
32372
32532
|
|
32373
|
-
#
|
32374
|
-
# port_name are defined, port takes precedence.
|
32533
|
+
# Not supported.
|
32375
32534
|
# Corresponds to the JSON property `portName`
|
32376
32535
|
# @return [String]
|
32377
32536
|
attr_accessor :port_name
|
32378
32537
|
|
32379
|
-
# Specifies how port is selected for health checking
|
32380
|
-
# values: USE_FIXED_PORT:
|
32381
|
-
#
|
32382
|
-
#
|
32383
|
-
#
|
32384
|
-
#
|
32385
|
-
#
|
32538
|
+
# Specifies how a port is selected for health checking. Can be one of the
|
32539
|
+
# following values: USE_FIXED_PORT: Specifies a port number explicitly using the
|
32540
|
+
# port field in the health check. Supported by backend services for pass-through
|
32541
|
+
# load balancers and backend services for proxy load balancers. Not supported by
|
32542
|
+
# target pools. The health check supports all backends supported by the backend
|
32543
|
+
# service provided the backend can be health checked. For example, GCE_VM_IP
|
32544
|
+
# network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance
|
32545
|
+
# group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
|
32546
|
+
# indirect method of specifying the health check port by referring to the
|
32547
|
+
# backend service. Only supported by backend services for proxy load balancers.
|
32548
|
+
# Not supported by target pools. Not supported by backend services for pass-
|
32549
|
+
# through load balancers. Supports all backends that can be health checked; for
|
32550
|
+
# example, GCE_VM_IP_PORT network endpoint groups and instance group backends.
|
32551
|
+
# For GCE_VM_IP_PORT network endpoint group backends, the health check uses the
|
32552
|
+
# port number specified for each endpoint in the network endpoint group. For
|
32553
|
+
# instance group backends, the health check uses the port number determined by
|
32554
|
+
# looking up the backend service's named port in the instance group's list of
|
32555
|
+
# named ports.
|
32386
32556
|
# Corresponds to the JSON property `portSpecification`
|
32387
32557
|
# @return [String]
|
32388
32558
|
attr_accessor :port_specification
|
@@ -32393,17 +32563,17 @@ module Google
|
|
32393
32563
|
# @return [String]
|
32394
32564
|
attr_accessor :proxy_header
|
32395
32565
|
|
32396
|
-
#
|
32397
|
-
#
|
32398
|
-
# connection establishment alone will indicate health. The request data can only
|
32399
|
-
# be ASCII.
|
32566
|
+
# Instructs the health check prober to send this exact ASCII string, up to 1024
|
32567
|
+
# bytes in length, after establishing the TCP connection and SSL handshake.
|
32400
32568
|
# Corresponds to the JSON property `request`
|
32401
32569
|
# @return [String]
|
32402
32570
|
attr_accessor :request
|
32403
32571
|
|
32404
|
-
#
|
32405
|
-
# the
|
32406
|
-
# only
|
32572
|
+
# Creates a content-based SSL health check. In addition to establishing a TCP
|
32573
|
+
# connection and the TLS handshake, you can configure the health check to pass
|
32574
|
+
# only when the backend sends this exact response ASCII string, up to 1024 bytes
|
32575
|
+
# in length. For details, see: https://cloud.google.com/load-balancing/docs/
|
32576
|
+
# health-check-concepts#criteria-protocol-ssl-tcp
|
32407
32577
|
# Corresponds to the JSON property `response`
|
32408
32578
|
# @return [String]
|
32409
32579
|
attr_accessor :response
|
@@ -37581,25 +37751,35 @@ module Google
|
|
37581
37751
|
class TcpHealthCheck
|
37582
37752
|
include Google::Apis::Core::Hashable
|
37583
37753
|
|
37584
|
-
# The TCP port number
|
37585
|
-
# Valid values are 1 through 65535.
|
37754
|
+
# The TCP port number to which the health check prober sends packets. The
|
37755
|
+
# default value is 80. Valid values are 1 through 65535.
|
37586
37756
|
# Corresponds to the JSON property `port`
|
37587
37757
|
# @return [Fixnum]
|
37588
37758
|
attr_accessor :port
|
37589
37759
|
|
37590
|
-
#
|
37591
|
-
# port_name are defined, port takes precedence.
|
37760
|
+
# Not supported.
|
37592
37761
|
# Corresponds to the JSON property `portName`
|
37593
37762
|
# @return [String]
|
37594
37763
|
attr_accessor :port_name
|
37595
37764
|
|
37596
|
-
# Specifies how port is selected for health checking
|
37597
|
-
# values: USE_FIXED_PORT:
|
37598
|
-
#
|
37599
|
-
#
|
37600
|
-
#
|
37601
|
-
#
|
37602
|
-
#
|
37765
|
+
# Specifies how a port is selected for health checking. Can be one of the
|
37766
|
+
# following values: USE_FIXED_PORT: Specifies a port number explicitly using the
|
37767
|
+
# port field in the health check. Supported by backend services for pass-through
|
37768
|
+
# load balancers and backend services for proxy load balancers. Not supported by
|
37769
|
+
# target pools. The health check supports all backends supported by the backend
|
37770
|
+
# service provided the backend can be health checked. For example, GCE_VM_IP
|
37771
|
+
# network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance
|
37772
|
+
# group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
|
37773
|
+
# indirect method of specifying the health check port by referring to the
|
37774
|
+
# backend service. Only supported by backend services for proxy load balancers.
|
37775
|
+
# Not supported by target pools. Not supported by backend services for pass-
|
37776
|
+
# through load balancers. Supports all backends that can be health checked; for
|
37777
|
+
# example, GCE_VM_IP_PORT network endpoint groups and instance group backends.
|
37778
|
+
# For GCE_VM_IP_PORT network endpoint group backends, the health check uses the
|
37779
|
+
# port number specified for each endpoint in the network endpoint group. For
|
37780
|
+
# instance group backends, the health check uses the port number determined by
|
37781
|
+
# looking up the backend service's named port in the instance group's list of
|
37782
|
+
# named ports.
|
37603
37783
|
# Corresponds to the JSON property `portSpecification`
|
37604
37784
|
# @return [String]
|
37605
37785
|
attr_accessor :port_specification
|
@@ -37610,17 +37790,17 @@ module Google
|
|
37610
37790
|
# @return [String]
|
37611
37791
|
attr_accessor :proxy_header
|
37612
37792
|
|
37613
|
-
#
|
37614
|
-
#
|
37615
|
-
# connection establishment alone will indicate health. The request data can only
|
37616
|
-
# be ASCII.
|
37793
|
+
# Instructs the health check prober to send this exact ASCII string, up to 1024
|
37794
|
+
# bytes in length, after establishing the TCP connection.
|
37617
37795
|
# Corresponds to the JSON property `request`
|
37618
37796
|
# @return [String]
|
37619
37797
|
attr_accessor :request
|
37620
37798
|
|
37621
|
-
#
|
37622
|
-
#
|
37623
|
-
#
|
37799
|
+
# Creates a content-based TCP health check. In addition to establishing a TCP
|
37800
|
+
# connection, you can configure the health check to pass only when the backend
|
37801
|
+
# sends this exact response ASCII string, up to 1024 bytes in length. For
|
37802
|
+
# details, see: https://cloud.google.com/load-balancing/docs/health-check-
|
37803
|
+
# concepts#criteria-protocol-ssl-tcp
|
37624
37804
|
# Corresponds to the JSON property `response`
|
37625
37805
|
# @return [String]
|
37626
37806
|
attr_accessor :response
|
@@ -40236,6 +40416,97 @@ module Google
|
|
40236
40416
|
end
|
40237
40417
|
end
|
40238
40418
|
|
40419
|
+
#
|
40420
|
+
class TargetTcpProxiesScopedList
|
40421
|
+
include Google::Apis::Core::Hashable
|
40422
|
+
|
40423
|
+
# A list of TargetTcpProxies contained in this scope.
|
40424
|
+
# Corresponds to the JSON property `targetTcpProxies`
|
40425
|
+
# @return [Array<Google::Apis::ComputeBeta::TargetTcpProxy>]
|
40426
|
+
attr_accessor :target_tcp_proxies
|
40427
|
+
|
40428
|
+
# Informational warning which replaces the list of backend services when the
|
40429
|
+
# list is empty.
|
40430
|
+
# Corresponds to the JSON property `warning`
|
40431
|
+
# @return [Google::Apis::ComputeBeta::TargetTcpProxiesScopedList::Warning]
|
40432
|
+
attr_accessor :warning
|
40433
|
+
|
40434
|
+
def initialize(**args)
|
40435
|
+
update!(**args)
|
40436
|
+
end
|
40437
|
+
|
40438
|
+
# Update properties of this object
|
40439
|
+
def update!(**args)
|
40440
|
+
@target_tcp_proxies = args[:target_tcp_proxies] if args.key?(:target_tcp_proxies)
|
40441
|
+
@warning = args[:warning] if args.key?(:warning)
|
40442
|
+
end
|
40443
|
+
|
40444
|
+
# Informational warning which replaces the list of backend services when the
|
40445
|
+
# list is empty.
|
40446
|
+
class Warning
|
40447
|
+
include Google::Apis::Core::Hashable
|
40448
|
+
|
40449
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
40450
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
40451
|
+
# Corresponds to the JSON property `code`
|
40452
|
+
# @return [String]
|
40453
|
+
attr_accessor :code
|
40454
|
+
|
40455
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
40456
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
40457
|
+
# Corresponds to the JSON property `data`
|
40458
|
+
# @return [Array<Google::Apis::ComputeBeta::TargetTcpProxiesScopedList::Warning::Datum>]
|
40459
|
+
attr_accessor :data
|
40460
|
+
|
40461
|
+
# [Output Only] A human-readable description of the warning code.
|
40462
|
+
# Corresponds to the JSON property `message`
|
40463
|
+
# @return [String]
|
40464
|
+
attr_accessor :message
|
40465
|
+
|
40466
|
+
def initialize(**args)
|
40467
|
+
update!(**args)
|
40468
|
+
end
|
40469
|
+
|
40470
|
+
# Update properties of this object
|
40471
|
+
def update!(**args)
|
40472
|
+
@code = args[:code] if args.key?(:code)
|
40473
|
+
@data = args[:data] if args.key?(:data)
|
40474
|
+
@message = args[:message] if args.key?(:message)
|
40475
|
+
end
|
40476
|
+
|
40477
|
+
#
|
40478
|
+
class Datum
|
40479
|
+
include Google::Apis::Core::Hashable
|
40480
|
+
|
40481
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
40482
|
+
# For example, for warnings where there are no results in a list request for a
|
40483
|
+
# particular zone, this key might be scope and the key value might be the zone
|
40484
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
40485
|
+
# suggested replacement, or a warning about invalid network settings (for
|
40486
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
40487
|
+
# for IP forwarding).
|
40488
|
+
# Corresponds to the JSON property `key`
|
40489
|
+
# @return [String]
|
40490
|
+
attr_accessor :key
|
40491
|
+
|
40492
|
+
# [Output Only] A warning data value corresponding to the key.
|
40493
|
+
# Corresponds to the JSON property `value`
|
40494
|
+
# @return [String]
|
40495
|
+
attr_accessor :value
|
40496
|
+
|
40497
|
+
def initialize(**args)
|
40498
|
+
update!(**args)
|
40499
|
+
end
|
40500
|
+
|
40501
|
+
# Update properties of this object
|
40502
|
+
def update!(**args)
|
40503
|
+
@key = args[:key] if args.key?(:key)
|
40504
|
+
@value = args[:value] if args.key?(:value)
|
40505
|
+
end
|
40506
|
+
end
|
40507
|
+
end
|
40508
|
+
end
|
40509
|
+
|
40239
40510
|
#
|
40240
40511
|
class TargetTcpProxiesSetBackendServiceRequest
|
40241
40512
|
include Google::Apis::Core::Hashable
|
@@ -40369,6 +40640,130 @@ module Google
|
|
40369
40640
|
end
|
40370
40641
|
end
|
40371
40642
|
|
40643
|
+
#
|
40644
|
+
class TargetTcpProxyAggregatedList
|
40645
|
+
include Google::Apis::Core::Hashable
|
40646
|
+
|
40647
|
+
# [Output Only] Unique identifier for the resource; defined by the server.
|
40648
|
+
# Corresponds to the JSON property `id`
|
40649
|
+
# @return [String]
|
40650
|
+
attr_accessor :id
|
40651
|
+
|
40652
|
+
# A list of TargetTcpProxiesScopedList resources.
|
40653
|
+
# Corresponds to the JSON property `items`
|
40654
|
+
# @return [Hash<String,Google::Apis::ComputeBeta::TargetTcpProxiesScopedList>]
|
40655
|
+
attr_accessor :items
|
40656
|
+
|
40657
|
+
# [Output Only] Type of resource. Always compute#targetTcpProxyAggregatedList
|
40658
|
+
# for lists of Target TCP Proxies.
|
40659
|
+
# Corresponds to the JSON property `kind`
|
40660
|
+
# @return [String]
|
40661
|
+
attr_accessor :kind
|
40662
|
+
|
40663
|
+
# [Output Only] This token allows you to get the next page of results for list
|
40664
|
+
# requests. If the number of results is larger than maxResults, use the
|
40665
|
+
# nextPageToken as a value for the query parameter pageToken in the next list
|
40666
|
+
# request. Subsequent list requests will have their own nextPageToken to
|
40667
|
+
# continue paging through the results.
|
40668
|
+
# Corresponds to the JSON property `nextPageToken`
|
40669
|
+
# @return [String]
|
40670
|
+
attr_accessor :next_page_token
|
40671
|
+
|
40672
|
+
# [Output Only] Server-defined URL for this resource.
|
40673
|
+
# Corresponds to the JSON property `selfLink`
|
40674
|
+
# @return [String]
|
40675
|
+
attr_accessor :self_link
|
40676
|
+
|
40677
|
+
# [Output Only] Unreachable resources.
|
40678
|
+
# Corresponds to the JSON property `unreachables`
|
40679
|
+
# @return [Array<String>]
|
40680
|
+
attr_accessor :unreachables
|
40681
|
+
|
40682
|
+
# [Output Only] Informational warning message.
|
40683
|
+
# Corresponds to the JSON property `warning`
|
40684
|
+
# @return [Google::Apis::ComputeBeta::TargetTcpProxyAggregatedList::Warning]
|
40685
|
+
attr_accessor :warning
|
40686
|
+
|
40687
|
+
def initialize(**args)
|
40688
|
+
update!(**args)
|
40689
|
+
end
|
40690
|
+
|
40691
|
+
# Update properties of this object
|
40692
|
+
def update!(**args)
|
40693
|
+
@id = args[:id] if args.key?(:id)
|
40694
|
+
@items = args[:items] if args.key?(:items)
|
40695
|
+
@kind = args[:kind] if args.key?(:kind)
|
40696
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
40697
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
40698
|
+
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
40699
|
+
@warning = args[:warning] if args.key?(:warning)
|
40700
|
+
end
|
40701
|
+
|
40702
|
+
# [Output Only] Informational warning message.
|
40703
|
+
class Warning
|
40704
|
+
include Google::Apis::Core::Hashable
|
40705
|
+
|
40706
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
40707
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
40708
|
+
# Corresponds to the JSON property `code`
|
40709
|
+
# @return [String]
|
40710
|
+
attr_accessor :code
|
40711
|
+
|
40712
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
40713
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
40714
|
+
# Corresponds to the JSON property `data`
|
40715
|
+
# @return [Array<Google::Apis::ComputeBeta::TargetTcpProxyAggregatedList::Warning::Datum>]
|
40716
|
+
attr_accessor :data
|
40717
|
+
|
40718
|
+
# [Output Only] A human-readable description of the warning code.
|
40719
|
+
# Corresponds to the JSON property `message`
|
40720
|
+
# @return [String]
|
40721
|
+
attr_accessor :message
|
40722
|
+
|
40723
|
+
def initialize(**args)
|
40724
|
+
update!(**args)
|
40725
|
+
end
|
40726
|
+
|
40727
|
+
# Update properties of this object
|
40728
|
+
def update!(**args)
|
40729
|
+
@code = args[:code] if args.key?(:code)
|
40730
|
+
@data = args[:data] if args.key?(:data)
|
40731
|
+
@message = args[:message] if args.key?(:message)
|
40732
|
+
end
|
40733
|
+
|
40734
|
+
#
|
40735
|
+
class Datum
|
40736
|
+
include Google::Apis::Core::Hashable
|
40737
|
+
|
40738
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
40739
|
+
# For example, for warnings where there are no results in a list request for a
|
40740
|
+
# particular zone, this key might be scope and the key value might be the zone
|
40741
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
40742
|
+
# suggested replacement, or a warning about invalid network settings (for
|
40743
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
40744
|
+
# for IP forwarding).
|
40745
|
+
# Corresponds to the JSON property `key`
|
40746
|
+
# @return [String]
|
40747
|
+
attr_accessor :key
|
40748
|
+
|
40749
|
+
# [Output Only] A warning data value corresponding to the key.
|
40750
|
+
# Corresponds to the JSON property `value`
|
40751
|
+
# @return [String]
|
40752
|
+
attr_accessor :value
|
40753
|
+
|
40754
|
+
def initialize(**args)
|
40755
|
+
update!(**args)
|
40756
|
+
end
|
40757
|
+
|
40758
|
+
# Update properties of this object
|
40759
|
+
def update!(**args)
|
40760
|
+
@key = args[:key] if args.key?(:key)
|
40761
|
+
@value = args[:value] if args.key?(:value)
|
40762
|
+
end
|
40763
|
+
end
|
40764
|
+
end
|
40765
|
+
end
|
40766
|
+
|
40372
40767
|
# Contains a list of TargetTcpProxy resources.
|
40373
40768
|
class TargetTcpProxyList
|
40374
40769
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeBeta
|
18
18
|
# Version of the google-apis-compute_beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.51.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.10.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220918"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -544,6 +544,12 @@ module Google
|
|
544
544
|
include Google::Apis::Core::JsonObjectSupport
|
545
545
|
end
|
546
546
|
|
547
|
+
class BundledLocalSsds
|
548
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
549
|
+
|
550
|
+
include Google::Apis::Core::JsonObjectSupport
|
551
|
+
end
|
552
|
+
|
547
553
|
class CacheInvalidationRule
|
548
554
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
549
555
|
|
@@ -3976,6 +3982,12 @@ module Google
|
|
3976
3982
|
include Google::Apis::Core::JsonObjectSupport
|
3977
3983
|
end
|
3978
3984
|
|
3985
|
+
class ResourceStatus
|
3986
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3987
|
+
|
3988
|
+
include Google::Apis::Core::JsonObjectSupport
|
3989
|
+
end
|
3990
|
+
|
3979
3991
|
class RolloutPolicy
|
3980
3992
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3981
3993
|
|
@@ -5284,6 +5296,24 @@ module Google
|
|
5284
5296
|
include Google::Apis::Core::JsonObjectSupport
|
5285
5297
|
end
|
5286
5298
|
|
5299
|
+
class TargetTcpProxiesScopedList
|
5300
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5301
|
+
|
5302
|
+
class Warning
|
5303
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5304
|
+
|
5305
|
+
class Datum
|
5306
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5307
|
+
|
5308
|
+
include Google::Apis::Core::JsonObjectSupport
|
5309
|
+
end
|
5310
|
+
|
5311
|
+
include Google::Apis::Core::JsonObjectSupport
|
5312
|
+
end
|
5313
|
+
|
5314
|
+
include Google::Apis::Core::JsonObjectSupport
|
5315
|
+
end
|
5316
|
+
|
5287
5317
|
class TargetTcpProxiesSetBackendServiceRequest
|
5288
5318
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5289
5319
|
|
@@ -5302,6 +5332,24 @@ module Google
|
|
5302
5332
|
include Google::Apis::Core::JsonObjectSupport
|
5303
5333
|
end
|
5304
5334
|
|
5335
|
+
class TargetTcpProxyAggregatedList
|
5336
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5337
|
+
|
5338
|
+
class Warning
|
5339
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5340
|
+
|
5341
|
+
class Datum
|
5342
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5343
|
+
|
5344
|
+
include Google::Apis::Core::JsonObjectSupport
|
5345
|
+
end
|
5346
|
+
|
5347
|
+
include Google::Apis::Core::JsonObjectSupport
|
5348
|
+
end
|
5349
|
+
|
5350
|
+
include Google::Apis::Core::JsonObjectSupport
|
5351
|
+
end
|
5352
|
+
|
5305
5353
|
class TargetTcpProxyList
|
5306
5354
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5307
5355
|
|
@@ -5953,6 +6001,7 @@ module Google
|
|
5953
6001
|
property :description, as: 'description'
|
5954
6002
|
property :id, :numeric_string => true, as: 'id'
|
5955
6003
|
property :ip_version, as: 'ipVersion'
|
6004
|
+
property :ipv6_endpoint_type, as: 'ipv6EndpointType'
|
5956
6005
|
property :kind, as: 'kind'
|
5957
6006
|
property :label_fingerprint, :base64 => true, as: 'labelFingerprint'
|
5958
6007
|
hash :labels, as: 'labels'
|
@@ -6863,6 +6912,14 @@ module Google
|
|
6863
6912
|
end
|
6864
6913
|
end
|
6865
6914
|
|
6915
|
+
class BundledLocalSsds
|
6916
|
+
# @private
|
6917
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6918
|
+
property :default_interface, as: 'defaultInterface'
|
6919
|
+
property :partition_count, as: 'partitionCount'
|
6920
|
+
end
|
6921
|
+
end
|
6922
|
+
|
6866
6923
|
class CacheInvalidationRule
|
6867
6924
|
# @private
|
6868
6925
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7759,12 +7816,14 @@ module Google
|
|
7759
7816
|
# @private
|
7760
7817
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7761
7818
|
collection :dest_address_groups, as: 'destAddressGroups'
|
7819
|
+
collection :dest_fqdns, as: 'destFqdns'
|
7762
7820
|
collection :dest_ip_ranges, as: 'destIpRanges'
|
7763
7821
|
collection :dest_region_codes, as: 'destRegionCodes'
|
7764
7822
|
collection :dest_threat_intelligences, as: 'destThreatIntelligences'
|
7765
7823
|
collection :layer4_configs, as: 'layer4Configs', class: Google::Apis::ComputeBeta::FirewallPolicyRuleMatcherLayer4Config, decorator: Google::Apis::ComputeBeta::FirewallPolicyRuleMatcherLayer4Config::Representation
|
7766
7824
|
|
7767
7825
|
collection :src_address_groups, as: 'srcAddressGroups'
|
7826
|
+
collection :src_fqdns, as: 'srcFqdns'
|
7768
7827
|
collection :src_ip_ranges, as: 'srcIpRanges'
|
7769
7828
|
collection :src_region_codes, as: 'srcRegionCodes'
|
7770
7829
|
collection :src_secure_tags, as: 'srcSecureTags', class: Google::Apis::ComputeBeta::FirewallPolicyRuleSecureTag, decorator: Google::Apis::ComputeBeta::FirewallPolicyRuleSecureTag::Representation
|
@@ -8754,6 +8813,8 @@ module Google
|
|
8754
8813
|
property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::ComputeBeta::ReservationAffinity, decorator: Google::Apis::ComputeBeta::ReservationAffinity::Representation
|
8755
8814
|
|
8756
8815
|
collection :resource_policies, as: 'resourcePolicies'
|
8816
|
+
property :resource_status, as: 'resourceStatus', class: Google::Apis::ComputeBeta::ResourceStatus, decorator: Google::Apis::ComputeBeta::ResourceStatus::Representation
|
8817
|
+
|
8757
8818
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
8758
8819
|
property :scheduling, as: 'scheduling', class: Google::Apis::ComputeBeta::Scheduling, decorator: Google::Apis::ComputeBeta::Scheduling::Representation
|
8759
8820
|
|
@@ -10372,6 +10433,8 @@ module Google
|
|
10372
10433
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10373
10434
|
collection :accelerators, as: 'accelerators', class: Google::Apis::ComputeBeta::MachineType::Accelerator, decorator: Google::Apis::ComputeBeta::MachineType::Accelerator::Representation
|
10374
10435
|
|
10436
|
+
property :bundled_local_ssds, as: 'bundledLocalSsds', class: Google::Apis::ComputeBeta::BundledLocalSsds, decorator: Google::Apis::ComputeBeta::BundledLocalSsds::Representation
|
10437
|
+
|
10375
10438
|
property :creation_timestamp, as: 'creationTimestamp'
|
10376
10439
|
property :deprecated, as: 'deprecated', class: Google::Apis::ComputeBeta::DeprecationStatus, decorator: Google::Apis::ComputeBeta::DeprecationStatus::Representation
|
10377
10440
|
|
@@ -13248,6 +13311,13 @@ module Google
|
|
13248
13311
|
end
|
13249
13312
|
end
|
13250
13313
|
|
13314
|
+
class ResourceStatus
|
13315
|
+
# @private
|
13316
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
13317
|
+
property :physical_host, as: 'physicalHost'
|
13318
|
+
end
|
13319
|
+
end
|
13320
|
+
|
13251
13321
|
class RolloutPolicy
|
13252
13322
|
# @private
|
13253
13323
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -13596,12 +13666,15 @@ module Google
|
|
13596
13666
|
|
13597
13667
|
property :bfd_status, as: 'bfdStatus', class: Google::Apis::ComputeBeta::BfdStatus, decorator: Google::Apis::ComputeBeta::BfdStatus::Representation
|
13598
13668
|
|
13669
|
+
property :enable_ipv6, as: 'enableIpv6'
|
13599
13670
|
property :ip_address, as: 'ipAddress'
|
13671
|
+
property :ipv6_nexthop_address, as: 'ipv6NexthopAddress'
|
13600
13672
|
property :linked_vpn_tunnel, as: 'linkedVpnTunnel'
|
13601
13673
|
property :md5_auth_enabled, as: 'md5AuthEnabled'
|
13602
13674
|
property :name, as: 'name'
|
13603
13675
|
property :num_learned_routes, as: 'numLearnedRoutes'
|
13604
13676
|
property :peer_ip_address, as: 'peerIpAddress'
|
13677
|
+
property :peer_ipv6_nexthop_address, as: 'peerIpv6NexthopAddress'
|
13605
13678
|
property :router_appliance_instance, as: 'routerApplianceInstance'
|
13606
13679
|
property :state, as: 'state'
|
13607
13680
|
property :status, as: 'status'
|
@@ -15669,6 +15742,34 @@ module Google
|
|
15669
15742
|
end
|
15670
15743
|
end
|
15671
15744
|
|
15745
|
+
class TargetTcpProxiesScopedList
|
15746
|
+
# @private
|
15747
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15748
|
+
collection :target_tcp_proxies, as: 'targetTcpProxies', class: Google::Apis::ComputeBeta::TargetTcpProxy, decorator: Google::Apis::ComputeBeta::TargetTcpProxy::Representation
|
15749
|
+
|
15750
|
+
property :warning, as: 'warning', class: Google::Apis::ComputeBeta::TargetTcpProxiesScopedList::Warning, decorator: Google::Apis::ComputeBeta::TargetTcpProxiesScopedList::Warning::Representation
|
15751
|
+
|
15752
|
+
end
|
15753
|
+
|
15754
|
+
class Warning
|
15755
|
+
# @private
|
15756
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15757
|
+
property :code, as: 'code'
|
15758
|
+
collection :data, as: 'data', class: Google::Apis::ComputeBeta::TargetTcpProxiesScopedList::Warning::Datum, decorator: Google::Apis::ComputeBeta::TargetTcpProxiesScopedList::Warning::Datum::Representation
|
15759
|
+
|
15760
|
+
property :message, as: 'message'
|
15761
|
+
end
|
15762
|
+
|
15763
|
+
class Datum
|
15764
|
+
# @private
|
15765
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15766
|
+
property :key, as: 'key'
|
15767
|
+
property :value, as: 'value'
|
15768
|
+
end
|
15769
|
+
end
|
15770
|
+
end
|
15771
|
+
end
|
15772
|
+
|
15672
15773
|
class TargetTcpProxiesSetBackendServiceRequest
|
15673
15774
|
# @private
|
15674
15775
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -15699,6 +15800,39 @@ module Google
|
|
15699
15800
|
end
|
15700
15801
|
end
|
15701
15802
|
|
15803
|
+
class TargetTcpProxyAggregatedList
|
15804
|
+
# @private
|
15805
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15806
|
+
property :id, as: 'id'
|
15807
|
+
hash :items, as: 'items', class: Google::Apis::ComputeBeta::TargetTcpProxiesScopedList, decorator: Google::Apis::ComputeBeta::TargetTcpProxiesScopedList::Representation
|
15808
|
+
|
15809
|
+
property :kind, as: 'kind'
|
15810
|
+
property :next_page_token, as: 'nextPageToken'
|
15811
|
+
property :self_link, as: 'selfLink'
|
15812
|
+
collection :unreachables, as: 'unreachables'
|
15813
|
+
property :warning, as: 'warning', class: Google::Apis::ComputeBeta::TargetTcpProxyAggregatedList::Warning, decorator: Google::Apis::ComputeBeta::TargetTcpProxyAggregatedList::Warning::Representation
|
15814
|
+
|
15815
|
+
end
|
15816
|
+
|
15817
|
+
class Warning
|
15818
|
+
# @private
|
15819
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15820
|
+
property :code, as: 'code'
|
15821
|
+
collection :data, as: 'data', class: Google::Apis::ComputeBeta::TargetTcpProxyAggregatedList::Warning::Datum, decorator: Google::Apis::ComputeBeta::TargetTcpProxyAggregatedList::Warning::Datum::Representation
|
15822
|
+
|
15823
|
+
property :message, as: 'message'
|
15824
|
+
end
|
15825
|
+
|
15826
|
+
class Datum
|
15827
|
+
# @private
|
15828
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15829
|
+
property :key, as: 'key'
|
15830
|
+
property :value, as: 'value'
|
15831
|
+
end
|
15832
|
+
end
|
15833
|
+
end
|
15834
|
+
end
|
15835
|
+
|
15702
15836
|
class TargetTcpProxyList
|
15703
15837
|
# @private
|
15704
15838
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -39620,6 +39620,103 @@ module Google
|
|
39620
39620
|
execute_or_queue_command(command, &block)
|
39621
39621
|
end
|
39622
39622
|
|
39623
|
+
# Retrieves the list of all TargetTcpProxy resources, regional and global,
|
39624
|
+
# available to the specified project.
|
39625
|
+
# @param [String] project
|
39626
|
+
# Name of the project scoping this request.
|
39627
|
+
# @param [String] filter
|
39628
|
+
# A filter expression that filters resources listed in the response. Most
|
39629
|
+
# Compute resources support two types of filter expressions: expressions that
|
39630
|
+
# support regular expressions and expressions that follow API improvement
|
39631
|
+
# proposal AIP-160. If you want to use AIP-160, your expression must specify the
|
39632
|
+
# field name, an operator, and the value that you want to use for filtering. The
|
39633
|
+
# value must be a string, a number, or a boolean. The operator must be either `=`
|
39634
|
+
# , `!=`, `>`, `<`, `<=`, `>=` or `:`. For example, if you are filtering Compute
|
39635
|
+
# Engine instances, you can exclude instances named `example-instance` by
|
39636
|
+
# specifying `name != example-instance`. The `:` operator can be used with
|
39637
|
+
# string fields to match substrings. For non-string fields it is equivalent to
|
39638
|
+
# the `=` operator. The `:*` comparison can be used to test whether a key has
|
39639
|
+
# been defined. For example, to find all objects with `owner` label use: ```
|
39640
|
+
# labels.owner:* ``` You can also filter nested fields. For example, you could
|
39641
|
+
# specify `scheduling.automaticRestart = false` to include instances only if
|
39642
|
+
# they are not scheduled for automatic restarts. You can use filtering on nested
|
39643
|
+
# fields to filter based on resource labels. To filter on multiple expressions,
|
39644
|
+
# provide each separate expression within parentheses. For example: ``` (
|
39645
|
+
# scheduling.automaticRestart = true) (cpuPlatform = "Intel Skylake") ``` By
|
39646
|
+
# default, each expression is an `AND` expression. However, you can include `AND`
|
39647
|
+
# and `OR` expressions explicitly. For example: ``` (cpuPlatform = "Intel
|
39648
|
+
# Skylake") OR (cpuPlatform = "Intel Broadwell") AND (scheduling.
|
39649
|
+
# automaticRestart = true) ``` If you want to use a regular expression, use the `
|
39650
|
+
# eq` (equal) or `ne` (not equal) operator against a single un-parenthesized
|
39651
|
+
# expression with or without quotes or against multiple parenthesized
|
39652
|
+
# expressions. Examples: `fieldname eq unquoted literal` `fieldname eq 'single
|
39653
|
+
# quoted literal'` `fieldname eq "double quoted literal"` `(fieldname1 eq
|
39654
|
+
# literal) (fieldname2 ne "literal")` The literal value is interpreted as a
|
39655
|
+
# regular expression using Google RE2 library syntax. The literal value must
|
39656
|
+
# match the entire field. For example, to filter for instances that do not end
|
39657
|
+
# with name "instance", you would use `name ne .*instance`.
|
39658
|
+
# @param [Boolean] include_all_scopes
|
39659
|
+
# Indicates whether every visible scope for each scope type (zone, region,
|
39660
|
+
# global) should be included in the response. For new resource types added after
|
39661
|
+
# this field, the flag has no effect as new resource types will always include
|
39662
|
+
# every visible scope for each scope type in response. For resource types which
|
39663
|
+
# predate this field, if this flag is omitted or false, only scopes of the scope
|
39664
|
+
# types where the resource type is expected to be found will be included.
|
39665
|
+
# @param [Fixnum] max_results
|
39666
|
+
# The maximum number of results per page that should be returned. If the number
|
39667
|
+
# of available results is larger than `maxResults`, Compute Engine returns a `
|
39668
|
+
# nextPageToken` that can be used to get the next page of results in subsequent
|
39669
|
+
# list requests. Acceptable values are `0` to `500`, inclusive. (Default: `500`)
|
39670
|
+
# @param [String] order_by
|
39671
|
+
# Sorts list results by a certain order. By default, results are returned in
|
39672
|
+
# alphanumerical order based on the resource name. You can also sort results in
|
39673
|
+
# descending order based on the creation timestamp using `orderBy="
|
39674
|
+
# creationTimestamp desc"`. This sorts results based on the `creationTimestamp`
|
39675
|
+
# field in reverse chronological order (newest result first). Use this to sort
|
39676
|
+
# resources like operations so that the newest operation is returned first.
|
39677
|
+
# Currently, only sorting by `name` or `creationTimestamp desc` is supported.
|
39678
|
+
# @param [String] page_token
|
39679
|
+
# Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned
|
39680
|
+
# by a previous list request to get the next page of results.
|
39681
|
+
# @param [Boolean] return_partial_success
|
39682
|
+
# Opt-in for partial success behavior which provides partial results in case of
|
39683
|
+
# failure. The default value is false.
|
39684
|
+
# @param [String] fields
|
39685
|
+
# Selector specifying which fields to include in a partial response.
|
39686
|
+
# @param [String] quota_user
|
39687
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
39688
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
39689
|
+
# @param [String] user_ip
|
39690
|
+
# Legacy name for parameter that has been superseded by `quotaUser`.
|
39691
|
+
# @param [Google::Apis::RequestOptions] options
|
39692
|
+
# Request-specific options
|
39693
|
+
#
|
39694
|
+
# @yield [result, err] Result & error if block supplied
|
39695
|
+
# @yieldparam result [Google::Apis::ComputeBeta::TargetTcpProxyAggregatedList] parsed result object
|
39696
|
+
# @yieldparam err [StandardError] error object if request failed
|
39697
|
+
#
|
39698
|
+
# @return [Google::Apis::ComputeBeta::TargetTcpProxyAggregatedList]
|
39699
|
+
#
|
39700
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
39701
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
39702
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
39703
|
+
def aggregated_target_tcp_proxy_list(project, filter: nil, include_all_scopes: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
39704
|
+
command = make_simple_command(:get, 'projects/{project}/aggregated/targetTcpProxies', options)
|
39705
|
+
command.response_representation = Google::Apis::ComputeBeta::TargetTcpProxyAggregatedList::Representation
|
39706
|
+
command.response_class = Google::Apis::ComputeBeta::TargetTcpProxyAggregatedList
|
39707
|
+
command.params['project'] = project unless project.nil?
|
39708
|
+
command.query['filter'] = filter unless filter.nil?
|
39709
|
+
command.query['includeAllScopes'] = include_all_scopes unless include_all_scopes.nil?
|
39710
|
+
command.query['maxResults'] = max_results unless max_results.nil?
|
39711
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
39712
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
39713
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
39714
|
+
command.query['fields'] = fields unless fields.nil?
|
39715
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
39716
|
+
command.query['userIp'] = user_ip unless user_ip.nil?
|
39717
|
+
execute_or_queue_command(command, &block)
|
39718
|
+
end
|
39719
|
+
|
39623
39720
|
# Deletes the specified TargetTcpProxy resource.
|
39624
39721
|
# @param [String] project
|
39625
39722
|
# Project ID for this request.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.51.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-10-03 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_beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.51.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|