com.azure.resourcemanager.apimanagement.fluent.models.SubscriptionKeysContractInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-apimanagement Show documentation
Show all versions of azure-resourcemanager-apimanagement Show documentation
This package contains Microsoft Azure SDK for ApiManagement Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. ApiManagement Client. Package tag package-2022-08.
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.apimanagement.fluent.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 java.io.IOException;
/**
* Subscription keys.
*/
@Fluent
public final class SubscriptionKeysContractInner implements JsonSerializable {
/*
* Subscription primary key.
*/
private String primaryKey;
/*
* Subscription secondary key.
*/
private String secondaryKey;
/**
* Creates an instance of SubscriptionKeysContractInner class.
*/
public SubscriptionKeysContractInner() {
}
/**
* Get the primaryKey property: Subscription primary key.
*
* @return the primaryKey value.
*/
public String primaryKey() {
return this.primaryKey;
}
/**
* Set the primaryKey property: Subscription primary key.
*
* @param primaryKey the primaryKey value to set.
* @return the SubscriptionKeysContractInner object itself.
*/
public SubscriptionKeysContractInner withPrimaryKey(String primaryKey) {
this.primaryKey = primaryKey;
return this;
}
/**
* Get the secondaryKey property: Subscription secondary key.
*
* @return the secondaryKey value.
*/
public String secondaryKey() {
return this.secondaryKey;
}
/**
* Set the secondaryKey property: Subscription secondary key.
*
* @param secondaryKey the secondaryKey value to set.
* @return the SubscriptionKeysContractInner object itself.
*/
public SubscriptionKeysContractInner withSecondaryKey(String secondaryKey) {
this.secondaryKey = secondaryKey;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("primaryKey", this.primaryKey);
jsonWriter.writeStringField("secondaryKey", this.secondaryKey);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of SubscriptionKeysContractInner from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of SubscriptionKeysContractInner 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 SubscriptionKeysContractInner.
*/
public static SubscriptionKeysContractInner fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
SubscriptionKeysContractInner deserializedSubscriptionKeysContractInner
= new SubscriptionKeysContractInner();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("primaryKey".equals(fieldName)) {
deserializedSubscriptionKeysContractInner.primaryKey = reader.getString();
} else if ("secondaryKey".equals(fieldName)) {
deserializedSubscriptionKeysContractInner.secondaryKey = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedSubscriptionKeysContractInner;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy