google-apis-compute_alpha 0.127.0 → 0.128.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: ec5df98afd9a0f3b0d7e5d1ec981f85431e6428a3932435f260655264dc58fcb
4
- data.tar.gz: db256fc1f36c4db8517b41bb2266818918a06b61f1eb6213e09b225c0a98aee0
3
+ metadata.gz: 21357b16bed08b71f876cbea225ca14fef181544d87437c7646163a3e3a2ff5e
4
+ data.tar.gz: da63ddf4b8dd68f83abe47a73e55b0fd000b6726d5651f2a170c7c0a91458480
5
5
  SHA512:
6
- metadata.gz: f05e8599f850776a42863882531b7fe85c0f3f620619af54f86d7db18a1e15c6d8da186041ee7212e453c84337e627367a7d39f8e972ad95ab9673743574fe26
7
- data.tar.gz: 171baa0238abb35f2dfb6aee9bf3dd9f9e583d18055e86001da1f237c3a1c1f492f3c89012ccb7b29845d1291ed47650bf2dcc6bd1aa25acea8eacdf3fa1c69c
6
+ metadata.gz: '0877ea37a35b5db47875e85eae3cade88d11f0540a59007beac502f234ef72cdd5649d478238cd3aab0dc55edb6045c92413c2085e74d95bfd1a533837581cee'
7
+ data.tar.gz: 4fe5e3d4a9026242a710e9618112435fecf197ba624119b57d1b255bd4e0022c4f475e97a833c302a09c6113a58cf2384dee8c3ac89e696c97c35b296144d7a6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_alpha
2
2
 
3
+ ### v0.128.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251210
6
+
3
7
  ### v0.127.0 (2025-12-07)
4
8
 
5
9
  * Regenerated from discovery document revision 20251202
@@ -7835,6 +7835,247 @@ module Google
7835
7835
  end
7836
7836
  end
7837
7837
 
