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.appservice.implementation; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.rest.serializer.JsonFlatten; import com.microsoft.azure.management.appservice.ProxyOnlyResource;
Hybrid Connection key contract. This has the send key name and value for a Hybrid Connection.
/** * Hybrid Connection key contract. This has the send key name and value for a * Hybrid Connection. */
@JsonFlatten public class HybridConnectionKeyInner extends ProxyOnlyResource {
The name of the send key.
/** * The name of the send key. */
@JsonProperty(value = "properties.sendKeyName", access = JsonProperty.Access.WRITE_ONLY) private String sendKeyName;
The value of the send key.
/** * The value of the send key. */
@JsonProperty(value = "properties.sendKeyValue", access = JsonProperty.Access.WRITE_ONLY) private String sendKeyValue;
Get the name of the send key.
Returns:the sendKeyName value
/** * Get the name of the send key. * * @return the sendKeyName value */
public String sendKeyName() { return this.sendKeyName; }
Get the value of the send key.
Returns:the sendKeyValue value
/** * Get the value of the send key. * * @return the sendKeyValue value */
public String sendKeyValue() { return this.sendKeyValue; } }