Class: Google::Apis::AndroidenterpriseV1::ManagedConfigurationsSettings

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/androidenterprise_v1/classes.rb,
generated/google/apis/androidenterprise_v1/representations.rb,
generated/google/apis/androidenterprise_v1/representations.rb

Overview

A managed configurations settings resource contains the set of managed properties that have been configured for an Android app to be applied to a set of users. The app's developer would have defined configurable properties in the managed configurations schema.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ManagedConfigurationsSettings

Returns a new instance of ManagedConfigurationsSettings.



1401
1402
1403
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1401

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#last_updated_timestamp_millisFixnum

The last updated time of the managed configuration settings in milliseconds since 1970-01-01T00:00:00Z. Corresponds to the JSON property lastUpdatedTimestampMillis

Returns:

  • (Fixnum)


1389
1390
1391
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1389

def last_updated_timestamp_millis
  @last_updated_timestamp_millis
end

#mcm_idString

The ID of the managed configurations settings. Corresponds to the JSON property mcmId

Returns:

  • (String)


1394
1395
1396
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1394

def mcm_id
  @mcm_id
end

#nameString

The name of the managed configurations settings. Corresponds to the JSON property name

Returns:

  • (String)


1399
1400
1401
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1399

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1406
1407
1408
1409
1410
# File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1406

def update!(**args)
  @last_updated_timestamp_millis = args[:last_updated_timestamp_millis] if args.key?(:last_updated_timestamp_millis)
  @mcm_id = args[:mcm_id] if args.key?(:mcm_id)
  @name = args[:name] if args.key?(:name)
end