com.azure.resourcemanager.applicationinsights.implementation.MyWorkbookImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-applicationinsights Show documentation
Show all versions of azure-resourcemanager-applicationinsights Show documentation
This package contains Microsoft Azure SDK for ApplicationInsights Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Composite Swagger for Application Insights Management Client. Package tag package-2022-04-01.
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.applicationinsights.implementation;
import com.azure.core.management.Region;
import com.azure.core.management.SystemData;
import com.azure.core.util.Context;
import com.azure.resourcemanager.applicationinsights.fluent.models.MyWorkbookInner;
import com.azure.resourcemanager.applicationinsights.models.Kind;
import com.azure.resourcemanager.applicationinsights.models.MyWorkbook;
import com.azure.resourcemanager.applicationinsights.models.MyWorkbookManagedIdentity;
import java.util.Collections;
import java.util.List;
import java.util.Map;
public final class MyWorkbookImpl implements MyWorkbook, MyWorkbook.Definition, MyWorkbook.Update {
private MyWorkbookInner innerObject;
private final com.azure.resourcemanager.applicationinsights.ApplicationInsightsManager serviceManager;
public String location() {
return this.innerModel().location();
}
public Map tags() {
Map inner = this.innerModel().tags();
if (inner != null) {
return Collections.unmodifiableMap(inner);
} else {
return Collections.emptyMap();
}
}
public MyWorkbookManagedIdentity identity() {
return this.innerModel().identity();
}
public String id() {
return this.innerModel().id();
}
public String name() {
return this.innerModel().name();
}
public String type() {
return this.innerModel().type();
}
public Map etag() {
Map inner = this.innerModel().etag();
if (inner != null) {
return Collections.unmodifiableMap(inner);
} else {
return Collections.emptyMap();
}
}
public Kind kind() {
return this.innerModel().kind();
}
public SystemData systemData() {
return this.innerModel().systemData();
}
public String displayName() {
return this.innerModel().displayName();
}
public String serializedData() {
return this.innerModel().serializedData();
}
public String version() {
return this.innerModel().version();
}
public String timeModified() {
return this.innerModel().timeModified();
}
public String category() {
return this.innerModel().category();
}
public List tagsPropertiesTags() {
List inner = this.innerModel().tagsPropertiesTags();
if (inner != null) {
return Collections.unmodifiableList(inner);
} else {
return Collections.emptyList();
}
}
public String userId() {
return this.innerModel().userId();
}
public String sourceId() {
return this.innerModel().sourceId();
}
public String storageUri() {
return this.innerModel().storageUri();
}
public Region region() {
return Region.fromName(this.regionName());
}
public String regionName() {
return this.location();
}
public String resourceGroupName() {
return resourceGroupName;
}
public MyWorkbookInner innerModel() {
return this.innerObject;
}
private com.azure.resourcemanager.applicationinsights.ApplicationInsightsManager manager() {
return this.serviceManager;
}
private String resourceGroupName;
private String resourceName;
private String createSourceId;
private String updateSourceId;
public MyWorkbookImpl withExistingResourceGroup(String resourceGroupName) {
this.resourceGroupName = resourceGroupName;
return this;
}
public MyWorkbook create() {
this.innerObject =
serviceManager
.serviceClient()
.getMyWorkbooks()
.createOrUpdateWithResponse(
resourceGroupName, resourceName, this.innerModel(), createSourceId, Context.NONE)
.getValue();
return this;
}
public MyWorkbook create(Context context) {
this.innerObject =
serviceManager
.serviceClient()
.getMyWorkbooks()
.createOrUpdateWithResponse(resourceGroupName, resourceName, this.innerModel(), createSourceId, context)
.getValue();
return this;
}
MyWorkbookImpl(
String name, com.azure.resourcemanager.applicationinsights.ApplicationInsightsManager serviceManager) {
this.innerObject = new MyWorkbookInner();
this.serviceManager = serviceManager;
this.resourceName = name;
this.createSourceId = null;
}
public MyWorkbookImpl update() {
this.updateSourceId = null;
return this;
}
public MyWorkbook apply() {
this.innerObject =
serviceManager
.serviceClient()
.getMyWorkbooks()
.updateWithResponse(resourceGroupName, resourceName, this.innerModel(), updateSourceId, Context.NONE)
.getValue();
return this;
}
public MyWorkbook apply(Context context) {
this.innerObject =
serviceManager
.serviceClient()
.getMyWorkbooks()
.updateWithResponse(resourceGroupName, resourceName, this.innerModel(), updateSourceId, context)
.getValue();
return this;
}
MyWorkbookImpl(
MyWorkbookInner innerObject,
com.azure.resourcemanager.applicationinsights.ApplicationInsightsManager serviceManager) {
this.innerObject = innerObject;
this.serviceManager = serviceManager;
this.resourceGroupName = Utils.getValueFromIdByName(innerObject.id(), "resourceGroups");
this.resourceName = Utils.getValueFromIdByName(innerObject.id(), "myWorkbooks");
}
public MyWorkbook refresh() {
this.innerObject =
serviceManager
.serviceClient()
.getMyWorkbooks()
.getByResourceGroupWithResponse(resourceGroupName, resourceName, Context.NONE)
.getValue();
return this;
}
public MyWorkbook refresh(Context context) {
this.innerObject =
serviceManager
.serviceClient()
.getMyWorkbooks()
.getByResourceGroupWithResponse(resourceGroupName, resourceName, context)
.getValue();
return this;
}
public MyWorkbookImpl withRegion(Region location) {
this.innerModel().withLocation(location.toString());
return this;
}
public MyWorkbookImpl withRegion(String location) {
this.innerModel().withLocation(location);
return this;
}
public MyWorkbookImpl withTags(Map tags) {
this.innerModel().withTags(tags);
return this;
}
public MyWorkbookImpl withIdentity(MyWorkbookManagedIdentity identity) {
this.innerModel().withIdentity(identity);
return this;
}
public MyWorkbookImpl withName(String name) {
this.innerModel().withName(name);
return this;
}
public MyWorkbookImpl withType(String type) {
this.innerModel().withType(type);
return this;
}
public MyWorkbookImpl withEtag(Map etag) {
this.innerModel().withEtag(etag);
return this;
}
public MyWorkbookImpl withKind(Kind kind) {
this.innerModel().withKind(kind);
return this;
}
public MyWorkbookImpl withDisplayName(String displayName) {
this.innerModel().withDisplayName(displayName);
return this;
}
public MyWorkbookImpl withSerializedData(String serializedData) {
this.innerModel().withSerializedData(serializedData);
return this;
}
public MyWorkbookImpl withVersion(String version) {
this.innerModel().withVersion(version);
return this;
}
public MyWorkbookImpl withCategory(String category) {
this.innerModel().withCategory(category);
return this;
}
public MyWorkbookImpl withTagsPropertiesTags(List tagsPropertiesTags) {
this.innerModel().withTagsPropertiesTags(tagsPropertiesTags);
return this;
}
public MyWorkbookImpl withSourceId(String sourceId) {
this.innerModel().withSourceId(sourceId);
return this;
}
public MyWorkbookImpl withStorageUri(String storageUri) {
this.innerModel().withStorageUri(storageUri);
return this;
}
public MyWorkbookImpl withSourceIdParameter(String sourceId) {
if (isInCreateMode()) {
this.createSourceId = sourceId;
return this;
} else {
this.updateSourceId = sourceId;
return this;
}
}
private boolean isInCreateMode() {
return this.innerModel().id() == null;
}
}