
com.azure.resourcemanager.monitor.models.LogProfileResourcePatch 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.monitor.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.monitor.fluent.models.LogProfileProperties;
import java.io.IOException;
import java.util.List;
import java.util.Map;
/**
* The log profile resource for patch operations.
*/
@Fluent
public final class LogProfileResourcePatch implements JsonSerializable {
/*
* Resource tags
*/
private Map tags;
/*
* The log profile properties for an update operation.
*/
private LogProfileProperties innerProperties;
/**
* Creates an instance of LogProfileResourcePatch class.
*/
public LogProfileResourcePatch() {
}
/**
* Get the tags property: Resource tags.
*
* @return the tags value.
*/
public Map tags() {
return this.tags;
}
/**
* Set the tags property: Resource tags.
*
* @param tags the tags value to set.
* @return the LogProfileResourcePatch object itself.
*/
public LogProfileResourcePatch withTags(Map tags) {
this.tags = tags;
return this;
}
/**
* Get the innerProperties property: The log profile properties for an update operation.
*
* @return the innerProperties value.
*/
private LogProfileProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the storageAccountId property: the resource id of the storage account to which you would like to send the
* Activity Log.
*
* @return the storageAccountId value.
*/
public String storageAccountId() {
return this.innerProperties() == null ? null : this.innerProperties().storageAccountId();
}
/**
* Set the storageAccountId property: the resource id of the storage account to which you would like to send the
* Activity Log.
*
* @param storageAccountId the storageAccountId value to set.
* @return the LogProfileResourcePatch object itself.
*/
public LogProfileResourcePatch withStorageAccountId(String storageAccountId) {
if (this.innerProperties() == null) {
this.innerProperties = new LogProfileProperties();
}
this.innerProperties().withStorageAccountId(storageAccountId);
return this;
}
/**
* Get the serviceBusRuleId property: The service bus rule ID of the service bus namespace in which you would like
* to have Event Hubs created for streaming the Activity Log. The rule ID is of the format: '{service bus resource
* ID}/authorizationrules/{key name}'.
*
* @return the serviceBusRuleId value.
*/
public String serviceBusRuleId() {
return this.innerProperties() == null ? null : this.innerProperties().serviceBusRuleId();
}
/**
* Set the serviceBusRuleId property: The service bus rule ID of the service bus namespace in which you would like
* to have Event Hubs created for streaming the Activity Log. The rule ID is of the format: '{service bus resource
* ID}/authorizationrules/{key name}'.
*
* @param serviceBusRuleId the serviceBusRuleId value to set.
* @return the LogProfileResourcePatch object itself.
*/
public LogProfileResourcePatch withServiceBusRuleId(String serviceBusRuleId) {
if (this.innerProperties() == null) {
this.innerProperties = new LogProfileProperties();
}
this.innerProperties().withServiceBusRuleId(serviceBusRuleId);
return this;
}
/**
* Get the locations property: List of regions for which Activity Log events should be stored or streamed. It is a
* comma separated list of valid ARM locations including the 'global' location.
*
* @return the locations value.
*/
public List locations() {
return this.innerProperties() == null ? null : this.innerProperties().locations();
}
/**
* Set the locations property: List of regions for which Activity Log events should be stored or streamed. It is a
* comma separated list of valid ARM locations including the 'global' location.
*
* @param locations the locations value to set.
* @return the LogProfileResourcePatch object itself.
*/
public LogProfileResourcePatch withLocations(List locations) {
if (this.innerProperties() == null) {
this.innerProperties = new LogProfileProperties();
}
this.innerProperties().withLocations(locations);
return this;
}
/**
* Get the categories property: the categories of the logs. These categories are created as is convenient to the
* user. Some values are: 'Write', 'Delete', and/or 'Action.'.
*
* @return the categories value.
*/
public List categories() {
return this.innerProperties() == null ? null : this.innerProperties().categories();
}
/**
* Set the categories property: the categories of the logs. These categories are created as is convenient to the
* user. Some values are: 'Write', 'Delete', and/or 'Action.'.
*
* @param categories the categories value to set.
* @return the LogProfileResourcePatch object itself.
*/
public LogProfileResourcePatch withCategories(List categories) {
if (this.innerProperties() == null) {
this.innerProperties = new LogProfileProperties();
}
this.innerProperties().withCategories(categories);
return this;
}
/**
* Get the retentionPolicy property: the retention policy for the events in the log.
*
* @return the retentionPolicy value.
*/
public RetentionPolicy retentionPolicy() {
return this.innerProperties() == null ? null : this.innerProperties().retentionPolicy();
}
/**
* Set the retentionPolicy property: the retention policy for the events in the log.
*
* @param retentionPolicy the retentionPolicy value to set.
* @return the LogProfileResourcePatch object itself.
*/
public LogProfileResourcePatch withRetentionPolicy(RetentionPolicy retentionPolicy) {
if (this.innerProperties() == null) {
this.innerProperties = new LogProfileProperties();
}
this.innerProperties().withRetentionPolicy(retentionPolicy);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeMapField("tags", this.tags, (writer, element) -> writer.writeString(element));
jsonWriter.writeJsonField("properties", this.innerProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of LogProfileResourcePatch from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of LogProfileResourcePatch 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 LogProfileResourcePatch.
*/
public static LogProfileResourcePatch fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
LogProfileResourcePatch deserializedLogProfileResourcePatch = new LogProfileResourcePatch();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("tags".equals(fieldName)) {
Map tags = reader.readMap(reader1 -> reader1.getString());
deserializedLogProfileResourcePatch.tags = tags;
} else if ("properties".equals(fieldName)) {
deserializedLogProfileResourcePatch.innerProperties = LogProfileProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedLogProfileResourcePatch;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy