Class: Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1alpha1EndpointApp
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::GoogleAppsCloudidentityDevicesV1alpha1EndpointApp
- Defined in:
- generated/google/apis/cloudidentity_v1beta1/classes.rb,
generated/google/apis/cloudidentity_v1beta1/representations.rb,
generated/google/apis/cloudidentity_v1beta1/representations.rb
Overview
Next ID to use: 7
Instance Attribute Summary collapse
-
#display_name ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#package_name ⇒ String
Output only.
-
#permissions ⇒ Array<String>
Output only.
-
#version_code ⇒ Fixnum
Output only.
-
#version_name ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAppsCloudidentityDevicesV1alpha1EndpointApp
constructor
A new instance of GoogleAppsCloudidentityDevicesV1alpha1EndpointApp.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleAppsCloudidentityDevicesV1alpha1EndpointApp
Returns a new instance of GoogleAppsCloudidentityDevicesV1alpha1EndpointApp.
491 492 493 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 491 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Output only. Name of the app displayed to the user
Corresponds to the JSON property displayName
460 461 462 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 460 def display_name @display_name end |
#name ⇒ String
Output only. Resource name of
the EndpointApp in format:
devices/
device/deviceUsers/
device_user/endpointApps/
endpoint_app`,
where client_app_id is the ID of the app associated with the Device.
Corresponds to the JSON property
name`
469 470 471 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 469 def name @name end |
#package_name ⇒ String
Output only. Full package name of the installed app
Corresponds to the JSON property packageName
474 475 476 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 474 def package_name @package_name end |
#permissions ⇒ Array<String>
Output only. Names of all permissions granted to the installed app
Corresponds to the JSON property permissions
479 480 481 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 479 def @permissions end |
#version_code ⇒ Fixnum
Output only. Version code of the installed app
Corresponds to the JSON property versionCode
484 485 486 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 484 def version_code @version_code end |
#version_name ⇒ String
Output only. Version name of the installed app
Corresponds to the JSON property versionName
489 490 491 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 489 def version_name @version_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
496 497 498 499 500 501 502 503 |
# File 'generated/google/apis/cloudidentity_v1beta1/classes.rb', line 496 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @package_name = args[:package_name] if args.key?(:package_name) @permissions = args[:permissions] if args.key?(:permissions) @version_code = args[:version_code] if args.key?(:version_code) @version_name = args[:version_name] if args.key?(:version_name) end |