Autogenerated update (2018-12-18)
Update: - cloudbuild_v1alpha1 - servicecontrol_v1
This commit is contained in:
parent
ff6778221f
commit
4a645547d9
|
@ -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
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue