Class: Google::Apis::AdminDirectoryV1::SchemaFieldSpec
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::SchemaFieldSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/admin_directory_v1/classes.rb,
lib/google/apis/admin_directory_v1/representations.rb,
lib/google/apis/admin_directory_v1/representations.rb
Overview
You can use schemas to add custom fields to user profiles. You can use these fields to store information such as the projects your users work on, their physical locations, their hire dates, or whatever else fits your business needs. For more information, see Custom User Fields.
Defined Under Namespace
Classes: NumericIndexingSpec
Instance Attribute Summary collapse
-
#display_name ⇒ String
Display Name of the field.
-
#etag ⇒ String
The ETag of the field.
-
#field_id ⇒ String
The unique identifier of the field (Read-only) Corresponds to the JSON property
fieldId. -
#field_name ⇒ String
The name of the field.
-
#field_type ⇒ String
The type of the field.
-
#indexed ⇒ Boolean
(also: #indexed?)
Boolean specifying whether the field is indexed or not.
-
#kind ⇒ String
The kind of resource this is.
-
#multi_valued ⇒ Boolean
(also: #multi_valued?)
A boolean specifying whether this is a multi-valued field or not.
-
#numeric_indexing_spec ⇒ Google::Apis::AdminDirectoryV1::SchemaFieldSpec::NumericIndexingSpec
Indexing spec for a numeric field.
-
#read_access_type ⇒ String
Specifies who can view values of this field.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SchemaFieldSpec
constructor
A new instance of SchemaFieldSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SchemaFieldSpec
Returns a new instance of SchemaFieldSpec.
3016 3017 3018 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3016 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Display Name of the field.
Corresponds to the JSON property displayName
2960 2961 2962 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2960 def display_name @display_name end |
#etag ⇒ String
The ETag of the field.
Corresponds to the JSON property etag
2965 2966 2967 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2965 def etag @etag end |
#field_id ⇒ String
The unique identifier of the field (Read-only)
Corresponds to the JSON property fieldId
2970 2971 2972 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2970 def field_id @field_id end |
#field_name ⇒ String
The name of the field.
Corresponds to the JSON property fieldName
2975 2976 2977 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2975 def field_name @field_name end |
#field_type ⇒ String
The type of the field.
Corresponds to the JSON property fieldType
2980 2981 2982 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2980 def field_type @field_type end |
#indexed ⇒ Boolean Also known as: indexed?
Boolean specifying whether the field is indexed or not. Default: true.
Corresponds to the JSON property indexed
2985 2986 2987 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2985 def indexed @indexed end |
#kind ⇒ String
The kind of resource this is. For schema fields this is always admin#
directory#schema#fieldspec.
Corresponds to the JSON property kind
2992 2993 2994 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2992 def kind @kind end |
#multi_valued ⇒ Boolean Also known as: multi_valued?
A boolean specifying whether this is a multi-valued field or not. Default:
false.
Corresponds to the JSON property multiValued
2998 2999 3000 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 2998 def multi_valued @multi_valued end |
#numeric_indexing_spec ⇒ Google::Apis::AdminDirectoryV1::SchemaFieldSpec::NumericIndexingSpec
Indexing spec for a numeric field. By default, only exact match queries will
be supported for numeric fields. Setting the numericIndexingSpec allows
range queries to be supported.
Corresponds to the JSON property numericIndexingSpec
3006 3007 3008 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3006 def numeric_indexing_spec @numeric_indexing_spec end |
#read_access_type ⇒ String
Specifies who can view values of this field. See Retrieve users as a non-
administrator for more information. Note: It may take up to 24
hours for changes to this field to be reflected.
Corresponds to the JSON property readAccessType
3014 3015 3016 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3014 def read_access_type @read_access_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3021 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @etag = args[:etag] if args.key?(:etag) @field_id = args[:field_id] if args.key?(:field_id) @field_name = args[:field_name] if args.key?(:field_name) @field_type = args[:field_type] if args.key?(:field_type) @indexed = args[:indexed] if args.key?(:indexed) @kind = args[:kind] if args.key?(:kind) @multi_valued = args[:multi_valued] if args.key?(:multi_valued) @numeric_indexing_spec = args[:numeric_indexing_spec] if args.key?(:numeric_indexing_spec) @read_access_type = args[:read_access_type] if args.key?(:read_access_type) end |