Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ProfileAppInstallInstance

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#emailString

Output only. The email of the profile. Corresponds to the JSON property email

Returns:

  • (String)


2990
2991
2992
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2990

def email
  @email
end

#profile_idString

Output only. The Chrome client side profile ID. Corresponds to the JSON property profileId

Returns:

  • (String)


2995
2996
2997
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2995

def profile_id
  @profile_id
end

#profile_org_unit_idString

Output only. The organizational unit id of the profile. Corresponds to the JSON property profileOrgUnitId

Returns:

  • (String)


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_idString

Output only. Profile permanent ID is the unique identifier of a profile within one customer. Corresponds to the JSON property profilePermanentId

Returns:

  • (String)


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