com.azure.resourcemanager.automation.implementation.PrivateLinkResourceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-automation Show documentation
Show all versions of azure-resourcemanager-automation Show documentation
This package contains Microsoft Azure SDK for Automation Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Automation Client. Package tag package-2022-02-22.
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.automation.implementation;
import com.azure.resourcemanager.automation.fluent.models.PrivateLinkResourceInner;
import com.azure.resourcemanager.automation.models.PrivateLinkResource;
import java.util.Collections;
import java.util.List;
public final class PrivateLinkResourceImpl implements PrivateLinkResource {
private PrivateLinkResourceInner innerObject;
private final com.azure.resourcemanager.automation.AutomationManager serviceManager;
PrivateLinkResourceImpl(PrivateLinkResourceInner innerObject,
com.azure.resourcemanager.automation.AutomationManager serviceManager) {
this.innerObject = innerObject;
this.serviceManager = serviceManager;
}
public String id() {
return this.innerModel().id();
}
public String name() {
return this.innerModel().name();
}
public String type() {
return this.innerModel().type();
}
public String groupId() {
return this.innerModel().groupId();
}
public List requiredMembers() {
List inner = this.innerModel().requiredMembers();
if (inner != null) {
return Collections.unmodifiableList(inner);
} else {
return Collections.emptyList();
}
}
public PrivateLinkResourceInner innerModel() {
return this.innerObject;
}
private com.azure.resourcemanager.automation.AutomationManager manager() {
return this.serviceManager;
}
}