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.



3045
3046
3047
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3045

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)


3027
3028
3029
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3027

def email
  @email
end

#profile_idString

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

Returns:

  • (String)


3032
3033
3034
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3032

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)


3037
3038
3039
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3037

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)


3043
3044
3045
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3043

def profile_permanent_id
  @profile_permanent_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3050
3051
3052
3053
3054
3055
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 3050

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