com.azure.resourcemanager.botservice.models.AlexaChannel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-botservice Show documentation
Show all versions of azure-resourcemanager-botservice Show documentation
This package contains Microsoft Azure SDK for BotService Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure Bot Service is a platform for creating smart conversational agents. Package tag package-2021-03-01.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.botservice.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* Alexa channel definition.
*/
@Fluent
public final class AlexaChannel extends Channel {
/*
* The channel name
*/
private String channelName = "AlexaChannel";
/*
* The set of properties specific to Alexa channel resource
*/
private AlexaChannelProperties properties;
/*
* Provisioning state of the resource
*/
private String provisioningState;
/**
* Creates an instance of AlexaChannel class.
*/
public AlexaChannel() {
}
/**
* Get the channelName property: The channel name.
*
* @return the channelName value.
*/
@Override
public String channelName() {
return this.channelName;
}
/**
* Get the properties property: The set of properties specific to Alexa channel resource.
*
* @return the properties value.
*/
public AlexaChannelProperties properties() {
return this.properties;
}
/**
* Set the properties property: The set of properties specific to Alexa channel resource.
*
* @param properties the properties value to set.
* @return the AlexaChannel object itself.
*/
public AlexaChannel withProperties(AlexaChannelProperties properties) {
this.properties = properties;
return this;
}
/**
* Get the provisioningState property: Provisioning state of the resource.
*
* @return the provisioningState value.
*/
@Override
public String provisioningState() {
return this.provisioningState;
}
/**
* {@inheritDoc}
*/
@Override
public AlexaChannel withEtag(String etag) {
super.withEtag(etag);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AlexaChannel withLocation(String location) {
super.withLocation(location);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
if (properties() != null) {
properties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("etag", etag());
jsonWriter.writeStringField("location", location());
jsonWriter.writeStringField("channelName", this.channelName);
jsonWriter.writeJsonField("properties", this.properties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of AlexaChannel from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of AlexaChannel if the JsonReader was pointing to an instance of it, or null if it was
* pointing to JSON null.
* @throws IOException If an error occurs while reading the AlexaChannel.
*/
public static AlexaChannel fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
AlexaChannel deserializedAlexaChannel = new AlexaChannel();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("etag".equals(fieldName)) {
deserializedAlexaChannel.withEtag(reader.getString());
} else if ("provisioningState".equals(fieldName)) {
deserializedAlexaChannel.provisioningState = reader.getString();
} else if ("location".equals(fieldName)) {
deserializedAlexaChannel.withLocation(reader.getString());
} else if ("channelName".equals(fieldName)) {
deserializedAlexaChannel.channelName = reader.getString();
} else if ("properties".equals(fieldName)) {
deserializedAlexaChannel.properties = AlexaChannelProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedAlexaChannel;
});
}
}