7838
+ # Message containing CachePolicy configuration for URL Map's Route Action.
7839
+ class CachePolicy
7840
+ include Google::Apis::Core::Hashable
7841
+
7842
+ # Bypass the cache when the specified request headers are matched by name,
7843
+ # e.g. Pragma or Authorization headers. Values are case-insensitive. Up to 5
7844
+ # header names can be specified. The cache is bypassed for all
7845
+ # cachePolicy.cacheMode settings.
7846
+ # Corresponds to the JSON property `cacheBypassRequestHeaderNames`
7847
+ # @return [Array<String>]
7848
+ attr_accessor :cache_bypass_request_header_names
7849
+
7850
+ # Message containing what to include in the cache key for a request for Cache
7851
+ # Policy defined on Route Action.
7852
+ # Corresponds to the JSON property `cacheKeyPolicy`
7853
+ # @return [Google::Apis::ComputeAlpha::CachePolicyCacheKeyPolicy]
7854
+ attr_accessor :cache_key_policy
7855
+
7856
+ # Specifies the cache setting for all responses from this route.
7857
+ # If not specified, the default value is CACHE_ALL_STATIC.
7858
+ # Corresponds to the JSON property `cacheMode`
7859
+ # @return [String]
7860
+ attr_accessor :cache_mode
7861
+
7862
+ # A Duration represents a fixed-length span of time represented
7863
+ # as a count of seconds and fractions of seconds at nanosecond
7864
+ # resolution. It is independent of any calendar and concepts like "day"
7865
+ # or "month". Range is approximately 10,000 years.
7866
+ # Corresponds to the JSON property `clientTtl`
7867
+ # @return [Google::Apis::ComputeAlpha::Duration]
7868
+ attr_accessor :client_ttl
7869
+
7870
+ # A Duration represents a fixed-length span of time represented
7871
+ # as a count of seconds and fractions of seconds at nanosecond
7872
+ # resolution. It is independent of any calendar and concepts like "day"
7873
+ # or "month". Range is approximately 10,000 years.
7874
+ # Corresponds to the JSON property `defaultTtl`
7875
+ # @return [Google::Apis::ComputeAlpha::Duration]
7876
+ attr_accessor :default_ttl
7877
+
7878
+ # A Duration represents a fixed-length span of time represented
7879
+ # as a count of seconds and fractions of seconds at nanosecond
7880
+ # resolution. It is independent of any calendar and concepts like "day"
7881
+ # or "month". Range is approximately 10,000 years.
7882
+ # Corresponds to the JSON property `maxTtl`
7883
+ # @return [Google::Apis::ComputeAlpha::Duration]
7884
+ attr_accessor :max_ttl
7885
+
7886
+ # Negative caching allows per-status code TTLs to be set, in order
7887
+ # to apply fine-grained caching for common errors or redirects.
7888
+ # This can reduce the load on your origin and improve end-user
7889
+ # experience by reducing response latency.
7890
+ # When the cache mode is set to CACHE_ALL_STATIC or USE_ORIGIN_HEADERS,
7891
+ # negative caching applies to responses with the specified response code
7892
+ # that lack any Cache-Control, Expires, or Pragma: no-cache directives.
7893
+ # When the cache mode is set to FORCE_CACHE_ALL, negative caching applies
7894
+ # to all responses with the specified response code, and override any
7895
+ # caching headers.
7896
+ # By default, Cloud CDN will apply the following default TTLs to these
7897
+ # status codes:
7898
+ # HTTP 300 (Multiple Choice), 301, 308 (Permanent Redirects): 10m
7899
+ # HTTP 404 (Not Found), 410 (Gone),
7900
+ # 451 (Unavailable For Legal Reasons): 120s
7901
+ # HTTP 405 (Method Not Found), 501 (Not Implemented): 60s.
7902
+ # These defaults can be overridden in negative_caching_policy.
7903
+ # Corresponds to the JSON property `negativeCaching`
7904
+ # @return [Boolean]
7905
+ attr_accessor :negative_caching
7906
+ alias_method :negative_caching?, :negative_caching
7907
+
7908
+ # Sets a cache TTL for the specified HTTP status code.
7909
+ # negative_caching must be enabled to configure negative_caching_policy.
7910
+ # Omitting the policy and leaving negative_caching enabled will use
7911
+ # Cloud CDN's default cache TTLs.
7912
+ # Note that when specifying an explicit negative_caching_policy, you
7913
+ # should take care to specify a cache TTL for all response codes
7914
+ # that you wish to cache. Cloud CDN will not apply any default
7915
+ # negative caching when a policy exists.
7916
+ # Corresponds to the JSON property `negativeCachingPolicy`
7917
+ # @return [Array<Google::Apis::ComputeAlpha::CachePolicyNegativeCachingPolicy>]
7918
+ attr_accessor :negative_caching_policy
7919
+
7920
+ # If true then Cloud CDN will combine multiple concurrent cache fill
7921
+ # requests into a small number of requests to the origin.
7922
+ # Corresponds to the JSON property `requestCoalescing`
7923
+ # @return [Boolean]
7924
+ attr_accessor :request_coalescing
7925
+ alias_method :request_coalescing?, :request_coalescing
7926
+
7927
+ # A Duration represents a fixed-length span of time represented
7928
+ # as a count of seconds and fractions of seconds at nanosecond
7929
+ # resolution. It is independent of any calendar and concepts like "day"
7930
+ # or "month". Range is approximately 10,000 years.
7931
+ # Corresponds to the JSON property `serveWhileStale`
7932
+ # @return [Google::Apis::ComputeAlpha::Duration]
7933
+ attr_accessor :serve_while_stale
7934
+
7935
+ def initialize(**args)
7936
+ update!(**args)
7937
+ end
7938
+
7939
+ # Update properties of this object
7940
+ def update!(**args)
7941
+ @cache_bypass_request_header_names = args[:cache_bypass_request_header_names] if args.key?(:cache_bypass_request_header_names)
7942
+ @cache_key_policy = args[:cache_key_policy] if args.key?(:cache_key_policy)
7943
+ @cache_mode = args[:cache_mode] if args.key?(:cache_mode)
7944
+ @client_ttl = args[:client_ttl] if args.key?(:client_ttl)
7945
+ @default_ttl = args[:default_ttl] if args.key?(:default_ttl)
7946
+ @max_ttl = args[:max_ttl] if args.key?(:max_ttl)
7947
+ @negative_caching = args[:negative_caching] if args.key?(:negative_caching)
7948
+ @negative_caching_policy = args[:negative_caching_policy] if args.key?(:negative_caching_policy)
7949
+ @request_coalescing = args[:request_coalescing] if args.key?(:request_coalescing)
7950
+ @serve_while_stale = args[:serve_while_stale] if args.key?(:serve_while_stale)
7951
+ end
7952
+ end
7953
+
7954
+ # Message containing what to include in the cache key for a request for Cache
7955
+ # Policy defined on Route Action.
7956
+ class CachePolicyCacheKeyPolicy
7957
+ include Google::Apis::Core::Hashable
7958
+
7959
+ # Names of query string parameters to exclude in cache keys. All other
7960
+ # parameters will be included. Either specify excluded_query_parameters or
7961
+ # included_query_parameters, not both. '&' and '=' will be percent encoded
7962
+ # and not treated as delimiters.
7963
+ # Note: This field applies to routes that use backend services. Attempting
7964
+ # to set it on a route that points exclusively to Backend Buckets will
7965
+ # result in a configuration error. For routes that point to a Backend
7966
+ # Bucket, use includedQueryParameters to define which parameters should
7967
+ # be a part of the cache key.
7968
+ # Corresponds to the JSON property `excludedQueryParameters`
7969
+ # @return [Array<String>]
7970
+ attr_accessor :excluded_query_parameters
7971
+
7972
+ # If true, requests to different hosts will be cached separately.
7973
+ # Note: This setting is only applicable to routes that use a Backend
7974
+ # Service. It does not affect requests served by a Backend Bucket, as the
7975
+ # host is never included in a Backend Bucket's cache key. Attempting to set
7976
+ # it on a route that points exclusively to Backend Buckets will result in a
7977
+ # configuration error.
7978
+ # Corresponds to the JSON property `includeHost`
7979
+ # @return [Boolean]
7980
+ attr_accessor :include_host
7981
+ alias_method :include_host?, :include_host
7982
+
7983
+ # If true, http and https requests will be cached separately.
7984
+ # Note: This setting is only applicable to routes that use a Backend
7985
+ # Service. It does not affect requests served by a Backend Bucket, as the
7986
+ # protocol is never included in a Backend Bucket's cache key. Attempting to
7987
+ # set on a route that points exclusively to Backend Buckets will result in
7988
+ # a configuration error.
7989
+ # Corresponds to the JSON property `includeProtocol`
7990
+ # @return [Boolean]
7991
+ attr_accessor :include_protocol
7992
+ alias_method :include_protocol?, :include_protocol
7993
+
7994
+ # If true, include query string parameters in the cache key according to
7995
+ # included_query_parameters and excluded_query_parameters. If neither is
7996
+ # set, the entire query string will be included. If false, the query string
7997
+ # will be excluded from the cache key entirely.
7998
+ # Note: This field applies to routes that use backend services. Attempting
7999
+ # to set it on a route that points exclusively to Backend Buckets will
8000
+ # result in a configuration error. For routes that point to a Backend
8001
+ # Bucket, use includedQueryParameters to define which parameters should
8002
+ # be a part of the cache key.
8003
+ # Corresponds to the JSON property `includeQueryString`
8004
+ # @return [Boolean]
8005
+ attr_accessor :include_query_string
8006
+ alias_method :include_query_string?, :include_query_string
8007
+
8008
+ # Allows HTTP cookies (by name) to be used in the cache key.
8009
+ # The name=value pair will be used in the cache key Cloud CDN generates.
8010
+ # Note: This setting is only applicable to routes that use a Backend
8011
+ # Service. It does not affect requests served by a Backend Bucket.
8012
+ # Attempting to set it on a route that points exclusively to Backend
8013
+ # Buckets will result in a configuration error. Up to 5 cookie names can be
8014
+ # specified.
8015
+ # Corresponds to the JSON property `includedCookieNames`
8016
+ # @return [Array<String>]
8017
+ attr_accessor :included_cookie_names
8018
+
8019
+ # Allows HTTP request headers (by name) to be used in the cache key.
8020
+ # Corresponds to the JSON property `includedHeaderNames`
8021
+ # @return [Array<String>]
8022
+ attr_accessor :included_header_names
8023
+
8024
+ # Names of query string parameters to include in cache keys. All other
8025
+ # parameters will be excluded. Either specify included_query_parameters or
8026
+ # excluded_query_parameters, not both. '&' and '=' will be percent encoded
8027
+ # and not treated as delimiters.
8028
+ # Corresponds to the JSON property `includedQueryParameters`
8029
+ # @return [Array<String>]
8030
+ attr_accessor :included_query_parameters
8031
+
8032
+ def initialize(**args)
8033
+ update!(**args)
8034
+ end
8035
+
8036
+ # Update properties of this object
8037
+ def update!(**args)
8038
+ @excluded_query_parameters = args[:excluded_query_parameters] if args.key?(:excluded_query_parameters)
8039
+ @include_host = args[:include_host] if args.key?(:include_host)
8040
+ @include_protocol = args[:include_protocol] if args.key?(:include_protocol)
8041
+ @include_query_string = args[:include_query_string] if args.key?(:include_query_string)
8042
+ @included_cookie_names = args[:included_cookie_names] if args.key?(:included_cookie_names)
8043
+ @included_header_names = args[:included_header_names] if args.key?(:included_header_names)
8044
+ @included_query_parameters = args[:included_query_parameters] if args.key?(:included_query_parameters)
8045
+ end
8046
+ end
8047
+
8048
+ # Specify CDN TTLs for response error codes.
8049
+ class CachePolicyNegativeCachingPolicy
8050
+ include Google::Apis::Core::Hashable
8051
+
8052
+ # The HTTP status code to define a TTL against. Only HTTP status codes
8053
+ # 300, 301, 302, 307, 308, 404, 405, 410, 421, 451 and 501 can be
8054
+ # specified as values, and you cannot specify a status code more than
8055
+ # once.
8056
+ # Corresponds to the JSON property `code`
8057
+ # @return [Fixnum]
8058
+ attr_accessor :code
8059
+
8060
+ # A Duration represents a fixed-length span of time represented
8061
+ # as a count of seconds and fractions of seconds at nanosecond
8062
+ # resolution. It is independent of any calendar and concepts like "day"
8063
+ # or "month". Range is approximately 10,000 years.
8064
+ # Corresponds to the JSON property `ttl`
8065
+ # @return [Google::Apis::ComputeAlpha::Duration]
8066
+ attr_accessor :ttl
8067
+
8068
+ def initialize(**args)
8069
+ update!(**args)
8070
+ end
8071
+
8072
+ # Update properties of this object
8073
+ def update!(**args)
8074
+ @code = args[:code] if args.key?(:code)
8075
+ @ttl = args[:ttl] if args.key?(:ttl)
8076
+ end
8077
+ end
8078
+
7838
8079
  # A request to recommend the best way to consume the specified resources in the
7839
8080
  # future.
7840
8081
  class CalendarModeAdviceRequest
@@ -14563,6 +14804,11 @@ module Google
14563
14804
  # @return [String]
14564
14805
  attr_accessor :ip_address
14565
14806
 
14807
+ #
14808
+ # Corresponds to the JSON property `IPAddresses`
14809
+ # @return [Array<String>]
14810
+ attr_accessor :ip_addresses
14811
+
14566
14812
  # The IP protocol to which this rule applies.
14567
14813
  # For protocol forwarding, valid
14568
14814
  # options are TCP, UDP, ESP,AH, SCTP, ICMP andL3_DEFAULT.
@@ -15020,6 +15266,7 @@ module Google
15020
15266
  # Update properties of this object
15021
15267
  def update!(**args)
15022
15268
  @ip_address = args[:ip_address] if args.key?(:ip_address)
15269
+ @ip_addresses = args[:ip_addresses] if args.key?(:ip_addresses)
15023
15270
  @ip_protocol = args[:ip_protocol] if args.key?(:ip_protocol)
15024
15271
  @all_ports = args[:all_ports] if args.key?(:all_ports)
15025
15272
  @allow_global_access = args[:allow_global_access] if args.key?(:allow_global_access)
@@ -17475,17 +17722,19 @@ module Google
17475
17722
  class GlobalVmExtensionPolicyRolloutOperationRolloutInput
