ProviderInner.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.resources.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.resources.models.ProviderResourceType;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/** Resource provider information. */
@Fluent
public final class ProviderInner {
@JsonIgnore private final ClientLogger logger = new ClientLogger(ProviderInner.class);
/*
* The provider ID.
*/
@JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
private String id;
/*
* The namespace of the resource provider.
*/
@JsonProperty(value = "namespace")
private String namespace;
/*
* The registration state of the resource provider.
*/
@JsonProperty(value = "registrationState", access = JsonProperty.Access.WRITE_ONLY)
private String registrationState;
/*
* The registration policy of the resource provider.
*/
@JsonProperty(value = "registrationPolicy", access = JsonProperty.Access.WRITE_ONLY)
private String registrationPolicy;
/*
* The collection of provider resource types.
*/
@JsonProperty(value = "resourceTypes", access = JsonProperty.Access.WRITE_ONLY)
private List<ProviderResourceType> resourceTypes;
/**
* Get the id property: The provider ID.
*
* @return the id value.
*/
public String id() {
return this.id;
}
/**
* Get the namespace property: The namespace of the resource provider.
*
* @return the namespace value.
*/
public String namespace() {
return this.namespace;
}
/**
* Set the namespace property: The namespace of the resource provider.
*
* @param namespace the namespace value to set.
* @return the ProviderInner object itself.
*/
public ProviderInner withNamespace(String namespace) {
this.namespace = namespace;
return this;
}
/**
* Get the registrationState property: The registration state of the resource provider.
*
* @return the registrationState value.
*/
public String registrationState() {
return this.registrationState;
}
/**
* Get the registrationPolicy property: The registration policy of the resource provider.
*
* @return the registrationPolicy value.
*/
public String registrationPolicy() {
return this.registrationPolicy;
}
/**
* Get the resourceTypes property: The collection of provider resource types.
*
* @return the resourceTypes value.
*/
public List<ProviderResourceType> resourceTypes() {
return this.resourceTypes;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (resourceTypes() != null) {
resourceTypes().forEach(e -> e.validate());
}
}
}