google-apis-compute_beta 0.95.0 → 0.97.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.
@@ -5110,6 +5110,101 @@ module Google
5110
5110
  end
5111
5111
  end
5112
5112
 
5113
+ #
5114
+ class BgpRoute
5115
+ include Google::Apis::Core::Hashable
5116
+
5117
+ # [Output only] AS-PATH for the route
5118
+ # Corresponds to the JSON property `asPaths`
5119
+ # @return [Array<Google::Apis::ComputeBeta::BgpRouteAsPath>]
5120
+ attr_accessor :as_paths
5121
+
5122
+ # [Output only] BGP communities in human-readable A:B format.
5123
+ # Corresponds to the JSON property `communities`
5124
+ # @return [Array<String>]
5125
+ attr_accessor :communities
5126
+
5127
+ # Network Layer Reachability Information (NLRI) for a route.
5128
+ # Corresponds to the JSON property `destination`
5129
+ # @return [Google::Apis::ComputeBeta::BgpRouteNetworkLayerReachabilityInformation]
5130
+ attr_accessor :destination
5131
+
5132
+ # [Output only] BGP multi-exit discriminator
5133
+ # Corresponds to the JSON property `med`
5134
+ # @return [Fixnum]
5135
+ attr_accessor :med
5136
+
5137
+ # [Output only] BGP origin (EGP, IGP or INCOMPLETE)
5138
+ # Corresponds to the JSON property `origin`
5139
+ # @return [String]
5140
+ attr_accessor :origin
5141
+
5142
+ def initialize(**args)
5143
+ update!(**args)
5144
+ end
5145
+
5146
+ # Update properties of this object
5147
+ def update!(**args)
5148
+ @as_paths = args[:as_paths] if args.key?(:as_paths)
5149
+ @communities = args[:communities] if args.key?(:communities)
5150
+ @destination = args[:destination] if args.key?(:destination)
5151
+ @med = args[:med] if args.key?(:med)
5152
+ @origin = args[:origin] if args.key?(:origin)
5153
+ end
5154
+ end
5155
+
5156
+ #
5157
+ class BgpRouteAsPath
5158
+ include Google::Apis::Core::Hashable
5159
+
5160
+ # [Output only] ASNs in the path segment. When type is SEQUENCE, these are
5161
+ # ordered.
5162
+ # Corresponds to the JSON property `asns`
5163
+ # @return [Array<Fixnum>]
5164
+ attr_accessor :asns
5165
+
5166
+ # [Output only] Type of AS-PATH segment (SEQUENCE or SET)
5167
+ # Corresponds to the JSON property `type`
5168
+ # @return [String]
5169
+ attr_accessor :type
5170
+
5171
+ def initialize(**args)
5172
+ update!(**args)
5173
+ end
5174
+
5175
+ # Update properties of this object
5176
+ def update!(**args)
5177
+ @asns = args[:asns] if args.key?(:asns)
5178
+ @type = args[:type] if args.key?(:type)
5179
+ end
5180
+ end
5181
+
5182
+ # Network Layer Reachability Information (NLRI) for a route.
5183
+ class BgpRouteNetworkLayerReachabilityInformation
5184
+ include Google::Apis::Core::Hashable
5185
+
5186
+ # If the BGP session supports multiple paths (RFC 7911), the path identifier for
5187
+ # this route.
5188
+ # Corresponds to the JSON property `pathId`
5189
+ # @return [Fixnum]
5190
+ attr_accessor :path_id
5191
+
5192
+ # Human readable CIDR notation for a prefix. E.g. 10.42.0.0/16.
5193
+ # Corresponds to the JSON property `prefix`
5194
+ # @return [String]
5195
+ attr_accessor :prefix
5196
+
5197
+ def initialize(**args)
5198
+ update!(**args)
5199
+ end
5200
+
5201
+ # Update properties of this object
5202
+ def update!(**args)
5203
+ @path_id = args[:path_id] if args.key?(:path_id)
5204
+ @prefix = args[:prefix] if args.key?(:prefix)
5205
+ end
5206
+ end
5207
+
5113
5208
  # Associates `members`, or principals, with a `role`.
5114
5209
  class Binding
5115
5210
  include Google::Apis::Core::Hashable
@@ -8236,12 +8331,13 @@ module Google
8236
8331
  # @return [String]