17476
17723
  include Google::Apis::Core::Hashable
17477
17724
 
17478
- # Optional. [Optional] Specifies the behavior of the Rollout if a conflict is
17479
- # detected in a project during a Rollout. It can be one of the following
17480
- # values:
17481
- # 1) empty : don't overwrite the local value if conflict happens. This is
17482
- # the default behavior.
17483
- # 2) "overwrite" : Overwrite the local value with the rollout value.
17484
- # The concept of "conflict" applies to:
17485
- # 1) Insert action. If the zonal policy already exists when Insert
17486
- # happens, it's a conflict.
17487
- # 2) Update action. If the zonal policy was updated out of band by a
17488
- # zonal API, it's a conflict.
17725
+ # Optional. Specifies the behavior of the rollout if a conflict is detected in a
17726
+ # project during a rollout. This only applies to `insert` and `update`
17727
+ # methods.
17728
+ # A conflict occurs in the following cases:
17729
+ # * `insert` method: If the zonal policy already exists when the insert
17730
+ # happens.
17731
+ # * `update` method: If the zonal policy was modified by a zonal API call
17732
+ # outside of this rollout.
17733
+ # Possible values are the following:
17734
+ # * `""` (empty string): If a conflict occurs, the local value is not
17735
+ # overwritten. This is the default behavior.
17736
+ # * `"overwrite"`: If a conflict occurs, the local value is overwritten
17737
+ # with the rollout value.
17489
17738
  # Corresponds to the JSON property `conflictBehavior`
