Class: Google::Apis::AndroidenterpriseV1::AppRestrictionsSchemaRestriction

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

Overview

A restriction in the App Restriction Schema represents a piece of configuration that may be pre-applied.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AppRestrictionsSchemaRestriction

Returns a new instance of AppRestrictionsSchemaRestriction.



357
358
359
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 357

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

Instance Attribute Details

#default_valueGoogle::Apis::AndroidenterpriseV1::AppRestrictionsSchemaRestrictionRestrictionValue

A typed value for the restriction. Corresponds to the JSON property defaultValue



313
314
315
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 313

def default_value
  @default_value
end

#descriptionString

A longer description of the restriction, giving more detail of what it affects. Corresponds to the JSON property description

Returns:

  • (String)


318
319
320
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 318

def description
  @description
end

#entryArray<String>

For choice or multiselect restrictions, the list of possible entries' human- readable names. Corresponds to the JSON property entry

Returns:

  • (Array<String>)


324
325
326
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 324

def entry
  @entry
end

#entry_valueArray<String>

For choice or multiselect restrictions, the list of possible entries' machine- readable values. These values should be used in the configuration, either as a single string value for a choice restriction or in a stringArray for a multiselect restriction. Corresponds to the JSON property entryValue

Returns:

  • (Array<String>)


332
333
334
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 332

def entry_value
  @entry_value
end

#keyString

The unique key that the product uses to identify the restriction, e.g. "com. google.android.gm.fieldname". Corresponds to the JSON property key

Returns:

  • (String)


338
339
340
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 338

def key
  @key
end

#nested_restrictionArray<Google::Apis::AndroidenterpriseV1::AppRestrictionsSchemaRestriction>

For bundle or bundleArray restrictions, the list of nested restrictions. A bundle restriction is always nested within a bundleArray restriction, and a bundleArray restriction is at most two levels deep. Corresponds to the JSON property nestedRestriction



345
346
347
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 345

def nested_restriction
  @nested_restriction
end

#restriction_typeString

The type of the restriction. Corresponds to the JSON property restrictionType

Returns:

  • (String)


350
351
352
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 350

def restriction_type
  @restriction_type
end

#titleString

The name of the restriction. Corresponds to the JSON property title

Returns:

  • (String)


355
356
357
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 355

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



362
363
364
365
366
367
368
369
370
371
# File 'lib/google/apis/androidenterprise_v1/classes.rb', line 362

def update!(**args)
  @default_value = args[:default_value] if args.key?(:default_value)
  @description = args[:description] if args.key?(:description)
  @entry = args[:entry] if args.key?(:entry)
  @entry_value = args[:entry_value] if args.key?(:entry_value)
  @key = args[:key] if args.key?(:key)
  @nested_restriction = args[:nested_restriction] if args.key?(:nested_restriction)
  @restriction_type = args[:restriction_type] if args.key?(:restriction_type)
  @title = args[:title] if args.key?(:title)
end