8237
8332
  attr_accessor :domain
8238
8333
 
8239
- # Additional structured details about this error. Keys should match /[a-zA-Z0-9-
8240
- # _]/ and be limited to 64 characters in length. When identifying the current
8241
- # value of an exceeded limit, the units should be contained in the key, not the
8242
- # value. For example, rather than `"instanceLimit": "100/request"`, should be
8243
- # returned as, `"instanceLimitPerRequest": "100"`, if the client exceeds the
8244
- # number of instances that can be created in a single (batch) request.
8334
+ # Additional structured details about this error. Keys must match /a-z+/ but
8335
+ # should ideally be lowerCamelCase. Also they must be limited to 64 characters
8336
+ # in length. When identifying the current value of an exceeded limit, the units
8337
+ # should be contained in the key, not the value. For example, rather than `"
8338
+ # instanceLimit": "100/request"`, should be returned as, `"
8339
+ # instanceLimitPerRequest": "100"`, if the client exceeds the number of
8340
+ # instances that can be created in a single (batch) request.
8245
8341
  # Corresponds to the JSON property `metadatas`
8246
8342
  # @return [Hash<String,String>]
8247
8343
  attr_accessor :metadatas
@@ -15003,6 +15099,12 @@ module Google
15003
15099
  # @return [Google::Apis::ComputeBeta::InstanceParams]
15004
15100
  attr_accessor :params
15005
15101
 
15102
+ # Partner Metadata assigned to the instance. A map from a subdomain (namespace)
15103
+ # to entries map.
15104
+ # Corresponds to the JSON property `partnerMetadata`
15105
+ # @return [Hash<String,Google::Apis::ComputeBeta::StructuredEntries>]
15106
+ attr_accessor :partner_metadata
15107
+
15006
15108
  # PostKeyRevocationActionType of the instance.
15007
15109
  # Corresponds to the JSON property `postKeyRevocationActionType`
15008
15110
  # @return [String]
@@ -15162,6 +15264,7 @@ module Google
15162
15264
  @network_interfaces = args[:network_interfaces] if args.key?(:network_interfaces)
15163
15265
  @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
15164
15266
  @params = args[:params] if args.key?(:params)
15267
+ @partner_metadata = args[:partner_metadata] if args.key?(:partner_metadata)
15165
15268
  @post_key_revocation_action_type = args[:post_key_revocation_action_type] if args.key?(:post_key_revocation_action_type)
15166
15269
  @private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
15167
15270
  @reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
@@ -16486,10 +16589,9 @@ module Google
16486
16589
  class InstanceGroupManagerParams
16487
16590
  include Google::Apis::Core::Hashable
16488
16591
 
16489
- # Resource manager tags to be bound to the instance group manager. Tag keys and
16490
- # values have the same definition as resource manager tags. Keys must be in the
16491
- # format `tagKeys/123`, and values are in the format `tagValues/456`. The field
16492
- # is allowed for INSERT only.
16592
+ # Resource manager tags to bind to the managed instance group. The tags are key-
16593
+ # value pairs. Keys must be in the format tagKeys/123 and values in the format
16594
+ # tagValues/456. For more information, see Manage tags for resources.
16493
16595
  # Corresponds to the JSON property `resourceManagerTags`
16494
16596
  # @return [Hash<String,String>]
16495
16597
  attr_accessor :resource_manager_tags
@@ -17133,7 +17235,7 @@ module Google
17133
17235
  attr_accessor :is_stateful
17134
17236
  alias_method :is_stateful?, :is_stateful
17135
17237
 
17136
- # [Output Only] Status of per-instance configurations on the instance.
17238
+ # [Output Only] Status of per-instance configurations on the instances.
17137
17239
  # Corresponds to the JSON property `perInstanceConfigs`
17138
17240
  # @return [Google::Apis::ComputeBeta::InstanceGroupManagerStatusStatefulPerInstanceConfigs]
17139
17241
  attr_accessor :per_instance_configs
@@ -18760,6 +18862,12 @@ module Google
18760
18862
  # @return [Google::Apis::ComputeBeta::NetworkPerformanceConfig]
18761
18863
  attr_accessor :network_performance_config
18762
18864
 