17490
17739
  # @return [String]
17491
17740
  attr_accessor :conflict_behavior
@@ -17502,10 +17751,16 @@ module Google
17502
17751
  # @return [String]
17503
17752
  attr_accessor :predefined_rollout_plan
17504
17753
 
17505
- # Optional. The UUID of the retry action. Only set it if this is a retry
17506
- # for an existing resource. This is for the user re-populate the resource
17507
- # without changes. An error will be returned if the retry_uuid is set but
17508
- # the resource get modified.
17754
+ # Optional. The UUID that identifies a policy rollout retry attempt for update
17755
+ # and
17756
+ # delete operations. Set this field only when retrying a rollout for an
17757
+ # existing extension policy.
17758
+ # * `update` method: Lets you retry policy rollout without changes.
17759
+ # An error occurs if you set retry_uuid but the policy is modified.
17760
+ # * `delete` method: Lets you retry policy deletion rollout if the
17761
+ # previous deletion rollout is not finished and the policy is in the
17762
+ # DELETING state. If you set this field when the policy is not in the
17763
+ # DELETING state, an error occurs.
17509
17764
  # Corresponds to the JSON property `retryUuid`
17510
17765
  # @return [String]
17511
17766
  attr_accessor :retry_uuid
@@ -22364,6 +22619,11 @@ module Google
22364
22619
  class HttpRouteAction
22365
22620
  include Google::Apis::Core::Hashable
22366
22621
 
22622
+ # Message containing CachePolicy configuration for URL Map's Route Action.
22623
+ # Corresponds to the JSON property `cachePolicy`
22624
+ # @return [Google::Apis::ComputeAlpha::CachePolicy]
22625
+ attr_accessor :cache_policy
22626
+
22367
22627
  # The specification for allowing client-side cross-origin requests. For more
22368
22628
  # information about the W3C recommendation for cross-origin resource sharing
22369
22629
  # (CORS), see Fetch API Living
@@ -22437,6 +22697,7 @@ module Google
22437
22697
 
22438
22698
  # Update properties of this object
22439
22699
  def update!(**args)
22700
+ @cache_policy = args[:cache_policy] if args.key?(:cache_policy)
22440
22701
  @cors_policy = args[:cors_policy] if args.key?(:cors_policy)
22441
22702
  @fault_injection_policy = args[:fault_injection_policy] if args.key?(:fault_injection_policy)
