Class: Google::Apis::AndroidenterpriseV1::ManagedConfigurationsSettings
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AndroidenterpriseV1::ManagedConfigurationsSettings
 
- 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
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #last_updated_timestamp_millis  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The last updated time of the managed configuration settings in milliseconds since 1970-01-01T00:00:00Z. 
- 
  
    
      #managed_property  ⇒ Array<Google::Apis::AndroidenterpriseV1::ManagedProperty> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The set of managed properties for this configuration. 
- 
  
    
      #mcm_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the managed configurations settings. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the managed configurations settings. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ManagedConfigurationsSettings 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ManagedConfigurationsSettings. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ManagedConfigurationsSettings
Returns a new instance of ManagedConfigurationsSettings
| 1225 1226 1227 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1225 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
androidenterprise#managedConfigurationsSettings".
Corresponds to the JSON property kind
| 1202 1203 1204 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1202 def kind @kind end | 
#last_updated_timestamp_millis ⇒ Fixnum
The last updated time of the managed configuration settings in milliseconds
since 1970-01-01T00:00:00Z.
Corresponds to the JSON property lastUpdatedTimestampMillis
| 1208 1209 1210 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1208 def @last_updated_timestamp_millis end | 
#managed_property ⇒ Array<Google::Apis::AndroidenterpriseV1::ManagedProperty>
The set of managed properties for this configuration.
Corresponds to the JSON property managedProperty
| 1213 1214 1215 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1213 def managed_property @managed_property end | 
#mcm_id ⇒ String
The ID of the managed configurations settings.
Corresponds to the JSON property mcmId
| 1218 1219 1220 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1218 def mcm_id @mcm_id end | 
#name ⇒ String
The name of the managed configurations settings.
Corresponds to the JSON property name
| 1223 1224 1225 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1223 def name @name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1230 1231 1232 1233 1234 1235 1236 | # File 'generated/google/apis/androidenterprise_v1/classes.rb', line 1230 def update!(**args) @kind = args[:kind] if args.key?(:kind) @last_updated_timestamp_millis = args[:last_updated_timestamp_millis] if args.key?(:last_updated_timestamp_millis) @managed_property = args[:managed_property] if args.key?(:managed_property) @mcm_id = args[:mcm_id] if args.key?(:mcm_id) @name = args[:name] if args.key?(:name) end |