18865
+ # Partner Metadata assigned to the instance properties. A map from a subdomain (
18866
+ # namespace) to entries map.
18867
+ # Corresponds to the JSON property `partnerMetadata`
18868
+ # @return [Hash<String,Google::Apis::ComputeBeta::StructuredEntries>]
18869
+ attr_accessor :partner_metadata
18870
+
18763
18871
  # PostKeyRevocationActionType of the instance.
18764
18872
  # Corresponds to the JSON property `postKeyRevocationActionType`
18765
18873
  # @return [String]
@@ -18839,6 +18947,7 @@ module Google
18839
18947
  @min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
18840
18948
  @network_interfaces = args[:network_interfaces] if args.key?(:network_interfaces)
18841
18949
  @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
18950
+ @partner_metadata = args[:partner_metadata] if args.key?(:partner_metadata)
18842
18951
  @post_key_revocation_action_type = args[:post_key_revocation_action_type] if args.key?(:post_key_revocation_action_type)
18843
18952
  @private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
18844
18953
  @reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
@@ -19523,7 +19632,7 @@ module Google
19523
19632
  attr_accessor :short_name
19524
19633
 
19525
19634
  # [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
19526
- # NETWORK, NETWORK_REGIONAL.
19635
+ # NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
19527
19636
  # Corresponds to the JSON property `type`
19528
19637
  # @return [String]
19529
19638
  attr_accessor :type
@@ -30979,6 +31088,37 @@ module Google
30979
31088
  end
30980
31089
  end
30981
31090
 
31091
+ # Model definition of partner_metadata field. To be used in dedicated Partner
31092
+ # Metadata methods and to be inlined in the Instance and InstanceTemplate
31093
+ # resources.
31094
+ class PartnerMetadata
31095
+ include Google::Apis::Core::Hashable
31096
+
31097
+ # Instance-level hash to be used for optimistic locking.
31098
+ # Corresponds to the JSON property `fingerprint`
31099
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
31100
+ # @return [String]
31101
+ attr_accessor :fingerprint
31102
+
31103
+ # Partner Metadata assigned to the instance. A map from a subdomain to entries
31104
+ # map. Subdomain name must be compliant with RFC1035 definition. The total size
31105
+ # of all keys and values must be less than 2MB. Subdomain 'metadata.compute.
31106
+ # googleapis.com' is reserverd for instance's metadata.
31107
+ # Corresponds to the JSON property `partnerMetadata`
31108
+ # @return [Hash<String,Google::Apis::ComputeBeta::StructuredEntries>]
31109
+ attr_accessor :partner_metadata
31110
+
31111
+ def initialize(**args)
31112
+ update!(**args)
31113
+ end
31114
+
31115
+ # Update properties of this object
31116
+ def update!(**args)
31117
+ @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
31118
+ @partner_metadata = args[:partner_metadata] if args.key?(:partner_metadata)
31119
+ end
31120
+ end
31121
+
30982
31122
  # A matcher for the path portion of the URL. The BackendService from the longest-
30983
31123
  # matched rule will serve the URL. If no rule was matched, the default service
30984
31124
  # is used.
@@ -36435,6 +36575,98 @@ module Google
36435
36575
  end
36436
36576
  end
36437
36577
 
36578
+ #
36579
+ class RoutePolicy
36580
+ include Google::Apis::Core::Hashable
36581
+
36582
+ # A fingerprint for the Route Policy being applied to this Router, which is
36583
+ # essentially a hash of the Route Policy used for optimistic locking. The
36584
+ # fingerprint is initially generated by Compute Engine and changes after every
36585
+ # request to modify or update Route Policy. You must always provide an up-to-
36586
+ # date fingerprint hash in order to update or change labels. To see the latest
36587
+ # fingerprint, make a getRoutePolicy() request to retrieve a Route Policy.
36588
+ # Corresponds to the JSON property `fingerprint`
36589
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
36590
+ # @return [String]
36591
+ attr_accessor :fingerprint
36592
+
36593
+ # Route Policy name, which must be a resource ID segment and unique within all
36594
+ # the router's Route Policies. Name should conform to RFC1035.
36595
+ # Corresponds to the JSON property `name`
36596
+ # @return [String]
36597
+ attr_accessor :name
36598
+
36599
+ # List of terms (the order in the list is not important, they are evaluated in
36600
+ # order of priority). Order of policies is not retained and might change when
36601
+ # getting policy later.
36602
+ # Corresponds to the JSON property `terms`
36603
+ # @return [Array<Google::Apis::ComputeBeta::RoutePolicyPolicyTerm>]
36604
+ attr_accessor :terms
36605
+
36606
+ #
36607
+ # Corresponds to the JSON property `type`
36608
+ # @return [String]
36609
+ attr_accessor :type
36610
+
36611
+ def initialize(**args)
36612
+ update!(**args)
36613
+ end
36614
+
36615
+ # Update properties of this object
36616
+ def update!(**args)
36617
+ @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
36618
+ @name = args[:name] if args.key?(:name)
36619
+ @terms = args[:terms] if args.key?(:terms)
36620
+ @type = args[:type] if args.key?(:type)
36621
+ end
36622
+ end
36623
+
36624
+ #
36625
+ class RoutePolicyPolicyTerm
36626
+ include Google::Apis::Core::Hashable
36627
+
36628
+ # CEL expressions to evaluate to modify a route when this term matches.
36629
+ # Corresponds to the JSON property `actions`
36630
+ # @return [Array<Google::Apis::ComputeBeta::Expr>]
36631
+ attr_accessor :actions
36632
+
36633
+ # Represents a textual expression in the Common Expression Language (CEL) syntax.
36634
+ # CEL is a C-like expression language. The syntax and semantics of CEL are
36635
+ # documented at https://github.com/google/cel-spec. Example (Comparison): title:
36636
+ # "Summary size limit" description: "Determines if a summary is less than 100
36637
+ # chars" expression: "document.summary.size() < 100" Example (Equality): title: "
36638
+ # Requestor is owner" description: "Determines if requestor is the document
36639
+ # owner" expression: "document.owner == request.auth.claims.email" Example (
36640
+ # Logic): title: "Public documents" description: "Determine whether the document
36641
+ # should be publicly visible" expression: "document.type != 'private' &&
36642
+ # document.type != 'internal'" Example (Data Manipulation): title: "Notification
36643
+ # string" description: "Create a notification string with a timestamp."
36644
+ # expression: "'New message received at ' + string(document.create_time)" The
36645
+ # exact variables and functions that may be referenced within an expression are
36646
+ # determined by the service that evaluates it. See the service documentation for
36647
+ # additional information.
36648
+ # Corresponds to the JSON property `match`
36649
+ # @return [Google::Apis::ComputeBeta::Expr]
36650
+ attr_accessor :match
36651
+
36652
+ # The evaluation priority for this term, which must be between 0 (inclusive) and
36653
+ # 2^31 (exclusive), and unique within the list.
36654
+ # Corresponds to the JSON property `priority`
36655
+ # @return [Fixnum]
36656
+ attr_accessor :priority
36657
+
36658
+ def initialize(**args)
36659
+ update!(**args)
36660
+ end
36661
+
36662
+ # Update properties of this object
36663
+ def update!(**args)
36664
+ @actions = args[:actions] if args.key?(:actions)
36665
+ @match = args[:match] if args.key?(:match)
36666
+ @priority = args[:priority] if args.key?(:priority)
36667
+ end
36668
+ end
36669
+
36438
36670
  # Represents a Cloud Router resource. For more information about Cloud Router,
36439
36671
  # read the Cloud Router overview.
36440
36672
  class Router
@@ -36841,6 +37073,20 @@ module Google
36841
37073
  attr_accessor :enable_ipv6
36842
37074
  alias_method :enable_ipv6?, :enable_ipv6
36843
37075
 
37076
+ # List of export policies applied to this peer, in the order they must be
37077
+ # evaluated. The name must correspond to an existing policy that has
37078
+ # ROUTE_POLICY_TYPE_EXPORT type.
37079
+ # Corresponds to the JSON property `exportPolicies`
37080
+ # @return [Array<String>]
37081
+ attr_accessor :export_policies
37082
+
37083
+ # List of import policies applied to this peer, in the order they must be
37084
+ # evaluated. The name must correspond to an existing policy that has
37085
+ # ROUTE_POLICY_TYPE_IMPORT type.
37086
+ # Corresponds to the JSON property `importPolicies`
37087
+ # @return [Array<String>]
37088
+ attr_accessor :import_policies
37089
+
36844
37090
  # Name of the interface the BGP peer is associated with.
