com.azure.resourcemanager.servicebus.fluent.models.SBNamespaceProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-servicebus Show documentation
Show all versions of azure-resourcemanager-servicebus Show documentation
This package contains Microsoft Azure ServiceBus 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.servicebus.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.CoreUtils;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.servicebus.models.Encryption;
import java.io.IOException;
import java.time.OffsetDateTime;
import java.util.List;
/**
* Properties of the namespace.
*/
@Fluent
public final class SBNamespaceProperties implements JsonSerializable {
/*
* Provisioning state of the namespace.
*/
private String provisioningState;
/*
* Status of the namespace.
*/
private String status;
/*
* The time the namespace was created
*/
private OffsetDateTime createdAt;
/*
* The time the namespace was updated.
*/
private OffsetDateTime updatedAt;
/*
* Endpoint you can use to perform Service Bus operations.
*/
private String serviceBusEndpoint;
/*
* Identifier for Azure Insights metrics
*/
private String metricId;
/*
* Enabling this property creates a Premium Service Bus Namespace in regions supported availability zones.
*/
private Boolean zoneRedundant;
/*
* Properties of BYOK Encryption description
*/
private Encryption encryption;
/*
* List of private endpoint connections.
*/
private List privateEndpointConnections;
/*
* This property disables SAS authentication for the Service Bus namespace.
*/
private Boolean disableLocalAuth;
/*
* Alternate name for namespace
*/
private String alternateName;
/**
* Creates an instance of SBNamespaceProperties class.
*/
public SBNamespaceProperties() {
}
/**
* Get the provisioningState property: Provisioning state of the namespace.
*
* @return the provisioningState value.
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* Get the status property: Status of the namespace.
*
* @return the status value.
*/
public String status() {
return this.status;
}
/**
* Get the createdAt property: The time the namespace was created.
*
* @return the createdAt value.
*/
public OffsetDateTime createdAt() {
return this.createdAt;
}
/**
* Get the updatedAt property: The time the namespace was updated.
*
* @return the updatedAt value.
*/
public OffsetDateTime updatedAt() {
return this.updatedAt;
}
/**
* Get the serviceBusEndpoint property: Endpoint you can use to perform Service Bus operations.
*
* @return the serviceBusEndpoint value.
*/
public String serviceBusEndpoint() {
return this.serviceBusEndpoint;
}
/**
* Get the metricId property: Identifier for Azure Insights metrics.
*
* @return the metricId value.
*/
public String metricId() {
return this.metricId;
}
/**
* Get the zoneRedundant property: Enabling this property creates a Premium Service Bus Namespace in regions
* supported availability zones.
*
* @return the zoneRedundant value.
*/
public Boolean zoneRedundant() {
return this.zoneRedundant;
}
/**
* Set the zoneRedundant property: Enabling this property creates a Premium Service Bus Namespace in regions
* supported availability zones.
*
* @param zoneRedundant the zoneRedundant value to set.
* @return the SBNamespaceProperties object itself.
*/
public SBNamespaceProperties withZoneRedundant(Boolean zoneRedundant) {
this.zoneRedundant = zoneRedundant;
return this;
}
/**
* Get the encryption property: Properties of BYOK Encryption description.
*
* @return the encryption value.
*/
public Encryption encryption() {
return this.encryption;
}
/**
* Set the encryption property: Properties of BYOK Encryption description.
*
* @param encryption the encryption value to set.
* @return the SBNamespaceProperties object itself.
*/
public SBNamespaceProperties withEncryption(Encryption encryption) {
this.encryption = encryption;
return this;
}
/**
* Get the privateEndpointConnections property: List of private endpoint connections.
*
* @return the privateEndpointConnections value.
*/
public List privateEndpointConnections() {
return this.privateEndpointConnections;
}
/**
* Set the privateEndpointConnections property: List of private endpoint connections.
*
* @param privateEndpointConnections the privateEndpointConnections value to set.
* @return the SBNamespaceProperties object itself.
*/
public SBNamespaceProperties
withPrivateEndpointConnections(List privateEndpointConnections) {
this.privateEndpointConnections = privateEndpointConnections;
return this;
}
/**
* Get the disableLocalAuth property: This property disables SAS authentication for the Service Bus namespace.
*
* @return the disableLocalAuth value.
*/
public Boolean disableLocalAuth() {
return this.disableLocalAuth;
}
/**
* Set the disableLocalAuth property: This property disables SAS authentication for the Service Bus namespace.
*
* @param disableLocalAuth the disableLocalAuth value to set.
* @return the SBNamespaceProperties object itself.
*/
public SBNamespaceProperties withDisableLocalAuth(Boolean disableLocalAuth) {
this.disableLocalAuth = disableLocalAuth;
return this;
}
/**
* Get the alternateName property: Alternate name for namespace.
*
* @return the alternateName value.
*/
public String alternateName() {
return this.alternateName;
}
/**
* Set the alternateName property: Alternate name for namespace.
*
* @param alternateName the alternateName value to set.
* @return the SBNamespaceProperties object itself.
*/
public SBNamespaceProperties withAlternateName(String alternateName) {
this.alternateName = alternateName;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (encryption() != null) {
encryption().validate();
}
if (privateEndpointConnections() != null) {
privateEndpointConnections().forEach(e -> e.validate());
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeBooleanField("zoneRedundant", this.zoneRedundant);
jsonWriter.writeJsonField("encryption", this.encryption);
jsonWriter.writeArrayField("privateEndpointConnections", this.privateEndpointConnections,
(writer, element) -> writer.writeJson(element));
jsonWriter.writeBooleanField("disableLocalAuth", this.disableLocalAuth);
jsonWriter.writeStringField("alternateName", this.alternateName);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of SBNamespaceProperties from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of SBNamespaceProperties 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 SBNamespaceProperties.
*/
public static SBNamespaceProperties fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
SBNamespaceProperties deserializedSBNamespaceProperties = new SBNamespaceProperties();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("provisioningState".equals(fieldName)) {
deserializedSBNamespaceProperties.provisioningState = reader.getString();
} else if ("status".equals(fieldName)) {
deserializedSBNamespaceProperties.status = reader.getString();
} else if ("createdAt".equals(fieldName)) {
deserializedSBNamespaceProperties.createdAt = reader
.getNullable(nonNullReader -> CoreUtils.parseBestOffsetDateTime(nonNullReader.getString()));
} else if ("updatedAt".equals(fieldName)) {
deserializedSBNamespaceProperties.updatedAt = reader
.getNullable(nonNullReader -> CoreUtils.parseBestOffsetDateTime(nonNullReader.getString()));
} else if ("serviceBusEndpoint".equals(fieldName)) {
deserializedSBNamespaceProperties.serviceBusEndpoint = reader.getString();
} else if ("metricId".equals(fieldName)) {
deserializedSBNamespaceProperties.metricId = reader.getString();
} else if ("zoneRedundant".equals(fieldName)) {
deserializedSBNamespaceProperties.zoneRedundant = reader.getNullable(JsonReader::getBoolean);
} else if ("encryption".equals(fieldName)) {
deserializedSBNamespaceProperties.encryption = Encryption.fromJson(reader);
} else if ("privateEndpointConnections".equals(fieldName)) {
List privateEndpointConnections
= reader.readArray(reader1 -> PrivateEndpointConnectionInner.fromJson(reader1));
deserializedSBNamespaceProperties.privateEndpointConnections = privateEndpointConnections;
} else if ("disableLocalAuth".equals(fieldName)) {
deserializedSBNamespaceProperties.disableLocalAuth = reader.getNullable(JsonReader::getBoolean);
} else if ("alternateName".equals(fieldName)) {
deserializedSBNamespaceProperties.alternateName = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedSBNamespaceProperties;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy