com.azure.resourcemanager.network.fluent.models.StaticMemberInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network 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.network.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.management.SystemData;
import com.azure.resourcemanager.network.models.ChildResource;
import com.azure.resourcemanager.network.models.ProvisioningState;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* StaticMember Item.
*/
@Fluent
public final class StaticMemberInner extends ChildResource {
/*
* The Static Member properties
*/
@JsonProperty(value = "properties")
private StaticMemberProperties innerProperties;
/*
* The system metadata related to this resource.
*/
@JsonProperty(value = "systemData", access = JsonProperty.Access.WRITE_ONLY)
private SystemData systemData;
/**
* Creates an instance of StaticMemberInner class.
*/
public StaticMemberInner() {
}
/**
* Get the innerProperties property: The Static Member properties.
*
* @return the innerProperties value.
*/
private StaticMemberProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the systemData property: The system metadata related to this resource.
*
* @return the systemData value.
*/
public SystemData systemData() {
return this.systemData;
}
/**
* Get the resourceId property: Resource Id.
*
* @return the resourceId value.
*/
public String resourceId() {
return this.innerProperties() == null ? null : this.innerProperties().resourceId();
}
/**
* Set the resourceId property: Resource Id.
*
* @param resourceId the resourceId value to set.
* @return the StaticMemberInner object itself.
*/
public StaticMemberInner withResourceId(String resourceId) {
if (this.innerProperties() == null) {
this.innerProperties = new StaticMemberProperties();
}
this.innerProperties().withResourceId(resourceId);
return this;
}
/**
* Get the region property: Resource region.
*
* @return the region value.
*/
public String region() {
return this.innerProperties() == null ? null : this.innerProperties().region();
}
/**
* Get the provisioningState property: The provisioning state of the scope assignment resource.
*
* @return the provisioningState value.
*/
public ProvisioningState provisioningState() {
return this.innerProperties() == null ? null : this.innerProperties().provisioningState();
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
super.validate();
if (innerProperties() != null) {
innerProperties().validate();
}
}
}