Class: Google::Apis::AccesscontextmanagerV1::Application

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/accesscontextmanager_v1/classes.rb,
lib/google/apis/accesscontextmanager_v1/representations.rb,
lib/google/apis/accesscontextmanager_v1/representations.rb

Overview

An application that accesses Google Cloud APIs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Application

Returns a new instance of Application.



194
195
196
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 194

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#client_idString

The OAuth client ID of the application. Corresponds to the JSON property clientId

Returns:

  • (String)


187
188
189
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 187

def client_id
  @client_id
end

#nameString

The name of the application. Example: "Cloud Console" Corresponds to the JSON property name

Returns:

  • (String)


192
193
194
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 192

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



199
200
201
202
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 199

def update!(**args)
  @client_id = args[:client_id] if args.key?(:client_id)
  @name = args[:name] if args.key?(:name)
end