google-apis-compute_alpha 0.76.0 → 0.77.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_alpha/classes.rb +599 -198
- data/lib/google/apis/compute_alpha/gem_version.rb +2 -2
- data/lib/google/apis/compute_alpha/representations.rb +203 -60
- data/lib/google/apis/compute_alpha/service.rb +450 -41
- metadata +3 -3
@@ -2954,7 +2954,7 @@ module Google
|
|
2954
2954
|
attr_accessor :schedule
|
2955
2955
|
|
2956
2956
|
# The time zone to use when interpreting the schedule. The value of this field
|
2957
|
-
# must be a time zone name from the tz database:
|
2957
|
+
# must be a time zone name from the tz database: https://en.wikipedia.org/wiki/
|
2958
2958
|
# Tz_database. This field is assigned a default value of “UTC” if left empty.
|
2959
2959
|
# Corresponds to the JSON property `timeZone`
|
2960
2960
|
# @return [String]
|
@@ -4684,6 +4684,11 @@ module Google
|
|
4684
4684
|
# @return [String]
|
4685
4685
|
attr_accessor :id
|
4686
4686
|
|
4687
|
+
# A list of BackendService resources.
|
4688
|
+
# Corresponds to the JSON property `items`
|
4689
|
+
# @return [Array<Google::Apis::ComputeAlpha::BackendService>]
|
4690
|
+
attr_accessor :items
|
4691
|
+
|
4687
4692
|
# [Output Only] Type of resource. Always compute#usableBackendServiceList for
|
4688
4693
|
# lists of usable backend services.
|
4689
4694
|
# Corresponds to the JSON property `kind`
|
@@ -4716,6 +4721,7 @@ module Google
|
|
4716
4721
|
# Update properties of this object
|
4717
4722
|
def update!(**args)
|
4718
4723
|
@id = args[:id] if args.key?(:id)
|
4724
|
+
@items = args[:items] if args.key?(:items)
|
4719
4725
|
@kind = args[:kind] if args.key?(:kind)
|
4720
4726
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
4721
4727
|
@self_link = args[:self_link] if args.key?(:self_link)
|
@@ -5332,6 +5338,101 @@ module Google
|
|
5332
5338
|
end
|
5333
5339
|
end
|
5334
5340
|
|
5341
|
+
#
|
5342
|
+
class BgpRoute
|
5343
|
+
include Google::Apis::Core::Hashable
|
5344
|
+
|
5345
|
+
# [Output only] AS-PATH for the route
|
5346
|
+
# Corresponds to the JSON property `asPaths`
|
5347
|
+
# @return [Array<Google::Apis::ComputeAlpha::BgpRouteAsPath>]
|
5348
|
+
attr_accessor :as_paths
|
5349
|
+
|
5350
|
+
# [Output only] BGP communities in human-readable A:B format.
|
5351
|
+
# Corresponds to the JSON property `communities`
|
5352
|
+
# @return [Array<String>]
|
5353
|
+
attr_accessor :communities
|
5354
|
+
|
5355
|
+
# Network Layer Reachability Information (NLRI) for a route.
|
5356
|
+
# Corresponds to the JSON property `destination`
|
5357
|
+
# @return [Google::Apis::ComputeAlpha::BgpRouteNetworkLayerReachabilityInformation]
|
5358
|
+
attr_accessor :destination
|
5359
|
+
|
5360
|
+
# [Output only] BGP multi-exit discriminator
|
5361
|
+
# Corresponds to the JSON property `med`
|
5362
|
+
# @return [Fixnum]
|
5363
|
+
attr_accessor :med
|
5364
|
+
|
5365
|
+
# [Output only] BGP origin (EGP, IGP or INCOMPLETE)
|
5366
|
+
# Corresponds to the JSON property `origin`
|
5367
|
+
# @return [String]
|
5368
|
+
attr_accessor :origin
|
5369
|
+
|
5370
|
+
def initialize(**args)
|
5371
|
+
update!(**args)
|
5372
|
+
end
|
5373
|
+
|
5374
|
+
# Update properties of this object
|
5375
|
+
def update!(**args)
|
5376
|
+
@as_paths = args[:as_paths] if args.key?(:as_paths)
|
5377
|
+
@communities = args[:communities] if args.key?(:communities)
|
5378
|
+
@destination = args[:destination] if args.key?(:destination)
|
5379
|
+
@med = args[:med] if args.key?(:med)
|
5380
|
+
@origin = args[:origin] if args.key?(:origin)
|
5381
|
+
end
|
5382
|
+
end
|
5383
|
+
|
5384
|
+
#
|
5385
|
+
class BgpRouteAsPath
|
5386
|
+
include Google::Apis::Core::Hashable
|
5387
|
+
|
5388
|
+
# [Output only] ASNs in the path segment. When type is SEQUENCE, these are
|
5389
|
+
# ordered.
|
5390
|
+
# Corresponds to the JSON property `asns`
|
5391
|
+
# @return [Array<Fixnum>]
|
5392
|
+
attr_accessor :asns
|
5393
|
+
|
5394
|
+
# [Output only] Type of AS-PATH segment (SEQUENCE or SET)
|
5395
|
+
# Corresponds to the JSON property `type`
|
5396
|
+
# @return [String]
|
5397
|
+
attr_accessor :type
|
5398
|
+
|
5399
|
+
def initialize(**args)
|
5400
|
+
update!(**args)
|
5401
|
+
end
|
5402
|
+
|
5403
|
+
# Update properties of this object
|
5404
|
+
def update!(**args)
|
5405
|
+
@asns = args[:asns] if args.key?(:asns)
|
5406
|
+
@type = args[:type] if args.key?(:type)
|
5407
|
+
end
|
5408
|
+
end
|
5409
|
+
|
5410
|
+
# Network Layer Reachability Information (NLRI) for a route.
|
5411
|
+
class BgpRouteNetworkLayerReachabilityInformation
|
5412
|
+
include Google::Apis::Core::Hashable
|
5413
|
+
|
5414
|
+
# Human readable CIDR notation for a prefix. E.g. 10.42.0.0/16.
|
5415
|
+
# Corresponds to the JSON property `destination`
|
5416
|
+
# @return [String]
|
5417
|
+
attr_accessor :destination
|
5418
|
+
|
5419
|
+
# If the BGP session supports multiple paths (RFC 7911), the path identifier for
|
5420
|
+
# this route.
|
5421
|
+
# Corresponds to the JSON property `pathId`
|
5422
|
+
# @return [Fixnum]
|
5423
|
+
attr_accessor :path_id
|
5424
|
+
|
5425
|
+
def initialize(**args)
|
5426
|
+
update!(**args)
|
5427
|
+
end
|
5428
|
+
|
5429
|
+
# Update properties of this object
|
5430
|
+
def update!(**args)
|
5431
|
+
@destination = args[:destination] if args.key?(:destination)
|
5432
|
+
@path_id = args[:path_id] if args.key?(:path_id)
|
5433
|
+
end
|
5434
|
+
end
|
5435
|
+
|
5335
5436
|
# Associates `members`, or principals, with a `role`.
|
5336
5437
|
class Binding
|
5337
5438
|
include Google::Apis::Core::Hashable
|
@@ -5738,70 +5839,6 @@ module Google
|
|
5738
5839
|
end
|
5739
5840
|
end
|
5740
5841
|
|
5741
|
-
# Represents the network information between workload placements.
|
5742
|
-
class CapacityConstraint
|
5743
|
-
include Google::Apis::Core::Hashable
|
5744
|
-
|
5745
|
-
#
|
5746
|
-
# Corresponds to the JSON property `constraintMetadata`
|
5747
|
-
# @return [String]
|
5748
|
-
attr_accessor :constraint_metadata
|
5749
|
-
|
5750
|
-
# Weighted sum of BandwidthTerms (each term is coefficient * term) must be less
|
5751
|
-
# than or equal to max_sum.
|
5752
|
-
# Corresponds to the JSON property `maxSumGbps`
|
5753
|
-
# @return [Float]
|
5754
|
-
attr_accessor :max_sum_gbps
|
5755
|
-
|
5756
|
-
#
|
5757
|
-
# Corresponds to the JSON property `terms`
|
5758
|
-
# @return [Array<Google::Apis::ComputeAlpha::CapacityConstraintConstraintTerm>]
|
5759
|
-
attr_accessor :terms
|
5760
|
-
|
5761
|
-
def initialize(**args)
|
5762
|
-
update!(**args)
|
5763
|
-
end
|
5764
|
-
|
5765
|
-
# Update properties of this object
|
5766
|
-
def update!(**args)
|
5767
|
-
@constraint_metadata = args[:constraint_metadata] if args.key?(:constraint_metadata)
|
5768
|
-
@max_sum_gbps = args[:max_sum_gbps] if args.key?(:max_sum_gbps)
|
5769
|
-
@terms = args[:terms] if args.key?(:terms)
|
5770
|
-
end
|
5771
|
-
end
|
5772
|
-
|
5773
|
-
#
|
5774
|
-
class CapacityConstraintConstraintTerm
|
5775
|
-
include Google::Apis::Core::Hashable
|
5776
|
-
|
5777
|
-
# Coefficient of this term in the linear expression. The value of the term will
|
5778
|
-
# be coefficient * (demand from src to dst in Gbps).
|
5779
|
-
# Corresponds to the JSON property `coefficient`
|
5780
|
-
# @return [Float]
|
5781
|
-
attr_accessor :coefficient
|
5782
|
-
|
5783
|
-
#
|
5784
|
-
# Corresponds to the JSON property `destinationNode`
|
5785
|
-
# @return [Google::Apis::ComputeAlpha::PlacementLocation]
|
5786
|
-
attr_accessor :destination_node
|
5787
|
-
|
5788
|
-
# Source and destination nodes.
|
5789
|
-
# Corresponds to the JSON property `sourceNode`
|
5790
|
-
# @return [Google::Apis::ComputeAlpha::PlacementLocation]
|
5791
|
-
attr_accessor :source_node
|
5792
|
-
|
5793
|
-
def initialize(**args)
|
5794
|
-
update!(**args)
|
5795
|
-
end
|
5796
|
-
|
5797
|
-
# Update properties of this object
|
5798
|
-
def update!(**args)
|
5799
|
-
@coefficient = args[:coefficient] if args.key?(:coefficient)
|
5800
|
-
@destination_node = args[:destination_node] if args.key?(:destination_node)
|
5801
|
-
@source_node = args[:source_node] if args.key?(:source_node)
|
5802
|
-
end
|
5803
|
-
end
|
5804
|
-
|
5805
5842
|
# [Deprecated] gRPC channel credentials to access the SDS server. gRPC channel
|
5806
5843
|
# credentials to access the SDS server.
|
5807
5844
|
class ChannelCredentials
|
@@ -11954,25 +11991,6 @@ module Google
|
|
11954
11991
|
end
|
11955
11992
|
end
|
11956
11993
|
|
11957
|
-
#
|
11958
|
-
class GetNetworkCapacityConstraintsResponse
|
11959
|
-
include Google::Apis::Core::Hashable
|
11960
|
-
|
11961
|
-
# Set of capacity constraints that describe network adjacency.
|
11962
|
-
# Corresponds to the JSON property `capacityConstraints`
|
11963
|
-
# @return [Array<Google::Apis::ComputeAlpha::CapacityConstraint>]
|
11964
|
-
attr_accessor :capacity_constraints
|
11965
|
-
|
11966
|
-
def initialize(**args)
|
11967
|
-
update!(**args)
|
11968
|
-
end
|
11969
|
-
|
11970
|
-
# Update properties of this object
|
11971
|
-
def update!(**args)
|
11972
|
-
@capacity_constraints = args[:capacity_constraints] if args.key?(:capacity_constraints)
|
11973
|
-
end
|
11974
|
-
end
|
11975
|
-
|
11976
11994
|
#
|
11977
11995
|
class GetOwnerInstanceResponse
|
11978
11996
|
include Google::Apis::Core::Hashable
|
@@ -14767,8 +14785,8 @@ module Google
|
|
14767
14785
|
# weightedBackendServices, service must not be set. Conversely if service is set,
|
14768
14786
|
# routeAction cannot contain any weightedBackendServices. Only one of
|
14769
14787
|
# urlRedirect, service or routeAction.weightedBackendService must be set. URL
|
14770
|
-
# maps for
|
14771
|
-
#
|
14788
|
+
# maps for classic Application Load Balancers only support the urlRewrite action
|
14789
|
+
# within a route rule's routeAction.
|
14772
14790
|
# Corresponds to the JSON property `routeAction`
|
14773
14791
|
# @return [Google::Apis::ComputeAlpha::HttpRouteAction]
|
14774
14792
|
attr_accessor :route_action
|
@@ -27317,9 +27335,8 @@ module Google
|
|
27317
27335
|
|
27318
27336
|
# Represents a collection of network endpoints. A network endpoint group (NEG)
|
27319
27337
|
# defines how a set of endpoints should be reached, whether they are reachable,
|
27320
|
-
# and where they are located. For more information about using NEGs
|
27321
|
-
#
|
27322
|
-
# or Setting up external HTTP(S) Load Balancing with serverless NEGs.
|
27338
|
+
# and where they are located. For more information about using NEGs for
|
27339
|
+
# different use cases, see Network endpoint groups overview.
|
27323
27340
|
class NetworkEndpointGroup
|
27324
27341
|
include Google::Apis::Core::Hashable
|
27325
27342
|
|
@@ -28794,6 +28811,20 @@ module Google
|
|
28794
28811
|
class NetworkRoutingConfig
|
28795
28812
|
include Google::Apis::Core::Hashable
|
28796
28813
|
|
28814
|
+
# Enable comparison of Multi-Exit Discriminators (MED) across routes with
|
28815
|
+
# different neighbor ASNs when using the STANDARD BGP best path selection
|
28816
|
+
# algorithm.
|
28817
|
+
# Corresponds to the JSON property `bgpAlwaysCompareMed`
|
28818
|
+
# @return [Boolean]
|
28819
|
+
attr_accessor :bgp_always_compare_med
|
28820
|
+
alias_method :bgp_always_compare_med?, :bgp_always_compare_med
|
28821
|
+
|
28822
|
+
# The BGP best path selection algorithm to be employed within this network for
|
28823
|
+
# dynamic routes learned by Cloud Routers. Can be LEGACY (default) or STANDARD.
|
28824
|
+
# Corresponds to the JSON property `bgpBestPathSelectionMode`
|
28825
|
+
# @return [String]
|
28826
|
+
attr_accessor :bgp_best_path_selection_mode
|
28827
|
+
|
28797
28828
|
# The network-wide routing mode to use. If set to REGIONAL, this network's Cloud
|
28798
28829
|
# Routers will only advertise routes with subnets of this network in the same
|
28799
28830
|
# region as the router. If set to GLOBAL, this network's Cloud Routers will
|
@@ -28808,6 +28839,8 @@ module Google
|
|
28808
28839
|
|
28809
28840
|
# Update properties of this object
|
28810
28841
|
def update!(**args)
|
28842
|
+
@bgp_always_compare_med = args[:bgp_always_compare_med] if args.key?(:bgp_always_compare_med)
|
28843
|
+
@bgp_best_path_selection_mode = args[:bgp_best_path_selection_mode] if args.key?(:bgp_best_path_selection_mode)
|
28811
28844
|
@routing_mode = args[:routing_mode] if args.key?(:routing_mode)
|
28812
28845
|
end
|
28813
28846
|
end
|
@@ -32876,8 +32909,8 @@ module Google
|
|
32876
32909
|
# If defaultRouteAction specifies any weightedBackendServices, defaultService
|
32877
32910
|
# must not be set. Conversely if defaultService is set, defaultRouteAction
|
32878
32911
|
# cannot contain any weightedBackendServices. Only one of defaultRouteAction or
|
32879
|
-
# defaultUrlRedirect must be set. URL maps for
|
32880
|
-
#
|
32912
|
+
# defaultUrlRedirect must be set. URL maps for classic Application Load
|
32913
|
+
# Balancers only support the urlRewrite action within a path matcher's
|
32881
32914
|
# defaultRouteAction.
|
32882
32915
|
# Corresponds to the JSON property `defaultRouteAction`
|
32883
32916
|
# @return [Google::Apis::ComputeAlpha::HttpRouteAction]
|
@@ -32984,9 +33017,8 @@ module Google
|
|
32984
33017
|
# the request to the selected backend. If routeAction specifies any
|
32985
33018
|
# weightedBackendServices, service must not be set. Conversely if service is set,
|
32986
33019
|
# routeAction cannot contain any weightedBackendServices. Only one of
|
32987
|
-
# routeAction or urlRedirect must be set. URL maps for
|
32988
|
-
#
|
32989
|
-
# routeAction.
|
33020
|
+
# routeAction or urlRedirect must be set. URL maps for classic Application Load
|
33021
|
+
# Balancers only support the urlRewrite action within a path rule's routeAction.
|
32990
33022
|
# Corresponds to the JSON property `routeAction`
|
32991
33023
|
# @return [Google::Apis::ComputeAlpha::HttpRouteAction]
|
32992
33024
|
attr_accessor :route_action
|
@@ -33184,31 +33216,6 @@ module Google
|
|
33184
33216
|
end
|
33185
33217
|
end
|
33186
33218
|
|
33187
|
-
#
|
33188
|
-
class PlacementLocation
|
33189
|
-
include Google::Apis::Core::Hashable
|
33190
|
-
|
33191
|
-
# Aggregation block id of the placement group.
|
33192
|
-
# Corresponds to the JSON property `aggregationBlockId`
|
33193
|
-
# @return [String]
|
33194
|
-
attr_accessor :aggregation_block_id
|
33195
|
-
|
33196
|
-
# Partial or full URL of the resource policy for the placement group.
|
33197
|
-
# Corresponds to the JSON property `resourcePolicy`
|
33198
|
-
# @return [String]
|
33199
|
-
attr_accessor :resource_policy
|
33200
|
-
|
33201
|
-
def initialize(**args)
|
33202
|
-
update!(**args)
|
33203
|
-
end
|
33204
|
-
|
33205
|
-
# Update properties of this object
|
33206
|
-
def update!(**args)
|
33207
|
-
@aggregation_block_id = args[:aggregation_block_id] if args.key?(:aggregation_block_id)
|
33208
|
-
@resource_policy = args[:resource_policy] if args.key?(:resource_policy)
|
33209
|
-
end
|
33210
|
-
end
|
33211
|
-
|
33212
33219
|
# An Identity and Access Management (IAM) policy, which specifies access
|
33213
33220
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
33214
33221
|
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
@@ -37241,17 +37248,19 @@ module Google
|
|
37241
37248
|
# Global](/compute/docs/reference/rest/alpha/urlMaps) * [Regional](/compute/docs/
|
37242
37249
|
# reference/rest/alpha/regionUrlMaps) A URL map resource is a component of
|
37243
37250
|
# certain types of cloud load balancers and Traffic Director: * urlMaps are used
|
37244
|
-
# by external
|
37245
|
-
#
|
37246
|
-
#
|
37247
|
-
#
|
37248
|
-
#
|
37249
|
-
#
|
37250
|
-
#
|
37251
|
-
#
|
37252
|
-
#
|
37253
|
-
# backend service must have a
|
37254
|
-
#
|
37251
|
+
# by global external Application Load Balancers, classic Application Load
|
37252
|
+
# Balancers, and cross-region internal Application Load Balancers. *
|
37253
|
+
# regionUrlMaps are used by internal Application Load Balancers, regional
|
37254
|
+
# external Application Load Balancers and regional internal Application Load
|
37255
|
+
# Balancers. For a list of supported URL map features by the load balancer type,
|
37256
|
+
# see the Load balancing features: Routing and traffic management table. For a
|
37257
|
+
# list of supported URL map features for Traffic Director, see the Traffic
|
37258
|
+
# Director features: Routing and traffic management table. This resource defines
|
37259
|
+
# mappings from hostnames and URL paths to either a backend service or a backend
|
37260
|
+
# bucket. To use the global urlMaps resource, the backend service must have a
|
37261
|
+
# loadBalancingScheme of either EXTERNAL or INTERNAL_SELF_MANAGED. To use the
|
37262
|
+
# regionUrlMaps resource, the backend service must have a loadBalancingScheme of
|
37263
|
+
# INTERNAL_MANAGED. For more information, read URL Map Concepts.
|
37255
37264
|
# Corresponds to the JSON property `resource`
|
37256
37265
|
# @return [Google::Apis::ComputeAlpha::UrlMap]
|
37257
37266
|
attr_accessor :resource
|
@@ -39455,6 +39464,98 @@ module Google
|
|
39455
39464
|
end
|
39456
39465
|
end
|
39457
39466
|
|
39467
|
+
#
|
39468
|
+
class RoutePolicy
|
39469
|
+
include Google::Apis::Core::Hashable
|
39470
|
+
|
39471
|
+
# A fingerprint for the Route Policy being applied to this Router, which is
|
39472
|
+
# essentially a hash of the Route Policy used for optimistic locking. The
|
39473
|
+
# fingerprint is initially generated by Compute Engine and changes after every
|
39474
|
+
# request to modify or update Route Policy. You must always provide an up-to-
|
39475
|
+
# date fingerprint hash in order to update or change labels. To see the latest
|
39476
|
+
# fingerprint, make a getRoutePolicy() request to retrieve a Route Policy.
|
39477
|
+
# Corresponds to the JSON property `fingerprint`
|
39478
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
39479
|
+
# @return [String]
|
39480
|
+
attr_accessor :fingerprint
|
39481
|
+
|
39482
|
+
# Route Policy name, which must be a resource ID segment and unique within all
|
39483
|
+
# the router's Route Policies. Name should conform to RFC1035.
|
39484
|
+
# Corresponds to the JSON property `name`
|
39485
|
+
# @return [String]
|
39486
|
+
attr_accessor :name
|
39487
|
+
|
39488
|
+
# List of terms (the order in the list is not important, they are evaluated in
|
39489
|
+
# order of priority). Order of policies is not retained and might change when
|
39490
|
+
# getting policy later.
|
39491
|
+
# Corresponds to the JSON property `terms`
|
39492
|
+
# @return [Array<Google::Apis::ComputeAlpha::RoutePolicyPolicyTerm>]
|
39493
|
+
attr_accessor :terms
|
39494
|
+
|
39495
|
+
#
|
39496
|
+
# Corresponds to the JSON property `type`
|
39497
|
+
# @return [String]
|
39498
|
+
attr_accessor :type
|
39499
|
+
|
39500
|
+
def initialize(**args)
|
39501
|
+
update!(**args)
|
39502
|
+
end
|
39503
|
+
|
39504
|
+
# Update properties of this object
|
39505
|
+
def update!(**args)
|
39506
|
+
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
39507
|
+
@name = args[:name] if args.key?(:name)
|
39508
|
+
@terms = args[:terms] if args.key?(:terms)
|
39509
|
+
@type = args[:type] if args.key?(:type)
|
39510
|
+
end
|
39511
|
+
end
|
39512
|
+
|
39513
|
+
#
|
39514
|
+
class RoutePolicyPolicyTerm
|
39515
|
+
include Google::Apis::Core::Hashable
|
39516
|
+
|
39517
|
+
# CEL expressions to evaluate to modify a route when this term matches.
|
39518
|
+
# Corresponds to the JSON property `actions`
|
39519
|
+
# @return [Array<Google::Apis::ComputeAlpha::Expr>]
|
39520
|
+
attr_accessor :actions
|
39521
|
+
|
39522
|
+
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
39523
|
+
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
39524
|
+
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
39525
|
+
# "Summary size limit" description: "Determines if a summary is less than 100
|
39526
|
+
# chars" expression: "document.summary.size() < 100" Example (Equality): title: "
|
39527
|
+
# Requestor is owner" description: "Determines if requestor is the document
|
39528
|
+
# owner" expression: "document.owner == request.auth.claims.email" Example (
|
39529
|
+
# Logic): title: "Public documents" description: "Determine whether the document
|
39530
|
+
# should be publicly visible" expression: "document.type != 'private' &&
|
39531
|
+
# document.type != 'internal'" Example (Data Manipulation): title: "Notification
|
39532
|
+
# string" description: "Create a notification string with a timestamp."
|
39533
|
+
# expression: "'New message received at ' + string(document.create_time)" The
|
39534
|
+
# exact variables and functions that may be referenced within an expression are
|
39535
|
+
# determined by the service that evaluates it. See the service documentation for
|
39536
|
+
# additional information.
|
39537
|
+
# Corresponds to the JSON property `match`
|
39538
|
+
# @return [Google::Apis::ComputeAlpha::Expr]
|
39539
|
+
attr_accessor :match
|
39540
|
+
|
39541
|
+
# The evaluation priority for this term, which must be between 0 (inclusive) and
|
39542
|
+
# 2^31 (exclusive), and unique within the list.
|
39543
|
+
# Corresponds to the JSON property `priority`
|
39544
|
+
# @return [Fixnum]
|
39545
|
+
attr_accessor :priority
|
39546
|
+
|
39547
|
+
def initialize(**args)
|
39548
|
+
update!(**args)
|
39549
|
+
end
|
39550
|
+
|
39551
|
+
# Update properties of this object
|
39552
|
+
def update!(**args)
|
39553
|
+
@actions = args[:actions] if args.key?(:actions)
|
39554
|
+
@match = args[:match] if args.key?(:match)
|
39555
|
+
@priority = args[:priority] if args.key?(:priority)
|
39556
|
+
end
|
39557
|
+
end
|
39558
|
+
|
39458
39559
|
# Represents a Cloud Router resource. For more information about Cloud Router,
|
39459
39560
|
# read the Cloud Router overview.
|
39460
39561
|
class Router
|
@@ -39496,9 +39597,11 @@ module Google
|
|
39496
39597
|
# @return [Fixnum]
|
39497
39598
|
attr_accessor :id
|
39498
39599
|
|
39499
|
-
# Router interfaces.
|
39500
|
-
#
|
39501
|
-
#
|
39600
|
+
# Router interfaces. To create a BGP peer that uses a router interface, the
|
39601
|
+
# interface must have one of the following fields specified: - linkedVpnTunnel -
|
39602
|
+
# linkedInterconnectAttachment - subnetwork You can create a router interface
|
39603
|
+
# without any of these fields specified. However, you cannot create a BGP peer
|
39604
|
+
# that uses that interface.
|
39502
39605
|
# Corresponds to the JSON property `interfaces`
|
39503
39606
|
# @return [Array<Google::Apis::ComputeAlpha::RouterInterface>]
|
39504
39607
|
attr_accessor :interfaces
|
@@ -40099,14 +40202,14 @@ module Google
|
|
40099
40202
|
|
40100
40203
|
# URI of the linked Interconnect attachment. It must be in the same region as
|
40101
40204
|
# the router. Each interface can have one linked resource, which can be a VPN
|
40102
|
-
# tunnel, an Interconnect attachment, or a
|
40205
|
+
# tunnel, an Interconnect attachment, or a subnetwork.
|
40103
40206
|
# Corresponds to the JSON property `linkedInterconnectAttachment`
|
40104
40207
|
# @return [String]
|
40105
40208
|
attr_accessor :linked_interconnect_attachment
|
40106
40209
|
|
40107
40210
|
# URI of the linked VPN tunnel, which must be in the same region as the router.
|
40108
40211
|
# Each interface can have one linked resource, which can be a VPN tunnel, an
|
40109
|
-
# Interconnect attachment, or a
|
40212
|
+
# Interconnect attachment, or a subnetwork.
|
40110
40213
|
# Corresponds to the JSON property `linkedVpnTunnel`
|
40111
40214
|
# @return [String]
|
40112
40215
|
attr_accessor :linked_vpn_tunnel
|
@@ -40308,7 +40411,7 @@ module Google
|
|
40308
40411
|
attr_accessor :key
|
40309
40412
|
|
40310
40413
|
# Name used to identify the key. Must be unique within a router. Must be
|
40311
|
-
# referenced by
|
40414
|
+
# referenced by exactly one bgpPeer. Must comply with RFC1035.
|
40312
40415
|
# Corresponds to the JSON property `name`
|
40313
40416
|
# @return [String]
|
40314
40417
|
attr_accessor :name
|
@@ -40966,6 +41069,293 @@ module Google
|
|
40966
41069
|
end
|
40967
41070
|
end
|
40968
41071
|
|
41072
|
+
#
|
41073
|
+
class RoutersGetRoutePolicyResponse
|
41074
|
+
include Google::Apis::Core::Hashable
|
41075
|
+
|
41076
|
+
# end_interface: MixerGetResponseWithEtagBuilder
|
41077
|
+
# Corresponds to the JSON property `etag`
|
41078
|
+
# @return [String]
|
41079
|
+
attr_accessor :etag
|
41080
|
+
|
41081
|
+
#
|
41082
|
+
# Corresponds to the JSON property `resource`
|
41083
|
+
# @return [Google::Apis::ComputeAlpha::RoutePolicy]
|
41084
|
+
attr_accessor :resource
|
41085
|
+
|
41086
|
+
def initialize(**args)
|
41087
|
+
update!(**args)
|
41088
|
+
end
|
41089
|
+
|
41090
|
+
# Update properties of this object
|
41091
|
+
def update!(**args)
|
41092
|
+
@etag = args[:etag] if args.key?(:etag)
|
41093
|
+
@resource = args[:resource] if args.key?(:resource)
|
41094
|
+
end
|
41095
|
+
end
|
41096
|
+
|
41097
|
+
#
|
41098
|
+
class RoutersListBgpRoutes
|
41099
|
+
include Google::Apis::Core::Hashable
|
41100
|
+
|
41101
|
+
#
|
41102
|
+
# Corresponds to the JSON property `etag`
|
41103
|
+
# @return [String]
|
41104
|
+
attr_accessor :etag
|
41105
|
+
|
41106
|
+
# [Output Only] The unique identifier for the resource. This identifier is
|
41107
|
+
# defined by the server.
|
41108
|
+
# Corresponds to the JSON property `id`
|
41109
|
+
# @return [String]
|
41110
|
+
attr_accessor :id
|
41111
|
+
|
41112
|
+
# [Output Only] Type of resource. Always compute#routersListBgpRoutes for lists
|
41113
|
+
# of bgp routes.
|
41114
|
+
# Corresponds to the JSON property `kind`
|
41115
|
+
# @return [String]
|
41116
|
+
attr_accessor :kind
|
41117
|
+
|
41118
|
+
# [Output Only] This token allows you to get the next page of results for list
|
41119
|
+
# requests. If the number of results is larger than maxResults, use the
|
41120
|
+
# nextPageToken as a value for the query parameter pageToken in the next list
|
41121
|
+
# request. Subsequent list requests will have their own nextPageToken to
|
41122
|
+
# continue paging through the results.
|
41123
|
+
# Corresponds to the JSON property `nextPageToken`
|
41124
|
+
# @return [String]
|
41125
|
+
attr_accessor :next_page_token
|
41126
|
+
|
41127
|
+
# [Output Only] A list of bgp routes.
|
41128
|
+
# Corresponds to the JSON property `result`
|
41129
|
+
# @return [Array<Google::Apis::ComputeAlpha::BgpRoute>]
|
41130
|
+
attr_accessor :result
|
41131
|
+
|
41132
|
+
# [Output Only] Server-defined URL for this resource.
|
41133
|
+
# Corresponds to the JSON property `selfLink`
|
41134
|
+
# @return [String]
|
41135
|
+
attr_accessor :self_link
|
41136
|
+
|
41137
|
+
# [Output Only] Unreachable resources.
|
41138
|
+
# Corresponds to the JSON property `unreachable`
|
41139
|
+
# @return [Array<String>]
|
41140
|
+
attr_accessor :unreachable
|
41141
|
+
|
41142
|
+
# [Output Only] Informational warning message.
|
41143
|
+
# Corresponds to the JSON property `warning`
|
41144
|
+
# @return [Google::Apis::ComputeAlpha::RoutersListBgpRoutes::Warning]
|
41145
|
+
attr_accessor :warning
|
41146
|
+
|
41147
|
+
def initialize(**args)
|
41148
|
+
update!(**args)
|
41149
|
+
end
|
41150
|
+
|
41151
|
+
# Update properties of this object
|
41152
|
+
def update!(**args)
|
41153
|
+
@etag = args[:etag] if args.key?(:etag)
|
41154
|
+
@id = args[:id] if args.key?(:id)
|
41155
|
+
@kind = args[:kind] if args.key?(:kind)
|
41156
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
41157
|
+
@result = args[:result] if args.key?(:result)
|
41158
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
41159
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
41160
|
+
@warning = args[:warning] if args.key?(:warning)
|
41161
|
+
end
|
41162
|
+
|
41163
|
+
# [Output Only] Informational warning message.
|
41164
|
+
class Warning
|
41165
|
+
include Google::Apis::Core::Hashable
|
41166
|
+
|
41167
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
41168
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
41169
|
+
# Corresponds to the JSON property `code`
|
41170
|
+
# @return [String]
|
41171
|
+
attr_accessor :code
|
41172
|
+
|
41173
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
41174
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
41175
|
+
# Corresponds to the JSON property `data`
|
41176
|
+
# @return [Array<Google::Apis::ComputeAlpha::RoutersListBgpRoutes::Warning::Datum>]
|
41177
|
+
attr_accessor :data
|
41178
|
+
|
41179
|
+
# [Output Only] A human-readable description of the warning code.
|
41180
|
+
# Corresponds to the JSON property `message`
|
41181
|
+
# @return [String]
|
41182
|
+
attr_accessor :message
|
41183
|
+
|
41184
|
+
def initialize(**args)
|
41185
|
+
update!(**args)
|
41186
|
+
end
|
41187
|
+
|
41188
|
+
# Update properties of this object
|
41189
|
+
def update!(**args)
|
41190
|
+
@code = args[:code] if args.key?(:code)
|
41191
|
+
@data = args[:data] if args.key?(:data)
|
41192
|
+
@message = args[:message] if args.key?(:message)
|
41193
|
+
end
|
41194
|
+
|
41195
|
+
#
|
41196
|
+
class Datum
|
41197
|
+
include Google::Apis::Core::Hashable
|
41198
|
+
|
41199
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
41200
|
+
# For example, for warnings where there are no results in a list request for a
|
41201
|
+
# particular zone, this key might be scope and the key value might be the zone
|
41202
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
41203
|
+
# suggested replacement, or a warning about invalid network settings (for
|
41204
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
41205
|
+
# for IP forwarding).
|
41206
|
+
# Corresponds to the JSON property `key`
|
41207
|
+
# @return [String]
|
41208
|
+
attr_accessor :key
|
41209
|
+
|
41210
|
+
# [Output Only] A warning data value corresponding to the key.
|
41211
|
+
# Corresponds to the JSON property `value`
|
41212
|
+
# @return [String]
|
41213
|
+
attr_accessor :value
|
41214
|
+
|
41215
|
+
def initialize(**args)
|
41216
|
+
update!(**args)
|
41217
|
+
end
|
41218
|
+
|
41219
|
+
# Update properties of this object
|
41220
|
+
def update!(**args)
|
41221
|
+
@key = args[:key] if args.key?(:key)
|
41222
|
+
@value = args[:value] if args.key?(:value)
|
41223
|
+
end
|
41224
|
+
end
|
41225
|
+
end
|
41226
|
+
end
|
41227
|
+
|
41228
|
+
#
|
41229
|
+
class RoutersListRoutePolicies
|
41230
|
+
include Google::Apis::Core::Hashable
|
41231
|
+
|
41232
|
+
#
|
41233
|
+
# Corresponds to the JSON property `etag`
|
41234
|
+
# @return [String]
|
41235
|
+
attr_accessor :etag
|
41236
|
+
|
41237
|
+
# [Output Only] The unique identifier for the resource. This identifier is
|
41238
|
+
# defined by the server.
|
41239
|
+
# Corresponds to the JSON property `id`
|
41240
|
+
# @return [String]
|
41241
|
+
attr_accessor :id
|
41242
|
+
|
41243
|
+
# [Output Only] Type of resource. Always compute#routersListRoutePolicies for
|
41244
|
+
# lists of route policies.
|
41245
|
+
# Corresponds to the JSON property `kind`
|
41246
|
+
# @return [String]
|
41247
|
+
attr_accessor :kind
|
41248
|
+
|
41249
|
+
# [Output Only] This token allows you to get the next page of results for list
|
41250
|
+
# requests. If the number of results is larger than maxResults, use the
|
41251
|
+
# nextPageToken as a value for the query parameter pageToken in the next list
|
41252
|
+
# request. Subsequent list requests will have their own nextPageToken to
|
41253
|
+
# continue paging through the results.
|
41254
|
+
# Corresponds to the JSON property `nextPageToken`
|
41255
|
+
# @return [String]
|
41256
|
+
attr_accessor :next_page_token
|
41257
|
+
|
41258
|
+
# [Output Only] A list of route policies.
|
41259
|
+
# Corresponds to the JSON property `result`
|
41260
|
+
# @return [Array<Google::Apis::ComputeAlpha::RoutePolicy>]
|
41261
|
+
attr_accessor :result
|
41262
|
+
|
41263
|
+
# [Output Only] Server-defined URL for this resource.
|
41264
|
+
# Corresponds to the JSON property `selfLink`
|
41265
|
+
# @return [String]
|
41266
|
+
attr_accessor :self_link
|
41267
|
+
|
41268
|
+
# [Output Only] Unreachable resources.
|
41269
|
+
# Corresponds to the JSON property `unreachable`
|
41270
|
+
# @return [Array<String>]
|
41271
|
+
attr_accessor :unreachable
|
41272
|
+
|
41273
|
+
# [Output Only] Informational warning message.
|
41274
|
+
# Corresponds to the JSON property `warning`
|
41275
|
+
# @return [Google::Apis::ComputeAlpha::RoutersListRoutePolicies::Warning]
|
41276
|
+
attr_accessor :warning
|
41277
|
+
|
41278
|
+
def initialize(**args)
|
41279
|
+
update!(**args)
|
41280
|
+
end
|
41281
|
+
|
41282
|
+
# Update properties of this object
|
41283
|
+
def update!(**args)
|
41284
|
+
@etag = args[:etag] if args.key?(:etag)
|
41285
|
+
@id = args[:id] if args.key?(:id)
|
41286
|
+
@kind = args[:kind] if args.key?(:kind)
|
41287
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
41288
|
+
@result = args[:result] if args.key?(:result)
|
41289
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
41290
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
41291
|
+
@warning = args[:warning] if args.key?(:warning)
|
41292
|
+
end
|
41293
|
+
|
41294
|
+
# [Output Only] Informational warning message.
|
41295
|
+
class Warning
|
41296
|
+
include Google::Apis::Core::Hashable
|
41297
|
+
|
41298
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
41299
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
41300
|
+
# Corresponds to the JSON property `code`
|
41301
|
+
# @return [String]
|
41302
|
+
attr_accessor :code
|
41303
|
+
|
41304
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
41305
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
41306
|
+
# Corresponds to the JSON property `data`
|
41307
|
+
# @return [Array<Google::Apis::ComputeAlpha::RoutersListRoutePolicies::Warning::Datum>]
|
41308
|
+
attr_accessor :data
|
41309
|
+
|
41310
|
+
# [Output Only] A human-readable description of the warning code.
|
41311
|
+
# Corresponds to the JSON property `message`
|
41312
|
+
# @return [String]
|
41313
|
+
attr_accessor :message
|
41314
|
+
|
41315
|
+
def initialize(**args)
|
41316
|
+
update!(**args)
|
41317
|
+
end
|
41318
|
+
|
41319
|
+
# Update properties of this object
|
41320
|
+
def update!(**args)
|
41321
|
+
@code = args[:code] if args.key?(:code)
|
41322
|
+
@data = args[:data] if args.key?(:data)
|
41323
|
+
@message = args[:message] if args.key?(:message)
|
41324
|
+
end
|
41325
|
+
|
41326
|
+
#
|
41327
|
+
class Datum
|
41328
|
+
include Google::Apis::Core::Hashable
|
41329
|
+
|
41330
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
41331
|
+
# For example, for warnings where there are no results in a list request for a
|
41332
|
+
# particular zone, this key might be scope and the key value might be the zone
|
41333
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
41334
|
+
# suggested replacement, or a warning about invalid network settings (for
|
41335
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
41336
|
+
# for IP forwarding).
|
41337
|
+
# Corresponds to the JSON property `key`
|
41338
|
+
# @return [String]
|
41339
|
+
attr_accessor :key
|
41340
|
+
|
41341
|
+
# [Output Only] A warning data value corresponding to the key.
|
41342
|
+
# Corresponds to the JSON property `value`
|
41343
|
+
# @return [String]
|
41344
|
+
attr_accessor :value
|
41345
|
+
|
41346
|
+
def initialize(**args)
|
41347
|
+
update!(**args)
|
41348
|
+
end
|
41349
|
+
|
41350
|
+
# Update properties of this object
|
41351
|
+
def update!(**args)
|
41352
|
+
@key = args[:key] if args.key?(:key)
|
41353
|
+
@value = args[:value] if args.key?(:value)
|
41354
|
+
end
|
41355
|
+
end
|
41356
|
+
end
|
41357
|
+
end
|
41358
|
+
|
40969
41359
|
#
|
40970
41360
|
class RoutersPreviewResponse
|
40971
41361
|
include Google::Apis::Core::Hashable
|
@@ -45402,17 +45792,20 @@ module Google
|
|
45402
45792
|
end
|
45403
45793
|
end
|
45404
45794
|
|
45405
|
-
# Represents an SSL
|
45406
|
-
#
|
45795
|
+
# Represents an SSL certificate resource. Google Compute Engine has two SSL
|
45796
|
+
# certificate resources: * [Global](/compute/docs/reference/rest/alpha/
|
45407
45797
|
# sslCertificates) * [Regional](/compute/docs/reference/rest/alpha/
|
45408
|
-
# regionSslCertificates) The sslCertificates are used
|
45409
|
-
#
|
45410
|
-
#
|
45411
|
-
#
|
45412
|
-
#
|
45413
|
-
#
|
45414
|
-
#
|
45415
|
-
#
|
45798
|
+
# regionSslCertificates) The global SSL certificates (sslCertificates) are used
|
45799
|
+
# by: - Global external Application Load Balancers - Classic Application Load
|
45800
|
+
# Balancers - Proxy Network Load Balancers (with target SSL proxies) The
|
45801
|
+
# regional SSL certificates (regionSslCertificates) are used by: - Regional
|
45802
|
+
# external Application Load Balancers - Regional internal Application Load
|
45803
|
+
# Balancers Optionally, certificate file contents that you upload can contain a
|
45804
|
+
# set of up to five PEM-encoded certificates. The API call creates an object (
|
45805
|
+
# sslCertificate) that holds this data. You can use SSL keys and certificates to
|
45806
|
+
# secure connections to a load balancer. For more information, read Creating and
|
45807
|
+
# using SSL certificates, SSL certificates quotas and limits, and
|
45808
|
+
# Troubleshooting SSL certificates.
|
45416
45809
|
class SslCertificate
|
45417
45810
|
include Google::Apis::Core::Hashable
|
45418
45811
|
|
@@ -48660,11 +49053,13 @@ module Google
|
|
48660
49053
|
# HTTP Proxy resources: * [Global](/compute/docs/reference/rest/alpha/
|
48661
49054
|
# targetHttpProxies) * [Regional](/compute/docs/reference/rest/alpha/
|
48662
49055
|
# regionTargetHttpProxies) A target HTTP proxy is a component of GCP HTTP load
|
48663
|
-
# balancers. * targetHttpProxies are used by external
|
48664
|
-
#
|
48665
|
-
#
|
48666
|
-
#
|
48667
|
-
#
|
49056
|
+
# balancers. * targetHttpProxies are used by global external Application Load
|
49057
|
+
# Balancers, classic Application Load Balancers, cross-region internal
|
49058
|
+
# Application Load Balancers, and Traffic Director. * regionTargetHttpProxies
|
49059
|
+
# are used by regional internal Application Load Balancers and regional external
|
49060
|
+
# Application Load Balancers. Forwarding rules reference a target HTTP proxy,
|
49061
|
+
# and the target proxy then references a URL map. For more information, read
|
49062
|
+
# Using Target Proxies and Forwarding rule concepts.
|
48668
49063
|
class TargetHttpProxy
|
48669
49064
|
include Google::Apis::Core::Hashable
|
48670
49065
|
|
@@ -48707,10 +49102,10 @@ module Google
|
|
48707
49102
|
|
48708
49103
|
# Specifies how long to keep a connection open, after completing a response,
|
48709
49104
|
# while there is no matching traffic (in seconds). If an HTTP keep-alive is not
|
48710
|
-
# specified, a default value (610 seconds) will be used. For
|
48711
|
-
#
|
48712
|
-
# allowed value is 1200 seconds. For
|
48713
|
-
#
|
49105
|
+
# specified, a default value (610 seconds) will be used. For global external
|
49106
|
+
# Application Load Balancers, the minimum allowed value is 5 seconds and the
|
49107
|
+
# maximum allowed value is 1200 seconds. For classic Application Load Balancers,
|
49108
|
+
# this option is not supported.
|
48714
49109
|
# Corresponds to the JSON property `httpKeepAliveTimeoutSec`
|
48715
49110
|
# @return [Fixnum]
|
48716
49111
|
attr_accessor :http_keep_alive_timeout_sec
|
@@ -49192,11 +49587,13 @@ module Google
|
|
49192
49587
|
# HTTPS Proxy resources: * [Global](/compute/docs/reference/rest/alpha/
|
49193
49588
|
# targetHttpsProxies) * [Regional](/compute/docs/reference/rest/alpha/
|
49194
49589
|
# regionTargetHttpsProxies) A target HTTPS proxy is a component of GCP HTTPS
|
49195
|
-
# load balancers. *
|
49196
|
-
#
|
49197
|
-
#
|
49198
|
-
#
|
49199
|
-
# Forwarding
|
49590
|
+
# load balancers. * targetHttpProxies are used by global external Application
|
49591
|
+
# Load Balancers, classic Application Load Balancers, cross-region internal
|
49592
|
+
# Application Load Balancers, and Traffic Director. * regionTargetHttpProxies
|
49593
|
+
# are used by regional internal Application Load Balancers and regional external
|
49594
|
+
# Application Load Balancers. Forwarding rules reference a target HTTPS proxy,
|
49595
|
+
# and the target proxy then references a URL map. For more information, read
|
49596
|
+
# Using Target Proxies and Forwarding rule concepts.
|
49200
49597
|
class TargetHttpsProxy
|
49201
49598
|
include Google::Apis::Core::Hashable
|
49202
49599
|
|
@@ -49269,10 +49666,10 @@ module Google
|
|
49269
49666
|
|
49270
49667
|
# Specifies how long to keep a connection open, after completing a response,
|
49271
49668
|
# while there is no matching traffic (in seconds). If an HTTP keep-alive is not
|
49272
|
-
# specified, a default value (610 seconds) will be used. For
|
49273
|
-
#
|
49274
|
-
# allowed value is 1200 seconds. For
|
49275
|
-
#
|
49669
|
+
# specified, a default value (610 seconds) will be used. For global external
|
49670
|
+
# Application Load Balancers, the minimum allowed value is 5 seconds and the
|
49671
|
+
# maximum allowed value is 1200 seconds. For classic Application Load Balancers,
|
49672
|
+
# this option is not supported.
|
49276
49673
|
# Corresponds to the JSON property `httpKeepAliveTimeoutSec`
|
49277
49674
|
# @return [Fixnum]
|
49278
49675
|
attr_accessor :http_keep_alive_timeout_sec
|
@@ -52301,17 +52698,19 @@ module Google
|
|
52301
52698
|
# Global](/compute/docs/reference/rest/alpha/urlMaps) * [Regional](/compute/docs/
|
52302
52699
|
# reference/rest/alpha/regionUrlMaps) A URL map resource is a component of
|
52303
52700
|
# certain types of cloud load balancers and Traffic Director: * urlMaps are used
|
52304
|
-
# by external
|
52305
|
-
#
|
52306
|
-
#
|
52307
|
-
#
|
52308
|
-
#
|
52309
|
-
#
|
52310
|
-
#
|
52311
|
-
#
|
52312
|
-
#
|
52313
|
-
# backend service must have a
|
52314
|
-
#
|
52701
|
+
# by global external Application Load Balancers, classic Application Load
|
52702
|
+
# Balancers, and cross-region internal Application Load Balancers. *
|
52703
|
+
# regionUrlMaps are used by internal Application Load Balancers, regional
|
52704
|
+
# external Application Load Balancers and regional internal Application Load
|
52705
|
+
# Balancers. For a list of supported URL map features by the load balancer type,
|
52706
|
+
# see the Load balancing features: Routing and traffic management table. For a
|
52707
|
+
# list of supported URL map features for Traffic Director, see the Traffic
|
52708
|
+
# Director features: Routing and traffic management table. This resource defines
|
52709
|
+
# mappings from hostnames and URL paths to either a backend service or a backend
|
52710
|
+
# bucket. To use the global urlMaps resource, the backend service must have a
|
52711
|
+
# loadBalancingScheme of either EXTERNAL or INTERNAL_SELF_MANAGED. To use the
|
52712
|
+
# regionUrlMaps resource, the backend service must have a loadBalancingScheme of
|
52713
|
+
# INTERNAL_MANAGED. For more information, read URL Map Concepts.
|
52315
52714
|
class UrlMap
|
52316
52715
|
include Google::Apis::Core::Hashable
|
52317
52716
|
|
@@ -52332,8 +52731,8 @@ module Google
|
|
52332
52731
|
# defaultRouteAction specifies any weightedBackendServices, defaultService must
|
52333
52732
|
# not be set. Conversely if defaultService is set, defaultRouteAction cannot
|
52334
52733
|
# contain any weightedBackendServices. Only one of defaultRouteAction or
|
52335
|
-
# defaultUrlRedirect must be set. URL maps for
|
52336
|
-
#
|
52734
|
+
# defaultUrlRedirect must be set. URL maps for classic Application Load
|
52735
|
+
# Balancers only support the urlRewrite action within defaultRouteAction.
|
52337
52736
|
# defaultRouteAction has no effect when the URL map is bound to a target gRPC
|
52338
52737
|
# proxy that has the validateForProxyless field set to true.
|
52339
52738
|
# Corresponds to the JSON property `defaultRouteAction`
|
@@ -52965,16 +53364,16 @@ module Google
|
|
52965
53364
|
include Google::Apis::Core::Hashable
|
52966
53365
|
|
52967
53366
|
# Specifies the load balancer type(s) this validation request is for. Use
|
52968
|
-
# EXTERNAL_MANAGED for
|
52969
|
-
#
|
52970
|
-
#
|
52971
|
-
# refer to Choosing a load balancer. If unspecified, the load
|
52972
|
-
# will be inferred from the backend service resources this URL
|
52973
|
-
# If that can not be inferred (for example, this URL map only
|
52974
|
-
# buckets, or this Url map is for rewrites and redirects only
|
52975
|
-
# reference any backends), EXTERNAL will be used as the default type.
|
52976
|
-
# specified, the scheme(s) must not conflict with the load balancing scheme
|
52977
|
-
# the backend service resources this Url map references.
|
53367
|
+
# EXTERNAL_MANAGED for global external Application Load Balancers and regional
|
53368
|
+
# external Application Load Balancers. Use EXTERNAL for classic Application Load
|
53369
|
+
# Balancers. Use INTERNAL_MANAGED for internal Application Load Balancers. For
|
53370
|
+
# more information, refer to Choosing a load balancer. If unspecified, the load
|
53371
|
+
# balancing scheme will be inferred from the backend service resources this URL
|
53372
|
+
# map references. If that can not be inferred (for example, this URL map only
|
53373
|
+
# references backend buckets, or this Url map is for rewrites and redirects only
|
53374
|
+
# and doesn't reference any backends), EXTERNAL will be used as the default type.
|
53375
|
+
# If specified, the scheme(s) must not conflict with the load balancing scheme
|
53376
|
+
# of the backend service resources this Url map references.
|
52978
53377
|
# Corresponds to the JSON property `loadBalancingSchemes`
|
52979
53378
|
# @return [Array<String>]
|
52980
53379
|
attr_accessor :load_balancing_schemes
|
@@ -52983,17 +53382,19 @@ module Google
|
|
52983
53382
|
# Global](/compute/docs/reference/rest/alpha/urlMaps) * [Regional](/compute/docs/
|
52984
53383
|
# reference/rest/alpha/regionUrlMaps) A URL map resource is a component of
|
52985
53384
|
# certain types of cloud load balancers and Traffic Director: * urlMaps are used
|
52986
|
-
# by external
|
52987
|
-
#
|
52988
|
-
#
|
52989
|
-
#
|
52990
|
-
#
|
52991
|
-
#
|
52992
|
-
#
|
52993
|
-
#
|
52994
|
-
#
|
52995
|
-
# backend service must have a
|
52996
|
-
#
|
53385
|
+
# by global external Application Load Balancers, classic Application Load
|
53386
|
+
# Balancers, and cross-region internal Application Load Balancers. *
|
53387
|
+
# regionUrlMaps are used by internal Application Load Balancers, regional
|
53388
|
+
# external Application Load Balancers and regional internal Application Load
|
53389
|
+
# Balancers. For a list of supported URL map features by the load balancer type,
|
53390
|
+
# see the Load balancing features: Routing and traffic management table. For a
|
53391
|
+
# list of supported URL map features for Traffic Director, see the Traffic
|
53392
|
+
# Director features: Routing and traffic management table. This resource defines
|
53393
|
+
# mappings from hostnames and URL paths to either a backend service or a backend
|
53394
|
+
# bucket. To use the global urlMaps resource, the backend service must have a
|
53395
|
+
# loadBalancingScheme of either EXTERNAL or INTERNAL_SELF_MANAGED. To use the
|
53396
|
+
# regionUrlMaps resource, the backend service must have a loadBalancingScheme of
|
53397
|
+
# INTERNAL_MANAGED. For more information, read URL Map Concepts.
|
52997
53398
|
# Corresponds to the JSON property `resource`
|
52998
53399
|
# @return [Google::Apis::ComputeAlpha::UrlMap]
|
52999
53400
|
attr_accessor :resource
|