com.pulumi.azure.appplatform.SpringCloudDevToolPortal 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.appplatform;
import com.pulumi.azure.Utilities;
import com.pulumi.azure.appplatform.SpringCloudDevToolPortalArgs;
import com.pulumi.azure.appplatform.inputs.SpringCloudDevToolPortalState;
import com.pulumi.azure.appplatform.outputs.SpringCloudDevToolPortalSso;
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.Boolean;
import java.lang.String;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* > **NOTE:** This resource is applicable only for Spring Cloud Service with enterprise tier.
*
* Manages a Spring Cloud Dev Tool Portal.
*
* ## 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.CoreFunctions;
* import com.pulumi.azure.core.ResourceGroup;
* import com.pulumi.azure.core.ResourceGroupArgs;
* import com.pulumi.azure.appplatform.SpringCloudService;
* import com.pulumi.azure.appplatform.SpringCloudServiceArgs;
* import com.pulumi.azure.appplatform.SpringCloudDevToolPortal;
* import com.pulumi.azure.appplatform.SpringCloudDevToolPortalArgs;
* import com.pulumi.azure.appplatform.inputs.SpringCloudDevToolPortalSsoArgs;
* 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) {
* final var current = CoreFunctions.getClientConfig();
*
* var example = new ResourceGroup("example", ResourceGroupArgs.builder()
* .name("example")
* .location("West Europe")
* .build());
*
* var exampleSpringCloudService = new SpringCloudService("exampleSpringCloudService", SpringCloudServiceArgs.builder()
* .name("example")
* .location(example.location())
* .resourceGroupName(example.name())
* .skuName("E0")
* .build());
*
* var exampleSpringCloudDevToolPortal = new SpringCloudDevToolPortal("exampleSpringCloudDevToolPortal", SpringCloudDevToolPortalArgs.builder()
* .name("default")
* .springCloudServiceId(exampleSpringCloudService.id())
* .publicNetworkAccessEnabled(true)
* .sso(SpringCloudDevToolPortalSsoArgs.builder()
* .clientId("example id")
* .clientSecret("example secret")
* .metadataUrl(String.format("https://login.microsoftonline.com/%s/v2.0/.well-known/openid-configuration", current.applyValue(getClientConfigResult -> getClientConfigResult.tenantId())))
* .scopes(
* "openid",
* "profile",
* "email")
* .build())
* .applicationAcceleratorEnabled(true)
* .applicationLiveViewEnabled(true)
* .build());
*
* }
* }
* }
*
* <!--End PulumiCodeChooser -->
*
* ## Import
*
* Spring Cloud Dev Tool Portals can be imported using the `resource id`, e.g.
*
* ```sh
* $ pulumi import azure:appplatform/springCloudDevToolPortal:SpringCloudDevToolPortal example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resourceGroup1/providers/Microsoft.AppPlatform/Spring/service1/DevToolPortals/default
* ```
*
*/
@ResourceType(type="azure:appplatform/springCloudDevToolPortal:SpringCloudDevToolPortal")
public class SpringCloudDevToolPortal extends com.pulumi.resources.CustomResource {
/**
* Should the Accelerator plugin be enabled?
*
*/
@Export(name="applicationAcceleratorEnabled", refs={Boolean.class}, tree="[0]")
private Output applicationAcceleratorEnabled;
/**
* @return Should the Accelerator plugin be enabled?
*
*/
public Output applicationAcceleratorEnabled() {
return this.applicationAcceleratorEnabled;
}
/**
* Should the Application Live View be enabled?
*
*/
@Export(name="applicationLiveViewEnabled", refs={Boolean.class}, tree="[0]")
private Output applicationLiveViewEnabled;
/**
* @return Should the Application Live View be enabled?
*
*/
public Output applicationLiveViewEnabled() {
return this.applicationLiveViewEnabled;
}
/**
* The name which should be used for this Spring Cloud Dev Tool Portal. The only possible value is `default`. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return The name which should be used for this Spring Cloud Dev Tool Portal. The only possible value is `default`. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
*
*/
public Output name() {
return this.name;
}
/**
* Is public network access enabled?
*
*/
@Export(name="publicNetworkAccessEnabled", refs={Boolean.class}, tree="[0]")
private Output* @Nullable */ Boolean> publicNetworkAccessEnabled;
/**
* @return Is public network access enabled?
*
*/
public Output> publicNetworkAccessEnabled() {
return Codegen.optional(this.publicNetworkAccessEnabled);
}
/**
* The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
*
*/
@Export(name="springCloudServiceId", refs={String.class}, tree="[0]")
private Output springCloudServiceId;
/**
* @return The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Dev Tool Portal to be created.
*
*/
public Output springCloudServiceId() {
return this.springCloudServiceId;
}
/**
* A `sso` block as defined below.
*
*/
@Export(name="sso", refs={SpringCloudDevToolPortalSso.class}, tree="[0]")
private Output* @Nullable */ SpringCloudDevToolPortalSso> sso;
/**
* @return A `sso` block as defined below.
*
*/
public Output> sso() {
return Codegen.optional(this.sso);
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public SpringCloudDevToolPortal(java.lang.String name) {
this(name, SpringCloudDevToolPortalArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public SpringCloudDevToolPortal(java.lang.String name, SpringCloudDevToolPortalArgs 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 SpringCloudDevToolPortal(java.lang.String name, SpringCloudDevToolPortalArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure:appplatform/springCloudDevToolPortal:SpringCloudDevToolPortal", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private SpringCloudDevToolPortal(java.lang.String name, Output id, @Nullable SpringCloudDevToolPortalState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure:appplatform/springCloudDevToolPortal:SpringCloudDevToolPortal", name, state, makeResourceOptions(options, id), false);
}
private static SpringCloudDevToolPortalArgs makeArgs(SpringCloudDevToolPortalArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? SpringCloudDevToolPortalArgs.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 SpringCloudDevToolPortal get(java.lang.String name, Output id, @Nullable SpringCloudDevToolPortalState state, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new SpringCloudDevToolPortal(name, id, state, options);
}
}