ReleaseAssets
List of releases assets which are dependent on a release.
View-Specific Information
You must specify the UserLogin when executing a SELECT query against this view. You can specify the values in the WHERE clause or as connection properties. A value specified in the WHERE clause takes precedence over the connection property.
If you do not specify a UserLogin value, the driver will use the login name of the authenticated user.
Select
The driver uses the GitHub API to restrict results to the specified UserLogin and RepositoryName values.
The driver processes other filters client-side within the driver. You can turn off the client-side execution of the query by setting SupportEnhancedSQL to false in which case any search criteria that refer to other columns will cause an error.
- UserLogin, RepositoryName, ReleaseTagName, and Name support the following operator: =
SELECT * FROM ReleaseAssets WHERE RepositoryName = 'test' SELECT * FROM ReleaseAssets WHERE RepositoryName = 'test' AND ReleaseTagName = 'value8888' SELECT * FROM ReleaseAssets WHERE RepositoryName = 'test' AND Name = 'hola21.zip'
Columns
Name | Type | OrderBySupport | Description |
Id [KEY] | String | The ID of the asset. | |
UserLogin | String | The login name of the user. | |
RepositoryName | String | The name of the repository. | |
ReleaseTagName | String | The ID of the release that the asset is associated with. | |
ContentType | String | The asset's content-type. | |
CreatedAt | Datetime | Identifies the date and time when the object was created. | |
DownloadCount | Int | The number of times this asset was downloaded. | |
DownloadUrl | String | Identifies the URL where you can download the release asset via the browser. | |
Name | String | Identifies the title of the release asset. | |
Size | Int | The size (in bytes) of the asset. | |
UpdatedAt | Datetime | Identifies the date and time when the object was last updated. | |
UploadedBy | String | The user login name that performed the upload. | |
Url | String | Identifies the URL of the release asset. |