Class: Google::Apis::AccesscontextmanagerV1::Application
- Inherits:
-
Object
- Object
- Google::Apis::AccesscontextmanagerV1::Application
- 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
-
#client_id ⇒ String
The OAuth client ID of the application.
-
#name ⇒ String
The name of the application.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Application
constructor
A new instance of Application.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Application
Returns a new instance of Application.
253 254 255 |
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 253 def initialize(**args) update!(**args) end |
Instance Attribute Details
#client_id ⇒ String
The OAuth client ID of the application.
Corresponds to the JSON property clientId
246 247 248 |
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 246 def client_id @client_id end |
#name ⇒ String
The name of the application. Example: "Cloud Console"
Corresponds to the JSON property name
251 252 253 |
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 251 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
258 259 260 261 |
# File 'lib/google/apis/accesscontextmanager_v1/classes.rb', line 258 def update!(**args) @client_id = args[:client_id] if args.key?(:client_id) @name = args[:name] if args.key?(:name) end |