class Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::OAuthBasedDataSourceProperties

The properties that are associated with data sources that use OAuth as their authentication model.

Attributes

refresh_token[RW]

@return [String] A refresh token that can be used to obtain a valid access token that can then be used to authenticate with the data source. A valid refresh token is currently only obtainable via the Azure Portal. It is recommended to put a dummy string value here when creating the data source and then going to the Azure Portal to authenticate the data source which will update this property with a valid refresh token. Required on PUT (CreateOrReplace) requests.

token_user_display_name[RW]

@return [String] The user display name of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.

token_user_principal_name[RW]

@return [String] The user principal name (UPN) of the user that was used to obtain the refresh token. Use this property to help remember which user was used to obtain the refresh token.

Private Class Methods

mapper() click to toggle source

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

# File lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/oauth_based_data_source_properties.rb, line 40
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'OAuthBasedDataSourceProperties',
    type: {
      name: 'Composite',
      class_name: 'OAuthBasedDataSourceProperties',
      model_properties: {
        refresh_token: {
          client_side_validation: true,
          required: false,
          serialized_name: 'refreshToken',
          type: {
            name: 'String'
          }
        },
        token_user_principal_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tokenUserPrincipalName',
          type: {
            name: 'String'
          }
        },
        token_user_display_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tokenUserDisplayName',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end