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; import com.fasterxml.jackson.annotation.JsonProperty;
The JSON object that contains the properties of the Secret to create.
/** * The JSON object that contains the properties of the Secret to create. */
public class SecretProperties extends AFDStateProperties {
object which contains secret parameters.
/** * object which contains secret parameters. */
@JsonProperty(value = "parameters") private SecretParameters parameters;
Get object which contains secret parameters.
Returns:the parameters value
/** * Get object which contains secret parameters. * * @return the parameters value */
public SecretParameters parameters() { return this.parameters; }
Set object which contains secret parameters.
Params:
  • parameters – the parameters value to set
Returns:the SecretProperties object itself.
/** * Set object which contains secret parameters. * * @param parameters the parameters value to set * @return the SecretProperties object itself. */
public SecretProperties withParameters(SecretParameters parameters) { this.parameters = parameters; return this; } }