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.9.0 published on Wednesday, Sep 27, 2023 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.9.0 published on Wednesday, Sep 27, 2023 by Pulumi

    Customized accelerator resource Azure REST API version: 2023-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.CustomizedAcceleratorPropertiesResponse{
    				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 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(Map.ofEntries(
                    Map.entry("acceleratorTags",                 
                        "tag-a",
                        "tag-b"),
                    Map.entry("description", "acc-desc"),
                    Map.entry("displayName", "acc-name"),
                    Map.entry("gitRepository", Map.ofEntries(
                        Map.entry("authSetting", Map.ofEntries(
                            Map.entry("authType", "SSH"),
                            Map.entry("hostKey", "git-auth-hostkey"),
                            Map.entry("hostKeyAlgorithm", "git-auth-algorithm"),
                            Map.entry("privateKey", "git-auth-privatekey")
                        )),
                        Map.entry("branch", "git-branch"),
                        Map.entry("commit", "12345"),
                        Map.entry("gitTag", "git-tag"),
                        Map.entry("intervalInSeconds", 70),
                        Map.entry("url", "git-url")
                    )),
                    Map.entry("iconUrl", "acc-icon")
                ))
                .resourceGroupName("myResourceGroup")
                .serviceName("myservice")
                .sku(Map.ofEntries(
                    Map.entry("capacity", 2),
                    Map.entry("name", "E0"),
                    Map.entry("tier", "Enterprise")
                ))
                .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.CustomizedAcceleratorPropertiesResponseArgs(
            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

    new CustomizedAccelerator(name: string, args: CustomizedAcceleratorArgs, opts?: CustomResourceOptions);
    @overload
    def CustomizedAccelerator(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              application_accelerator_name: Optional[str] = None,
                              customized_accelerator_name: Optional[str] = None,
                              properties: Optional[CustomizedAcceleratorPropertiesArgs] = None,
                              resource_group_name: Optional[str] = None,
                              service_name: Optional[str] = None,
                              sku: Optional[SkuArgs] = None)
    @overload
    def CustomizedAccelerator(resource_name: str,
                              args: CustomizedAcceleratorArgs,
                              opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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} 
    

    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.9.0 published on Wednesday, Sep 27, 2023 by Pulumi