com.azure.resourcemanager.appplatform.models.BuildpackBindingLaunchProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-appplatform Show documentation
Show all versions of azure-resourcemanager-appplatform Show documentation
This package contains Microsoft Azure App Platform Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.appplatform.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
/**
* Buildpack Binding Launch Properties.
*/
@Fluent
public final class BuildpackBindingLaunchProperties {
/*
* Non-sensitive properties for launchProperties
*/
@JsonProperty(value = "properties")
@JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS)
private Map properties;
/*
* Sensitive properties for launchProperties
*/
@JsonProperty(value = "secrets")
@JsonInclude(value = JsonInclude.Include.NON_NULL, content = JsonInclude.Include.ALWAYS)
private Map secrets;
/**
* Creates an instance of BuildpackBindingLaunchProperties class.
*/
public BuildpackBindingLaunchProperties() {
}
/**
* Get the properties property: Non-sensitive properties for launchProperties.
*
* @return the properties value.
*/
public Map properties() {
return this.properties;
}
/**
* Set the properties property: Non-sensitive properties for launchProperties.
*
* @param properties the properties value to set.
* @return the BuildpackBindingLaunchProperties object itself.
*/
public BuildpackBindingLaunchProperties withProperties(Map properties) {
this.properties = properties;
return this;
}
/**
* Get the secrets property: Sensitive properties for launchProperties.
*
* @return the secrets value.
*/
public Map secrets() {
return this.secrets;
}
/**
* Set the secrets property: Sensitive properties for launchProperties.
*
* @param secrets the secrets value to set.
* @return the BuildpackBindingLaunchProperties object itself.
*/
public BuildpackBindingLaunchProperties withSecrets(Map secrets) {
this.secrets = secrets;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}