1. Packages
  2. Azure Native v2
  3. API Docs
  4. appplatform
  5. CustomizedAccelerator
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.appplatform.CustomizedAccelerator

Explore with Pulumi AI

Customized accelerator resource Azure REST API version: 2023-05-01-preview.

Other available API versions: 2023-07-01-preview, 2023-09-01-preview, 2023-11-01-preview, 2023-12-01, 2024-01-01-preview, 2024-05-01-preview.

Example Usage

CustomizedAccelerators_CreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var customizedAccelerator = new AzureNative.AppPlatform.CustomizedAccelerator("customizedAccelerator", new()
    {
        ApplicationAcceleratorName = "default",
        CustomizedAcceleratorName = "acc-name",
        Properties = new AzureNative.AppPlatform.Inputs.CustomizedAcceleratorPropertiesArgs
        {
            AcceleratorTags = new[]
            {
                "tag-a",
                "tag-b",
            },
            Description = "acc-desc",
            DisplayName = "acc-name",
            GitRepository = new AzureNative.AppPlatform.Inputs.AcceleratorGitRepositoryArgs
            {
                AuthSetting = new AzureNative.AppPlatform.Inputs.AcceleratorSshSettingArgs
                {
                    AuthType = "SSH",
                    HostKey = "git-auth-hostkey",
                    HostKeyAlgorithm = "git-auth-algorithm",
                    PrivateKey = "git-auth-privatekey",
                },
                Branch = "git-branch",
                Commit = "12345",
                GitTag = "git-tag",
                IntervalInSeconds = 70,
                Url = "git-url",
            },
            IconUrl = "acc-icon",
        },
        ResourceGroupName = "myResourceGroup",
        ServiceName = "myservice",
        Sku = new AzureNative.AppPlatform.Inputs.SkuArgs
        {
            Capacity = 2,
            Name = "E0",
            Tier = "Enterprise",
        },
    });

});
Copy
package main

import (
	appplatform "github.com/pulumi/pulumi-azure-native-sdk/appplatform/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := appplatform.NewCustomizedAccelerator(ctx, "customizedAccelerator", &appplatform.CustomizedAcceleratorArgs{
			ApplicationAcceleratorName: pulumi.String("default"),
			CustomizedAcceleratorName:  pulumi.String("acc-name"),
			Properties: &appplatform.CustomizedAcceleratorPropertiesArgs{
				AcceleratorTags: pulumi.StringArray{
					pulumi.String("tag-a"),
					pulumi.String("tag-b"),
				},
				Description: pulumi.String("acc-desc"),
				DisplayName: pulumi.String("acc-name"),
				GitRepository: &appplatform.AcceleratorGitRepositoryArgs{
					AuthSetting: appplatform.AcceleratorSshSetting{
						AuthType:         "SSH",
						HostKey:          "git-auth-hostkey",
						HostKeyAlgorithm: "git-auth-algorithm",
						PrivateKey:       "git-auth-privatekey",
					},
					Branch:            pulumi.String("git-branch"),
					Commit:            pulumi.String("12345"),
					GitTag:            pulumi.String("git-tag"),
					IntervalInSeconds: pulumi.Int(70),
					Url:               pulumi.String("git-url"),
				},
				IconUrl: pulumi.String("acc-icon"),
			},
			ResourceGroupName: pulumi.String("myResourceGroup"),
			ServiceName:       pulumi.String("myservice"),
			Sku: &appplatform.SkuArgs{
				Capacity: pulumi.Int(2),
				Name:     pulumi.String("E0"),
				Tier:     pulumi.String("Enterprise"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.appplatform.CustomizedAccelerator;
import com.pulumi.azurenative.appplatform.CustomizedAcceleratorArgs;
import com.pulumi.azurenative.appplatform.inputs.CustomizedAcceleratorPropertiesArgs;
import com.pulumi.azurenative.appplatform.inputs.AcceleratorGitRepositoryArgs;
import com.pulumi.azurenative.appplatform.inputs.SkuArgs;
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 customizedAccelerator = new CustomizedAccelerator("customizedAccelerator", CustomizedAcceleratorArgs.builder()
            .applicationAcceleratorName("default")
            .customizedAcceleratorName("acc-name")
            .properties(CustomizedAcceleratorPropertiesArgs.builder()
                .acceleratorTags(                
                    "tag-a",
                    "tag-b")
                .description("acc-desc")
                .displayName("acc-name")
                .gitRepository(AcceleratorGitRepositoryArgs.builder()
                    .authSetting(AcceleratorBasicAuthSettingArgs.builder()
                        .authType("SSH")
                        .hostKey("git-auth-hostkey")
                        .hostKeyAlgorithm("git-auth-algorithm")
                        .privateKey("git-auth-privatekey")
                        .build())
                    .branch("git-branch")
                    .commit("12345")
                    .gitTag("git-tag")
                    .intervalInSeconds(70)
                    .url("git-url")
                    .build())
                .iconUrl("acc-icon")
                .build())
            .resourceGroupName("myResourceGroup")
            .serviceName("myservice")
            .sku(SkuArgs.builder()
                .capacity(2)
                .name("E0")
                .tier("Enterprise")
                .build())
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const customizedAccelerator = new azure_native.appplatform.CustomizedAccelerator("customizedAccelerator", {
    applicationAcceleratorName: "default",
    customizedAcceleratorName: "acc-name",
    properties: {
        acceleratorTags: [
            "tag-a",
            "tag-b",
        ],
        description: "acc-desc",
        displayName: "acc-name",
        gitRepository: {
            authSetting: {
                authType: "SSH",
                hostKey: "git-auth-hostkey",
                hostKeyAlgorithm: "git-auth-algorithm",
                privateKey: "git-auth-privatekey",
            },
            branch: "git-branch",
            commit: "12345",
            gitTag: "git-tag",
            intervalInSeconds: 70,
            url: "git-url",
        },
        iconUrl: "acc-icon",
    },
    resourceGroupName: "myResourceGroup",
    serviceName: "myservice",
    sku: {
        capacity: 2,
        name: "E0",
        tier: "Enterprise",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

customized_accelerator = azure_native.appplatform.CustomizedAccelerator("customizedAccelerator",
    application_accelerator_name="default",
    customized_accelerator_name="acc-name",
    properties={
        "accelerator_tags": [
            "tag-a",
            "tag-b",
        ],
        "description": "acc-desc",
        "display_name": "acc-name",
        "git_repository": {
            "auth_setting": {
                "auth_type": "SSH",
                "host_key": "git-auth-hostkey",
                "host_key_algorithm": "git-auth-algorithm",
                "private_key": "git-auth-privatekey",
            },
            "branch": "git-branch",
            "commit": "12345",
            "git_tag": "git-tag",
            "interval_in_seconds": 70,
            "url": "git-url",
        },
        "icon_url": "acc-icon",
    },
    resource_group_name="myResourceGroup",
    service_name="myservice",
    sku={
        "capacity": 2,
        "name": "E0",
        "tier": "Enterprise",
    })
Copy
resources:
  customizedAccelerator:
    type: azure-native:appplatform:CustomizedAccelerator
    properties:
      applicationAcceleratorName: default
      customizedAcceleratorName: acc-name
      properties:
        acceleratorTags:
          - tag-a
          - tag-b
        description: acc-desc
        displayName: acc-name
        gitRepository:
          authSetting:
            authType: SSH
            hostKey: git-auth-hostkey
            hostKeyAlgorithm: git-auth-algorithm
            privateKey: git-auth-privatekey
          branch: git-branch
          commit: '12345'
          gitTag: git-tag
          intervalInSeconds: 70
          url: git-url
        iconUrl: acc-icon
      resourceGroupName: myResourceGroup
      serviceName: myservice
      sku:
        capacity: 2
        name: E0
        tier: Enterprise
Copy

Create CustomizedAccelerator Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new CustomizedAccelerator(name: string, args: CustomizedAcceleratorArgs, opts?: CustomResourceOptions);
@overload
def CustomizedAccelerator(resource_name: str,
                          args: CustomizedAcceleratorArgs,
                          opts: Optional[ResourceOptions] = None)

@overload
def CustomizedAccelerator(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          application_accelerator_name: Optional[str] = None,
                          resource_group_name: Optional[str] = None,
                          service_name: Optional[str] = None,
                          customized_accelerator_name: Optional[str] = None,
                          properties: Optional[CustomizedAcceleratorPropertiesArgs] = None,
                          sku: Optional[SkuArgs] = None)
func NewCustomizedAccelerator(ctx *Context, name string, args CustomizedAcceleratorArgs, opts ...ResourceOption) (*CustomizedAccelerator, error)
public CustomizedAccelerator(string name, CustomizedAcceleratorArgs args, CustomResourceOptions? opts = null)
public CustomizedAccelerator(String name, CustomizedAcceleratorArgs args)
public CustomizedAccelerator(String name, CustomizedAcceleratorArgs args, CustomResourceOptions options)
type: azure-native:appplatform:CustomizedAccelerator
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CustomizedAcceleratorArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CustomizedAcceleratorArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CustomizedAcceleratorArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CustomizedAcceleratorArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CustomizedAcceleratorArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var customizedAcceleratorResource = new AzureNative.Appplatform.CustomizedAccelerator("customizedAcceleratorResource", new()
{
    ApplicationAcceleratorName = "string",
    ResourceGroupName = "string",
    ServiceName = "string",
    CustomizedAcceleratorName = "string",
    Properties = 
    {
        { "gitRepository", 
        {
            { "authSetting", 
            {
                { "authType", "BasicAuth" },
                { "username", "string" },
                { "caCertResourceId", "string" },
                { "password", "string" },
            } },
            { "url", "string" },
            { "branch", "string" },
            { "commit", "string" },
            { "gitTag", "string" },
            { "intervalInSeconds", 0 },
        } },
        { "acceleratorTags", new[]
        {
            "string",
        } },
        { "description", "string" },
        { "displayName", "string" },
        { "iconUrl", "string" },
    },
    Sku = 
    {
        { "capacity", 0 },
        { "name", "string" },
        { "tier", "string" },
    },
});
Copy
example, err := appplatform.NewCustomizedAccelerator(ctx, "customizedAcceleratorResource", &appplatform.CustomizedAcceleratorArgs{
	ApplicationAcceleratorName: "string",
	ResourceGroupName:          "string",
	ServiceName:                "string",
	CustomizedAcceleratorName:  "string",
	Properties: map[string]interface{}{
		"gitRepository": map[string]interface{}{
			"authSetting": map[string]interface{}{
				"authType":         "BasicAuth",
				"username":         "string",
				"caCertResourceId": "string",
				"password":         "string",
			},
			"url":               "string",
			"branch":            "string",
			"commit":            "string",
			"gitTag":            "string",
			"intervalInSeconds": 0,
		},
		"acceleratorTags": []string{
			"string",
		},
		"description": "string",
		"displayName": "string",
		"iconUrl":     "string",
	},
	Sku: map[string]interface{}{
		"capacity": 0,
		"name":     "string",
		"tier":     "string",
	},
})
Copy
var customizedAcceleratorResource = new CustomizedAccelerator("customizedAcceleratorResource", CustomizedAcceleratorArgs.builder()
    .applicationAcceleratorName("string")
    .resourceGroupName("string")
    .serviceName("string")
    .customizedAcceleratorName("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
customized_accelerator_resource = azure_native.appplatform.CustomizedAccelerator("customizedAcceleratorResource",
    application_accelerator_name=string,
    resource_group_name=string,
    service_name=string,
    customized_accelerator_name=string,
    properties={
        gitRepository: {
            authSetting: {
                authType: BasicAuth,
                username: string,
                caCertResourceId: string,
                password: string,
            },
            url: string,
            branch: string,
            commit: string,
            gitTag: string,
            intervalInSeconds: 0,
        },
        acceleratorTags: [string],
        description: string,
        displayName: string,
        iconUrl: string,
    },
    sku={
        capacity: 0,
        name: string,
        tier: string,
    })
Copy
const customizedAcceleratorResource = new azure_native.appplatform.CustomizedAccelerator("customizedAcceleratorResource", {
    applicationAcceleratorName: "string",
    resourceGroupName: "string",
    serviceName: "string",
    customizedAcceleratorName: "string",
    properties: {
        gitRepository: {
            authSetting: {
                authType: "BasicAuth",
                username: "string",
                caCertResourceId: "string",
                password: "string",
            },
            url: "string",
            branch: "string",
            commit: "string",
            gitTag: "string",
            intervalInSeconds: 0,
        },
        acceleratorTags: ["string"],
        description: "string",
        displayName: "string",
        iconUrl: "string",
    },
    sku: {
        capacity: 0,
        name: "string",
        tier: "string",
    },
});
Copy
type: azure-native:appplatform:CustomizedAccelerator
properties:
    applicationAcceleratorName: string
    customizedAcceleratorName: string
    properties:
        acceleratorTags:
            - string
        description: string
        displayName: string
        gitRepository:
            authSetting:
                authType: BasicAuth
                caCertResourceId: string
                password: string
                username: string
            branch: string
            commit: string
            gitTag: string
            intervalInSeconds: 0
            url: string
        iconUrl: string
    resourceGroupName: string
    serviceName: string
    sku:
        capacity: 0
        name: string
        tier: string
Copy

CustomizedAccelerator Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The CustomizedAccelerator resource accepts the following input properties:

ApplicationAcceleratorName
This property is required.
Changes to this property will trigger replacement.
string
The name of the application accelerator.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
ServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Service resource.
CustomizedAcceleratorName Changes to this property will trigger replacement. string
The name of the customized accelerator.
Properties Pulumi.AzureNative.AppPlatform.Inputs.CustomizedAcceleratorProperties
Customized accelerator properties payload
Sku Pulumi.AzureNative.AppPlatform.Inputs.Sku
Sku of the customized accelerator resource
ApplicationAcceleratorName
This property is required.
Changes to this property will trigger replacement.
string
The name of the application accelerator.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
ServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Service resource.
CustomizedAcceleratorName Changes to this property will trigger replacement. string
The name of the customized accelerator.
Properties CustomizedAcceleratorPropertiesArgs
Customized accelerator properties payload
Sku SkuArgs
Sku of the customized accelerator resource
applicationAcceleratorName
This property is required.
Changes to this property will trigger replacement.
String
The name of the application accelerator.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
serviceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Service resource.
customizedAcceleratorName Changes to this property will trigger replacement. String
The name of the customized accelerator.
properties CustomizedAcceleratorProperties
Customized accelerator properties payload
sku Sku
Sku of the customized accelerator resource
applicationAcceleratorName
This property is required.
Changes to this property will trigger replacement.
string
The name of the application accelerator.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
serviceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Service resource.
customizedAcceleratorName Changes to this property will trigger replacement. string
The name of the customized accelerator.
properties CustomizedAcceleratorProperties
Customized accelerator properties payload
sku Sku
Sku of the customized accelerator resource
application_accelerator_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the application accelerator.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
service_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Service resource.
customized_accelerator_name Changes to this property will trigger replacement. str
The name of the customized accelerator.
properties CustomizedAcceleratorPropertiesArgs
Customized accelerator properties payload
sku SkuArgs
Sku of the customized accelerator resource
applicationAcceleratorName
This property is required.
Changes to this property will trigger replacement.
String
The name of the application accelerator.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
serviceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Service resource.
customizedAcceleratorName Changes to this property will trigger replacement. String
The name of the customized accelerator.
properties Property Map
Customized accelerator properties payload
sku Property Map
Sku of the customized accelerator resource

Outputs

All input properties are implicitly available as output properties. Additionally, the CustomizedAccelerator resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource.
SystemData Pulumi.AzureNative.AppPlatform.Outputs.SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The type of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource.
SystemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The type of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type String
The type of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource.
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type string
The type of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource.
system_data SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type str
The type of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource.
systemData Property Map
Metadata pertaining to creation and last modification of the resource.
type String
The type of the resource.

Supporting Types

AcceleratorBasicAuthSetting
, AcceleratorBasicAuthSettingArgs

Username This property is required. string
Username of git repository basic auth.
CaCertResourceId string
Resource Id of CA certificate for https URL of Git repository.
Password string
Password of git repository basic auth.
Username This property is required. string
Username of git repository basic auth.
CaCertResourceId string
Resource Id of CA certificate for https URL of Git repository.
Password string
Password of git repository basic auth.
username This property is required. String
Username of git repository basic auth.
caCertResourceId String
Resource Id of CA certificate for https URL of Git repository.
password String
Password of git repository basic auth.
username This property is required. string
Username of git repository basic auth.
caCertResourceId string
Resource Id of CA certificate for https URL of Git repository.
password string
Password of git repository basic auth.
username This property is required. str
Username of git repository basic auth.
ca_cert_resource_id str
Resource Id of CA certificate for https URL of Git repository.
password str
Password of git repository basic auth.
username This property is required. String
Username of git repository basic auth.
caCertResourceId String
Resource Id of CA certificate for https URL of Git repository.
password String
Password of git repository basic auth.

AcceleratorBasicAuthSettingResponse
, AcceleratorBasicAuthSettingResponseArgs

Username This property is required. string
Username of git repository basic auth.
CaCertResourceId string
Resource Id of CA certificate for https URL of Git repository.
Username This property is required. string
Username of git repository basic auth.
CaCertResourceId string
Resource Id of CA certificate for https URL of Git repository.
username This property is required. String
Username of git repository basic auth.
caCertResourceId String
Resource Id of CA certificate for https URL of Git repository.
username This property is required. string
Username of git repository basic auth.
caCertResourceId string
Resource Id of CA certificate for https URL of Git repository.
username This property is required. str
Username of git repository basic auth.
ca_cert_resource_id str
Resource Id of CA certificate for https URL of Git repository.
username This property is required. String
Username of git repository basic auth.
caCertResourceId String
Resource Id of CA certificate for https URL of Git repository.

AcceleratorGitRepository
, AcceleratorGitRepositoryArgs

AuthSetting This property is required. Pulumi.AzureNative.AppPlatform.Inputs.AcceleratorBasicAuthSetting | Pulumi.AzureNative.AppPlatform.Inputs.AcceleratorPublicSetting | Pulumi.AzureNative.AppPlatform.Inputs.AcceleratorSshSetting
Properties of the auth setting payload.
Url This property is required. string
Git repository URL for the accelerator.
Branch string
Git repository branch to be used.
Commit string
Git repository commit to be used.
GitTag string
Git repository tag to be used.
IntervalInSeconds int
Interval for checking for updates to Git or image repository.
AuthSetting This property is required. AcceleratorBasicAuthSetting | AcceleratorPublicSetting | AcceleratorSshSetting
Properties of the auth setting payload.
Url This property is required. string
Git repository URL for the accelerator.
Branch string
Git repository branch to be used.
Commit string
Git repository commit to be used.
GitTag string
Git repository tag to be used.
IntervalInSeconds int
Interval for checking for updates to Git or image repository.
authSetting This property is required. AcceleratorBasicAuthSetting | AcceleratorPublicSetting | AcceleratorSshSetting
Properties of the auth setting payload.
url This property is required. String
Git repository URL for the accelerator.
branch String
Git repository branch to be used.
commit String
Git repository commit to be used.
gitTag String
Git repository tag to be used.
intervalInSeconds Integer
Interval for checking for updates to Git or image repository.
authSetting This property is required. AcceleratorBasicAuthSetting | AcceleratorPublicSetting | AcceleratorSshSetting
Properties of the auth setting payload.
url This property is required. string
Git repository URL for the accelerator.
branch string
Git repository branch to be used.
commit string
Git repository commit to be used.
gitTag string
Git repository tag to be used.
intervalInSeconds number
Interval for checking for updates to Git or image repository.
auth_setting This property is required. AcceleratorBasicAuthSetting | AcceleratorPublicSetting | AcceleratorSshSetting
Properties of the auth setting payload.
url This property is required. str
Git repository URL for the accelerator.
branch str
Git repository branch to be used.
commit str
Git repository commit to be used.
git_tag str
Git repository tag to be used.
interval_in_seconds int
Interval for checking for updates to Git or image repository.
authSetting This property is required. Property Map | Property Map | Property Map
Properties of the auth setting payload.
url This property is required. String
Git repository URL for the accelerator.
branch String
Git repository branch to be used.
commit String
Git repository commit to be used.
gitTag String
Git repository tag to be used.
intervalInSeconds Number
Interval for checking for updates to Git or image repository.

AcceleratorGitRepositoryResponse
, AcceleratorGitRepositoryResponseArgs

AuthSetting This property is required. Pulumi.AzureNative.AppPlatform.Inputs.AcceleratorBasicAuthSettingResponse | Pulumi.AzureNative.AppPlatform.Inputs.AcceleratorPublicSettingResponse | Pulumi.AzureNative.AppPlatform.Inputs.AcceleratorSshSettingResponse
Properties of the auth setting payload.
Url This property is required. string
Git repository URL for the accelerator.
Branch string
Git repository branch to be used.
Commit string
Git repository commit to be used.
GitTag string
Git repository tag to be used.
IntervalInSeconds int
Interval for checking for updates to Git or image repository.
AuthSetting This property is required. AcceleratorBasicAuthSettingResponse | AcceleratorPublicSettingResponse | AcceleratorSshSettingResponse
Properties of the auth setting payload.
Url This property is required. string
Git repository URL for the accelerator.
Branch string
Git repository branch to be used.
Commit string
Git repository commit to be used.
GitTag string
Git repository tag to be used.
IntervalInSeconds int
Interval for checking for updates to Git or image repository.
authSetting This property is required. AcceleratorBasicAuthSettingResponse | AcceleratorPublicSettingResponse | AcceleratorSshSettingResponse
Properties of the auth setting payload.
url This property is required. String
Git repository URL for the accelerator.
branch String
Git repository branch to be used.
commit String
Git repository commit to be used.
gitTag String
Git repository tag to be used.
intervalInSeconds Integer
Interval for checking for updates to Git or image repository.
authSetting This property is required. AcceleratorBasicAuthSettingResponse | AcceleratorPublicSettingResponse | AcceleratorSshSettingResponse
Properties of the auth setting payload.
url This property is required. string
Git repository URL for the accelerator.
branch string
Git repository branch to be used.
commit string
Git repository commit to be used.
gitTag string
Git repository tag to be used.
intervalInSeconds number
Interval for checking for updates to Git or image repository.
auth_setting This property is required. AcceleratorBasicAuthSettingResponse | AcceleratorPublicSettingResponse | AcceleratorSshSettingResponse
Properties of the auth setting payload.
url This property is required. str
Git repository URL for the accelerator.
branch str
Git repository branch to be used.
commit str
Git repository commit to be used.
git_tag str
Git repository tag to be used.
interval_in_seconds int
Interval for checking for updates to Git or image repository.
authSetting This property is required. Property Map | Property Map | Property Map
Properties of the auth setting payload.
url This property is required. String
Git repository URL for the accelerator.
branch String
Git repository branch to be used.
commit String
Git repository commit to be used.
gitTag String
Git repository tag to be used.
intervalInSeconds Number
Interval for checking for updates to Git or image repository.

AcceleratorPublicSetting
, AcceleratorPublicSettingArgs

CaCertResourceId string
Resource Id of CA certificate for https URL of Git repository.
CaCertResourceId string
Resource Id of CA certificate for https URL of Git repository.
caCertResourceId String
Resource Id of CA certificate for https URL of Git repository.
caCertResourceId string
Resource Id of CA certificate for https URL of Git repository.
ca_cert_resource_id str
Resource Id of CA certificate for https URL of Git repository.
caCertResourceId String
Resource Id of CA certificate for https URL of Git repository.

AcceleratorPublicSettingResponse
, AcceleratorPublicSettingResponseArgs

CaCertResourceId string
Resource Id of CA certificate for https URL of Git repository.
CaCertResourceId string
Resource Id of CA certificate for https URL of Git repository.
caCertResourceId String
Resource Id of CA certificate for https URL of Git repository.
caCertResourceId string
Resource Id of CA certificate for https URL of Git repository.
ca_cert_resource_id str
Resource Id of CA certificate for https URL of Git repository.
caCertResourceId String
Resource Id of CA certificate for https URL of Git repository.

AcceleratorSshSetting
, AcceleratorSshSettingArgs

HostKey string
Public SSH Key of git repository.
HostKeyAlgorithm string
SSH Key algorithm of git repository.
PrivateKey string
Private SSH Key algorithm of git repository.
HostKey string
Public SSH Key of git repository.
HostKeyAlgorithm string
SSH Key algorithm of git repository.
PrivateKey string
Private SSH Key algorithm of git repository.
hostKey String
Public SSH Key of git repository.
hostKeyAlgorithm String
SSH Key algorithm of git repository.
privateKey String
Private SSH Key algorithm of git repository.
hostKey string
Public SSH Key of git repository.
hostKeyAlgorithm string
SSH Key algorithm of git repository.
privateKey string
Private SSH Key algorithm of git repository.
host_key str
Public SSH Key of git repository.
host_key_algorithm str
SSH Key algorithm of git repository.
private_key str
Private SSH Key algorithm of git repository.
hostKey String
Public SSH Key of git repository.
hostKeyAlgorithm String
SSH Key algorithm of git repository.
privateKey String
Private SSH Key algorithm of git repository.

AcceleratorSshSettingResponse
, AcceleratorSshSettingResponseArgs

CustomizedAcceleratorProperties
, CustomizedAcceleratorPropertiesArgs

GitRepository This property is required. AcceleratorGitRepository
AcceleratorTags []string
Description string
DisplayName string
IconUrl string
gitRepository This property is required. AcceleratorGitRepository
acceleratorTags List<String>
description String
displayName String
iconUrl String
gitRepository This property is required. AcceleratorGitRepository
acceleratorTags string[]
description string
displayName string
iconUrl string
gitRepository This property is required. Property Map
acceleratorTags List<String>
description String
displayName String
iconUrl String

CustomizedAcceleratorPropertiesResponse
, CustomizedAcceleratorPropertiesResponseArgs

GitRepository This property is required. Pulumi.AzureNative.AppPlatform.Inputs.AcceleratorGitRepositoryResponse
ProvisioningState This property is required. string
State of the customized accelerator.
AcceleratorTags List<string>
Description string
DisplayName string
IconUrl string
GitRepository This property is required. AcceleratorGitRepositoryResponse
ProvisioningState This property is required. string
State of the customized accelerator.
AcceleratorTags []string
Description string
DisplayName string
IconUrl string
gitRepository This property is required. AcceleratorGitRepositoryResponse
provisioningState This property is required. String
State of the customized accelerator.
acceleratorTags List<String>
description String
displayName String
iconUrl String
gitRepository This property is required. AcceleratorGitRepositoryResponse
provisioningState This property is required. string
State of the customized accelerator.
acceleratorTags string[]
description string
displayName string
iconUrl string
git_repository This property is required. AcceleratorGitRepositoryResponse
provisioning_state This property is required. str
State of the customized accelerator.
accelerator_tags Sequence[str]
description str
display_name str
icon_url str
gitRepository This property is required. Property Map
provisioningState This property is required. String
State of the customized accelerator.
acceleratorTags List<String>
description String
displayName String
iconUrl String

Sku
, SkuArgs

Capacity int
Current capacity of the target resource
Name string
Name of the Sku
Tier string
Tier of the Sku
Capacity int
Current capacity of the target resource
Name string
Name of the Sku
Tier string
Tier of the Sku
capacity Integer
Current capacity of the target resource
name String
Name of the Sku
tier String
Tier of the Sku
capacity number
Current capacity of the target resource
name string
Name of the Sku
tier string
Tier of the Sku
capacity int
Current capacity of the target resource
name str
Name of the Sku
tier str
Tier of the Sku
capacity Number
Current capacity of the target resource
name String
Name of the Sku
tier String
Tier of the Sku

SkuResponse
, SkuResponseArgs

Capacity int
Current capacity of the target resource
Name string
Name of the Sku
Tier string
Tier of the Sku
Capacity int
Current capacity of the target resource
Name string
Name of the Sku
Tier string
Tier of the Sku
capacity Integer
Current capacity of the target resource
name String
Name of the Sku
tier String
Tier of the Sku
capacity number
Current capacity of the target resource
name string
Name of the Sku
tier string
Tier of the Sku
capacity int
Current capacity of the target resource
name str
Name of the Sku
tier str
Tier of the Sku
capacity Number
Current capacity of the target resource
name String
Name of the Sku
tier String
Tier of the Sku

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource modification (UTC).
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource modification (UTC).
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource modification (UTC).
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource modification (UTC).
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource modification (UTC).
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource modification (UTC).
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:appplatform:CustomizedAccelerator default /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/applicationAccelerators/{applicationAcceleratorName}/customizedAccelerators/{customizedAcceleratorName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0