
com.azure.resourcemanager.applicationinsights.fluent.models.MyWorkbookInner Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.applicationinsights.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.management.SystemData;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.applicationinsights.models.Kind;
import com.azure.resourcemanager.applicationinsights.models.MyWorkbookManagedIdentity;
import com.azure.resourcemanager.applicationinsights.models.MyWorkbookResource;
import java.io.IOException;
import java.util.List;
import java.util.Map;
/**
* An Application Insights private workbook definition.
*/
@Fluent
public final class MyWorkbookInner extends MyWorkbookResource {
/*
* The kind of workbook. Choices are user and shared.
*/
private Kind kind;
/*
* Metadata describing a workbook for an Azure resource.
*/
private MyWorkbookProperties innerProperties;
/*
* Metadata pertaining to creation and last modification of the resource.
*/
private SystemData systemData;
/**
* Creates an instance of MyWorkbookInner class.
*/
public MyWorkbookInner() {
}
/**
* Get the kind property: The kind of workbook. Choices are user and shared.
*
* @return the kind value.
*/
public Kind kind() {
return this.kind;
}
/**
* Set the kind property: The kind of workbook. Choices are user and shared.
*
* @param kind the kind value to set.
* @return the MyWorkbookInner object itself.
*/
public MyWorkbookInner withKind(Kind kind) {
this.kind = kind;
return this;
}
/**
* Get the innerProperties property: Metadata describing a workbook for an Azure resource.
*
* @return the innerProperties value.
*/
private MyWorkbookProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the systemData property: Metadata pertaining to creation and last modification of the resource.
*
* @return the systemData value.
*/
public SystemData systemData() {
return this.systemData;
}
/**
* {@inheritDoc}
*/
@Override
public MyWorkbookInner withIdentity(MyWorkbookManagedIdentity identity) {
super.withIdentity(identity);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MyWorkbookInner withId(String id) {
super.withId(id);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MyWorkbookInner withName(String name) {
super.withName(name);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MyWorkbookInner withType(String type) {
super.withType(type);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MyWorkbookInner withEtag(Map etag) {
super.withEtag(etag);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MyWorkbookInner withLocation(String location) {
super.withLocation(location);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MyWorkbookInner withTags(Map tags) {
super.withTags(tags);
return this;
}
/**
* Get the displayName property: The user-defined name of the private workbook.
*
* @return the displayName value.
*/
public String displayName() {
return this.innerProperties() == null ? null : this.innerProperties().displayName();
}
/**
* Set the displayName property: The user-defined name of the private workbook.
*
* @param displayName the displayName value to set.
* @return the MyWorkbookInner object itself.
*/
public MyWorkbookInner withDisplayName(String displayName) {
if (this.innerProperties() == null) {
this.innerProperties = new MyWorkbookProperties();
}
this.innerProperties().withDisplayName(displayName);
return this;
}
/**
* Get the serializedData property: Configuration of this particular private workbook. Configuration data is a
* string containing valid JSON.
*
* @return the serializedData value.
*/
public String serializedData() {
return this.innerProperties() == null ? null : this.innerProperties().serializedData();
}
/**
* Set the serializedData property: Configuration of this particular private workbook. Configuration data is a
* string containing valid JSON.
*
* @param serializedData the serializedData value to set.
* @return the MyWorkbookInner object itself.
*/
public MyWorkbookInner withSerializedData(String serializedData) {
if (this.innerProperties() == null) {
this.innerProperties = new MyWorkbookProperties();
}
this.innerProperties().withSerializedData(serializedData);
return this;
}
/**
* Get the version property: This instance's version of the data model. This can change as new features are added
* that can be marked private workbook.
*
* @return the version value.
*/
public String version() {
return this.innerProperties() == null ? null : this.innerProperties().version();
}
/**
* Set the version property: This instance's version of the data model. This can change as new features are added
* that can be marked private workbook.
*
* @param version the version value to set.
* @return the MyWorkbookInner object itself.
*/
public MyWorkbookInner withVersion(String version) {
if (this.innerProperties() == null) {
this.innerProperties = new MyWorkbookProperties();
}
this.innerProperties().withVersion(version);
return this;
}
/**
* Get the timeModified property: Date and time in UTC of the last modification that was made to this private
* workbook definition.
*
* @return the timeModified value.
*/
public String timeModified() {
return this.innerProperties() == null ? null : this.innerProperties().timeModified();
}
/**
* Get the category property: Workbook category, as defined by the user at creation time.
*
* @return the category value.
*/
public String category() {
return this.innerProperties() == null ? null : this.innerProperties().category();
}
/**
* Set the category property: Workbook category, as defined by the user at creation time.
*
* @param category the category value to set.
* @return the MyWorkbookInner object itself.
*/
public MyWorkbookInner withCategory(String category) {
if (this.innerProperties() == null) {
this.innerProperties = new MyWorkbookProperties();
}
this.innerProperties().withCategory(category);
return this;
}
/**
* Get the tags property: A list of 0 or more tags that are associated with this private workbook definition.
*
* @return the tags value.
*/
public List tagsPropertiesTags() {
return this.innerProperties() == null ? null : this.innerProperties().tags();
}
/**
* Set the tags property: A list of 0 or more tags that are associated with this private workbook definition.
*
* @param tags the tags value to set.
* @return the MyWorkbookInner object itself.
*/
public MyWorkbookInner withTagsPropertiesTags(List tags) {
if (this.innerProperties() == null) {
this.innerProperties = new MyWorkbookProperties();
}
this.innerProperties().withTags(tags);
return this;
}
/**
* Get the userId property: Unique user id of the specific user that owns this private workbook.
*
* @return the userId value.
*/
public String userId() {
return this.innerProperties() == null ? null : this.innerProperties().userId();
}
/**
* Get the sourceId property: Optional resourceId for a source resource.
*
* @return the sourceId value.
*/
public String sourceId() {
return this.innerProperties() == null ? null : this.innerProperties().sourceId();
}
/**
* Set the sourceId property: Optional resourceId for a source resource.
*
* @param sourceId the sourceId value to set.
* @return the MyWorkbookInner object itself.
*/
public MyWorkbookInner withSourceId(String sourceId) {
if (this.innerProperties() == null) {
this.innerProperties = new MyWorkbookProperties();
}
this.innerProperties().withSourceId(sourceId);
return this;
}
/**
* Get the storageUri property: BYOS Storage Account URI.
*
* @return the storageUri value.
*/
public String storageUri() {
return this.innerProperties() == null ? null : this.innerProperties().storageUri();
}
/**
* Set the storageUri property: BYOS Storage Account URI.
*
* @param storageUri the storageUri value to set.
* @return the MyWorkbookInner object itself.
*/
public MyWorkbookInner withStorageUri(String storageUri) {
if (this.innerProperties() == null) {
this.innerProperties = new MyWorkbookProperties();
}
this.innerProperties().withStorageUri(storageUri);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
if (identity() != null) {
identity().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("location", location());
jsonWriter.writeMapField("tags", tags(), (writer, element) -> writer.writeString(element));
jsonWriter.writeJsonField("identity", identity());
jsonWriter.writeStringField("id", id());
jsonWriter.writeStringField("name", name());
jsonWriter.writeStringField("type", type());
jsonWriter.writeMapField("etag", etag(), (writer, element) -> writer.writeString(element));
jsonWriter.writeStringField("kind", this.kind == null ? null : this.kind.toString());
jsonWriter.writeJsonField("properties", this.innerProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of MyWorkbookInner from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of MyWorkbookInner if the JsonReader was pointing to an instance of it, or null if it was
* pointing to JSON null.
* @throws IllegalStateException If the deserialized JSON object was missing any required properties.
* @throws IOException If an error occurs while reading the MyWorkbookInner.
*/
public static MyWorkbookInner fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
MyWorkbookInner deserializedMyWorkbookInner = new MyWorkbookInner();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("location".equals(fieldName)) {
deserializedMyWorkbookInner.withLocation(reader.getString());
} else if ("tags".equals(fieldName)) {
Map tags = reader.readMap(reader1 -> reader1.getString());
deserializedMyWorkbookInner.withTags(tags);
} else if ("identity".equals(fieldName)) {
deserializedMyWorkbookInner.withIdentity(MyWorkbookManagedIdentity.fromJson(reader));
} else if ("id".equals(fieldName)) {
deserializedMyWorkbookInner.withId(reader.getString());
} else if ("name".equals(fieldName)) {
deserializedMyWorkbookInner.withName(reader.getString());
} else if ("type".equals(fieldName)) {
deserializedMyWorkbookInner.withType(reader.getString());
} else if ("etag".equals(fieldName)) {
Map etag = reader.readMap(reader1 -> reader1.getString());
deserializedMyWorkbookInner.withEtag(etag);
} else if ("kind".equals(fieldName)) {
deserializedMyWorkbookInner.kind = Kind.fromString(reader.getString());
} else if ("properties".equals(fieldName)) {
deserializedMyWorkbookInner.innerProperties = MyWorkbookProperties.fromJson(reader);
} else if ("systemData".equals(fieldName)) {
deserializedMyWorkbookInner.systemData = SystemData.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedMyWorkbookInner;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy