From 4a645547d932ca308e8ca80b7116a93d56522b91 Mon Sep 17 00:00:00 2001 From: Google APIs Date: Tue, 18 Dec 2018 00:36:17 +0000 Subject: [PATCH] Autogenerated update (2018-12-18) Update: - cloudbuild_v1alpha1 - servicecontrol_v1 --- api_names_out.yaml | 1 + generated/google/apis/cloudbuild_v1alpha1.rb | 2 +- generated/google/apis/servicecontrol_v1.rb | 2 +- generated/google/apis/servicecontrol_v1/classes.rb | 10 ++++++++++ .../google/apis/servicecontrol_v1/representations.rb | 1 + 5 files changed, 14 insertions(+), 2 deletions(-) diff --git a/api_names_out.yaml b/api_names_out.yaml index 7c7ead4b2..d23048214 100644 --- a/api_names_out.yaml +++ b/api_names_out.yaml @@ -82938,6 +82938,7 @@ "/servicecontrol:v1/AuthenticationInfo": authentication_info "/servicecontrol:v1/AuthenticationInfo/authoritySelector": authority_selector "/servicecontrol:v1/AuthenticationInfo/principalEmail": principal_email +"/servicecontrol:v1/AuthenticationInfo/serviceAccountKeyName": service_account_key_name "/servicecontrol:v1/AuthenticationInfo/thirdPartyPrincipal": third_party_principal "/servicecontrol:v1/AuthenticationInfo/thirdPartyPrincipal/third_party_principal": third_party_principal "/servicecontrol:v1/AuthorizationInfo": authorization_info diff --git a/generated/google/apis/cloudbuild_v1alpha1.rb b/generated/google/apis/cloudbuild_v1alpha1.rb index aaa0c253c..159f1496d 100644 --- a/generated/google/apis/cloudbuild_v1alpha1.rb +++ b/generated/google/apis/cloudbuild_v1alpha1.rb @@ -25,7 +25,7 @@ module Google # @see https://cloud.google.com/cloud-build/docs/ module CloudbuildV1alpha1 VERSION = 'V1alpha1' - REVISION = '20181211' + REVISION = '20181215' # View and manage your data across Google Cloud Platform services AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' diff --git a/generated/google/apis/servicecontrol_v1.rb b/generated/google/apis/servicecontrol_v1.rb index 50eb0b863..0a6f3c15d 100644 --- a/generated/google/apis/servicecontrol_v1.rb +++ b/generated/google/apis/servicecontrol_v1.rb @@ -26,7 +26,7 @@ module Google # @see https://cloud.google.com/service-control/ module ServicecontrolV1 VERSION = 'V1' - REVISION = '20181121' + REVISION = '20181214' # View and manage your data across Google Cloud Platform services AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' diff --git a/generated/google/apis/servicecontrol_v1/classes.rb b/generated/google/apis/servicecontrol_v1/classes.rb index 278221ee8..307a71a2b 100644 --- a/generated/google/apis/servicecontrol_v1/classes.rb +++ b/generated/google/apis/servicecontrol_v1/classes.rb @@ -387,6 +387,15 @@ module Google # @return [String] attr_accessor :principal_email + # The name of the service account key used to create or exchange + # credentials for authenticating the service account making the request. + # This is a scheme-less URI full resource name. For example: + # "//iam.googleapis.com/projects/`PROJECT_ID`/serviceAccounts/`ACCOUNT`/keys/` + # key`" + # Corresponds to the JSON property `serviceAccountKeyName` + # @return [String] + attr_accessor :service_account_key_name + # The third party identification (if any) of the authenticated user making # the request. # When the JSON object represented here has a proto equivalent, the proto @@ -403,6 +412,7 @@ module Google def update!(**args) @authority_selector = args[:authority_selector] if args.key?(:authority_selector) @principal_email = args[:principal_email] if args.key?(:principal_email) + @service_account_key_name = args[:service_account_key_name] if args.key?(:service_account_key_name) @third_party_principal = args[:third_party_principal] if args.key?(:third_party_principal) end end diff --git a/generated/google/apis/servicecontrol_v1/representations.rb b/generated/google/apis/servicecontrol_v1/representations.rb index bf754fe73..234ab387f 100644 --- a/generated/google/apis/servicecontrol_v1/representations.rb +++ b/generated/google/apis/servicecontrol_v1/representations.rb @@ -321,6 +321,7 @@ module Google class Representation < Google::Apis::Core::JsonRepresentation property :authority_selector, as: 'authoritySelector' property :principal_email, as: 'principalEmail' + property :service_account_key_name, as: 'serviceAccountKeyName' hash :third_party_principal, as: 'thirdPartyPrincipal' end end