com.azure.resourcemanager.appplatform.models.ServiceVNetAddons 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.JsonProperty;
/**
* Additional Service settings in vnet injection instance.
*/
@Fluent
public final class ServiceVNetAddons {
/*
* Indicates whether the log stream in vnet injection instance could be accessed from internet.
*/
@JsonProperty(value = "logStreamPublicEndpoint")
private Boolean logStreamPublicEndpoint;
/*
* Indicates whether the data plane components(log stream, app connect, remote debugging) in vnet injection
* instance could be accessed from internet.
*/
@JsonProperty(value = "dataPlanePublicEndpoint")
private Boolean dataPlanePublicEndpoint;
/**
* Creates an instance of ServiceVNetAddons class.
*/
public ServiceVNetAddons() {
}
/**
* Get the logStreamPublicEndpoint property: Indicates whether the log stream in vnet injection instance could be
* accessed from internet.
*
* @return the logStreamPublicEndpoint value.
*/
public Boolean logStreamPublicEndpoint() {
return this.logStreamPublicEndpoint;
}
/**
* Set the logStreamPublicEndpoint property: Indicates whether the log stream in vnet injection instance could be
* accessed from internet.
*
* @param logStreamPublicEndpoint the logStreamPublicEndpoint value to set.
* @return the ServiceVNetAddons object itself.
*/
public ServiceVNetAddons withLogStreamPublicEndpoint(Boolean logStreamPublicEndpoint) {
this.logStreamPublicEndpoint = logStreamPublicEndpoint;
return this;
}
/**
* Get the dataPlanePublicEndpoint property: Indicates whether the data plane components(log stream, app connect,
* remote debugging) in vnet injection instance could be accessed from internet.
*
* @return the dataPlanePublicEndpoint value.
*/
public Boolean dataPlanePublicEndpoint() {
return this.dataPlanePublicEndpoint;
}
/**
* Set the dataPlanePublicEndpoint property: Indicates whether the data plane components(log stream, app connect,
* remote debugging) in vnet injection instance could be accessed from internet.
*
* @param dataPlanePublicEndpoint the dataPlanePublicEndpoint value to set.
* @return the ServiceVNetAddons object itself.
*/
public ServiceVNetAddons withDataPlanePublicEndpoint(Boolean dataPlanePublicEndpoint) {
this.dataPlanePublicEndpoint = dataPlanePublicEndpoint;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}