azure-native.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",
},
});
});
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
})
}
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={
"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",
})
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.
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 = 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={
"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",
})
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:
- Application
Accelerator stringName - The name of the application accelerator.
- Resource
Group stringName - 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 string - The name of the Service resource.
- Customized
Accelerator stringName - The name of the customized accelerator.
- Properties
Pulumi.
Azure Native. App Platform. Inputs. Customized Accelerator Properties - Customized accelerator properties payload
- Sku
Pulumi.
Azure Native. App Platform. Inputs. Sku - Sku of the customized accelerator resource
- Application
Accelerator stringName - The name of the application accelerator.
- Resource
Group stringName - 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 string - The name of the Service resource.
- Customized
Accelerator stringName - The name of the customized accelerator.
- Properties
Customized
Accelerator Properties Args - Customized accelerator properties payload
- Sku
Sku
Args - Sku of the customized accelerator resource
- application
Accelerator StringName - The name of the application accelerator.
- resource
Group StringName - 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 String - The name of the Service resource.
- customized
Accelerator StringName - The name of the customized accelerator.
- properties
Customized
Accelerator Properties - Customized accelerator properties payload
- sku Sku
- Sku of the customized accelerator resource
- application
Accelerator stringName - The name of the application accelerator.
- resource
Group stringName - 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 string - The name of the Service resource.
- customized
Accelerator stringName - The name of the customized accelerator.
- properties
Customized
Accelerator Properties - Customized accelerator properties payload
- sku Sku
- Sku of the customized accelerator resource
- application_
accelerator_ strname - The name of the application accelerator.
- resource_
group_ strname - 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_ strname - The name of the customized accelerator.
- properties
Customized
Accelerator Properties Args - Customized accelerator properties payload
- sku
Sku
Args - Sku of the customized accelerator resource
- application
Accelerator StringName - The name of the application accelerator.
- resource
Group StringName - 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 String - The name of the Service resource.
- customized
Accelerator StringName - 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.
- System
Data Pulumi.Azure Native. App Platform. Outputs. System Data Response - 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.
- System
Data SystemData Response - 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.
- system
Data SystemData Response - 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.
- system
Data SystemData Response - 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 SystemData Response - 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.
- system
Data 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.
- Ca
Cert stringResource Id - 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.
- Ca
Cert stringResource Id - 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.
- ca
Cert StringResource Id - 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.
- ca
Cert stringResource Id - 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_ strresource_ id - 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.
- ca
Cert StringResource Id - 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.
- Ca
Cert stringResource Id - Resource Id of CA certificate for https URL of Git repository.
- Username string
- Username of git repository basic auth.
- Ca
Cert stringResource Id - Resource Id of CA certificate for https URL of Git repository.
- username String
- Username of git repository basic auth.
- ca
Cert StringResource Id - Resource Id of CA certificate for https URL of Git repository.
- username string
- Username of git repository basic auth.
- ca
Cert stringResource Id - Resource Id of CA certificate for https URL of Git repository.
- username str
- Username of git repository basic auth.
- ca_
cert_ strresource_ id - Resource Id of CA certificate for https URL of Git repository.
- username String
- Username of git repository basic auth.
- ca
Cert StringResource Id - Resource Id of CA certificate for https URL of Git repository.
AcceleratorGitRepository, AcceleratorGitRepositoryArgs
- Auth
Setting Pulumi.Azure | Pulumi.Native. App Platform. Inputs. Accelerator Basic Auth Setting Azure | Pulumi.Native. App Platform. Inputs. Accelerator Public Setting Azure Native. App Platform. Inputs. Accelerator Ssh Setting - 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.
- Git
Tag string - Git repository tag to be used.
- Interval
In intSeconds - Interval for checking for updates to Git or image repository.
- Auth
Setting AcceleratorBasic | AcceleratorAuth Setting Public | AcceleratorSetting Ssh Setting - 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.
- Git
Tag string - Git repository tag to be used.
- Interval
In intSeconds - Interval for checking for updates to Git or image repository.
- auth
Setting AcceleratorBasic | AcceleratorAuth Setting Public | AcceleratorSetting Ssh Setting - 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.
- git
Tag String - Git repository tag to be used.
- interval
In IntegerSeconds - Interval for checking for updates to Git or image repository.
- auth
Setting AcceleratorBasic | AcceleratorAuth Setting Public | AcceleratorSetting Ssh Setting - 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.
- git
Tag string - Git repository tag to be used.
- interval
In numberSeconds - Interval for checking for updates to Git or image repository.
- auth_
setting AcceleratorBasic | AcceleratorAuth Setting Public | AcceleratorSetting Ssh Setting - 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_ intseconds - Interval for checking for updates to Git or image repository.
- auth
Setting 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.
- git
Tag String - Git repository tag to be used.
- interval
In NumberSeconds - Interval for checking for updates to Git or image repository.
AcceleratorGitRepositoryResponse, AcceleratorGitRepositoryResponseArgs
- Auth
Setting Pulumi.Azure | Pulumi.Native. App Platform. Inputs. Accelerator Basic Auth Setting Response Azure | Pulumi.Native. App Platform. Inputs. Accelerator Public Setting Response Azure Native. App Platform. Inputs. Accelerator Ssh Setting Response - 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.
- Git
Tag string - Git repository tag to be used.
- Interval
In intSeconds - Interval for checking for updates to Git or image repository.
- Auth
Setting AcceleratorBasic | AcceleratorAuth Setting Response Public | AcceleratorSetting Response Ssh Setting Response - 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.
- Git
Tag string - Git repository tag to be used.
- Interval
In intSeconds - Interval for checking for updates to Git or image repository.
- auth
Setting AcceleratorBasic | AcceleratorAuth Setting Response Public | AcceleratorSetting Response Ssh Setting Response - 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.
- git
Tag String - Git repository tag to be used.
- interval
In IntegerSeconds - Interval for checking for updates to Git or image repository.
- auth
Setting AcceleratorBasic | AcceleratorAuth Setting Response Public | AcceleratorSetting Response Ssh Setting Response - 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.
- git
Tag string - Git repository tag to be used.
- interval
In numberSeconds - Interval for checking for updates to Git or image repository.
- auth_
setting AcceleratorBasic | AcceleratorAuth Setting Response Public | AcceleratorSetting Response Ssh Setting Response - 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_ intseconds - Interval for checking for updates to Git or image repository.
- auth
Setting 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.
- git
Tag String - Git repository tag to be used.
- interval
In NumberSeconds - Interval for checking for updates to Git or image repository.
AcceleratorPublicSetting, AcceleratorPublicSettingArgs
- Ca
Cert stringResource Id - Resource Id of CA certificate for https URL of Git repository.
- Ca
Cert stringResource Id - Resource Id of CA certificate for https URL of Git repository.
- ca
Cert StringResource Id - Resource Id of CA certificate for https URL of Git repository.
- ca
Cert stringResource Id - Resource Id of CA certificate for https URL of Git repository.
- ca_
cert_ strresource_ id - Resource Id of CA certificate for https URL of Git repository.
- ca
Cert StringResource Id - Resource Id of CA certificate for https URL of Git repository.
AcceleratorPublicSettingResponse, AcceleratorPublicSettingResponseArgs
- Ca
Cert stringResource Id - Resource Id of CA certificate for https URL of Git repository.
- Ca
Cert stringResource Id - Resource Id of CA certificate for https URL of Git repository.
- ca
Cert StringResource Id - Resource Id of CA certificate for https URL of Git repository.
- ca
Cert stringResource Id - Resource Id of CA certificate for https URL of Git repository.
- ca_
cert_ strresource_ id - Resource Id of CA certificate for https URL of Git repository.
- ca
Cert StringResource Id - Resource Id of CA certificate for https URL of Git repository.
AcceleratorSshSetting, AcceleratorSshSettingArgs
- Host
Key string - Public SSH Key of git repository.
- Host
Key stringAlgorithm - SSH Key algorithm of git repository.
- Private
Key string - Private SSH Key algorithm of git repository.
- Host
Key string - Public SSH Key of git repository.
- Host
Key stringAlgorithm - SSH Key algorithm of git repository.
- Private
Key string - Private SSH Key algorithm of git repository.
- host
Key String - Public SSH Key of git repository.
- host
Key StringAlgorithm - SSH Key algorithm of git repository.
- private
Key String - Private SSH Key algorithm of git repository.
- host
Key string - Public SSH Key of git repository.
- host
Key stringAlgorithm - SSH Key algorithm of git repository.
- private
Key string - Private SSH Key algorithm of git repository.
- host_
key str - Public SSH Key of git repository.
- host_
key_ stralgorithm - SSH Key algorithm of git repository.
- private_
key str - Private SSH Key algorithm of git repository.
- host
Key String - Public SSH Key of git repository.
- host
Key StringAlgorithm - SSH Key algorithm of git repository.
- private
Key String - Private SSH Key algorithm of git repository.
AcceleratorSshSettingResponse, AcceleratorSshSettingResponseArgs
CustomizedAcceleratorProperties, CustomizedAcceleratorPropertiesArgs
- Git
Repository Pulumi.Azure Native. App Platform. Inputs. Accelerator Git Repository - List<string>
- Description string
- Display
Name string - Icon
Url string
- Git
Repository AcceleratorGit Repository - []string
- Description string
- Display
Name string - Icon
Url string
- git
Repository AcceleratorGit Repository - List<String>
- description String
- display
Name String - icon
Url String
- git
Repository AcceleratorGit Repository - string[]
- description string
- display
Name string - icon
Url string
- git_
repository AcceleratorGit Repository - Sequence[str]
- description str
- display_
name str - icon_
url str
- git
Repository Property Map - List<String>
- description String
- display
Name String - icon
Url String
CustomizedAcceleratorPropertiesResponse, CustomizedAcceleratorPropertiesResponseArgs
- Git
Repository Pulumi.Azure Native. App Platform. Inputs. Accelerator Git Repository Response - Provisioning
State string - State of the customized accelerator.
- List<string>
- Description string
- Display
Name string - Icon
Url string
- Git
Repository AcceleratorGit Repository Response - Provisioning
State string - State of the customized accelerator.
- []string
- Description string
- Display
Name string - Icon
Url string
- git
Repository AcceleratorGit Repository Response - provisioning
State String - State of the customized accelerator.
- List<String>
- description String
- display
Name String - icon
Url String
- git
Repository AcceleratorGit Repository Response - provisioning
State string - State of the customized accelerator.
- string[]
- description string
- display
Name string - icon
Url string
- git_
repository AcceleratorGit Repository Response - provisioning_
state str - State of the customized accelerator.
- Sequence[str]
- description str
- display_
name str - icon_
url str
- git
Repository Property Map - provisioning
State String - State of the customized accelerator.
- List<String>
- description String
- display
Name String - icon
Url String
Sku, SkuArgs
SkuResponse, SkuResponseArgs
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource modification (UTC).
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource modification (UTC).
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource modification (UTC).
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource modification (UTC).
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource modification (UTC).
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource modification (UTC).
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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