com.pulumi.azure.automation.Powershell72Module Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azure.automation;
import com.pulumi.azure.Utilities;
import com.pulumi.azure.automation.Powershell72ModuleArgs;
import com.pulumi.azure.automation.inputs.Powershell72ModuleState;
import com.pulumi.azure.automation.outputs.Powershell72ModuleModuleLink;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Manages a Automation Powershell 7.2 Module.
*
* ## Example Usage
*
* <!--Start PulumiCodeChooser -->
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azure.core.ResourceGroup;
* import com.pulumi.azure.core.ResourceGroupArgs;
* import com.pulumi.azure.automation.Account;
* import com.pulumi.azure.automation.AccountArgs;
* import com.pulumi.azure.automation.Powershell72Module;
* import com.pulumi.azure.automation.Powershell72ModuleArgs;
* import com.pulumi.azure.automation.inputs.Powershell72ModuleModuleLinkArgs;
* import java.util.List;
* import java.util.ArrayList;
* import java.util.Map;
* import java.io.File;
* import java.nio.file.Files;
* import java.nio.file.Paths;
*
* public class App {
* public static void main(String[] args) {
* Pulumi.run(App::stack);
* }
*
* public static void stack(Context ctx) {
* var example = new ResourceGroup("example", ResourceGroupArgs.builder()
* .name("example-resources")
* .location("West Europe")
* .build());
*
* var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
* .name("account1")
* .location(example.location())
* .resourceGroupName(example.name())
* .skuName("Basic")
* .build());
*
* var examplePowershell72Module = new Powershell72Module("examplePowershell72Module", Powershell72ModuleArgs.builder()
* .name("xActiveDirectory")
* .automationAccountId(exampleAccount.id())
* .moduleLink(Powershell72ModuleModuleLinkArgs.builder()
* .uri("https://devopsgallerystorage.blob.core.windows.net/packages/xactivedirectory.2.19.0.nupkg")
* .build())
* .build());
*
* }
* }
* }
*
* <!--End PulumiCodeChooser -->
*
* ## Import
*
* Automation Modules can be imported using the `resource id`, e.g.
*
* ```sh
* $ pulumi import azure:automation/powershell72Module:Powershell72Module module1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Automation/automationAccounts/account1/powerShell72Modules/module1
* ```
*
*/
@ResourceType(type="azure:automation/powershell72Module:Powershell72Module")
public class Powershell72Module extends com.pulumi.resources.CustomResource {
/**
* The ID of Automation Account to manage this Watcher. Changing this forces a new Watcher to be created.
*
*/
@Export(name="automationAccountId", refs={String.class}, tree="[0]")
private Output automationAccountId;
/**
* @return The ID of Automation Account to manage this Watcher. Changing this forces a new Watcher to be created.
*
*/
public Output automationAccountId() {
return this.automationAccountId;
}
/**
* A `module_link` block as defined below.
*
*/
@Export(name="moduleLink", refs={Powershell72ModuleModuleLink.class}, tree="[0]")
private Output moduleLink;
/**
* @return A `module_link` block as defined below.
*
*/
public Output moduleLink() {
return this.moduleLink;
}
/**
* Specifies the name of the Module. Changing this forces a new resource to be created.
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return Specifies the name of the Module. Changing this forces a new resource to be created.
*
*/
public Output name() {
return this.name;
}
/**
* A mapping of tags to assign to the resource.
*
*/
@Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]")
private Output* @Nullable */ Map> tags;
/**
* @return A mapping of tags to assign to the resource.
*
*/
public Output>> tags() {
return Codegen.optional(this.tags);
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public Powershell72Module(java.lang.String name) {
this(name, Powershell72ModuleArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public Powershell72Module(java.lang.String name, Powershell72ModuleArgs args) {
this(name, args, null);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
public Powershell72Module(java.lang.String name, Powershell72ModuleArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure:automation/powershell72Module:Powershell72Module", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private Powershell72Module(java.lang.String name, Output id, @Nullable Powershell72ModuleState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure:automation/powershell72Module:Powershell72Module", name, state, makeResourceOptions(options, id), false);
}
private static Powershell72ModuleArgs makeArgs(Powershell72ModuleArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? Powershell72ModuleArgs.Empty : args;
}
private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.build();
return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
}
/**
* Get an existing Host resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static Powershell72Module get(java.lang.String name, Output id, @Nullable Powershell72ModuleState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new Powershell72Module(name, id, state, options);
}
}