36845
37091
  # Corresponds to the JSON property `interfaceName`
36846
37092
  # @return [String]
@@ -36935,6 +37181,8 @@ module Google
36935
37181
  @enable = args[:enable] if args.key?(:enable)
36936
37182
  @enable_ipv4 = args[:enable_ipv4] if args.key?(:enable_ipv4)
36937
37183
  @enable_ipv6 = args[:enable_ipv6] if args.key?(:enable_ipv6)
37184
+ @export_policies = args[:export_policies] if args.key?(:export_policies)
37185
+ @import_policies = args[:import_policies] if args.key?(:import_policies)
36938
37186
  @interface_name = args[:interface_name] if args.key?(:interface_name)
36939
37187
  @ip_address = args[:ip_address] if args.key?(:ip_address)
36940
37188
  @ipv4_nexthop_address = args[:ipv4_nexthop_address] if args.key?(:ipv4_nexthop_address)
@@ -37928,6 +38176,287 @@ module Google
37928
38176
  end
37929
38177
  end
37930
38178
 
38179
+ #
38180
+ class RoutersGetRoutePolicyResponse
38181
+ include Google::Apis::Core::Hashable
38182
+
38183
+ #
38184
+ # Corresponds to the JSON property `resource`
38185
+ # @return [Google::Apis::ComputeBeta::RoutePolicy]
38186
+ attr_accessor :resource
38187
+
38188
+ def initialize(**args)
38189
+ update!(**args)
38190
+ end
38191
+
38192
+ # Update properties of this object
38193
+ def update!(**args)
38194
+ @resource = args[:resource] if args.key?(:resource)
38195
+ end
38196
+ end
38197
+
38198
+ #
38199
+ class RoutersListBgpRoutes
38200
+ include Google::Apis::Core::Hashable
38201
+
38202
+ #
38203
+ # Corresponds to the JSON property `etag`
38204
+ # @return [String]
38205
+ attr_accessor :etag
38206
+
38207
+ # [Output Only] The unique identifier for the resource. This identifier is
38208
+ # defined by the server.
38209
+ # Corresponds to the JSON property `id`
38210
+ # @return [String]
38211
+ attr_accessor :id
38212
+
38213
+ # [Output Only] Type of resource. Always compute#routersListBgpRoutes for lists
38214
+ # of bgp routes.
38215
+ # Corresponds to the JSON property `kind`
38216
+ # @return [String]
38217
+ attr_accessor :kind
38218
+
38219
+ # [Output Only] This token allows you to get the next page of results for list
38220
+ # requests. If the number of results is larger than maxResults, use the
38221
+ # nextPageToken as a value for the query parameter pageToken in the next list
38222
+ # request. Subsequent list requests will have their own nextPageToken to
38223
+ # continue paging through the results.
38224
+ # Corresponds to the JSON property `nextPageToken`
38225
+ # @return [String]
38226
+ attr_accessor :next_page_token
38227
+
38228
+ # [Output Only] A list of bgp routes.
38229
+ # Corresponds to the JSON property `result`
38230
+ # @return [Array<Google::Apis::ComputeBeta::BgpRoute>]
38231
+ attr_accessor :result
38232
+
38233
+ # [Output Only] Server-defined URL for this resource.
38234
+ # Corresponds to the JSON property `selfLink`
38235
+ # @return [String]
38236
+ attr_accessor :self_link
38237
+
38238
+ # [Output Only] Unreachable resources.
38239
+ # Corresponds to the JSON property `unreachables`
38240
+ # @return [Array<String>]
38241
+ attr_accessor :unreachables
38242
+
38243
+ # [Output Only] Informational warning message.
38244
+ # Corresponds to the JSON property `warning`
38245
+ # @return [Google::Apis::ComputeBeta::RoutersListBgpRoutes::Warning]
38246
+ attr_accessor :warning
38247
+
38248
+ def initialize(**args)
38249
+ update!(**args)
38250
+ end
38251
+
38252
+ # Update properties of this object
38253
+ def update!(**args)
38254
+ @etag = args[:etag] if args.key?(:etag)
38255
+ @id = args[:id] if args.key?(:id)
38256
+ @kind = args[:kind] if args.key?(:kind)
38257
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
38258
+ @result = args[:result] if args.key?(:result)
38259
+ @self_link = args[:self_link] if args.key?(:self_link)
38260
+ @unreachables = args[:unreachables] if args.key?(:unreachables)
38261
+ @warning = args[:warning] if args.key?(:warning)
38262
+ end
38263
+
38264
+ # [Output Only] Informational warning message.
38265
+ class Warning
38266
+ include Google::Apis::Core::Hashable
38267
+
38268
+ # [Output Only] A warning code, if applicable. For example, Compute Engine
38269
+ # returns NO_RESULTS_ON_PAGE if there are no results in the response.
38270
+ # Corresponds to the JSON property `code`
38271
+ # @return [String]
38272
+ attr_accessor :code
38273
+
38274
+ # [Output Only] Metadata about this warning in key: value format. For example: "
38275
+ # data": [ ` "key": "scope", "value": "zones/us-east1-d" `
38276
+ # Corresponds to the JSON property `data`
38277
+ # @return [Array<Google::Apis::ComputeBeta::RoutersListBgpRoutes::Warning::Datum>]
38278
+ attr_accessor :data
38279
+
38280
+ # [Output Only] A human-readable description of the warning code.
38281
+ # Corresponds to the JSON property `message`
38282
+ # @return [String]
38283
+ attr_accessor :message
38284
+
38285
+ def initialize(**args)
38286
+ update!(**args)
38287
+ end
38288
+
38289
+ # Update properties of this object
38290
+ def update!(**args)
38291
+ @code = args[:code] if args.key?(:code)
38292
+ @data = args[:data] if args.key?(:data)
38293
+ @message = args[:message] if args.key?(:message)
38294
+ end
38295
+
38296
+ #
38297
+ class Datum
38298
+ include Google::Apis::Core::Hashable
38299
+
38300
+ # [Output Only] A key that provides more detail on the warning being returned.
38301
+ # For example, for warnings where there are no results in a list request for a
38302
+ # particular zone, this key might be scope and the key value might be the zone
38303
+ # name. Other examples might be a key indicating a deprecated resource and a
38304
+ # suggested replacement, or a warning about invalid network settings (for
38305
+ # example, if an instance attempts to perform IP forwarding but is not enabled
38306
+ # for IP forwarding).
38307
+ # Corresponds to the JSON property `key`
38308
+ # @return [String]
38309
+ attr_accessor :key
38310
+
38311
+ # [Output Only] A warning data value corresponding to the key.
38312
+ # Corresponds to the JSON property `value`
38313
+ # @return [String]
38314
+ attr_accessor :value
38315
+
38316
+ def initialize(**args)
38317
+ update!(**args)
38318
+ end
38319
+
38320
+ # Update properties of this object
38321
+ def update!(**args)
38322
+ @key = args[:key] if args.key?(:key)
38323
+ @value = args[:value] if args.key?(:value)
38324
+ end
38325
+ end
38326
+ end
38327
+ end
38328
+
38329
+ #
38330
+ class RoutersListRoutePolicies
38331
+ include Google::Apis::Core::Hashable
38332
+
38333
+ #
38334
+ # Corresponds to the JSON property `etag`
38335
+ # @return [String]
38336
+ attr_accessor :etag
38337
+
38338
+ # [Output Only] The unique identifier for the resource. This identifier is
38339
+ # defined by the server.
38340
+ # Corresponds to the JSON property `id`
38341
+ # @return [String]
38342
+ attr_accessor :id
38343
+
38344
+ # [Output Only] Type of resource. Always compute#routersListRoutePolicies for
38345
+ # lists of route policies.
38346
+ # Corresponds to the JSON property `kind`
38347
+ # @return [String]
38348
+ attr_accessor :kind
38349
+
38350
+ # [Output Only] This token allows you to get the next page of results for list
38351
+ # requests. If the number of results is larger than maxResults, use the
38352
+ # nextPageToken as a value for the query parameter pageToken in the next list
38353
+ # request. Subsequent list requests will have their own nextPageToken to
38354
+ # continue paging through the results.
38355
+ # Corresponds to the JSON property `nextPageToken`
38356
+ # @return [String]
38357
+ attr_accessor :next_page_token
38358
+
38359
+ # [Output Only] A list of route policies.
38360
+ # Corresponds to the JSON property `result`
38361
+ # @return [Array<Google::Apis::ComputeBeta::RoutePolicy>]
38362
+ attr_accessor :result
38363
+
38364
+ # [Output Only] Server-defined URL for this resource.
38365
+ # Corresponds to the JSON property `selfLink`
38366
+ # @return [String]
38367
+ attr_accessor :self_link
38368
+
38369
+ # [Output Only] Unreachable resources.
38370
+ # Corresponds to the JSON property `unreachables`
38371
+ # @return [Array<String>]
38372
+ attr_accessor :unreachables
38373
+
38374
+ # [Output Only] Informational warning message.
38375
+ # Corresponds to the JSON property `warning`
38376
+ # @return [Google::Apis::ComputeBeta::RoutersListRoutePolicies::Warning]
38377
+ attr_accessor :warning
38378
+
38379
+ def initialize(**args)
38380
+ update!(**args)
38381
+ end
38382
+
38383
+ # Update properties of this object
38384
+ def update!(**args)
38385
+ @etag = args[:etag] if args.key?(:etag)
38386
+ @id = args[:id] if args.key?(:id)
38387
+ @kind = args[:kind] if args.key?(:kind)
38388
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
38389
+ @result = args[:result] if args.key?(:result)
38390
+ @self_link = args[:self_link] if args.key?(:self_link)
38391
+ @unreachables = args[:unreachables] if args.key?(:unreachables)
38392
+ @warning = args[:warning] if args.key?(:warning)
38393
+ end
38394
+
38395
+ # [Output Only] Informational warning message.
38396
+ class Warning
38397
+ include Google::Apis::Core::Hashable
38398
+
38399
+ # [Output Only] A warning code, if applicable. For example, Compute Engine
38400
+ # returns NO_RESULTS_ON_PAGE if there are no results in the response.
38401
+ # Corresponds to the JSON property `code`
38402
+ # @return [String]
38403
+ attr_accessor :code
38404
+
38405
+ # [Output Only] Metadata about this warning in key: value format. For example: "
38406
+ # data": [ ` "key": "scope", "value": "zones/us-east1-d" `
38407
+ # Corresponds to the JSON property `data`
38408
+ # @return [Array<Google::Apis::ComputeBeta::RoutersListRoutePolicies::Warning::Datum>]
38409
+ attr_accessor :data
38410
+
38411
+ # [Output Only] A human-readable description of the warning code.
38412
+ # Corresponds to the JSON property `message`
38413
+ # @return [String]
38414
+ attr_accessor :message
38415
+
38416
+ def initialize(**args)
38417
+ update!(**args)
38418
+ end
38419
+
38420
+ # Update properties of this object
38421
+ def update!(**args)
38422
+ @code = args[:code] if args.key?(:code)
38423
+ @data = args[:data] if args.key?(:data)
38424
+ @message = args[:message] if args.key?(:message)
38425
+ end
38426
+
38427
+ #
38428
+ class Datum
38429
+ include Google::Apis::Core::Hashable
38430
+
38431
+ # [Output Only] A key that provides more detail on the warning being returned.
38432
+ # For example, for warnings where there are no results in a list request for a
38433
+ # particular zone, this key might be scope and the key value might be the zone
38434
+ # name. Other examples might be a key indicating a deprecated resource and a
38435
+ # suggested replacement, or a warning about invalid network settings (for
38436
+ # example, if an instance attempts to perform IP forwarding but is not enabled
38437
+ # for IP forwarding).
38438
+ # Corresponds to the JSON property `key`
38439
+ # @return [String]
38440
+ attr_accessor :key
38441
+
38442
+ # [Output Only] A warning data value corresponding to the key.
38443
+ # Corresponds to the JSON property `value`
38444
+ # @return [String]
38445
+ attr_accessor :value
38446
+
38447
+ def initialize(**args)
38448
+ update!(**args)
38449
+ end
38450
+
38451
+ # Update properties of this object
38452
+ def update!(**args)
38453
+ @key = args[:key] if args.key?(:key)
38454
+ @value = args[:value] if args.key?(:value)
38455
+ end
38456
+ end
38457
+ end
38458
+ end
38459
+
37931
38460
  #
