Import Client Branding
| workspaces_import_client_branding | R Documentation |
Imports client branding¶
Description¶
Imports client branding. Client branding allows you to customize your WorkSpace's client login portal. You can tailor your login portal company logo, the support email address, support link, link to reset password, and a custom message for users trying to sign in.
After you import client branding, the default branding experience for the specified platform type is replaced with the imported experience
-
You must specify at least one platform type when importing client branding.
-
You can import up to 6 MB of data with each request. If your request exceeds this limit, you can import client branding for different platform types using separate requests.
-
In each platform type, the
SupportEmailandSupportLinkparameters are mutually exclusive. You can specify only one parameter for each platform type, but not both. -
Imported data can take up to a minute to appear in the WorkSpaces client.
Usage¶
workspaces_import_client_branding(ResourceId, DeviceTypeWindows,
DeviceTypeOsx, DeviceTypeAndroid, DeviceTypeIos, DeviceTypeLinux,
DeviceTypeWeb)
Arguments¶
ResourceId[required] The directory identifier of the WorkSpace for which you want to import client branding.
DeviceTypeWindowsThe branding information to import for Windows devices.
DeviceTypeOsxThe branding information to import for macOS devices.
DeviceTypeAndroidThe branding information to import for Android devices.
DeviceTypeIosThe branding information to import for iOS devices.
DeviceTypeLinuxThe branding information to import for Linux devices.
DeviceTypeWebThe branding information to import for web access.
Value¶
A list with the following syntax:
list(
DeviceTypeWindows = list(
LogoUrl = "string",
SupportEmail = "string",
SupportLink = "string",
ForgotPasswordLink = "string",
LoginMessage = list(
"string"
)
),
DeviceTypeOsx = list(
LogoUrl = "string",
SupportEmail = "string",
SupportLink = "string",
ForgotPasswordLink = "string",
LoginMessage = list(
"string"
)
),
DeviceTypeAndroid = list(
LogoUrl = "string",
SupportEmail = "string",
SupportLink = "string",
ForgotPasswordLink = "string",
LoginMessage = list(
"string"
)
),
DeviceTypeIos = list(
LogoUrl = "string",
Logo2xUrl = "string",
Logo3xUrl = "string",
SupportEmail = "string",
SupportLink = "string",
ForgotPasswordLink = "string",
LoginMessage = list(
"string"
)
),
DeviceTypeLinux = list(
LogoUrl = "string",
SupportEmail = "string",
SupportLink = "string",
ForgotPasswordLink = "string",
LoginMessage = list(
"string"
)
),
DeviceTypeWeb = list(
LogoUrl = "string",
SupportEmail = "string",
SupportLink = "string",
ForgotPasswordLink = "string",
LoginMessage = list(
"string"
)
)
)
Request syntax¶
svc$import_client_branding(
ResourceId = "string",
DeviceTypeWindows = list(
Logo = raw,
SupportEmail = "string",
SupportLink = "string",
ForgotPasswordLink = "string",
LoginMessage = list(
"string"
)
),
DeviceTypeOsx = list(
Logo = raw,
SupportEmail = "string",
SupportLink = "string",
ForgotPasswordLink = "string",
LoginMessage = list(
"string"
)
),
DeviceTypeAndroid = list(
Logo = raw,
SupportEmail = "string",
SupportLink = "string",
ForgotPasswordLink = "string",
LoginMessage = list(
"string"
)
),
DeviceTypeIos = list(
Logo = raw,
Logo2x = raw,
Logo3x = raw,
SupportEmail = "string",
SupportLink = "string",
ForgotPasswordLink = "string",
LoginMessage = list(
"string"
)
),
DeviceTypeLinux = list(
Logo = raw,
SupportEmail = "string",
SupportLink = "string",
ForgotPasswordLink = "string",
LoginMessage = list(
"string"
)
),
DeviceTypeWeb = list(
Logo = raw,
SupportEmail = "string",
SupportLink = "string",
ForgotPasswordLink = "string",
LoginMessage = list(
"string"
)
)
)