Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ProfileAppInstallInstance
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ProfileAppInstallInstance
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb
Overview
Describes a profile reporting Chrome Profile information.
Instance Attribute Summary collapse
-
#email ⇒ String
Output only.
-
#profile_id ⇒ String
Output only.
-
#profile_org_unit_id ⇒ String
Output only.
-
#profile_permanent_id ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1ProfileAppInstallInstance
constructor
A new instance of GoogleChromeManagementV1ProfileAppInstallInstance.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1ProfileAppInstallInstance
Returns a new instance of GoogleChromeManagementV1ProfileAppInstallInstance.
3008 3009 3010 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3008 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email ⇒ String
Output only. The email of the profile.
Corresponds to the JSON property email
2990 2991 2992 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2990 def email @email end |
#profile_id ⇒ String
Output only. The Chrome client side profile ID.
Corresponds to the JSON property profileId
2995 2996 2997 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2995 def profile_id @profile_id end |
#profile_org_unit_id ⇒ String
Output only. The organizational unit id of the profile.
Corresponds to the JSON property profileOrgUnitId
3000 3001 3002 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3000 def profile_org_unit_id @profile_org_unit_id end |
#profile_permanent_id ⇒ String
Output only. Profile permanent ID is the unique identifier of a profile within
one customer.
Corresponds to the JSON property profilePermanentId
3006 3007 3008 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3006 def profile_permanent_id @profile_permanent_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3013 3014 3015 3016 3017 3018 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3013 def update!(**args) @email = args[:email] if args.key?(:email) @profile_id = args[:profile_id] if args.key?(:profile_id) @profile_org_unit_id = args[:profile_org_unit_id] if args.key?(:profile_org_unit_id) @profile_permanent_id = args[:profile_permanent_id] if args.key?(:profile_permanent_id) end |