22442
22703
  @max_stream_duration = args[:max_stream_duration] if args.key?(:max_stream_duration)
@@ -41997,6 +42258,11 @@ module Google
41997
42258
  # @return [String]
41998
42259
  attr_accessor :kind
41999
42260
 
42261
+ # Output only. [Output Only] MAC address assigned to this network interface.
42262
+ # Corresponds to the JSON property `macAddress`
42263
+ # @return [String]
42264
+ attr_accessor :mac_address
42265
+
42000
42266
  # [Output Only] The name of the network interface, which is generated by the
42001
42267
  # server. For a VM, the network interface uses the nicN naming
42002
42268
  # format. Where N is a value between 0 and7. The default interface value is nic0.
@@ -42118,6 +42384,7 @@ module Google
42118
42384
  @ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
42119
42385
  @ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
42120
42386
  @kind = args[:kind] if args.key?(:kind)
42387
+ @mac_address = args[:mac_address] if args.key?(:mac_address)
42121
42388
  @name = args[:name] if args.key?(:name)
42122
42389
  @network = args[:network] if args.key?(:network)
42123
42390
  @network_attachment = args[:network_attachment] if args.key?(:network_attachment)
@@ -70468,7 +70735,8 @@ module Google
70468
70735
  # explicitly set, it will not appear in get listings. If not set
70469
70736
  # the default behavior is determined by the org policy, if there is no org
70470
70737
  # policy specified, then it will default to disabled. This field isn't
70471
- # supported if the subnet purpose field is set toREGIONAL_MANAGED_PROXY.
70738
+ # supported if the subnet purpose field is set toREGIONAL_MANAGED_PROXY. It is
70739
+ # recommended to uselogConfig.enable field instead.
70472
70740
  # Corresponds to the JSON property `enableFlowLogs`
70473
70741
  # @return [Boolean]
70474
70742
  attr_accessor :enable_flow_logs
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComputeAlpha
18
18
  # Version of the google-apis-compute_alpha gem
19
- GEM_VERSION = "0.127.0"
19
+ GEM_VERSION = "0.128.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251202"
25
+ REVISION = "20251210"
26
26
  end
27
27
  end
28
28
  end
@@ -868,6 +868,24 @@ module Google
868
868
  include Google::Apis::Core::JsonObjectSupport
869
869
  end
870
870
 
871
+ class CachePolicy
872
+ class Representation < Google::Apis::Core::JsonRepresentation; end
873
+
874
+ include Google::Apis::Core::JsonObjectSupport
875
+ end
876
+
877
+ class CachePolicyCacheKeyPolicy
878
+ class Representation < Google::Apis::Core::JsonRepresentation; end
879
+
880
+ include Google::Apis::Core::JsonObjectSupport
881
+ end
882
+
883
+ class CachePolicyNegativeCachingPolicy
884
+ class Representation < Google::Apis::Core::JsonRepresentation; end
885
+
886
+ include Google::Apis::Core::JsonObjectSupport
887
+ end
888
+
871
889
  class CalendarModeAdviceRequest
872
890
  class Representation < Google::Apis::Core::JsonRepresentation; end
873
891
 
@@ -11627,6 +11645,50 @@ module Google
11627
11645
  end
11628
11646
  end
11629
11647
 
