1. Packages
  2. Azure Native
  3. API Docs
  4. appplatform
  5. CustomizedAccelerator
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi

azure-native.appplatform.CustomizedAccelerator

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi

    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",
            },
        });
    
    });
    
    package main
    
    import (
    	"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
    	})
    }
    
    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());
    
        }
    }
    
    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=azure_native.appplatform.CustomizedAcceleratorPropertiesArgs(
            accelerator_tags=[
                "tag-a",
                "tag-b",
            ],
            description="acc-desc",
            display_name="acc-name",
            git_repository=azure_native.appplatform.AcceleratorGitRepositoryArgs(
                auth_setting=azure_native.appplatform.AcceleratorSshSettingArgs(
                    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=azure_native.appplatform.SkuArgs(
            capacity=2,
            name="E0",
            tier="Enterprise",
        ))
    
    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",
        },
    });
    
    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
    

    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 string
    The unique name of the resource.
    args CustomizedAcceleratorArgs
    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 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 string
    The unique name of the resource.
    args CustomizedAcceleratorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CustomizedAcceleratorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CustomizedAcceleratorArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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 = new AzureNative.AppPlatform.Inputs.CustomizedAcceleratorPropertiesArgs
        {
            GitRepository = new AzureNative.AppPlatform.Inputs.AcceleratorGitRepositoryArgs
            {
                AuthSetting = new AzureNative.AppPlatform.Inputs.AcceleratorBasicAuthSettingArgs
                {
                    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 = new AzureNative.AppPlatform.Inputs.SkuArgs
        {
            Capacity = 0,
            Name = "string",
            Tier = "string",
        },
    });
    
    example, err := appplatform.NewCustomizedAccelerator(ctx, "customizedAcceleratorResource", &appplatform.CustomizedAcceleratorArgs{
    ApplicationAcceleratorName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    ServiceName: pulumi.String("string"),
    CustomizedAcceleratorName: pulumi.String("string"),
    Properties: &appplatform.CustomizedAcceleratorPropertiesArgs{
    GitRepository: &appplatform.AcceleratorGitRepositoryArgs{
    AuthSetting: appplatform.AcceleratorBasicAuthSetting{
    AuthType: "BasicAuth",
    Username: "string",
    CaCertResourceId: "string",
    Password: "string",
    },
    Url: pulumi.String("string"),
    Branch: pulumi.String("string"),
    Commit: pulumi.String("string"),
    GitTag: pulumi.String("string"),
    IntervalInSeconds: pulumi.Int(0),
    },
    AcceleratorTags: pulumi.StringArray{
    pulumi.String("string"),
    },
    Description: pulumi.String("string"),
    DisplayName: pulumi.String("string"),
    IconUrl: pulumi.String("string"),
    },
    Sku: &appplatform.SkuArgs{
    Capacity: pulumi.Int(0),
    Name: pulumi.String("string"),
    Tier: pulumi.String("string"),
    },
    })
    
    var customizedAcceleratorResource = new CustomizedAccelerator("customizedAcceleratorResource", CustomizedAcceleratorArgs.builder()        
        .applicationAcceleratorName("string")
        .resourceGroupName("string")
        .serviceName("string")
        .customizedAcceleratorName("string")
        .properties(CustomizedAcceleratorPropertiesArgs.builder()
            .gitRepository(AcceleratorGitRepositoryArgs.builder()
                .authSetting(AcceleratorBasicAuthSettingArgs.builder()
                    .authType("BasicAuth")
                    .username("string")
                    .caCertResourceId("string")
                    .password("string")
                    .build())
                .url("string")
                .branch("string")
                .commit("string")
                .gitTag("string")
                .intervalInSeconds(0)
                .build())
            .acceleratorTags("string")
            .description("string")
            .displayName("string")
            .iconUrl("string")
            .build())
        .sku(SkuArgs.builder()
            .capacity(0)
            .name("string")
            .tier("string")
            .build())
        .build());
    
    customized_accelerator_resource = azure_native.appplatform.CustomizedAccelerator("customizedAcceleratorResource",
        application_accelerator_name="string",
        resource_group_name="string",
        service_name="string",
        customized_accelerator_name="string",
        properties=azure_native.appplatform.CustomizedAcceleratorPropertiesArgs(
            git_repository=azure_native.appplatform.AcceleratorGitRepositoryArgs(
                auth_setting=azure_native.appplatform.AcceleratorBasicAuthSettingArgs(
                    auth_type="BasicAuth",
                    username="string",
                    ca_cert_resource_id="string",
                    password="string",
                ),
                url="string",
                branch="string",
                commit="string",
                git_tag="string",
                interval_in_seconds=0,
            ),
            accelerator_tags=["string"],
            description="string",
            display_name="string",
            icon_url="string",
        ),
        sku=azure_native.appplatform.SkuArgs(
            capacity=0,
            name="string",
            tier="string",
        ))
    
    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",
        },
    });
    
    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
    

    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

    The CustomizedAccelerator resource accepts the following input properties:

    ApplicationAcceleratorName string
    The name of the application accelerator.
    ResourceGroupName 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 string
    The name of the Service resource.
    CustomizedAcceleratorName 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 string
    The name of the application accelerator.
    ResourceGroupName 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 string
    The name of the Service resource.
    CustomizedAcceleratorName string
    The name of the customized accelerator.
    Properties CustomizedAcceleratorPropertiesArgs
    Customized accelerator properties payload
    Sku SkuArgs
    Sku of the customized accelerator resource
    applicationAcceleratorName String
    The name of the application accelerator.
    resourceGroupName 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 String
    The name of the Service resource.
    customizedAcceleratorName String
    The name of the customized accelerator.
    properties CustomizedAcceleratorProperties
    Customized accelerator properties payload
    sku Sku
    Sku of the customized accelerator resource
    applicationAcceleratorName string
    The name of the application accelerator.
    resourceGroupName 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 string
    The name of the Service resource.
    customizedAcceleratorName string
    The name of the customized accelerator.
    properties CustomizedAcceleratorProperties
    Customized accelerator properties payload
    sku Sku
    Sku of the customized accelerator resource
    application_accelerator_name str
    The name of the application accelerator.
    resource_group_name 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 str
    The name of the Service resource.
    customized_accelerator_name str
    The name of the customized accelerator.
    properties CustomizedAcceleratorPropertiesArgs
    Customized accelerator properties payload
    sku SkuArgs
    Sku of the customized accelerator resource
    applicationAcceleratorName String
    The name of the application accelerator.
    resourceGroupName 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 String
    The name of the Service resource.
    customizedAcceleratorName 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 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 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 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 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 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 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 string
    Username of git repository basic auth.
    CaCertResourceId string
    Resource Id of CA certificate for https URL of Git repository.
    Username string
    Username of git repository basic auth.
    CaCertResourceId string
    Resource Id of CA certificate for https URL of Git repository.
    username String
    Username of git repository basic auth.
    caCertResourceId String
    Resource Id of CA certificate for https URL of Git repository.
    username string
    Username of git repository basic auth.
    caCertResourceId string
    Resource Id of CA certificate for https URL of Git repository.
    username str
    Username of git repository basic auth.
    ca_cert_resource_id str
    Resource Id of CA certificate for https URL of Git repository.
    username String
    Username of git repository basic auth.
    caCertResourceId String
    Resource Id of CA certificate for https URL of Git repository.

    AcceleratorGitRepository, AcceleratorGitRepositoryArgs

    AuthSetting Pulumi.AzureNative.AppPlatform.Inputs.AcceleratorBasicAuthSetting | Pulumi.AzureNative.AppPlatform.Inputs.AcceleratorPublicSetting | Pulumi.AzureNative.AppPlatform.Inputs.AcceleratorSshSetting
    Properties of the auth setting payload.
    Url 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 AcceleratorBasicAuthSetting | AcceleratorPublicSetting | AcceleratorSshSetting
    Properties of the auth setting payload.
    Url 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 AcceleratorBasicAuthSetting | AcceleratorPublicSetting | AcceleratorSshSetting
    Properties of the auth setting payload.
    url 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 AcceleratorBasicAuthSetting | AcceleratorPublicSetting | AcceleratorSshSetting
    Properties of the auth setting payload.
    url 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 AcceleratorBasicAuthSetting | AcceleratorPublicSetting | AcceleratorSshSetting
    Properties of the auth setting payload.
    url 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 Property Map | Property Map | Property Map
    Properties of the auth setting payload.
    url 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 Pulumi.AzureNative.AppPlatform.Inputs.AcceleratorBasicAuthSettingResponse | Pulumi.AzureNative.AppPlatform.Inputs.AcceleratorPublicSettingResponse | Pulumi.AzureNative.AppPlatform.Inputs.AcceleratorSshSettingResponse
    Properties of the auth setting payload.
    Url 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 AcceleratorBasicAuthSettingResponse | AcceleratorPublicSettingResponse | AcceleratorSshSettingResponse
    Properties of the auth setting payload.
    Url 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 AcceleratorBasicAuthSettingResponse | AcceleratorPublicSettingResponse | AcceleratorSshSettingResponse
    Properties of the auth setting payload.
    url 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 AcceleratorBasicAuthSettingResponse | AcceleratorPublicSettingResponse | AcceleratorSshSettingResponse
    Properties of the auth setting payload.
    url 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 AcceleratorBasicAuthSettingResponse | AcceleratorPublicSettingResponse | AcceleratorSshSettingResponse
    Properties of the auth setting payload.
    url 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 Property Map | Property Map | Property Map
    Properties of the auth setting payload.
    url 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

    CustomizedAcceleratorPropertiesResponse, CustomizedAcceleratorPropertiesResponseArgs

    GitRepository AcceleratorGitRepositoryResponse
    ProvisioningState string
    State of the customized accelerator.
    AcceleratorTags []string
    Description string
    DisplayName string
    IconUrl string
    gitRepository AcceleratorGitRepositoryResponse
    provisioningState String
    State of the customized accelerator.
    acceleratorTags List<String>
    description String
    displayName String
    iconUrl String
    gitRepository AcceleratorGitRepositoryResponse
    provisioningState string
    State of the customized accelerator.
    acceleratorTags string[]
    description string
    displayName string
    iconUrl string
    gitRepository Property Map
    provisioningState 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} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi