com.azure.messaging.eventgrid.systemevents.ContainerServiceClusterSupportEventData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-messaging-eventgrid Show documentation
Show all versions of azure-messaging-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.messaging.eventgrid.systemevents;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** Schema of common properties of cluster support events. */
@Fluent
public class ContainerServiceClusterSupportEventData {
/*
* The Kubernetes version of the ManagedCluster resource
*/
@JsonProperty(value = "kubernetesVersion")
private String kubernetesVersion;
/** Creates an instance of ContainerServiceClusterSupportEventData class. */
public ContainerServiceClusterSupportEventData() {}
/**
* Get the kubernetesVersion property: The Kubernetes version of the ManagedCluster resource.
*
* @return the kubernetesVersion value.
*/
public String getKubernetesVersion() {
return this.kubernetesVersion;
}
/**
* Set the kubernetesVersion property: The Kubernetes version of the ManagedCluster resource.
*
* @param kubernetesVersion the kubernetesVersion value to set.
* @return the ContainerServiceClusterSupportEventData object itself.
*/
public ContainerServiceClusterSupportEventData setKubernetesVersion(String kubernetesVersion) {
this.kubernetesVersion = kubernetesVersion;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy