Autogenerated update (2020-05-30)

Update:
- container_v1
- monitoring_v3
This commit is contained in:
Google APIs 2020-05-30 00:38:34 +00:00
parent 2e9dc033a9
commit 47446c3161
5 changed files with 12 additions and 6 deletions

View File

@ -26,7 +26,7 @@ module Google
# @see https://cloud.google.com/container-engine/
module ContainerV1
VERSION = 'V1'
REVISION = '20200501'
REVISION = '20200519'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -165,14 +165,12 @@ module Google
# @return [Google::Apis::ContainerV1::NodeManagement]
attr_accessor :management
# Scopes that are used by NAP when creating node pools. If oauth_scopes are
# specified, service_account should be empty.
# Scopes that are used by NAP when creating node pools.
# Corresponds to the JSON property `oauthScopes`
# @return [Array<String>]
attr_accessor :oauth_scopes
# The Google Cloud Platform Service Account to be used by the node VMs. If
# service_account is specified, scopes should be empty.
# The Google Cloud Platform Service Account to be used by the node VMs.
# Corresponds to the JSON property `serviceAccount`
# @return [String]
attr_accessor :service_account

View File

@ -29,7 +29,7 @@ module Google
# @see https://cloud.google.com/monitoring/api/
module MonitoringV3
VERSION = 'V3'
REVISION = '20200509'
REVISION = '20200526'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -1725,6 +1725,12 @@ module Google
# @return [String]
attr_accessor :next_page_token
# The total number of alert policies in all pages. This number is only an
# estimate, and may change in subsequent pages. https://aip.dev/158
# Corresponds to the JSON property `totalSize`
# @return [Fixnum]
attr_accessor :total_size
def initialize(**args)
update!(**args)
end
@ -1733,6 +1739,7 @@ module Google
def update!(**args)
@alert_policies = args[:alert_policies] if args.key?(:alert_policies)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
@total_size = args[:total_size] if args.key?(:total_size)
end
end

View File

@ -1004,6 +1004,7 @@ module Google
collection :alert_policies, as: 'alertPolicies', class: Google::Apis::MonitoringV3::AlertPolicy, decorator: Google::Apis::MonitoringV3::AlertPolicy::Representation
property :next_page_token, as: 'nextPageToken'
property :total_size, as: 'totalSize'
end
end