37932
38461
  class RoutersPreviewResponse
37933
38462
  include Google::Apis::Core::Hashable
@@ -40607,10 +41136,10 @@ module Google
40607
41136
  # @return [String]
40608
41137
  attr_accessor :producer_forwarding_rule
40609
41138
 
40610
- # The number of consumer Network Connectivity Center spokes that connected
40611
- # Private Service Connect endpoints can be propagated to. This limit lets a
40612
- # service producer indirectly limit how many propagated Private Service Connect
40613
- # connections can be established to the producer's service attachment. If the
41139
+ # The number of consumer spokes that connected Private Service Connect endpoints
41140
+ # can be propagated to through Network Connectivity Center. This limit lets the
41141
+ # service producer limit how many propagated Private Service Connect connections
41142
+ # can be established to this service attachment from a single consumer. If the
40614
41143
  # connection preference of the service attachment is ACCEPT_MANUAL, the limit
40615
41144
  # applies to each project or network that is listed in the consumer accept list.
40616
41145
  # If the connection preference of the service attachment is ACCEPT_AUTOMATIC,
@@ -44617,6 +45146,26 @@ module Google
44617
45146
  end
44618
45147
  end
44619
45148
 
45149
+ #
45150
+ class StructuredEntries
45151
+ include Google::Apis::Core::Hashable
45152
+
45153
+ # Map of a partner metadata that belong to the same subdomain. It accepts any
45154
+ # value including google.protobuf.Struct.
45155
+ # Corresponds to the JSON property `entries`
45156
+ # @return [Hash<String,Object>]
45157
+ attr_accessor :entries
45158
+
45159
+ def initialize(**args)
45160
+ update!(**args)
45161
+ end
45162
+
45163
+ # Update properties of this object
45164
+ def update!(**args)
45165
+ @entries = args[:entries] if args.key?(:entries)
45166
+ end
45167
+ end
45168
+
44620
45169
  # Represents a Subnetwork resource. A subnetwork (also known as a subnet) is a
