google-api-client 0.39.3 → 0.39.4
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 +25 -0
- data/generated/google/apis/bigtableadmin_v1.rb +1 -1
- data/generated/google/apis/bigtableadmin_v2.rb +1 -1
- data/generated/google/apis/bigtableadmin_v2/service.rb +4 -4
- data/generated/google/apis/cloudsearch_v1.rb +1 -1
- data/generated/google/apis/cloudsearch_v1/classes.rb +8 -6
- data/generated/google/apis/composer_v1beta1.rb +1 -1
- data/generated/google/apis/composer_v1beta1/classes.rb +58 -0
- data/generated/google/apis/composer_v1beta1/representations.rb +30 -0
- data/generated/google/apis/composer_v1beta1/service.rb +5 -0
- data/generated/google/apis/compute_alpha.rb +1 -1
- data/generated/google/apis/compute_alpha/classes.rb +142 -58
- data/generated/google/apis/compute_alpha/representations.rb +27 -0
- data/generated/google/apis/compute_alpha/service.rb +825 -668
- data/generated/google/apis/compute_beta.rb +1 -1
- data/generated/google/apis/compute_beta/classes.rb +171 -54
- data/generated/google/apis/compute_beta/representations.rb +47 -0
- data/generated/google/apis/compute_beta/service.rb +591 -591
- data/generated/google/apis/compute_v1.rb +1 -1
- data/generated/google/apis/compute_v1/classes.rb +111 -50
- data/generated/google/apis/compute_v1/representations.rb +16 -0
- data/generated/google/apis/compute_v1/service.rb +83 -0
- data/generated/google/apis/datacatalog_v1beta1.rb +1 -1
- data/generated/google/apis/datacatalog_v1beta1/classes.rb +26 -10
- data/generated/google/apis/dialogflow_v2.rb +1 -1
- data/generated/google/apis/dialogflow_v2beta1.rb +1 -1
- data/generated/google/apis/file_v1.rb +1 -1
- data/generated/google/apis/file_v1/classes.rb +1156 -0
- data/generated/google/apis/file_v1/representations.rb +381 -0
- data/generated/google/apis/file_v1beta1.rb +1 -1
- data/generated/google/apis/file_v1beta1/classes.rb +1156 -0
- data/generated/google/apis/file_v1beta1/representations.rb +381 -0
- data/generated/google/apis/firebase_v1beta1.rb +1 -1
- data/generated/google/apis/firebase_v1beta1/classes.rb +2 -12
- data/generated/google/apis/jobs_v3.rb +1 -1
- data/generated/google/apis/memcache_v1beta2.rb +1 -1
- data/generated/google/apis/memcache_v1beta2/classes.rb +24 -12
- data/generated/google/apis/memcache_v1beta2/service.rb +5 -2
- data/generated/google/apis/ml_v1.rb +1 -1
- data/generated/google/apis/ml_v1/classes.rb +84 -18
- data/generated/google/apis/ml_v1/representations.rb +4 -0
- data/generated/google/apis/ml_v1/service.rb +11 -6
- data/generated/google/apis/monitoring_v3.rb +1 -1
- data/generated/google/apis/monitoring_v3/service.rb +1 -1
- data/generated/google/apis/people_v1.rb +1 -1
- data/generated/google/apis/people_v1/service.rb +1 -1
- data/generated/google/apis/pubsub_v1.rb +1 -1
- data/generated/google/apis/pubsub_v1/classes.rb +6 -7
- data/generated/google/apis/secretmanager_v1.rb +1 -1
- data/generated/google/apis/secretmanager_v1/classes.rb +26 -13
- data/generated/google/apis/secretmanager_v1/service.rb +3 -0
- data/generated/google/apis/secretmanager_v1beta1.rb +1 -1
- data/generated/google/apis/secretmanager_v1beta1/classes.rb +23 -10
- data/generated/google/apis/secretmanager_v1beta1/service.rb +3 -0
- data/generated/google/apis/servicecontrol_v1.rb +1 -1
- data/generated/google/apis/servicecontrol_v1/classes.rb +3 -3
- data/lib/google/apis/version.rb +1 -1
- metadata +3 -3
@@ -25,7 +25,7 @@ module Google
|
|
25
25
|
# @see https://developers.google.com/compute/docs/reference/latest/
|
26
26
|
module ComputeBeta
|
27
27
|
VERSION = 'Beta'
|
28
|
-
REVISION = '
|
28
|
+
REVISION = '20200427'
|
29
29
|
|
30
30
|
# View and manage your data across Google Cloud Platform services
|
31
31
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
@@ -2896,7 +2896,7 @@ module Google
|
|
2896
2896
|
# and the backends are instance groups. The named port must be defined on each
|
2897
2897
|
# backend instance group. This parameter has no meaning if the backends are NEGs.
|
2898
2898
|
# Must be omitted when the loadBalancingScheme is INTERNAL (Internal TCP/UDP
|
2899
|
-
# Load
|
2899
|
+
# Load Balancing).
|
2900
2900
|
# Corresponds to the JSON property `portName`
|
2901
2901
|
# @return [String]
|
2902
2902
|
attr_accessor :port_name
|
@@ -4493,6 +4493,26 @@ module Google
|
|
4493
4493
|
end
|
4494
4494
|
end
|
4495
4495
|
|
4496
|
+
# A set of Confidential Instance options.
|
4497
|
+
class ConfidentialInstanceConfig
|
4498
|
+
include Google::Apis::Core::Hashable
|
4499
|
+
|
4500
|
+
# Defines whether the instance should have confidential compute enabled.
|
4501
|
+
# Corresponds to the JSON property `enableConfidentialCompute`
|
4502
|
+
# @return [Boolean]
|
4503
|
+
attr_accessor :enable_confidential_compute
|
4504
|
+
alias_method :enable_confidential_compute?, :enable_confidential_compute
|
4505
|
+
|
4506
|
+
def initialize(**args)
|
4507
|
+
update!(**args)
|
4508
|
+
end
|
4509
|
+
|
4510
|
+
# Update properties of this object
|
4511
|
+
def update!(**args)
|
4512
|
+
@enable_confidential_compute = args[:enable_confidential_compute] if args.key?(:enable_confidential_compute)
|
4513
|
+
end
|
4514
|
+
end
|
4515
|
+
|
4496
4516
|
# Message containing connection draining configuration.
|
4497
4517
|
class ConnectionDraining
|
4498
4518
|
include Google::Apis::Core::Hashable
|
@@ -4612,13 +4632,15 @@ module Google
|
|
4612
4632
|
# Specifies the regualar expression patterns that match allowed origins. For
|
4613
4633
|
# regular expression grammar please see en.cppreference.com/w/cpp/regex/
|
4614
4634
|
# ecmascript
|
4615
|
-
# An origin is allowed if it matches either
|
4635
|
+
# An origin is allowed if it matches either an item in allowOrigins or an item
|
4636
|
+
# in allowOriginRegexes.
|
4616
4637
|
# Corresponds to the JSON property `allowOriginRegexes`
|
4617
4638
|
# @return [Array<String>]
|
4618
4639
|
attr_accessor :allow_origin_regexes
|
4619
4640
|
|
4620
4641
|
# Specifies the list of origins that will be allowed to do CORS requests.
|
4621
|
-
# An origin is allowed if it matches either
|
4642
|
+
# An origin is allowed if it matches either an item in allowOrigins or an item
|
4643
|
+
# in allowOriginRegexes.
|
4622
4644
|
# Corresponds to the JSON property `allowOrigins`
|
4623
4645
|
# @return [Array<String>]
|
4624
4646
|
attr_accessor :allow_origins
|
@@ -6280,12 +6302,15 @@ module Google
|
|
6280
6302
|
end
|
6281
6303
|
end
|
6282
6304
|
|
6305
|
+
# Represents an external VPN gateway.
|
6283
6306
|
# External VPN gateway is the on-premises VPN gateway(s) or another cloud
|
6284
|
-
# provider's VPN gateway that connects to your Google Cloud VPN gateway.
|
6285
|
-
# create a highly available VPN from Google Cloud to your
|
6286
|
-
# another
|
6287
|
-
#
|
6288
|
-
#
|
6307
|
+
# provider's VPN gateway that connects to your Google Cloud VPN gateway.
|
6308
|
+
# To create a highly available VPN from Google Cloud Platform to your VPN
|
6309
|
+
# gateway or another cloud provider's VPN gateway, you must create a external
|
6310
|
+
# VPN gateway resource with information about the other gateway.
|
6311
|
+
# For more information about using external VPN gateways, see Creating an HA
|
6312
|
+
# VPN gateway and tunnel pair to a peer VPN. (== resource_for `$api_version`.
|
6313
|
+
# externalVpnGateways ==)
|
6289
6314
|
class ExternalVpnGateway
|
6290
6315
|
include Google::Apis::Core::Hashable
|
6291
6316
|
|
@@ -6541,7 +6566,7 @@ module Google
|
|
6541
6566
|
# @return [String]
|
6542
6567
|
attr_accessor :content
|
6543
6568
|
|
6544
|
-
#
|
6569
|
+
# The file type of source file.
|
6545
6570
|
# Corresponds to the JSON property `fileType`
|
6546
6571
|
# @return [String]
|
6547
6572
|
attr_accessor :file_type
|
@@ -7789,16 +7814,18 @@ module Google
|
|
7789
7814
|
# Google groups, and domains (such as G Suite). A `role` is a named list of
|
7790
7815
|
# permissions; each `role` can be an IAM predefined role or a user-created
|
7791
7816
|
# custom role.
|
7792
|
-
#
|
7793
|
-
# expression that allows access to a resource
|
7794
|
-
# to `true`. A condition can add constraints
|
7795
|
-
# the resource, or both.
|
7817
|
+
# For some types of Google Cloud resources, a `binding` can also specify a `
|
7818
|
+
# condition`, which is a logical expression that allows access to a resource
|
7819
|
+
# only if the expression evaluates to `true`. A condition can add constraints
|
7820
|
+
# based on attributes of the request, the resource, or both. To learn which
|
7821
|
+
# resources support conditions in their IAM policies, see the [IAM documentation]
|
7822
|
+
# (https://cloud.google.com/iam/help/conditions/resource-policies).
|
7796
7823
|
# **JSON example:**
|
7797
7824
|
# ` "bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members":
|
7798
7825
|
# [ "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
7799
7826
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
7800
|
-
# roles/resourcemanager.organizationViewer", "members": ["user:eve@example.com"
|
7801
|
-
# "condition": ` "title": "expirable access", "description": "Does not grant
|
7827
|
+
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
7828
|
+
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
7802
7829
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
7803
7830
|
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 `
|
7804
7831
|
# **YAML example:**
|
@@ -8464,9 +8491,8 @@ module Google
|
|
8464
8491
|
end
|
8465
8492
|
end
|
8466
8493
|
|
8467
|
-
#
|
8468
|
-
#
|
8469
|
-
# health status of the backends.
|
8494
|
+
# Represents a Health-Check as a Service resource.
|
8495
|
+
# (== resource_for `$api_version`.regionHealthCheckServices ==)
|
8470
8496
|
class HealthCheckService
|
8471
8497
|
include Google::Apis::Core::Hashable
|
8472
8498
|
|
@@ -10822,7 +10848,7 @@ module Google
|
|
10822
10848
|
# @return [Array<String>]
|
10823
10849
|
attr_accessor :resource_policies
|
10824
10850
|
|
10825
|
-
# Sets the scheduling options for an Instance. NextID:
|
10851
|
+
# Sets the scheduling options for an Instance. NextID: 11
|
10826
10852
|
# Corresponds to the JSON property `scheduling`
|
10827
10853
|
# @return [Google::Apis::ComputeBeta::Scheduling]
|
10828
10854
|
attr_accessor :scheduling
|
@@ -13478,6 +13504,11 @@ module Google
|
|
13478
13504
|
attr_accessor :can_ip_forward
|
13479
13505
|
alias_method :can_ip_forward?, :can_ip_forward
|
13480
13506
|
|
13507
|
+
# A set of Confidential Instance options.
|
13508
|
+
# Corresponds to the JSON property `confidentialInstanceConfig`
|
13509
|
+
# @return [Google::Apis::ComputeBeta::ConfidentialInstanceConfig]
|
13510
|
+
attr_accessor :confidential_instance_config
|
13511
|
+
|
13481
13512
|
# An optional text description for the instances that are created from this
|
13482
13513
|
# instance template.
|
13483
13514
|
# Corresponds to the JSON property `description`
|
@@ -13547,7 +13578,7 @@ module Google
|
|
13547
13578
|
# @return [Array<String>]
|
13548
13579
|
attr_accessor :resource_policies
|
13549
13580
|
|
13550
|
-
# Sets the scheduling options for an Instance. NextID:
|
13581
|
+
# Sets the scheduling options for an Instance. NextID: 11
|
13551
13582
|
# Corresponds to the JSON property `scheduling`
|
13552
13583
|
# @return [Google::Apis::ComputeBeta::Scheduling]
|
13553
13584
|
attr_accessor :scheduling
|
@@ -13581,6 +13612,7 @@ module Google
|
|
13581
13612
|
# Update properties of this object
|
13582
13613
|
def update!(**args)
|
13583
13614
|
@can_ip_forward = args[:can_ip_forward] if args.key?(:can_ip_forward)
|
13615
|
+
@confidential_instance_config = args[:confidential_instance_config] if args.key?(:confidential_instance_config)
|
13584
13616
|
@description = args[:description] if args.key?(:description)
|
13585
13617
|
@disks = args[:disks] if args.key?(:disks)
|
13586
13618
|
@display_device = args[:display_device] if args.key?(:display_device)
|
@@ -16272,10 +16304,7 @@ module Google
|
|
16272
16304
|
class LogConfigDataAccessOptions
|
16273
16305
|
include Google::Apis::Core::Hashable
|
16274
16306
|
|
16275
|
-
#
|
16276
|
-
# is currently supported in the LocalIAM implementation, Stubby C++, and Stubby
|
16277
|
-
# Java. For Apps Framework, see go/af-audit-logging#failclosed. TODO(b/77591626):
|
16278
|
-
# Add support for Stubby Go. TODO(b/129671387): Add support for Scaffolding.
|
16307
|
+
#
|
16279
16308
|
# Corresponds to the JSON property `logMode`
|
16280
16309
|
# @return [String]
|
16281
16310
|
attr_accessor :log_mode
|
@@ -16536,6 +16565,12 @@ module Google
|
|
16536
16565
|
class MachineType
|
16537
16566
|
include Google::Apis::Core::Hashable
|
16538
16567
|
|
16568
|
+
# [Output Only] A list of accelerator configurations assigned to this machine
|
16569
|
+
# type.
|
16570
|
+
# Corresponds to the JSON property `accelerators`
|
16571
|
+
# @return [Array<Google::Apis::ComputeBeta::MachineType::Accelerator>]
|
16572
|
+
attr_accessor :accelerators
|
16573
|
+
|
16539
16574
|
# [Output Only] Creation timestamp in RFC3339 text format.
|
16540
16575
|
# Corresponds to the JSON property `creationTimestamp`
|
16541
16576
|
# @return [String]
|
@@ -16613,6 +16648,7 @@ module Google
|
|
16613
16648
|
|
16614
16649
|
# Update properties of this object
|
16615
16650
|
def update!(**args)
|
16651
|
+
@accelerators = args[:accelerators] if args.key?(:accelerators)
|
16616
16652
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
16617
16653
|
@deprecated = args[:deprecated] if args.key?(:deprecated)
|
16618
16654
|
@description = args[:description] if args.key?(:description)
|
@@ -16627,6 +16663,31 @@ module Google
|
|
16627
16663
|
@self_link = args[:self_link] if args.key?(:self_link)
|
16628
16664
|
@zone = args[:zone] if args.key?(:zone)
|
16629
16665
|
end
|
16666
|
+
|
16667
|
+
#
|
16668
|
+
class Accelerator
|
16669
|
+
include Google::Apis::Core::Hashable
|
16670
|
+
|
16671
|
+
# Number of accelerator cards exposed to the guest.
|
16672
|
+
# Corresponds to the JSON property `guestAcceleratorCount`
|
16673
|
+
# @return [Fixnum]
|
16674
|
+
attr_accessor :guest_accelerator_count
|
16675
|
+
|
16676
|
+
# The accelerator type resource name, not a full URL, e.g. 'nvidia-tesla-k80'.
|
16677
|
+
# Corresponds to the JSON property `guestAcceleratorType`
|
16678
|
+
# @return [String]
|
16679
|
+
attr_accessor :guest_accelerator_type
|
16680
|
+
|
16681
|
+
def initialize(**args)
|
16682
|
+
update!(**args)
|
16683
|
+
end
|
16684
|
+
|
16685
|
+
# Update properties of this object
|
16686
|
+
def update!(**args)
|
16687
|
+
@guest_accelerator_count = args[:guest_accelerator_count] if args.key?(:guest_accelerator_count)
|
16688
|
+
@guest_accelerator_type = args[:guest_accelerator_type] if args.key?(:guest_accelerator_type)
|
16689
|
+
end
|
16690
|
+
end
|
16630
16691
|
end
|
16631
16692
|
|
16632
16693
|
#
|
@@ -17501,8 +17562,11 @@ module Google
|
|
17501
17562
|
end
|
17502
17563
|
|
17503
17564
|
# Represents a collection of network endpoints.
|
17504
|
-
#
|
17505
|
-
#
|
17565
|
+
# A network endpoint group (NEG) defines how a set of endpoints should be
|
17566
|
+
# reached, whether they are reachable, and where they are located. For more
|
17567
|
+
# information about using NEGs, see Setting up internet NEGs or Setting up
|
17568
|
+
# zonal NEGs. (== resource_for `$api_version`.networkEndpointGroups ==) (==
|
17569
|
+
# resource_for `$api_version`.globalNetworkEndpointGroups ==)
|
17506
17570
|
class NetworkEndpointGroup
|
17507
17571
|
include Google::Apis::Core::Hashable
|
17508
17572
|
|
@@ -17930,8 +17994,15 @@ module Google
|
|
17930
17994
|
class NetworkEndpointGroupsListEndpointsRequest
|
17931
17995
|
include Google::Apis::Core::Hashable
|
17932
17996
|
|
17997
|
+
# Optional list of endpoints to query. This is a more efficient but also limited
|
17998
|
+
# version of filter parameter. Endpoints in the filter must have ip_address and
|
17999
|
+
# port fields populated, other fields are not supported.
|
18000
|
+
# Corresponds to the JSON property `endpointFilters`
|
18001
|
+
# @return [Array<Google::Apis::ComputeBeta::NetworkEndpointGroupsListEndpointsRequestNetworkEndpointFilter>]
|
18002
|
+
attr_accessor :endpoint_filters
|
18003
|
+
|
17933
18004
|
# Optional query parameter for showing the health status of each network
|
17934
|
-
# endpoint. Valid options are SKIP or SHOW. If you don't
|
18005
|
+
# endpoint. Valid options are SKIP or SHOW. If you don't specify this parameter,
|
17935
18006
|
# the health status of network endpoints will not be provided.
|
17936
18007
|
# Corresponds to the JSON property `healthStatus`
|
17937
18008
|
# @return [String]
|
@@ -17943,10 +18014,30 @@ module Google
|
|
17943
18014
|
|
17944
18015
|
# Update properties of this object
|
17945
18016
|
def update!(**args)
|
18017
|
+
@endpoint_filters = args[:endpoint_filters] if args.key?(:endpoint_filters)
|
17946
18018
|
@health_status = args[:health_status] if args.key?(:health_status)
|
17947
18019
|
end
|
17948
18020
|
end
|
17949
18021
|
|
18022
|
+
#
|
18023
|
+
class NetworkEndpointGroupsListEndpointsRequestNetworkEndpointFilter
|
18024
|
+
include Google::Apis::Core::Hashable
|
18025
|
+
|
18026
|
+
# The network endpoint. Next ID: 7
|
18027
|
+
# Corresponds to the JSON property `networkEndpoint`
|
18028
|
+
# @return [Google::Apis::ComputeBeta::NetworkEndpoint]
|
18029
|
+
attr_accessor :network_endpoint
|
18030
|
+
|
18031
|
+
def initialize(**args)
|
18032
|
+
update!(**args)
|
18033
|
+
end
|
18034
|
+
|
18035
|
+
# Update properties of this object
|
18036
|
+
def update!(**args)
|
18037
|
+
@network_endpoint = args[:network_endpoint] if args.key?(:network_endpoint)
|
18038
|
+
end
|
18039
|
+
end
|
18040
|
+
|
17950
18041
|
#
|
17951
18042
|
class NetworkEndpointGroupsListNetworkEndpoints
|
17952
18043
|
include Google::Apis::Core::Hashable
|
@@ -20249,8 +20340,12 @@ module Google
|
|
20249
20340
|
end
|
20250
20341
|
end
|
20251
20342
|
|
20343
|
+
# Represents a notification endpoint.
|
20252
20344
|
# A notification endpoint resource defines an endpoint to receive notifications
|
20253
20345
|
# when there are status changes detected by the associated health check service.
|
20346
|
+
# For more information, see Health checks overview. (== resource_for `$
|
20347
|
+
# api_version`.notificationEndpoint ==) (== resource_for `$api_version`.
|
20348
|
+
# regionNotificationEndpoints ==)
|
20254
20349
|
class NotificationEndpoint
|
20255
20350
|
include Google::Apis::Core::Hashable
|
20256
20351
|
|
@@ -21313,7 +21408,12 @@ module Google
|
|
21313
21408
|
end
|
21314
21409
|
end
|
21315
21410
|
|
21316
|
-
# Represents a
|
21411
|
+
# Represents a Packet Mirroring resource.
|
21412
|
+
# Packet Mirroring clones the traffic of specified instances in your Virtual
|
21413
|
+
# Private Cloud (VPC) network and forwards it to a collector destination, such
|
21414
|
+
# as an instance group of an internal TCP/UDP load balancer, for analysis or
|
21415
|
+
# examination. For more information about setting up Packet Mirroring, see Using
|
21416
|
+
# Packet Mirroring. (== resource_for `$api_version`.packetMirrorings ==)
|
21317
21417
|
class PacketMirroring
|
21318
21418
|
include Google::Apis::Core::Hashable
|
21319
21419
|
|
@@ -22117,16 +22217,18 @@ module Google
|
|
22117
22217
|
# Google groups, and domains (such as G Suite). A `role` is a named list of
|
22118
22218
|
# permissions; each `role` can be an IAM predefined role or a user-created
|
22119
22219
|
# custom role.
|
22120
|
-
#
|
22121
|
-
# expression that allows access to a resource
|
22122
|
-
# to `true`. A condition can add constraints
|
22123
|
-
# the resource, or both.
|
22220
|
+
# For some types of Google Cloud resources, a `binding` can also specify a `
|
22221
|
+
# condition`, which is a logical expression that allows access to a resource
|
22222
|
+
# only if the expression evaluates to `true`. A condition can add constraints
|
22223
|
+
# based on attributes of the request, the resource, or both. To learn which
|
22224
|
+
# resources support conditions in their IAM policies, see the [IAM documentation]
|
22225
|
+
# (https://cloud.google.com/iam/help/conditions/resource-policies).
|
22124
22226
|
# **JSON example:**
|
22125
22227
|
# ` "bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members":
|
22126
22228
|
# [ "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
22127
22229
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
22128
|
-
# roles/resourcemanager.organizationViewer", "members": ["user:eve@example.com"
|
22129
|
-
# "condition": ` "title": "expirable access", "description": "Does not grant
|
22230
|
+
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
22231
|
+
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
22130
22232
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
22131
22233
|
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 `
|
22132
22234
|
# **YAML example:**
|
@@ -22201,6 +22303,9 @@ module Google
|
|
22201
22303
|
# conditions in the version `3` policy are lost.
|
22202
22304
|
# If a policy does not include any conditions, operations on that policy may
|
22203
22305
|
# specify any valid version or leave the field unset.
|
22306
|
+
# To learn which resources support conditions in their IAM policies, see the [
|
22307
|
+
# IAM documentation](https://cloud.google.com/iam/help/conditions/resource-
|
22308
|
+
# policies).
|
22204
22309
|
# Corresponds to the JSON property `version`
|
22205
22310
|
# @return [Fixnum]
|
22206
22311
|
attr_accessor :version
|
@@ -23979,16 +24084,18 @@ module Google
|
|
23979
24084
|
# Google groups, and domains (such as G Suite). A `role` is a named list of
|
23980
24085
|
# permissions; each `role` can be an IAM predefined role or a user-created
|
23981
24086
|
# custom role.
|
23982
|
-
#
|
23983
|
-
# expression that allows access to a resource
|
23984
|
-
# to `true`. A condition can add constraints
|
23985
|
-
# the resource, or both.
|
24087
|
+
# For some types of Google Cloud resources, a `binding` can also specify a `
|
24088
|
+
# condition`, which is a logical expression that allows access to a resource
|
24089
|
+
# only if the expression evaluates to `true`. A condition can add constraints
|
24090
|
+
# based on attributes of the request, the resource, or both. To learn which
|
24091
|
+
# resources support conditions in their IAM policies, see the [IAM documentation]
|
24092
|
+
# (https://cloud.google.com/iam/help/conditions/resource-policies).
|
23986
24093
|
# **JSON example:**
|
23987
24094
|
# ` "bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members":
|
23988
24095
|
# [ "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
23989
24096
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
23990
|
-
# roles/resourcemanager.organizationViewer", "members": ["user:eve@example.com"
|
23991
|
-
# "condition": ` "title": "expirable access", "description": "Does not grant
|
24097
|
+
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
24098
|
+
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
23992
24099
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
23993
24100
|
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 `
|
23994
24101
|
# **YAML example:**
|
@@ -27068,7 +27175,7 @@ module Google
|
|
27068
27175
|
end
|
27069
27176
|
end
|
27070
27177
|
|
27071
|
-
# Sets the scheduling options for an Instance. NextID:
|
27178
|
+
# Sets the scheduling options for an Instance. NextID: 11
|
27072
27179
|
class Scheduling
|
27073
27180
|
include Google::Apis::Core::Hashable
|
27074
27181
|
|
@@ -27891,19 +27998,20 @@ module Google
|
|
27891
27998
|
class ShieldedInstanceConfig
|
27892
27999
|
include Google::Apis::Core::Hashable
|
27893
28000
|
|
27894
|
-
# Defines whether the instance has integrity monitoring enabled.
|
28001
|
+
# Defines whether the instance has integrity monitoring enabled. Enabled by
|
28002
|
+
# default.
|
27895
28003
|
# Corresponds to the JSON property `enableIntegrityMonitoring`
|
27896
28004
|
# @return [Boolean]
|
27897
28005
|
attr_accessor :enable_integrity_monitoring
|
27898
28006
|
alias_method :enable_integrity_monitoring?, :enable_integrity_monitoring
|
27899
28007
|
|
27900
|
-
# Defines whether the instance has Secure Boot enabled.
|
28008
|
+
# Defines whether the instance has Secure Boot enabled. Disabled by default.
|
27901
28009
|
# Corresponds to the JSON property `enableSecureBoot`
|
27902
28010
|
# @return [Boolean]
|
27903
28011
|
attr_accessor :enable_secure_boot
|
27904
28012
|
alias_method :enable_secure_boot?, :enable_secure_boot
|
27905
28013
|
|
27906
|
-
# Defines whether the instance has the vTPM enabled.
|
28014
|
+
# Defines whether the instance has the vTPM enabled. Enabled by default.
|
27907
28015
|
# Corresponds to the JSON property `enableVtpm`
|
27908
28016
|
# @return [Boolean]
|
27909
28017
|
attr_accessor :enable_vtpm
|
@@ -28553,7 +28661,7 @@ module Google
|
|
28553
28661
|
# @return [Array<Google::Apis::ComputeBeta::NetworkInterface>]
|
28554
28662
|
attr_accessor :network_interfaces
|
28555
28663
|
|
28556
|
-
# Sets the scheduling options for an Instance. NextID:
|
28664
|
+
# Sets the scheduling options for an Instance. NextID: 11
|
28557
28665
|
# Corresponds to the JSON property `scheduling`
|
28558
28666
|
# @return [Google::Apis::ComputeBeta::Scheduling]
|
28559
28667
|
attr_accessor :scheduling
|
@@ -29535,7 +29643,8 @@ module Google
|
|
29535
29643
|
|
29536
29644
|
# Whether to enable flow logging for this subnetwork. If this field is not
|
29537
29645
|
# explicitly set, it will not appear in get listings. If not set the default
|
29538
|
-
# behavior is to disable flow logging.
|
29646
|
+
# behavior is to disable flow logging. This field isn't supported with the
|
29647
|
+
# purpose field set to INTERNAL_HTTPS_LOAD_BALANCER.
|
29539
29648
|
# Corresponds to the JSON property `enableFlowLogs`
|
29540
29649
|
# @return [Boolean]
|
29541
29650
|
attr_accessor :enable_flow_logs
|
@@ -29637,7 +29746,8 @@ module Google
|
|
29637
29746
|
# INTERNAL_HTTPS_LOAD_BALANCER. A subnetwork with purpose set to
|
29638
29747
|
# INTERNAL_HTTPS_LOAD_BALANCER is a user-created subnetwork that is reserved for
|
29639
29748
|
# Internal HTTP(S) Load Balancing. If unspecified, the purpose defaults to
|
29640
|
-
# PRIVATE_RFC_1918.
|
29749
|
+
# PRIVATE_RFC_1918. The enableFlowLogs field isn't supported with the purpose
|
29750
|
+
# field set to INTERNAL_HTTPS_LOAD_BALANCER.
|
29641
29751
|
# Corresponds to the JSON property `purpose`
|
29642
29752
|
# @return [String]
|
29643
29753
|
attr_accessor :purpose
|
@@ -34287,7 +34397,12 @@ module Google
|
|
34287
34397
|
end
|
34288
34398
|
end
|
34289
34399
|
|
34290
|
-
# Represents a VPN gateway
|
34400
|
+
# Represents a HA VPN gateway.
|
34401
|
+
# HA VPN is a high-availability (HA) Cloud VPN solution that lets you securely
|
34402
|
+
# connect your on-premises network to your Google Cloud Virtual Private Cloud
|
34403
|
+
# network through an IPsec VPN connection in a single region. For more
|
34404
|
+
# information about Cloud HA VPN solutions, see Cloud VPN topologies . (==
|
34405
|
+
# resource_for `$api_version`.vpnGateways ==)
|
34291
34406
|
class VpnGateway
|
34292
34407
|
include Google::Apis::Core::Hashable
|
34293
34408
|
|
@@ -35910,16 +36025,18 @@ module Google
|
|
35910
36025
|
# Google groups, and domains (such as G Suite). A `role` is a named list of
|
35911
36026
|
# permissions; each `role` can be an IAM predefined role or a user-created
|
35912
36027
|
# custom role.
|
35913
|
-
#
|
35914
|
-
# expression that allows access to a resource
|
35915
|
-
# to `true`. A condition can add constraints
|
35916
|
-
# the resource, or both.
|
36028
|
+
# For some types of Google Cloud resources, a `binding` can also specify a `
|
36029
|
+
# condition`, which is a logical expression that allows access to a resource
|
36030
|
+
# only if the expression evaluates to `true`. A condition can add constraints
|
36031
|
+
# based on attributes of the request, the resource, or both. To learn which
|
36032
|
+
# resources support conditions in their IAM policies, see the [IAM documentation]
|
36033
|
+
# (https://cloud.google.com/iam/help/conditions/resource-policies).
|
35917
36034
|
# **JSON example:**
|
35918
36035
|
# ` "bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members":
|
35919
36036
|
# [ "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
35920
36037
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
35921
|
-
# roles/resourcemanager.organizationViewer", "members": ["user:eve@example.com"
|
35922
|
-
# "condition": ` "title": "expirable access", "description": "Does not grant
|
36038
|
+
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
36039
|
+
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
35923
36040
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
35924
36041
|
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 `
|
35925
36042
|
# **YAML example:**
|