com.microsoft.azure.management.batch.implementation.ApplicationPackagesImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-batch Show documentation
Show all versions of azure-mgmt-batch Show documentation
This package contains Microsoft Azure Batch Account Management SDK. This package has been deprecated. A replacement package com.azure.resourcemanager:azure-resourcemanager-batch is available as of 31-March-2022. We strongly encourage you to upgrade to continue receiving updates. See Migration Guide https://aka.ms/java-track2-migration-guide for guidance on upgrading. Refer to our deprecation policy https://azure.github.io/azure-sdk/policies_support.html for more details.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.azure.management.batch.implementation;
import com.microsoft.azure.management.apigeneration.LangDefinition;
import com.microsoft.azure.management.batch.Application;
import com.microsoft.azure.management.batch.ApplicationPackage;
import com.microsoft.azure.management.resources.fluentcore.arm.collection.implementation.ExternalChildResourcesImpl;
import java.util.List;
import java.util.Map;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Collections;
/**
* Represents a applicationPackage collection associated with an application.
*/
@LangDefinition
class ApplicationPackagesImpl extends
ExternalChildResourcesImpl {
private final ApplicationPackagesInner client;
private final ApplicationImpl parent;
ApplicationPackagesImpl(ApplicationPackagesInner client, ApplicationImpl parent) {
super(parent, "ApplicationPackage");
this.client = client;
this.parent = parent;
this.initializeCollection();
}
public ApplicationPackageImpl define(String name) {
return this.prepareDefine(name);
}
public void remove(String applicationPackageName) {
this.prepareRemove(applicationPackageName);
}
@Override
protected List listChildResources() {
List childResources = new ArrayList<>();
if (this.parent().inner().packages() == null || this.parent().inner().packages().size() == 0) {
return childResources;
}
List applicationPackageList = this.parent.inner().packages();
for (ApplicationPackageInner applicationPackage: applicationPackageList) {
childResources.add(new ApplicationPackageImpl(applicationPackage.version(), this.parent(), applicationPackage, this.client));
}
return childResources;
}
@Override
protected ApplicationPackageImpl newChildResource(String name) {
ApplicationPackageImpl applicationPackage = ApplicationPackageImpl
.newApplicationPackage(name, this.parent(), this.client);
return applicationPackage;
}
public void addApplicationPackage(ApplicationPackageImpl applicationPackage) {
this.addChildResource(applicationPackage);
}
public Map asMap() {
Map result = new HashMap<>();
for (Map.Entry entry : this.collection().entrySet()) {
ApplicationPackageImpl applicationPackage = entry.getValue();
result.put(entry.getKey(), applicationPackage);
}
return Collections.unmodifiableMap(result);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy