Struct TableauServerVersion
Object containing version information for a Tableau server.
Implements
Namespace: Tableau.Migration.Api
Assembly: Tableau.Migration.dll
Syntax
public readonly record struct TableauServerVersion : IEquatable<TableauServerVersion>
Constructors
TableauServerVersion(string, string, string)
Object containing version information for a Tableau server.
Declaration
public TableauServerVersion(string RestApiVersion, string ProductVersion, string BuildVersion)
Parameters
| Type | Name | Description |
|---|---|---|
| string | RestApiVersion | The server's REST API version. |
| string | ProductVersion | The server's product version. |
| string | BuildVersion | The server's build version. |
Properties
BuildVersion
The server's build version.
Declaration
public string BuildVersion { get; init; }
Property Value
| Type | Description |
|---|---|
| string |
ProductVersion
The server's product version.
Declaration
public string ProductVersion { get; init; }
Property Value
| Type | Description |
|---|---|
| string |
RestApiVersion
The server's REST API version.
Declaration
public string RestApiVersion { get; init; }
Property Value
| Type | Description |
|---|---|
| string |