com.pulumi.azurenative.datafactory.GlobalParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.azurenative.datafactory;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.datafactory.GlobalParameterArgs;
import com.pulumi.azurenative.datafactory.outputs.GlobalParameterSpecificationResponse;
import com.pulumi.core.Alias;
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.List;
import java.util.Map;
import javax.annotation.Nullable;
/**
* Global parameters resource type.
* Azure REST API version: 2018-06-01. Prior API version in Azure Native 1.x: 2018-06-01.
*
* ## Example Usage
* ### GlobalParameters_Create
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.datafactory.GlobalParameter;
* import com.pulumi.azurenative.datafactory.GlobalParameterArgs;
* 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 globalParameter = new GlobalParameter("globalParameter", GlobalParameterArgs.builder()
* .factoryName("exampleFactoryName")
* .globalParameterName("default")
* .properties(Map.of("waitTime", Map.ofEntries(
* Map.entry("type", "Int"),
* Map.entry("value", 5)
* )))
* .resourceGroupName("exampleResourceGroup")
* .build());
*
* }
* }
*
* }
*
* ### GlobalParameters_Update
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.datafactory.GlobalParameter;
* import com.pulumi.azurenative.datafactory.GlobalParameterArgs;
* 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 globalParameter = new GlobalParameter("globalParameter", GlobalParameterArgs.builder()
* .factoryName("exampleFactoryName")
* .globalParameterName("default")
* .properties(Map.of("waitTime", Map.ofEntries(
* Map.entry("type", "Int"),
* Map.entry("value", 5)
* )))
* .resourceGroupName("exampleResourceGroup")
* .build());
*
* }
* }
*
* }
*
*
* ## Import
*
* An existing resource can be imported using its type token, name, and identifier, e.g.
*
* ```sh
* $ pulumi import azure-native:datafactory:GlobalParameter default /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/globalParameters/{globalParameterName}
* ```
*
*/
@ResourceType(type="azure-native:datafactory:GlobalParameter")
public class GlobalParameter extends com.pulumi.resources.CustomResource {
/**
* Etag identifies change in the resource.
*
*/
@Export(name="etag", refs={String.class}, tree="[0]")
private Output etag;
/**
* @return Etag identifies change in the resource.
*
*/
public Output etag() {
return this.etag;
}
/**
* The resource name.
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return The resource name.
*
*/
public Output name() {
return this.name;
}
/**
* Properties of the global parameter.
*
*/
@Export(name="properties", refs={Map.class,String.class,GlobalParameterSpecificationResponse.class}, tree="[0,1,2]")
private Output
© 2015 - 2024 Weber Informatics LLC | Privacy Policy