11648
+ class CachePolicy
11649
+ # @private
11650
+ class Representation < Google::Apis::Core::JsonRepresentation
11651
+ collection :cache_bypass_request_header_names, as: 'cacheBypassRequestHeaderNames'
11652
+ property :cache_key_policy, as: 'cacheKeyPolicy', class: Google::Apis::ComputeAlpha::CachePolicyCacheKeyPolicy, decorator: Google::Apis::ComputeAlpha::CachePolicyCacheKeyPolicy::Representation
11653
+
11654
+ property :cache_mode, as: 'cacheMode'
11655
+ property :client_ttl, as: 'clientTtl', class: Google::Apis::ComputeAlpha::Duration, decorator: Google::Apis::ComputeAlpha::Duration::Representation
11656
+
11657
+ property :default_ttl, as: 'defaultTtl', class: Google::Apis::ComputeAlpha::Duration, decorator: Google::Apis::ComputeAlpha::Duration::Representation
11658
+
11659
+ property :max_ttl, as: 'maxTtl', class: Google::Apis::ComputeAlpha::Duration, decorator: Google::Apis::ComputeAlpha::Duration::Representation
11660
+
11661
+ property :negative_caching, as: 'negativeCaching'
11662
+ collection :negative_caching_policy, as: 'negativeCachingPolicy', class: Google::Apis::ComputeAlpha::CachePolicyNegativeCachingPolicy, decorator: Google::Apis::ComputeAlpha::CachePolicyNegativeCachingPolicy::Representation
11663
+
11664
+ property :request_coalescing, as: 'requestCoalescing'
11665
+ property :serve_while_stale, as: 'serveWhileStale', class: Google::Apis::ComputeAlpha::Duration, decorator: Google::Apis::ComputeAlpha::Duration::Representation
11666
+
11667
+ end
11668
+ end
11669
+
11670
+ class CachePolicyCacheKeyPolicy
11671
+ # @private
11672
+ class Representation < Google::Apis::Core::JsonRepresentation
11673
+ collection :excluded_query_parameters, as: 'excludedQueryParameters'
11674
+ property :include_host, as: 'includeHost'
11675
+ property :include_protocol, as: 'includeProtocol'
11676
+ property :include_query_string, as: 'includeQueryString'
11677
+ collection :included_cookie_names, as: 'includedCookieNames'
11678
+ collection :included_header_names, as: 'includedHeaderNames'
11679
+ collection :included_query_parameters, as: 'includedQueryParameters'
11680
+ end
11681
+ end
11682
+
11683
+ class CachePolicyNegativeCachingPolicy
11684
+ # @private
11685
+ class Representation < Google::Apis::Core::JsonRepresentation
11686
+ property :code, as: 'code'
11687
+ property :ttl, as: 'ttl', class: Google::Apis::ComputeAlpha::Duration, decorator: Google::Apis::ComputeAlpha::Duration::Representation
11688
+
11689
+ end
11690
+ end
11691
+
11630
11692
  class CalendarModeAdviceRequest
11631
11693
  # @private
11632
11694
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -13100,6 +13162,7 @@ module Google
13100
13162
  # @private
13101
13163
  class Representation < Google::Apis::Core::JsonRepresentation
13102
13164
  property :ip_address, as: 'IPAddress'
13165
+ collection :ip_addresses, as: 'IPAddresses'
13103
13166
  property :ip_protocol, as: 'IPProtocol'
13104
13167
  property :all_ports, as: 'allPorts'
13105
13168
  property :allow_global_access, as: 'allowGlobalAccess'
@@ -14873,6 +14936,8 @@ module Google
14873
14936
  class HttpRouteAction
14874
14937
  # @private
14875
14938
  class Representation < Google::Apis::Core::JsonRepresentation
14939
+ property :cache_policy, as: 'cachePolicy', class: Google::Apis::ComputeAlpha::CachePolicy, decorator: Google::Apis::ComputeAlpha::CachePolicy::Representation
14940
+
14876
14941
  property :cors_policy, as: 'corsPolicy', class: Google::Apis::ComputeAlpha::CorsPolicy, decorator: Google::Apis::ComputeAlpha::CorsPolicy::Representation
14877
14942
 
14878
14943
  property :fault_injection_policy, as: 'faultInjectionPolicy', class: Google::Apis::ComputeAlpha::HttpFaultInjection, decorator: Google::Apis::ComputeAlpha::HttpFaultInjection::Representation
@@ -19483,6 +19548,7 @@ module Google
19483
19548
  property :ipv6_access_type, as: 'ipv6AccessType'
19484
19549
  property :ipv6_address, as: 'ipv6Address'
19485
19550
  property :kind, as: 'kind'
19551
+ property :mac_address, as: 'macAddress'
19486
19552
  property :name, as: 'name'
19487
19553
  property :network, as: 'network'
19488
19554
  property :network_attachment, as: 'networkAttachment'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.127.0
4
+ version: 0.128.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.127.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.128.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha
62
62
  rdoc_options: []
63
63
  require_paths: