Class: Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicySchemaFieldDescription

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

Overview

Provides detailed information for a particular field that is part of a PolicySchema.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromePolicyVersionsV1PolicySchemaFieldDescription

Returns a new instance of GoogleChromePolicyVersionsV1PolicySchemaFieldDescription.



846
847
848
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 846

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

Instance Attribute Details

#default_valueObject

Output only. Client default if the policy is unset. Corresponds to the JSON property defaultValue

Returns:

  • (Object)


788
789
790
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 788

def default_value
  @default_value
end

#descriptionString

Deprecated. Use name and field_description instead. The description for the field. Corresponds to the JSON property description

Returns:

  • (String)


794
795
796
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 794

def description
  @description
end

#fieldString

Output only. The name of the field for associated with this description. Corresponds to the JSON property field

Returns:

  • (String)


799
800
801
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 799

def field
  @field
end

#field_constraintsGoogle::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1FieldConstraints

Information about any range constraints. Corresponds to the JSON property fieldConstraints



804
805
806
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 804

def field_constraints
  @field_constraints
end

#field_dependenciesArray<Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicySchemaFieldDependencies>

Output only. Provides a list of fields and values. At least one of the fields must have the corresponding value in order for this field to be allowed to be set. Corresponds to the JSON property fieldDependencies



811
812
813
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 811

def field_dependencies
  @field_dependencies
end

#field_descriptionString

Output only. The description of the field. Corresponds to the JSON property fieldDescription

Returns:

  • (String)


816
817
818
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 816

def field_description
  @field_description
end

#input_constraintString

Output only. Any input constraints associated on the values for the field. Corresponds to the JSON property inputConstraint

Returns:

  • (String)


821
822
823
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 821

def input_constraint
  @input_constraint
end

#known_value_descriptionsArray<Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicySchemaFieldKnownValueDescription>

Output only. If the field has a set of known values, this field will provide a description for these values. Corresponds to the JSON property knownValueDescriptions



827
828
829
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 827

def known_value_descriptions
  @known_value_descriptions
end

#nameString

Output only. The name of the field. Corresponds to the JSON property name

Returns:

  • (String)


832
833
834
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 832

def name
  @name
end

#nested_field_descriptionsArray<Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicySchemaFieldDescription>

Output only. Provides the description of the fields nested in this field, if the field is a message type that defines multiple fields. Corresponds to the JSON property nestedFieldDescriptions



838
839
840
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 838

def nested_field_descriptions
  @nested_field_descriptions
end

#required_itemsArray<Google::Apis::ChromepolicyV1::GoogleChromePolicyVersionsV1PolicySchemaRequiredItems>

Output only. Provides a list of fields that are required to be set if this field has a certain value. Corresponds to the JSON property requiredItems



844
845
846
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 844

def required_items
  @required_items
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



851
852
853
854
855
856
857
858
859
860
861
862
863
# File 'lib/google/apis/chromepolicy_v1/classes.rb', line 851

def update!(**args)
  @default_value = args[:default_value] if args.key?(:default_value)
  @description = args[:description] if args.key?(:description)
  @field = args[:field] if args.key?(:field)
  @field_constraints = args[:field_constraints] if args.key?(:field_constraints)
  @field_dependencies = args[:field_dependencies] if args.key?(:field_dependencies)
  @field_description = args[:field_description] if args.key?(:field_description)
  @input_constraint = args[:input_constraint] if args.key?(:input_constraint)
  @known_value_descriptions = args[:known_value_descriptions] if args.key?(:known_value_descriptions)
  @name = args[:name] if args.key?(:name)
  @nested_field_descriptions = args[:nested_field_descriptions] if args.key?(:nested_field_descriptions)
  @required_items = args[:required_items] if args.key?(:required_items)
end