44621
45170
  # logical partition of a Virtual Private Cloud network with one primary IP range
44622
45171
  # and zero or more secondary IP ranges. For more information, read Virtual
@@ -46492,6 +47041,25 @@ module Google
46492
47041
  # @return [String]
46493
47042
  attr_accessor :ssl_policy
46494
47043
 
47044
+ # Specifies whether TLS 1.3 0-RTT Data ("Early Data") should be accepted for
47045
+ # this service. Early Data allows a TLS resumption handshake to include the
47046
+ # initial application payload (a HTTP request) alongside the handshake, reducing
47047
+ # the effective round trips to "zero". This applies to TLS 1.3 connections over
47048
+ # TCP (HTTP/2) as well as over UDP (QUIC/h3). This can improve application
47049
+ # performance, especially on networks where interruptions may be common, such as
47050
+ # on mobile. Requests with Early Data will have the "Early-Data" HTTP header set
47051
+ # on the request, with a value of "1", to allow the backend to determine whether
47052
+ # Early Data was included. Note: TLS Early Data may allow requests to be
47053
+ # replayed, as the data is sent to the backend before the handshake has fully
47054
+ # completed. Applications that allow idempotent HTTP methods to make non-
47055
+ # idempotent changes, such as a GET request updating a database, should not
47056
+ # accept Early Data on those requests, and reject requests with the "Early-Data:
47057
+ # 1" HTTP header by returning a HTTP 425 (Too Early) status code, in order to
47058
+ # remain RFC compliant. The default value is DISABLED.
47059
+ # Corresponds to the JSON property `tlsEarlyData`
47060
+ # @return [String]
47061
+ attr_accessor :tls_early_data
47062
+
46495
47063
  # A fully-qualified or valid partial URL to the UrlMap resource that defines the
46496
47064
  # mapping from URL to the BackendService. For example, the following are all
46497
47065
  # valid URLs for specifying a URL map: - https://www.googleapis.compute/v1/
@@ -46526,6 +47094,7 @@ module Google
46526
47094
  @server_tls_policy = args[:server_tls_policy] if args.key?(:server_tls_policy)
46527
47095
  @ssl_certificates = args[:ssl_certificates] if args.key?(:ssl_certificates)
46528
47096
  @ssl_policy = args[:ssl_policy] if args.key?(:ssl_policy)
47097
+ @tls_early_data = args[:tls_early_data] if args.key?(:tls_early_data)
46529
47098
  @url_map = args[:url_map] if args.key?(:url_map)
46530
47099
  end
46531
47100
  end