google-apis-compute_alpha 0.99.0 → 0.100.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7f5bc21525efea3314ce7920b39fa53d548ad16904802266970475a72902a3e5
|
|
4
|
+
data.tar.gz: d1bda9b9c5d885e4834dac09799af24cbc1bd8d1973b12e43b32ad3166f61e9e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: edf84f23a0b32028ac7408b2bfc1f028e8c5427fe131f6203be35f15132425dee6002cc918383be5413be6f57218d2dada85bb392bc074f2241b4850cdee96a3
|
|
7
|
+
data.tar.gz: 718623cfd5cf4934cd05cc3e72dc2c25ffc2cda788266996d8e60d11ffd3c3b789a7b85b6138c7831866620e68dbf7e9a41c3b3146c89189b6ee8ff8440f515e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-compute_alpha
|
|
2
2
|
|
|
3
|
+
### v0.100.0 (2024-05-19)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20240507
|
|
6
|
+
* Regenerated using generator version 0.15.0
|
|
7
|
+
|
|
3
8
|
### v0.99.0 (2024-04-28)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20240421
|
|
@@ -572,7 +572,7 @@ module Google
|
|
|
572
572
|
|
|
573
573
|
# The DNS domain name for the public PTR record. You can set this field only if
|
|
574
574
|
# the `setPublicPtr` field is enabled in accessConfig. If this field is
|
|
575
|
-
# unspecified in ipv6AccessConfig, a default PTR record will be
|
|
575
|
+
# unspecified in ipv6AccessConfig, a default PTR record will be created for
|
|
576
576
|
# first IP in associated external IPv6 range.
|
|
577
577
|
# Corresponds to the JSON property `publicPtrDomainName`
|
|
578
578
|
# @return [String]
|
|
@@ -2084,25 +2084,6 @@ module Google
|
|
|
2084
2084
|
end
|
|
2085
2085
|
end
|
|
2086
2086
|
|
|
2087
|
-
# This is deprecated and has no effect. Do not use.
|
|
2088
|
-
class AuthorizationLoggingOptions
|
|
2089
|
-
include Google::Apis::Core::Hashable
|
|
2090
|
-
|
|
2091
|
-
# This is deprecated and has no effect. Do not use.
|
|
2092
|
-
# Corresponds to the JSON property `permissionType`
|
|
2093
|
-
# @return [String]
|
|
2094
|
-
attr_accessor :permission_type
|
|
2095
|
-
|
|
2096
|
-
def initialize(**args)
|
|
2097
|
-
update!(**args)
|
|
2098
|
-
end
|
|
2099
|
-
|
|
2100
|
-
# Update properties of this object
|
|
2101
|
-
def update!(**args)
|
|
2102
|
-
@permission_type = args[:permission_type] if args.key?(:permission_type)
|
|
2103
|
-
end
|
|
2104
|
-
end
|
|
2105
|
-
|
|
2106
2087
|
# Represents an Autoscaler resource. Google Compute Engine has two Autoscaler
|
|
2107
2088
|
# resources: * [Zonal](/compute/docs/reference/rest/alpha/autoscalers) * [
|
|
2108
2089
|
# Regional](/compute/docs/reference/rest/alpha/regionAutoscalers) Use
|
|
@@ -3945,6 +3926,11 @@ module Google
|
|
|
3945
3926
|
# @return [String]
|
|
3946
3927
|
attr_accessor :session_affinity
|
|
3947
3928
|
|
|
3929
|
+
# The HTTP cookie used for stateful session affinity.
|
|
3930
|
+
# Corresponds to the JSON property `strongSessionAffinityCookie`
|
|
3931
|
+
# @return [Google::Apis::ComputeAlpha::BackendServiceHttpCookie]
|
|
3932
|
+
attr_accessor :strong_session_affinity_cookie
|
|
3933
|
+
|
|
3948
3934
|
# Subsetting configuration for this BackendService. Currently this is applicable
|
|
3949
3935
|
# only for Internal TCP/UDP load balancing, Internal HTTP(S) load balancing and
|
|
3950
3936
|
# Traffic Director.
|
|
@@ -4031,6 +4017,7 @@ module Google
|
|
|
4031
4017
|
@service_bindings = args[:service_bindings] if args.key?(:service_bindings)
|
|
4032
4018
|
@service_lb_policy = args[:service_lb_policy] if args.key?(:service_lb_policy)
|
|
4033
4019
|
@session_affinity = args[:session_affinity] if args.key?(:session_affinity)
|
|
4020
|
+
@strong_session_affinity_cookie = args[:strong_session_affinity_cookie] if args.key?(:strong_session_affinity_cookie)
|
|
4034
4021
|
@subsetting = args[:subsetting] if args.key?(:subsetting)
|
|
4035
4022
|
@timeout_sec = args[:timeout_sec] if args.key?(:timeout_sec)
|
|
4036
4023
|
@used_by = args[:used_by] if args.key?(:used_by)
|
|
@@ -4593,6 +4580,40 @@ module Google
|
|
|
4593
4580
|
end
|
|
4594
4581
|
end
|
|
4595
4582
|
|
|
4583
|
+
# The HTTP cookie used for stateful session affinity.
|
|
4584
|
+
class BackendServiceHttpCookie
|
|
4585
|
+
include Google::Apis::Core::Hashable
|
|
4586
|
+
|
|
4587
|
+
# Name of the cookie.
|
|
4588
|
+
# Corresponds to the JSON property `name`
|
|
4589
|
+
# @return [String]
|
|
4590
|
+
attr_accessor :name
|
|
4591
|
+
|
|
4592
|
+
# Path to set for the cookie.
|
|
4593
|
+
# Corresponds to the JSON property `path`
|
|
4594
|
+
# @return [String]
|
|
4595
|
+
attr_accessor :path
|
|
4596
|
+
|
|
4597
|
+
# A Duration represents a fixed-length span of time represented as a count of
|
|
4598
|
+
# seconds and fractions of seconds at nanosecond resolution. It is independent
|
|
4599
|
+
# of any calendar and concepts like "day" or "month". Range is approximately 10,
|
|
4600
|
+
# 000 years.
|
|
4601
|
+
# Corresponds to the JSON property `ttl`
|
|
4602
|
+
# @return [Google::Apis::ComputeAlpha::Duration]
|
|
4603
|
+
attr_accessor :ttl
|
|
4604
|
+
|
|
4605
|
+
def initialize(**args)
|
|
4606
|
+
update!(**args)
|
|
4607
|
+
end
|
|
4608
|
+
|
|
4609
|
+
# Update properties of this object
|
|
4610
|
+
def update!(**args)
|
|
4611
|
+
@name = args[:name] if args.key?(:name)
|
|
4612
|
+
@path = args[:path] if args.key?(:path)
|
|
4613
|
+
@ttl = args[:ttl] if args.key?(:ttl)
|
|
4614
|
+
end
|
|
4615
|
+
end
|
|
4616
|
+
|
|
4596
4617
|
# Identity-Aware Proxy
|
|
4597
4618
|
class BackendServiceIap
|
|
4598
4619
|
include Google::Apis::Core::Hashable
|
|
@@ -12825,6 +12846,7 @@ module Google
|
|
|
12825
12846
|
attr_accessor :proxy_header
|
|
12826
12847
|
|
|
12827
12848
|
# The request path of the HTTP/2 health check request. The default value is /.
|
|
12849
|
+
# Must comply with RFC3986.
|
|
12828
12850
|
# Corresponds to the JSON property `requestPath`
|
|
12829
12851
|
# @return [String]
|
|
12830
12852
|
attr_accessor :request_path
|
|
@@ -12913,6 +12935,7 @@ module Google
|
|
|
12913
12935
|
attr_accessor :proxy_header
|
|
12914
12936
|
|
|
12915
12937
|
# The request path of the HTTP health check request. The default value is /.
|
|
12938
|
+
# Must comply with RFC3986.
|
|
12916
12939
|
# Corresponds to the JSON property `requestPath`
|
|
12917
12940
|
# @return [String]
|
|
12918
12941
|
attr_accessor :request_path
|
|
@@ -13001,6 +13024,7 @@ module Google
|
|
|
13001
13024
|
attr_accessor :proxy_header
|
|
13002
13025
|
|
|
13003
13026
|
# The request path of the HTTPS health check request. The default value is /.
|
|
13027
|
+
# Must comply with RFC3986.
|
|
13004
13028
|
# Corresponds to the JSON property `requestPath`
|
|
13005
13029
|
# @return [String]
|
|
13006
13030
|
attr_accessor :request_path
|
|
@@ -13143,13 +13167,13 @@ module Google
|
|
|
13143
13167
|
|
|
13144
13168
|
# The list of cloud regions from which health checks are performed. If any
|
|
13145
13169
|
# regions are specified, then exactly 3 regions should be specified. The region
|
|
13146
|
-
# names must be valid names of
|
|
13147
|
-
# health check. If this list is non-empty, then there are restrictions on
|
|
13148
|
-
# other health check fields are supported and what other resources can use
|
|
13149
|
-
# health check: - SSL, HTTP2, and GRPC protocols are not supported. - The
|
|
13150
|
-
# request field is not supported. - The proxyHeader field for HTTP, HTTPS,
|
|
13151
|
-
# TCP is not supported. - The checkIntervalSec field must be at least 30. -
|
|
13152
|
-
# health check cannot be used with BackendService nor with managed instance
|
|
13170
|
+
# names must be valid names of Google Cloud regions. This can only be set for
|
|
13171
|
+
# global health check. If this list is non-empty, then there are restrictions on
|
|
13172
|
+
# what other health check fields are supported and what other resources can use
|
|
13173
|
+
# this health check: - SSL, HTTP2, and GRPC protocols are not supported. - The
|
|
13174
|
+
# TCP request field is not supported. - The proxyHeader field for HTTP, HTTPS,
|
|
13175
|
+
# and TCP is not supported. - The checkIntervalSec field must be at least 30. -
|
|
13176
|
+
# The health check cannot be used with BackendService nor with managed instance
|
|
13153
13177
|
# group auto-healing.
|
|
13154
13178
|
# Corresponds to the JSON property `sourceRegions`
|
|
13155
13179
|
# @return [Array<String>]
|
|
@@ -25461,11 +25485,6 @@ module Google
|
|
|
25461
25485
|
class LogConfigCloudAuditOptions
|
|
25462
25486
|
include Google::Apis::Core::Hashable
|
|
25463
25487
|
|
|
25464
|
-
# This is deprecated and has no effect. Do not use.
|
|
25465
|
-
# Corresponds to the JSON property `authorizationLoggingOptions`
|
|
25466
|
-
# @return [Google::Apis::ComputeAlpha::AuthorizationLoggingOptions]
|
|
25467
|
-
attr_accessor :authorization_logging_options
|
|
25468
|
-
|
|
25469
25488
|
# This is deprecated and has no effect. Do not use.
|
|
25470
25489
|
# Corresponds to the JSON property `logName`
|
|
25471
25490
|
# @return [String]
|
|
@@ -25477,7 +25496,6 @@ module Google
|
|
|
25477
25496
|
|
|
25478
25497
|
# Update properties of this object
|
|
25479
25498
|
def update!(**args)
|
|
25480
|
-
@authorization_logging_options = args[:authorization_logging_options] if args.key?(:authorization_logging_options)
|
|
25481
25499
|
@log_name = args[:log_name] if args.key?(:log_name)
|
|
25482
25500
|
end
|
|
25483
25501
|
end
|
|
@@ -36119,18 +36137,16 @@ module Google
|
|
|
36119
36137
|
end
|
|
36120
36138
|
end
|
|
36121
36139
|
|
|
36122
|
-
#
|
|
36140
|
+
#
|
|
36123
36141
|
class QueuedResourceStatus
|
|
36124
36142
|
include Google::Apis::Core::Hashable
|
|
36125
36143
|
|
|
36126
|
-
#
|
|
36144
|
+
#
|
|
36127
36145
|
# Corresponds to the JSON property `failedData`
|
|
36128
36146
|
# @return [Google::Apis::ComputeAlpha::QueuedResourceStatusFailedData]
|
|
36129
36147
|
attr_accessor :failed_data
|
|
36130
36148
|
|
|
36131
|
-
#
|
|
36132
|
-
# the provisioning along with provisioning errors. The referenced operation may
|
|
36133
|
-
# not exist after having been deleted or expired.
|
|
36149
|
+
#
|
|
36134
36150
|
# Corresponds to the JSON property `provisioningOperations`
|
|
36135
36151
|
# @return [Array<String>]
|
|
36136
36152
|
attr_accessor :provisioning_operations
|
|
@@ -36152,11 +36168,11 @@ module Google
|
|
|
36152
36168
|
end
|
|
36153
36169
|
end
|
|
36154
36170
|
|
|
36155
|
-
#
|
|
36171
|
+
#
|
|
36156
36172
|
class QueuedResourceStatusFailedData
|
|
36157
36173
|
include Google::Apis::Core::Hashable
|
|
36158
36174
|
|
|
36159
|
-
#
|
|
36175
|
+
#
|
|
36160
36176
|
# Corresponds to the JSON property `error`
|
|
36161
36177
|
# @return [Google::Apis::ComputeAlpha::QueuedResourceStatusFailedData::Error]
|
|
36162
36178
|
attr_accessor :error
|
|
@@ -36170,7 +36186,7 @@ module Google
|
|
|
36170
36186
|
@error = args[:error] if args.key?(:error)
|
|
36171
36187
|
end
|
|
36172
36188
|
|
|
36173
|
-
#
|
|
36189
|
+
#
|
|
36174
36190
|
class Error
|
|
36175
36191
|
include Google::Apis::Core::Hashable
|
|
36176
36192
|
|
|
@@ -43519,6 +43535,12 @@ module Google
|
|
|
43519
43535
|
# @return [String]
|
|
43520
43536
|
attr_accessor :termination_time
|
|
43521
43537
|
|
|
43538
|
+
# Represents the Windows Server License Optimization Mode of the VM. If
|
|
43539
|
+
# unspecified, the default mode is `OFF`.
|
|
43540
|
+
# Corresponds to the JSON property `windowsLicenseOptimizationMode`
|
|
43541
|
+
# @return [String]
|
|
43542
|
+
attr_accessor :windows_license_optimization_mode
|
|
43543
|
+
|
|
43522
43544
|
def initialize(**args)
|
|
43523
43545
|
update!(**args)
|
|
43524
43546
|
end
|
|
@@ -43545,6 +43567,7 @@ module Google
|
|
|
43545
43567
|
@preemptible = args[:preemptible] if args.key?(:preemptible)
|
|
43546
43568
|
@provisioning_model = args[:provisioning_model] if args.key?(:provisioning_model)
|
|
43547
43569
|
@termination_time = args[:termination_time] if args.key?(:termination_time)
|
|
43570
|
+
@windows_license_optimization_mode = args[:windows_license_optimization_mode] if args.key?(:windows_license_optimization_mode)
|
|
43548
43571
|
end
|
|
43549
43572
|
end
|
|
43550
43573
|
|
|
@@ -44086,6 +44109,18 @@ module Google
|
|
|
44086
44109
|
# @return [String]
|
|
44087
44110
|
attr_accessor :self_link_with_id
|
|
44088
44111
|
|
|
44112
|
+
# User-provided name of the organization security policy. The name should be
|
|
44113
|
+
# unique in the organization in which the security policy is created. This
|
|
44114
|
+
# should only be used when SecurityPolicyType is CLOUD_ARMOR. The name must be 1-
|
|
44115
|
+
# 63 characters long, and comply with https://www.ietf.org/rfc/rfc1035.txt.
|
|
44116
|
+
# Specifically, the name must be 1-63 characters long and match the regular
|
|
44117
|
+
# expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must
|
|
44118
|
+
# be a lowercase letter, and all following characters must be a dash, lowercase
|
|
44119
|
+
# letter, or digit, except the last character, which cannot be a dash.
|
|
44120
|
+
# Corresponds to the JSON property `shortName`
|
|
44121
|
+
# @return [String]
|
|
44122
|
+
attr_accessor :short_name
|
|
44123
|
+
|
|
44089
44124
|
# The type indicates the intended use of the security policy. - CLOUD_ARMOR:
|
|
44090
44125
|
# Cloud Armor backend security policies can be configured to filter incoming
|
|
44091
44126
|
# HTTP requests targeting backend services. They filter requests before they hit
|
|
@@ -44142,6 +44177,7 @@ module Google
|
|
|
44142
44177
|
@rules = args[:rules] if args.key?(:rules)
|
|
44143
44178
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
44144
44179
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
|
44180
|
+
@short_name = args[:short_name] if args.key?(:short_name)
|
|
44145
44181
|
@type = args[:type] if args.key?(:type)
|
|
44146
44182
|
@user_defined_fields = args[:user_defined_fields] if args.key?(:user_defined_fields)
|
|
44147
44183
|
end
|
|
@@ -44427,6 +44463,16 @@ module Google
|
|
|
44427
44463
|
# @return [String]
|
|
44428
44464
|
attr_accessor :display_name
|
|
44429
44465
|
|
|
44466
|
+
# A list of folders to exclude from the security policy.
|
|
44467
|
+
# Corresponds to the JSON property `excludedFolders`
|
|
44468
|
+
# @return [Array<String>]
|
|
44469
|
+
attr_accessor :excluded_folders
|
|
44470
|
+
|
|
44471
|
+
# A list of projects to exclude from the security policy.
|
|
44472
|
+
# Corresponds to the JSON property `excludedProjects`
|
|
44473
|
+
# @return [Array<String>]
|
|
44474
|
+
attr_accessor :excluded_projects
|
|
44475
|
+
|
|
44430
44476
|
# The name for an association.
|
|
44431
44477
|
# Corresponds to the JSON property `name`
|
|
44432
44478
|
# @return [String]
|
|
@@ -44437,6 +44483,11 @@ module Google
|
|
|
44437
44483
|
# @return [String]
|
|
44438
44484
|
attr_accessor :security_policy_id
|
|
44439
44485
|
|
|
44486
|
+
# [Output Only] The short name of the security policy of the association.
|
|
44487
|
+
# Corresponds to the JSON property `shortName`
|
|
44488
|
+
# @return [String]
|
|
44489
|
+
attr_accessor :short_name
|
|
44490
|
+
|
|
44440
44491
|
def initialize(**args)
|
|
44441
44492
|
update!(**args)
|
|
44442
44493
|
end
|
|
@@ -44445,8 +44496,11 @@ module Google
|
|
|
44445
44496
|
def update!(**args)
|
|
44446
44497
|
@attachment_id = args[:attachment_id] if args.key?(:attachment_id)
|
|
44447
44498
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
44499
|
+
@excluded_folders = args[:excluded_folders] if args.key?(:excluded_folders)
|
|
44500
|
+
@excluded_projects = args[:excluded_projects] if args.key?(:excluded_projects)
|
|
44448
44501
|
@name = args[:name] if args.key?(:name)
|
|
44449
44502
|
@security_policy_id = args[:security_policy_id] if args.key?(:security_policy_id)
|
|
44503
|
+
@short_name = args[:short_name] if args.key?(:short_name)
|
|
44450
44504
|
end
|
|
44451
44505
|
end
|
|
44452
44506
|
|
|
@@ -47534,7 +47588,8 @@ module Google
|
|
|
47534
47588
|
include Google::Apis::Core::Hashable
|
|
47535
47589
|
|
|
47536
47590
|
# When the policy is SPECIFIC_LOCATIONS, snapshots will be stored in the
|
|
47537
|
-
# locations listed in this field. Keys are
|
|
47591
|
+
# locations listed in this field. Keys are Cloud Storage bucket locations. Only
|
|
47592
|
+
# one location can be specified.
|
|
47538
47593
|
# Corresponds to the JSON property `locations`
|
|
47539
47594
|
# @return [Hash<String,Google::Apis::ComputeAlpha::SnapshotSettingsStorageLocationSettingsStorageLocationPreference>]
|
|
47540
47595
|
attr_accessor :locations
|
|
@@ -47559,7 +47614,8 @@ module Google
|
|
|
47559
47614
|
class SnapshotSettingsStorageLocationSettingsStorageLocationPreference
|
|
47560
47615
|
include Google::Apis::Core::Hashable
|
|
47561
47616
|
|
|
47562
|
-
# Name of the location. It should be one of the
|
|
47617
|
+
# Name of the location. It should be one of the Cloud Storage buckets. Only one
|
|
47618
|
+
# location can be specified.
|
|
47563
47619
|
# Corresponds to the JSON property `name`
|
|
47564
47620
|
# @return [String]
|
|
47565
47621
|
attr_accessor :name
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.100.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.15.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240507"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -256,12 +256,6 @@ module Google
|
|
|
256
256
|
include Google::Apis::Core::JsonObjectSupport
|
|
257
257
|
end
|
|
258
258
|
|
|
259
|
-
class AuthorizationLoggingOptions
|
|
260
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
261
|
-
|
|
262
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
263
|
-
end
|
|
264
|
-
|
|
265
259
|
class Autoscaler
|
|
266
260
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
267
261
|
|
|
@@ -502,6 +496,12 @@ module Google
|
|
|
502
496
|
include Google::Apis::Core::JsonObjectSupport
|
|
503
497
|
end
|
|
504
498
|
|
|
499
|
+
class BackendServiceHttpCookie
|
|
500
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
501
|
+
|
|
502
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
503
|
+
end
|
|
504
|
+
|
|
505
505
|
class BackendServiceIap
|
|
506
506
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
507
507
|
|
|
@@ -8152,13 +8152,6 @@ module Google
|
|
|
8152
8152
|
end
|
|
8153
8153
|
end
|
|
8154
8154
|
|
|
8155
|
-
class AuthorizationLoggingOptions
|
|
8156
|
-
# @private
|
|
8157
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8158
|
-
property :permission_type, as: 'permissionType'
|
|
8159
|
-
end
|
|
8160
|
-
end
|
|
8161
|
-
|
|
8162
8155
|
class Autoscaler
|
|
8163
8156
|
# @private
|
|
8164
8157
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -8540,6 +8533,8 @@ module Google
|
|
|
8540
8533
|
collection :service_bindings, as: 'serviceBindings'
|
|
8541
8534
|
property :service_lb_policy, as: 'serviceLbPolicy'
|
|
8542
8535
|
property :session_affinity, as: 'sessionAffinity'
|
|
8536
|
+
property :strong_session_affinity_cookie, as: 'strongSessionAffinityCookie', class: Google::Apis::ComputeAlpha::BackendServiceHttpCookie, decorator: Google::Apis::ComputeAlpha::BackendServiceHttpCookie::Representation
|
|
8537
|
+
|
|
8543
8538
|
property :subsetting, as: 'subsetting', class: Google::Apis::ComputeAlpha::Subsetting, decorator: Google::Apis::ComputeAlpha::Subsetting::Representation
|
|
8544
8539
|
|
|
8545
8540
|
property :timeout_sec, as: 'timeoutSec'
|
|
@@ -8672,6 +8667,16 @@ module Google
|
|
|
8672
8667
|
end
|
|
8673
8668
|
end
|
|
8674
8669
|
|
|
8670
|
+
class BackendServiceHttpCookie
|
|
8671
|
+
# @private
|
|
8672
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8673
|
+
property :name, as: 'name'
|
|
8674
|
+
property :path, as: 'path'
|
|
8675
|
+
property :ttl, as: 'ttl', class: Google::Apis::ComputeAlpha::Duration, decorator: Google::Apis::ComputeAlpha::Duration::Representation
|
|
8676
|
+
|
|
8677
|
+
end
|
|
8678
|
+
end
|
|
8679
|
+
|
|
8675
8680
|
class BackendServiceIap
|
|
8676
8681
|
# @private
|
|
8677
8682
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -13737,8 +13742,6 @@ module Google
|
|
|
13737
13742
|
class LogConfigCloudAuditOptions
|
|
13738
13743
|
# @private
|
|
13739
13744
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
13740
|
-
property :authorization_logging_options, as: 'authorizationLoggingOptions', class: Google::Apis::ComputeAlpha::AuthorizationLoggingOptions, decorator: Google::Apis::ComputeAlpha::AuthorizationLoggingOptions::Representation
|
|
13741
|
-
|
|
13742
13745
|
property :log_name, as: 'logName'
|
|
13743
13746
|
end
|
|
13744
13747
|
end
|
|
@@ -18337,6 +18340,7 @@ module Google
|
|
|
18337
18340
|
property :preemptible, as: 'preemptible'
|
|
18338
18341
|
property :provisioning_model, as: 'provisioningModel'
|
|
18339
18342
|
property :termination_time, as: 'terminationTime'
|
|
18343
|
+
property :windows_license_optimization_mode, as: 'windowsLicenseOptimizationMode'
|
|
18340
18344
|
end
|
|
18341
18345
|
end
|
|
18342
18346
|
|
|
@@ -18490,6 +18494,7 @@ module Google
|
|
|
18490
18494
|
|
|
18491
18495
|
property :self_link, as: 'selfLink'
|
|
18492
18496
|
property :self_link_with_id, as: 'selfLinkWithId'
|
|
18497
|
+
property :short_name, as: 'shortName'
|
|
18493
18498
|
property :type, as: 'type'
|
|
18494
18499
|
collection :user_defined_fields, as: 'userDefinedFields', class: Google::Apis::ComputeAlpha::SecurityPolicyUserDefinedField, decorator: Google::Apis::ComputeAlpha::SecurityPolicyUserDefinedField::Representation
|
|
18495
18500
|
|
|
@@ -18574,8 +18579,11 @@ module Google
|
|
|
18574
18579
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
18575
18580
|
property :attachment_id, as: 'attachmentId'
|
|
18576
18581
|
property :display_name, as: 'displayName'
|
|
18582
|
+
collection :excluded_folders, as: 'excludedFolders'
|
|
18583
|
+
collection :excluded_projects, as: 'excludedProjects'
|
|
18577
18584
|
property :name, as: 'name'
|
|
18578
18585
|
property :security_policy_id, as: 'securityPolicyId'
|
|
18586
|
+
property :short_name, as: 'shortName'
|
|
18579
18587
|
end
|
|
18580
18588
|
end
|
|
18581
18589
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-compute_alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.100.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-05-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.15.0
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 2.a
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.
|
|
29
|
+
version: 0.15.0
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 2.a
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.100.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|