We recommend using Azure Native.
azure.appplatform.SpringCloudCustomizedAccelerator
Explore with Pulumi AI
Manages a Spring Cloud Customized Accelerator.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
{
Location = "west europe",
});
var exampleSpringCloudService = new Azure.AppPlatform.SpringCloudService("exampleSpringCloudService", new()
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
SkuName = "E0",
});
var exampleSpringCloudAccelerator = new Azure.AppPlatform.SpringCloudAccelerator("exampleSpringCloudAccelerator", new()
{
SpringCloudServiceId = exampleSpringCloudService.Id,
});
var exampleSpringCloudCustomizedAccelerator = new Azure.AppPlatform.SpringCloudCustomizedAccelerator("exampleSpringCloudCustomizedAccelerator", new()
{
SpringCloudAcceleratorId = exampleSpringCloudAccelerator.Id,
GitRepository = new Azure.AppPlatform.Inputs.SpringCloudCustomizedAcceleratorGitRepositoryArgs
{
Url = "https://github.com/Azure-Samples/piggymetrics",
GitTag = "spring.version.2.0.3",
IntervalInSeconds = 100,
},
AcceleratorTags = new[]
{
"tag-a",
"tag-b",
},
Description = "example description",
DisplayName = "example name",
IconUrl = "https://images.freecreatives.com/wp-content/uploads/2015/05/smiley-559124_640.jpg",
});
});
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/appplatform"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("west europe"),
})
if err != nil {
return err
}
exampleSpringCloudService, err := appplatform.NewSpringCloudService(ctx, "exampleSpringCloudService", &appplatform.SpringCloudServiceArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
SkuName: pulumi.String("E0"),
})
if err != nil {
return err
}
exampleSpringCloudAccelerator, err := appplatform.NewSpringCloudAccelerator(ctx, "exampleSpringCloudAccelerator", &appplatform.SpringCloudAcceleratorArgs{
SpringCloudServiceId: exampleSpringCloudService.ID(),
})
if err != nil {
return err
}
_, err = appplatform.NewSpringCloudCustomizedAccelerator(ctx, "exampleSpringCloudCustomizedAccelerator", &appplatform.SpringCloudCustomizedAcceleratorArgs{
SpringCloudAcceleratorId: exampleSpringCloudAccelerator.ID(),
GitRepository: &appplatform.SpringCloudCustomizedAcceleratorGitRepositoryArgs{
Url: pulumi.String("https://github.com/Azure-Samples/piggymetrics"),
GitTag: pulumi.String("spring.version.2.0.3"),
IntervalInSeconds: pulumi.Int(100),
},
AcceleratorTags: pulumi.StringArray{
pulumi.String("tag-a"),
pulumi.String("tag-b"),
},
Description: pulumi.String("example description"),
DisplayName: pulumi.String("example name"),
IconUrl: pulumi.String("https://images.freecreatives.com/wp-content/uploads/2015/05/smiley-559124_640.jpg"),
})
if err != nil {
return err
}
return nil
})
}
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.appplatform.SpringCloudService;
import com.pulumi.azure.appplatform.SpringCloudServiceArgs;
import com.pulumi.azure.appplatform.SpringCloudAccelerator;
import com.pulumi.azure.appplatform.SpringCloudAcceleratorArgs;
import com.pulumi.azure.appplatform.SpringCloudCustomizedAccelerator;
import com.pulumi.azure.appplatform.SpringCloudCustomizedAcceleratorArgs;
import com.pulumi.azure.appplatform.inputs.SpringCloudCustomizedAcceleratorGitRepositoryArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("west europe")
.build());
var exampleSpringCloudService = new SpringCloudService("exampleSpringCloudService", SpringCloudServiceArgs.builder()
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.skuName("E0")
.build());
var exampleSpringCloudAccelerator = new SpringCloudAccelerator("exampleSpringCloudAccelerator", SpringCloudAcceleratorArgs.builder()
.springCloudServiceId(exampleSpringCloudService.id())
.build());
var exampleSpringCloudCustomizedAccelerator = new SpringCloudCustomizedAccelerator("exampleSpringCloudCustomizedAccelerator", SpringCloudCustomizedAcceleratorArgs.builder()
.springCloudAcceleratorId(exampleSpringCloudAccelerator.id())
.gitRepository(SpringCloudCustomizedAcceleratorGitRepositoryArgs.builder()
.url("https://github.com/Azure-Samples/piggymetrics")
.gitTag("spring.version.2.0.3")
.intervalInSeconds(100)
.build())
.acceleratorTags(
"tag-a",
"tag-b")
.description("example description")
.displayName("example name")
.iconUrl("https://images.freecreatives.com/wp-content/uploads/2015/05/smiley-559124_640.jpg")
.build());
}
}
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="west europe")
example_spring_cloud_service = azure.appplatform.SpringCloudService("exampleSpringCloudService",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
sku_name="E0")
example_spring_cloud_accelerator = azure.appplatform.SpringCloudAccelerator("exampleSpringCloudAccelerator", spring_cloud_service_id=example_spring_cloud_service.id)
example_spring_cloud_customized_accelerator = azure.appplatform.SpringCloudCustomizedAccelerator("exampleSpringCloudCustomizedAccelerator",
spring_cloud_accelerator_id=example_spring_cloud_accelerator.id,
git_repository=azure.appplatform.SpringCloudCustomizedAcceleratorGitRepositoryArgs(
url="https://github.com/Azure-Samples/piggymetrics",
git_tag="spring.version.2.0.3",
interval_in_seconds=100,
),
accelerator_tags=[
"tag-a",
"tag-b",
],
description="example description",
display_name="example name",
icon_url="https://images.freecreatives.com/wp-content/uploads/2015/05/smiley-559124_640.jpg")
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "west europe"});
const exampleSpringCloudService = new azure.appplatform.SpringCloudService("exampleSpringCloudService", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
skuName: "E0",
});
const exampleSpringCloudAccelerator = new azure.appplatform.SpringCloudAccelerator("exampleSpringCloudAccelerator", {springCloudServiceId: exampleSpringCloudService.id});
const exampleSpringCloudCustomizedAccelerator = new azure.appplatform.SpringCloudCustomizedAccelerator("exampleSpringCloudCustomizedAccelerator", {
springCloudAcceleratorId: exampleSpringCloudAccelerator.id,
gitRepository: {
url: "https://github.com/Azure-Samples/piggymetrics",
gitTag: "spring.version.2.0.3",
intervalInSeconds: 100,
},
acceleratorTags: [
"tag-a",
"tag-b",
],
description: "example description",
displayName: "example name",
iconUrl: "https://images.freecreatives.com/wp-content/uploads/2015/05/smiley-559124_640.jpg",
});
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
properties:
location: west europe
exampleSpringCloudService:
type: azure:appplatform:SpringCloudService
properties:
location: ${exampleResourceGroup.location}
resourceGroupName: ${exampleResourceGroup.name}
skuName: E0
exampleSpringCloudAccelerator:
type: azure:appplatform:SpringCloudAccelerator
properties:
springCloudServiceId: ${exampleSpringCloudService.id}
exampleSpringCloudCustomizedAccelerator:
type: azure:appplatform:SpringCloudCustomizedAccelerator
properties:
springCloudAcceleratorId: ${exampleSpringCloudAccelerator.id}
gitRepository:
url: https://github.com/Azure-Samples/piggymetrics
gitTag: spring.version.2.0.3
intervalInSeconds: 100
acceleratorTags:
- tag-a
- tag-b
description: example description
displayName: example name
iconUrl: https://images.freecreatives.com/wp-content/uploads/2015/05/smiley-559124_640.jpg
Create SpringCloudCustomizedAccelerator Resource
new SpringCloudCustomizedAccelerator(name: string, args: SpringCloudCustomizedAcceleratorArgs, opts?: CustomResourceOptions);
@overload
def SpringCloudCustomizedAccelerator(resource_name: str,
opts: Optional[ResourceOptions] = None,
accelerator_tags: Optional[Sequence[str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
git_repository: Optional[SpringCloudCustomizedAcceleratorGitRepositoryArgs] = None,
icon_url: Optional[str] = None,
name: Optional[str] = None,
spring_cloud_accelerator_id: Optional[str] = None)
@overload
def SpringCloudCustomizedAccelerator(resource_name: str,
args: SpringCloudCustomizedAcceleratorArgs,
opts: Optional[ResourceOptions] = None)
func NewSpringCloudCustomizedAccelerator(ctx *Context, name string, args SpringCloudCustomizedAcceleratorArgs, opts ...ResourceOption) (*SpringCloudCustomizedAccelerator, error)
public SpringCloudCustomizedAccelerator(string name, SpringCloudCustomizedAcceleratorArgs args, CustomResourceOptions? opts = null)
public SpringCloudCustomizedAccelerator(String name, SpringCloudCustomizedAcceleratorArgs args)
public SpringCloudCustomizedAccelerator(String name, SpringCloudCustomizedAcceleratorArgs args, CustomResourceOptions options)
type: azure:appplatform:SpringCloudCustomizedAccelerator
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpringCloudCustomizedAcceleratorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SpringCloudCustomizedAcceleratorArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SpringCloudCustomizedAcceleratorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpringCloudCustomizedAcceleratorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SpringCloudCustomizedAcceleratorArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
SpringCloudCustomizedAccelerator Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SpringCloudCustomizedAccelerator resource accepts the following input properties:
- Git
Repository SpringCloud Customized Accelerator Git Repository A
git_repository
block as defined below.- Spring
Cloud stringAccelerator Id The ID of the Spring Cloud Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- List<string>
Specifies a list of accelerator tags.
- Description string
Specifies the description of the Spring Cloud Customized Accelerator.
- Display
Name string Specifies the display name of the Spring Cloud Customized Accelerator..
- Icon
Url string Specifies the icon URL of the Spring Cloud Customized Accelerator..
- Name string
The name which should be used for this Spring Cloud Customized Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- Git
Repository SpringCloud Customized Accelerator Git Repository Args A
git_repository
block as defined below.- Spring
Cloud stringAccelerator Id The ID of the Spring Cloud Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- []string
Specifies a list of accelerator tags.
- Description string
Specifies the description of the Spring Cloud Customized Accelerator.
- Display
Name string Specifies the display name of the Spring Cloud Customized Accelerator..
- Icon
Url string Specifies the icon URL of the Spring Cloud Customized Accelerator..
- Name string
The name which should be used for this Spring Cloud Customized Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- git
Repository SpringCloud Customized Accelerator Git Repository A
git_repository
block as defined below.- spring
Cloud StringAccelerator Id The ID of the Spring Cloud Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- List<String>
Specifies a list of accelerator tags.
- description String
Specifies the description of the Spring Cloud Customized Accelerator.
- display
Name String Specifies the display name of the Spring Cloud Customized Accelerator..
- icon
Url String Specifies the icon URL of the Spring Cloud Customized Accelerator..
- name String
The name which should be used for this Spring Cloud Customized Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- git
Repository SpringCloud Customized Accelerator Git Repository A
git_repository
block as defined below.- spring
Cloud stringAccelerator Id The ID of the Spring Cloud Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- string[]
Specifies a list of accelerator tags.
- description string
Specifies the description of the Spring Cloud Customized Accelerator.
- display
Name string Specifies the display name of the Spring Cloud Customized Accelerator..
- icon
Url string Specifies the icon URL of the Spring Cloud Customized Accelerator..
- name string
The name which should be used for this Spring Cloud Customized Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- git_
repository SpringCloud Customized Accelerator Git Repository Args A
git_repository
block as defined below.- spring_
cloud_ straccelerator_ id The ID of the Spring Cloud Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- Sequence[str]
Specifies a list of accelerator tags.
- description str
Specifies the description of the Spring Cloud Customized Accelerator.
- display_
name str Specifies the display name of the Spring Cloud Customized Accelerator..
- icon_
url str Specifies the icon URL of the Spring Cloud Customized Accelerator..
- name str
The name which should be used for this Spring Cloud Customized Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- git
Repository Property Map A
git_repository
block as defined below.- spring
Cloud StringAccelerator Id The ID of the Spring Cloud Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- List<String>
Specifies a list of accelerator tags.
- description String
Specifies the description of the Spring Cloud Customized Accelerator.
- display
Name String Specifies the display name of the Spring Cloud Customized Accelerator..
- icon
Url String Specifies the icon URL of the Spring Cloud Customized Accelerator..
- name String
The name which should be used for this Spring Cloud Customized Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the SpringCloudCustomizedAccelerator resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing SpringCloudCustomizedAccelerator Resource
Get an existing SpringCloudCustomizedAccelerator resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SpringCloudCustomizedAcceleratorState, opts?: CustomResourceOptions): SpringCloudCustomizedAccelerator
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
accelerator_tags: Optional[Sequence[str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
git_repository: Optional[SpringCloudCustomizedAcceleratorGitRepositoryArgs] = None,
icon_url: Optional[str] = None,
name: Optional[str] = None,
spring_cloud_accelerator_id: Optional[str] = None) -> SpringCloudCustomizedAccelerator
func GetSpringCloudCustomizedAccelerator(ctx *Context, name string, id IDInput, state *SpringCloudCustomizedAcceleratorState, opts ...ResourceOption) (*SpringCloudCustomizedAccelerator, error)
public static SpringCloudCustomizedAccelerator Get(string name, Input<string> id, SpringCloudCustomizedAcceleratorState? state, CustomResourceOptions? opts = null)
public static SpringCloudCustomizedAccelerator get(String name, Output<String> id, SpringCloudCustomizedAcceleratorState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- List<string>
Specifies a list of accelerator tags.
- Description string
Specifies the description of the Spring Cloud Customized Accelerator.
- Display
Name string Specifies the display name of the Spring Cloud Customized Accelerator..
- Git
Repository SpringCloud Customized Accelerator Git Repository A
git_repository
block as defined below.- Icon
Url string Specifies the icon URL of the Spring Cloud Customized Accelerator..
- Name string
The name which should be used for this Spring Cloud Customized Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- Spring
Cloud stringAccelerator Id The ID of the Spring Cloud Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- []string
Specifies a list of accelerator tags.
- Description string
Specifies the description of the Spring Cloud Customized Accelerator.
- Display
Name string Specifies the display name of the Spring Cloud Customized Accelerator..
- Git
Repository SpringCloud Customized Accelerator Git Repository Args A
git_repository
block as defined below.- Icon
Url string Specifies the icon URL of the Spring Cloud Customized Accelerator..
- Name string
The name which should be used for this Spring Cloud Customized Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- Spring
Cloud stringAccelerator Id The ID of the Spring Cloud Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- List<String>
Specifies a list of accelerator tags.
- description String
Specifies the description of the Spring Cloud Customized Accelerator.
- display
Name String Specifies the display name of the Spring Cloud Customized Accelerator..
- git
Repository SpringCloud Customized Accelerator Git Repository A
git_repository
block as defined below.- icon
Url String Specifies the icon URL of the Spring Cloud Customized Accelerator..
- name String
The name which should be used for this Spring Cloud Customized Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- spring
Cloud StringAccelerator Id The ID of the Spring Cloud Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- string[]
Specifies a list of accelerator tags.
- description string
Specifies the description of the Spring Cloud Customized Accelerator.
- display
Name string Specifies the display name of the Spring Cloud Customized Accelerator..
- git
Repository SpringCloud Customized Accelerator Git Repository A
git_repository
block as defined below.- icon
Url string Specifies the icon URL of the Spring Cloud Customized Accelerator..
- name string
The name which should be used for this Spring Cloud Customized Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- spring
Cloud stringAccelerator Id The ID of the Spring Cloud Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- Sequence[str]
Specifies a list of accelerator tags.
- description str
Specifies the description of the Spring Cloud Customized Accelerator.
- display_
name str Specifies the display name of the Spring Cloud Customized Accelerator..
- git_
repository SpringCloud Customized Accelerator Git Repository Args A
git_repository
block as defined below.- icon_
url str Specifies the icon URL of the Spring Cloud Customized Accelerator..
- name str
The name which should be used for this Spring Cloud Customized Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- spring_
cloud_ straccelerator_ id The ID of the Spring Cloud Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- List<String>
Specifies a list of accelerator tags.
- description String
Specifies the description of the Spring Cloud Customized Accelerator.
- display
Name String Specifies the display name of the Spring Cloud Customized Accelerator..
- git
Repository Property Map A
git_repository
block as defined below.- icon
Url String Specifies the icon URL of the Spring Cloud Customized Accelerator..
- name String
The name which should be used for this Spring Cloud Customized Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- spring
Cloud StringAccelerator Id The ID of the Spring Cloud Accelerator. Changing this forces a new Spring Cloud Customized Accelerator to be created.
Supporting Types
SpringCloudCustomizedAcceleratorGitRepository, SpringCloudCustomizedAcceleratorGitRepositoryArgs
- Url string
Specifies Git repository URL for the accelerator.
- Basic
Auth SpringCloud Customized Accelerator Git Repository Basic Auth A
basic_auth
block as defined below. Conflicts withgit_repository.0.ssh_auth
. Changing this forces a new Spring Cloud Customized Accelerator to be created.- Branch string
Specifies the Git repository branch to be used.
- Ca
Certificate stringId Specifies the ID of the CA Spring Cloud Certificate for https URL of Git repository.
- Commit string
Specifies the Git repository commit to be used.
- Git
Tag string Specifies the Git repository tag to be used.
- Interval
In intSeconds Specifies the interval for checking for updates to Git or image repository. It should be greater than 10.
- Ssh
Auth SpringCloud Customized Accelerator Git Repository Ssh Auth A
ssh_auth
block as defined below. Conflicts withgit_repository.0.basic_auth
. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- Url string
Specifies Git repository URL for the accelerator.
- Basic
Auth SpringCloud Customized Accelerator Git Repository Basic Auth A
basic_auth
block as defined below. Conflicts withgit_repository.0.ssh_auth
. Changing this forces a new Spring Cloud Customized Accelerator to be created.- Branch string
Specifies the Git repository branch to be used.
- Ca
Certificate stringId Specifies the ID of the CA Spring Cloud Certificate for https URL of Git repository.
- Commit string
Specifies the Git repository commit to be used.
- Git
Tag string Specifies the Git repository tag to be used.
- Interval
In intSeconds Specifies the interval for checking for updates to Git or image repository. It should be greater than 10.
- Ssh
Auth SpringCloud Customized Accelerator Git Repository Ssh Auth A
ssh_auth
block as defined below. Conflicts withgit_repository.0.basic_auth
. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- url String
Specifies Git repository URL for the accelerator.
- basic
Auth SpringCloud Customized Accelerator Git Repository Basic Auth A
basic_auth
block as defined below. Conflicts withgit_repository.0.ssh_auth
. Changing this forces a new Spring Cloud Customized Accelerator to be created.- branch String
Specifies the Git repository branch to be used.
- ca
Certificate StringId Specifies the ID of the CA Spring Cloud Certificate for https URL of Git repository.
- commit String
Specifies the Git repository commit to be used.
- git
Tag String Specifies the Git repository tag to be used.
- interval
In IntegerSeconds Specifies the interval for checking for updates to Git or image repository. It should be greater than 10.
- ssh
Auth SpringCloud Customized Accelerator Git Repository Ssh Auth A
ssh_auth
block as defined below. Conflicts withgit_repository.0.basic_auth
. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- url string
Specifies Git repository URL for the accelerator.
- basic
Auth SpringCloud Customized Accelerator Git Repository Basic Auth A
basic_auth
block as defined below. Conflicts withgit_repository.0.ssh_auth
. Changing this forces a new Spring Cloud Customized Accelerator to be created.- branch string
Specifies the Git repository branch to be used.
- ca
Certificate stringId Specifies the ID of the CA Spring Cloud Certificate for https URL of Git repository.
- commit string
Specifies the Git repository commit to be used.
- git
Tag string Specifies the Git repository tag to be used.
- interval
In numberSeconds Specifies the interval for checking for updates to Git or image repository. It should be greater than 10.
- ssh
Auth SpringCloud Customized Accelerator Git Repository Ssh Auth A
ssh_auth
block as defined below. Conflicts withgit_repository.0.basic_auth
. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- url str
Specifies Git repository URL for the accelerator.
- basic_
auth SpringCloud Customized Accelerator Git Repository Basic Auth A
basic_auth
block as defined below. Conflicts withgit_repository.0.ssh_auth
. Changing this forces a new Spring Cloud Customized Accelerator to be created.- branch str
Specifies the Git repository branch to be used.
- ca_
certificate_ strid Specifies the ID of the CA Spring Cloud Certificate for https URL of Git repository.
- commit str
Specifies the Git repository commit to be used.
- git_
tag str Specifies the Git repository tag to be used.
- interval_
in_ intseconds Specifies the interval for checking for updates to Git or image repository. It should be greater than 10.
- ssh_
auth SpringCloud Customized Accelerator Git Repository Ssh Auth A
ssh_auth
block as defined below. Conflicts withgit_repository.0.basic_auth
. Changing this forces a new Spring Cloud Customized Accelerator to be created.
- url String
Specifies Git repository URL for the accelerator.
- basic
Auth Property Map A
basic_auth
block as defined below. Conflicts withgit_repository.0.ssh_auth
. Changing this forces a new Spring Cloud Customized Accelerator to be created.- branch String
Specifies the Git repository branch to be used.
- ca
Certificate StringId Specifies the ID of the CA Spring Cloud Certificate for https URL of Git repository.
- commit String
Specifies the Git repository commit to be used.
- git
Tag String Specifies the Git repository tag to be used.
- interval
In NumberSeconds Specifies the interval for checking for updates to Git or image repository. It should be greater than 10.
- ssh
Auth Property Map A
ssh_auth
block as defined below. Conflicts withgit_repository.0.basic_auth
. Changing this forces a new Spring Cloud Customized Accelerator to be created.
SpringCloudCustomizedAcceleratorGitRepositoryBasicAuth, SpringCloudCustomizedAcceleratorGitRepositoryBasicAuthArgs
SpringCloudCustomizedAcceleratorGitRepositorySshAuth, SpringCloudCustomizedAcceleratorGitRepositorySshAuthArgs
- Private
Key string Specifies the Private SSH Key of git repository basic auth.
- Host
Key string Specifies the Public SSH Key of git repository basic auth.
- Host
Key stringAlgorithm Specifies the SSH Key algorithm of git repository basic auth.
- Private
Key string Specifies the Private SSH Key of git repository basic auth.
- Host
Key string Specifies the Public SSH Key of git repository basic auth.
- Host
Key stringAlgorithm Specifies the SSH Key algorithm of git repository basic auth.
- private
Key String Specifies the Private SSH Key of git repository basic auth.
- host
Key String Specifies the Public SSH Key of git repository basic auth.
- host
Key StringAlgorithm Specifies the SSH Key algorithm of git repository basic auth.
- private
Key string Specifies the Private SSH Key of git repository basic auth.
- host
Key string Specifies the Public SSH Key of git repository basic auth.
- host
Key stringAlgorithm Specifies the SSH Key algorithm of git repository basic auth.
- private_
key str Specifies the Private SSH Key of git repository basic auth.
- host_
key str Specifies the Public SSH Key of git repository basic auth.
- host_
key_ stralgorithm Specifies the SSH Key algorithm of git repository basic auth.
- private
Key String Specifies the Private SSH Key of git repository basic auth.
- host
Key String Specifies the Public SSH Key of git repository basic auth.
- host
Key StringAlgorithm Specifies the SSH Key algorithm of git repository basic auth.
Import
Spring Cloud Customized Accelerators can be imported using the resource id
, e.g.
$ pulumi import azure:appplatform/springCloudCustomizedAccelerator:SpringCloudCustomizedAccelerator example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/resGroup1/providers/Microsoft.AppPlatform/Spring/spring1/applicationAccelerators/default/customizedAccelerators/customizedAccelerator1
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.