class Azure::StreamAnalytics::Mgmt::V2016_03_01::Models::PowerBIOutputDataSource
Describes a Power BI output data source.
Attributes
@return [String] The name of the Power BI dataset. Required on PUT (CreateOrReplace) requests.
@return [String] The ID of the Power BI group.
@return [String] The name of the Power BI group. Use this property to help remember which specific Power BI group id was used.
@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.
@return [String] The name of the Power BI table under the specified dataset. Required on PUT (CreateOrReplace) requests.
@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.
@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 for PowerBIOutputDataSource
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/power_bioutput_data_source.rb, line 61 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PowerBI', type: { name: 'Composite', class_name: 'PowerBIOutputDataSource', model_properties: { type: { client_side_validation: true, required: true, serialized_name: 'type', type: { name: 'String' } }, refresh_token: { client_side_validation: true, required: false, serialized_name: 'properties.refreshToken', type: { name: 'String' } }, token_user_principal_name: { client_side_validation: true, required: false, serialized_name: 'properties.tokenUserPrincipalName', type: { name: 'String' } }, token_user_display_name: { client_side_validation: true, required: false, serialized_name: 'properties.tokenUserDisplayName', type: { name: 'String' } }, dataset: { client_side_validation: true, required: false, serialized_name: 'properties.dataset', type: { name: 'String' } }, table: { client_side_validation: true, required: false, serialized_name: 'properties.table', type: { name: 'String' } }, group_id: { client_side_validation: true, required: false, serialized_name: 'properties.groupId', type: { name: 'String' } }, group_name: { client_side_validation: true, required: false, serialized_name: 'properties.groupName', type: { name: 'String' } } } } } end
# File lib/2016-03-01/generated/azure_mgmt_stream_analytics/models/power_bioutput_data_source.rb, line 16 def initialize @type = "PowerBI" end