Class: Azure::ARM::Graph::Models::ApplicationUpdateParameters

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

Overview

Request parameters for updating an existing application

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#display_nameString

Returns Application display name.

Returns:

  • (String)

    Application display name



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

def display_name
  @display_name
end

#homepageString

Returns Application homepage.

Returns:

  • (String)

    Application homepage



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

def homepage
  @homepage
end

#identifier_urisArray<String>

Returns Application Uris.

Returns:

  • (Array<String>)

    Application Uris



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

def identifier_uris
  @identifier_uris
end

#key_credentialsArray<KeyCredential>

objects

Returns:

  • (Array<KeyCredential>)

    Gets or sets the list of KeyCredential



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

def key_credentials
  @key_credentials
end

#password_credentialsArray<PasswordCredential>

PasswordCredential objects

Returns:



33
34
35
# File 'lib/generated/azure_mgmt_graph/models/application_update_parameters.rb', line 33

def password_credentials
  @password_credentials
end

#reply_urlsArray<String>

Returns Application reply Urls.

Returns:

  • (Array<String>)

    Application reply Urls



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

def reply_urls
  @reply_urls
end

Class Method Details

.mapperObject

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



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
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
# File 'lib/generated/azure_mgmt_graph/models/application_update_parameters.rb', line 40

def self.mapper()
  {
    required: false,
    serialized_name: 'ApplicationUpdateParameters',
    type: {
      name: 'Composite',
      class_name: 'ApplicationUpdateParameters',
      model_properties: {
        display_name: {
          required: false,
          serialized_name: 'displayName',
          type: {
            name: 'String'
          }
        },
        homepage: {
          required: false,
          serialized_name: 'homepage',
          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'
                }
            }
          }
        },
        key_credentials: {
          required: false,
          serialized_name: 'keyCredentials',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'KeyCredentialElementType',
                type: {
                  name: 'Composite',
                  class_name: 'KeyCredential'
                }
            }
          }
        },
        password_credentials: {
          required: false,
          serialized_name: 'passwordCredentials',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'PasswordCredentialElementType',
                type: {
                  name: 'Composite',
                  class_name: 'PasswordCredential'
                }
            }
          }
        }
      }
    }
  }
end