Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of compute v1 client #1594

Merged
merged 1 commit into from Nov 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions api_names_out.yaml
Expand Up @@ -48146,6 +48146,7 @@
"/compute:v1/InterconnectAttachment/cloudRouterIpAddress": cloud_router_ip_address
"/compute:v1/InterconnectAttachment/creationTimestamp": creation_timestamp
"/compute:v1/InterconnectAttachment/customerRouterIpAddress": customer_router_ip_address
"/compute:v1/InterconnectAttachment/dataplaneVersion": dataplane_version
"/compute:v1/InterconnectAttachment/description": description
"/compute:v1/InterconnectAttachment/edgeAvailabilityDomain": edge_availability_domain
"/compute:v1/InterconnectAttachment/googleReferenceId": google_reference_id
Expand Down Expand Up @@ -51155,6 +51156,19 @@
"/compute:v1/compute.globalOperations.wait": wait_global_operation
"/compute:v1/compute.globalOperations.wait/operation": operation
"/compute:v1/compute.globalOperations.wait/project": project
"/compute:v1/compute.globalOrganizationOperations.delete": delete_global_organization_operation
"/compute:v1/compute.globalOrganizationOperations.delete/operation": operation
"/compute:v1/compute.globalOrganizationOperations.delete/parentId": parent_id
"/compute:v1/compute.globalOrganizationOperations.get": get_global_organization_operation
"/compute:v1/compute.globalOrganizationOperations.get/operation": operation
"/compute:v1/compute.globalOrganizationOperations.get/parentId": parent_id
"/compute:v1/compute.globalOrganizationOperations.list": list_global_organization_operations
"/compute:v1/compute.globalOrganizationOperations.list/filter": filter
"/compute:v1/compute.globalOrganizationOperations.list/maxResults": max_results
"/compute:v1/compute.globalOrganizationOperations.list/orderBy": order_by
"/compute:v1/compute.globalOrganizationOperations.list/pageToken": page_token
"/compute:v1/compute.globalOrganizationOperations.list/parentId": parent_id
"/compute:v1/compute.globalOrganizationOperations.list/returnPartialSuccess": return_partial_success
"/compute:v1/compute.healthChecks.aggregatedList": aggregated_health_check_list
"/compute:v1/compute.healthChecks.aggregatedList/filter": filter
"/compute:v1/compute.healthChecks.aggregatedList/includeAllScopes": include_all_scopes
Expand Down
2 changes: 1 addition & 1 deletion generated/google/apis/compute_v1.rb
Expand Up @@ -25,7 +25,7 @@ module Apis
# @see https://developers.google.com/compute/docs/reference/latest/
module ComputeV1
VERSION = 'V1'
REVISION = '20201022'
REVISION = '20201102'

# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
Expand Down
9 changes: 7 additions & 2 deletions generated/google/apis/compute_v1/classes.rb
Expand Up @@ -3569,8 +3569,7 @@ def update!(**args)
class Binding
include Google::Apis::Core::Hashable

# A client-specified ID for this binding. Expected to be globally unique to
# support the internal bindings-by-ID API.
#
# Corresponds to the JSON property `bindingId`
# @return [String]
attr_accessor :binding_id
Expand Down Expand Up @@ -14220,6 +14219,11 @@ class InterconnectAttachment
# @return [String]
attr_accessor :customer_router_ip_address

# [Output Only] Dataplane version for this InterconnectAttachment.
# Corresponds to the JSON property `dataplaneVersion`
# @return [Fixnum]
attr_accessor :dataplane_version

# An optional description of this resource.
# Corresponds to the JSON property `description`
# @return [String]
Expand Down Expand Up @@ -14381,6 +14385,7 @@ def update!(**args)
@cloud_router_ip_address = args[:cloud_router_ip_address] if args.key?(:cloud_router_ip_address)
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
@customer_router_ip_address = args[:customer_router_ip_address] if args.key?(:customer_router_ip_address)
@dataplane_version = args[:dataplane_version] if args.key?(:dataplane_version)
@description = args[:description] if args.key?(:description)
@edge_availability_domain = args[:edge_availability_domain] if args.key?(:edge_availability_domain)
@google_reference_id = args[:google_reference_id] if args.key?(:google_reference_id)
Expand Down
1 change: 1 addition & 0 deletions generated/google/apis/compute_v1/representations.rb
Expand Up @@ -8118,6 +8118,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :cloud_router_ip_address, as: 'cloudRouterIpAddress'
property :creation_timestamp, as: 'creationTimestamp'
property :customer_router_ip_address, as: 'customerRouterIpAddress'
property :dataplane_version, as: 'dataplaneVersion'
property :description, as: 'description'
property :edge_availability_domain, as: 'edgeAvailabilityDomain'
property :google_reference_id, as: 'googleReferenceId'
Expand Down