Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.cdn.implementation; import com.fasterxml.jackson.annotation.JsonProperty;
The URI required to login to the supplemental portal from the Azure portal.
/** * The URI required to login to the supplemental portal from the Azure portal. */
public class SsoUriInner {
The URI used to login to the supplemental portal.
/** * The URI used to login to the supplemental portal. */
@JsonProperty(value = "ssoUriValue", access = JsonProperty.Access.WRITE_ONLY) private String ssoUriValue;
Get the URI used to login to the supplemental portal.
Returns:the ssoUriValue value
/** * Get the URI used to login to the supplemental portal. * * @return the ssoUriValue value */
public String ssoUriValue() { return this.ssoUriValue; } }