Class: Azure::ARM::Graph::Models::Application

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_graph/models/application.rb

Overview

Active Directory user information

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#app_idString

Returns application Id.

Returns:

  • (String)

    application Id



22
23
24
# File 'lib/generated/azure_mgmt_graph/models/application.rb', line 22

def app_id
  @app_id
end

#app_permissionsArray<String>

Returns application permissions.

Returns:

  • (Array<String>)

    application permissions



25
26
27
# File 'lib/generated/azure_mgmt_graph/models/application.rb', line 25

def app_permissions
  @app_permissions
end

#available_to_other_tenantsBoolean

other tenants

Returns:

  • (Boolean)

    Indicates if the application will be available to



29
30
31
# File 'lib/generated/azure_mgmt_graph/models/application.rb', line 29

def available_to_other_tenants
  @available_to_other_tenants
end

#display_nameString

Returns the displayName.

Returns:

  • (String)

    the displayName



32
33
34
# File 'lib/generated/azure_mgmt_graph/models/application.rb', line 32

def display_name
  @display_name
end

#homepageString

Returns Application homepage.

Returns:

  • (String)

    Application homepage



41
42
43
# File 'lib/generated/azure_mgmt_graph/models/application.rb', line 41

def homepage
  @homepage
end

#identifier_urisArray<String>

Returns the application identifier Uris.

Returns:

  • (Array<String>)

    the application identifier Uris



35
36
37
# File 'lib/generated/azure_mgmt_graph/models/application.rb', line 35

def identifier_uris
  @identifier_uris
end

#object_idString

Returns object Id.

Returns:

  • (String)

    object Id



16
17
18
# File 'lib/generated/azure_mgmt_graph/models/application.rb', line 16

def object_id
  @object_id
end

#object_typeString

Returns object type.

Returns:

  • (String)

    object type



19
20
21
# File 'lib/generated/azure_mgmt_graph/models/application.rb', line 19

def object_type
  @object_type
end

#reply_urlsArray<String>

Returns the application reply Urls.

Returns:

  • (Array<String>)

    the application reply Urls



38
39
40
# File 'lib/generated/azure_mgmt_graph/models/application.rb', line 38

def reply_urls
  @reply_urls
end

Class Method Details

.mapperObject

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



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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
# File 'lib/generated/azure_mgmt_graph/models/application.rb', line 48

def self.mapper()
  {
    required: false,
    serialized_name: 'Application',
    type: {
      name: 'Composite',
      class_name: 'Application',
      model_properties: {
        object_id: {
          required: false,
          serialized_name: 'objectId',
          type: {
            name: 'String'
          }
        },
        object_type: {
          required: false,
          serialized_name: 'objectType',
          type: {
            name: 'String'
          }
        },
        app_id: {
          required: false,
          serialized_name: 'appId',
          type: {
            name: 'String'
          }
        },
        app_permissions: {
          required: false,
          serialized_name: 'appPermissions',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        available_to_other_tenants: {
          required: false,
          serialized_name: 'availableToOtherTenants',
          type: {
            name: 'Boolean'
          }
        },
        display_name: {
          required: false,
          serialized_name: 'displayName',
          type: {
            name: 'String'
          }
        },
        identifier_uris: {
          required: false,
          serialized_name: 'identifierUris',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        reply_urls: {
          required: false,
          serialized_name: 'replyUrls',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        homepage: {
          required: false,
          serialized_name: 'homepage',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end