Class: Azure::GraphRbac::V1_6::Models::SignInName

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/1.6/generated/azure_graph_rbac/models/sign_in_name.rb

Overview

Contains information about a sign-in name of a local account user in an Azure Active Directory B2C tenant.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#additional_propertiesObject

collection

Returns:

  • Unmatched properties from the message are deserialized this



18
19
20
# File 'lib/1.6/generated/azure_graph_rbac/models/sign_in_name.rb', line 18

def additional_properties
  @additional_properties
end

#typeString

sign-in types in your directory, such as ‘emailAddress’ or ‘userName’.

Returns:

  • (String)

    A string value that can be used to classify user



22
23
24
# File 'lib/1.6/generated/azure_graph_rbac/models/sign_in_name.rb', line 22

def type
  @type
end

#valueString

across the company/tenant. For example, ‘[email protected]’.

Returns:

  • (String)

    The sign-in used by the local account. Must be unique



26
27
28
# File 'lib/1.6/generated/azure_graph_rbac/models/sign_in_name.rb', line 26

def value
  @value
end

Class Method Details

.mapperObject

Mapper for SignInName class as Ruby Hash. This will be used for serialization/deserialization.



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/1.6/generated/azure_graph_rbac/models/sign_in_name.rb', line 33

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'SignInName',
    type: {
      name: 'Composite',
      class_name: 'SignInName',
      model_properties: {
        additional_properties: {
          client_side_validation: true,
          required: false,
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ObjectElementType',
                type: {
                  name: 'Object'
                }
            }
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        value: {
          client_side_validation: true,
          required: false,
          serialized_name: 'value',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end