Documentation ¶
Index ¶
- type LookupRepositoryArgs
- type LookupRepositoryResult
- type Repository
- func (*Repository) ElementType() reflect.Type
- func (i *Repository) ToRepositoryOutput() RepositoryOutput
- func (i *Repository) ToRepositoryOutputWithContext(ctx context.Context) RepositoryOutput
- func (i *Repository) ToRepositoryPtrOutput() RepositoryPtrOutput
- func (i *Repository) ToRepositoryPtrOutputWithContext(ctx context.Context) RepositoryPtrOutput
- type RepositoryArgs
- type RepositoryArray
- type RepositoryArrayInput
- type RepositoryArrayOutput
- func (RepositoryArrayOutput) ElementType() reflect.Type
- func (o RepositoryArrayOutput) Index(i pulumi.IntInput) RepositoryOutput
- func (o RepositoryArrayOutput) ToRepositoryArrayOutput() RepositoryArrayOutput
- func (o RepositoryArrayOutput) ToRepositoryArrayOutputWithContext(ctx context.Context) RepositoryArrayOutput
- type RepositoryInput
- type RepositoryMap
- type RepositoryMapInput
- type RepositoryMapOutput
- func (RepositoryMapOutput) ElementType() reflect.Type
- func (o RepositoryMapOutput) MapIndex(k pulumi.StringInput) RepositoryOutput
- func (o RepositoryMapOutput) ToRepositoryMapOutput() RepositoryMapOutput
- func (o RepositoryMapOutput) ToRepositoryMapOutputWithContext(ctx context.Context) RepositoryMapOutput
- type RepositoryOutput
- func (RepositoryOutput) ElementType() reflect.Type
- func (o RepositoryOutput) ToRepositoryOutput() RepositoryOutput
- func (o RepositoryOutput) ToRepositoryOutputWithContext(ctx context.Context) RepositoryOutput
- func (o RepositoryOutput) ToRepositoryPtrOutput() RepositoryPtrOutput
- func (o RepositoryOutput) ToRepositoryPtrOutputWithContext(ctx context.Context) RepositoryPtrOutput
- type RepositoryPtrInput
- type RepositoryPtrOutput
- type RepositoryState
- type Trigger
- func (*Trigger) ElementType() reflect.Type
- func (i *Trigger) ToTriggerOutput() TriggerOutput
- func (i *Trigger) ToTriggerOutputWithContext(ctx context.Context) TriggerOutput
- func (i *Trigger) ToTriggerPtrOutput() TriggerPtrOutput
- func (i *Trigger) ToTriggerPtrOutputWithContext(ctx context.Context) TriggerPtrOutput
- type TriggerArgs
- type TriggerArray
- type TriggerArrayInput
- type TriggerArrayOutput
- type TriggerInput
- type TriggerMap
- type TriggerMapInput
- type TriggerMapOutput
- type TriggerOutput
- func (TriggerOutput) ElementType() reflect.Type
- func (o TriggerOutput) ToTriggerOutput() TriggerOutput
- func (o TriggerOutput) ToTriggerOutputWithContext(ctx context.Context) TriggerOutput
- func (o TriggerOutput) ToTriggerPtrOutput() TriggerPtrOutput
- func (o TriggerOutput) ToTriggerPtrOutputWithContext(ctx context.Context) TriggerPtrOutput
- type TriggerPtrInput
- type TriggerPtrOutput
- type TriggerState
- type TriggerTrigger
- type TriggerTriggerArgs
- type TriggerTriggerArray
- type TriggerTriggerArrayInput
- type TriggerTriggerArrayOutput
- func (TriggerTriggerArrayOutput) ElementType() reflect.Type
- func (o TriggerTriggerArrayOutput) Index(i pulumi.IntInput) TriggerTriggerOutput
- func (o TriggerTriggerArrayOutput) ToTriggerTriggerArrayOutput() TriggerTriggerArrayOutput
- func (o TriggerTriggerArrayOutput) ToTriggerTriggerArrayOutputWithContext(ctx context.Context) TriggerTriggerArrayOutput
- type TriggerTriggerInput
- type TriggerTriggerOutput
- func (o TriggerTriggerOutput) Branches() pulumi.StringArrayOutput
- func (o TriggerTriggerOutput) CustomData() pulumi.StringPtrOutput
- func (o TriggerTriggerOutput) DestinationArn() pulumi.StringOutput
- func (TriggerTriggerOutput) ElementType() reflect.Type
- func (o TriggerTriggerOutput) Events() pulumi.StringArrayOutput
- func (o TriggerTriggerOutput) Name() pulumi.StringOutput
- func (o TriggerTriggerOutput) ToTriggerTriggerOutput() TriggerTriggerOutput
- func (o TriggerTriggerOutput) ToTriggerTriggerOutputWithContext(ctx context.Context) TriggerTriggerOutput
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LookupRepositoryArgs ¶
type LookupRepositoryArgs struct { // The name for the repository. This needs to be less than 100 characters. RepositoryName string `pulumi:"repositoryName"` }
A collection of arguments for invoking getRepository.
type LookupRepositoryResult ¶
type LookupRepositoryResult struct { // The ARN of the repository Arn string `pulumi:"arn"` // The URL to use for cloning the repository over HTTPS. CloneUrlHttp string `pulumi:"cloneUrlHttp"` // The URL to use for cloning the repository over SSH. CloneUrlSsh string `pulumi:"cloneUrlSsh"` // The provider-assigned unique ID for this managed resource. Id string `pulumi:"id"` // The ID of the repository RepositoryId string `pulumi:"repositoryId"` RepositoryName string `pulumi:"repositoryName"` }
A collection of values returned by getRepository.
func LookupRepository ¶
func LookupRepository(ctx *pulumi.Context, args *LookupRepositoryArgs, opts ...pulumi.InvokeOption) (*LookupRepositoryResult, error)
The CodeCommit Repository data source allows the ARN, Repository ID, Repository URL for HTTP and Repository URL for SSH to be retrieved for an CodeCommit repository.
## Example Usage
```go package main
import (
"github.com/pulumi/pulumi-aws/sdk/v4/go/aws/codecommit" "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := codecommit.LookupRepository(ctx, &codecommit.LookupRepositoryArgs{ RepositoryName: "MyTestRepository", }, nil) if err != nil { return err } return nil }) }
```
type Repository ¶
type Repository struct { pulumi.CustomResourceState // The ARN of the repository Arn pulumi.StringOutput `pulumi:"arn"` // The URL to use for cloning the repository over HTTPS. CloneUrlHttp pulumi.StringOutput `pulumi:"cloneUrlHttp"` // The URL to use for cloning the repository over SSH. CloneUrlSsh pulumi.StringOutput `pulumi:"cloneUrlSsh"` // The default branch of the repository. The branch specified here needs to exist. DefaultBranch pulumi.StringPtrOutput `pulumi:"defaultBranch"` // The description of the repository. This needs to be less than 1000 characters Description pulumi.StringPtrOutput `pulumi:"description"` // The ID of the repository RepositoryId pulumi.StringOutput `pulumi:"repositoryId"` // The name for the repository. This needs to be less than 100 characters. RepositoryName pulumi.StringOutput `pulumi:"repositoryName"` // Key-value map of resource tags. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapOutput `pulumi:"tags"` // A map of tags assigned to the resource, including those inherited from the provider . TagsAll pulumi.StringMapOutput `pulumi:"tagsAll"` }
Provides a CodeCommit Repository Resource.
## Example Usage
```go package main
import (
"github.com/pulumi/pulumi-aws/sdk/v4/go/aws/codecommit" "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := codecommit.NewRepository(ctx, "test", &codecommit.RepositoryArgs{ Description: pulumi.String("This is the Sample App Repository"), RepositoryName: pulumi.String("MyTestRepository"), }) if err != nil { return err } return nil }) }
```
## Import
Codecommit repository can be imported using repository name, e.g.
```sh
$ pulumi import aws:codecommit/repository:Repository imported ExistingRepo
```
func GetRepository ¶
func GetRepository(ctx *pulumi.Context, name string, id pulumi.IDInput, state *RepositoryState, opts ...pulumi.ResourceOption) (*Repository, error)
GetRepository gets an existing Repository resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
func NewRepository ¶
func NewRepository(ctx *pulumi.Context, name string, args *RepositoryArgs, opts ...pulumi.ResourceOption) (*Repository, error)
NewRepository registers a new resource with the given unique name, arguments, and options.
func (*Repository) ElementType ¶
func (*Repository) ElementType() reflect.Type
func (*Repository) ToRepositoryOutput ¶
func (i *Repository) ToRepositoryOutput() RepositoryOutput
func (*Repository) ToRepositoryOutputWithContext ¶
func (i *Repository) ToRepositoryOutputWithContext(ctx context.Context) RepositoryOutput
func (*Repository) ToRepositoryPtrOutput ¶
func (i *Repository) ToRepositoryPtrOutput() RepositoryPtrOutput
func (*Repository) ToRepositoryPtrOutputWithContext ¶
func (i *Repository) ToRepositoryPtrOutputWithContext(ctx context.Context) RepositoryPtrOutput
type RepositoryArgs ¶
type RepositoryArgs struct { // The default branch of the repository. The branch specified here needs to exist. DefaultBranch pulumi.StringPtrInput // The description of the repository. This needs to be less than 1000 characters Description pulumi.StringPtrInput // The name for the repository. This needs to be less than 100 characters. RepositoryName pulumi.StringInput // Key-value map of resource tags. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput }
The set of arguments for constructing a Repository resource.
func (RepositoryArgs) ElementType ¶
func (RepositoryArgs) ElementType() reflect.Type
type RepositoryArray ¶
type RepositoryArray []RepositoryInput
func (RepositoryArray) ElementType ¶
func (RepositoryArray) ElementType() reflect.Type
func (RepositoryArray) ToRepositoryArrayOutput ¶
func (i RepositoryArray) ToRepositoryArrayOutput() RepositoryArrayOutput
func (RepositoryArray) ToRepositoryArrayOutputWithContext ¶
func (i RepositoryArray) ToRepositoryArrayOutputWithContext(ctx context.Context) RepositoryArrayOutput
type RepositoryArrayInput ¶
type RepositoryArrayInput interface { pulumi.Input ToRepositoryArrayOutput() RepositoryArrayOutput ToRepositoryArrayOutputWithContext(context.Context) RepositoryArrayOutput }
RepositoryArrayInput is an input type that accepts RepositoryArray and RepositoryArrayOutput values. You can construct a concrete instance of `RepositoryArrayInput` via:
RepositoryArray{ RepositoryArgs{...} }
type RepositoryArrayOutput ¶
type RepositoryArrayOutput struct{ *pulumi.OutputState }
func (RepositoryArrayOutput) ElementType ¶
func (RepositoryArrayOutput) ElementType() reflect.Type
func (RepositoryArrayOutput) Index ¶
func (o RepositoryArrayOutput) Index(i pulumi.IntInput) RepositoryOutput
func (RepositoryArrayOutput) ToRepositoryArrayOutput ¶
func (o RepositoryArrayOutput) ToRepositoryArrayOutput() RepositoryArrayOutput
func (RepositoryArrayOutput) ToRepositoryArrayOutputWithContext ¶
func (o RepositoryArrayOutput) ToRepositoryArrayOutputWithContext(ctx context.Context) RepositoryArrayOutput
type RepositoryInput ¶
type RepositoryInput interface { pulumi.Input ToRepositoryOutput() RepositoryOutput ToRepositoryOutputWithContext(ctx context.Context) RepositoryOutput }
type RepositoryMap ¶
type RepositoryMap map[string]RepositoryInput
func (RepositoryMap) ElementType ¶
func (RepositoryMap) ElementType() reflect.Type
func (RepositoryMap) ToRepositoryMapOutput ¶
func (i RepositoryMap) ToRepositoryMapOutput() RepositoryMapOutput
func (RepositoryMap) ToRepositoryMapOutputWithContext ¶
func (i RepositoryMap) ToRepositoryMapOutputWithContext(ctx context.Context) RepositoryMapOutput
type RepositoryMapInput ¶
type RepositoryMapInput interface { pulumi.Input ToRepositoryMapOutput() RepositoryMapOutput ToRepositoryMapOutputWithContext(context.Context) RepositoryMapOutput }
RepositoryMapInput is an input type that accepts RepositoryMap and RepositoryMapOutput values. You can construct a concrete instance of `RepositoryMapInput` via:
RepositoryMap{ "key": RepositoryArgs{...} }
type RepositoryMapOutput ¶
type RepositoryMapOutput struct{ *pulumi.OutputState }
func (RepositoryMapOutput) ElementType ¶
func (RepositoryMapOutput) ElementType() reflect.Type
func (RepositoryMapOutput) MapIndex ¶
func (o RepositoryMapOutput) MapIndex(k pulumi.StringInput) RepositoryOutput
func (RepositoryMapOutput) ToRepositoryMapOutput ¶
func (o RepositoryMapOutput) ToRepositoryMapOutput() RepositoryMapOutput
func (RepositoryMapOutput) ToRepositoryMapOutputWithContext ¶
func (o RepositoryMapOutput) ToRepositoryMapOutputWithContext(ctx context.Context) RepositoryMapOutput
type RepositoryOutput ¶
type RepositoryOutput struct{ *pulumi.OutputState }
func (RepositoryOutput) ElementType ¶
func (RepositoryOutput) ElementType() reflect.Type
func (RepositoryOutput) ToRepositoryOutput ¶
func (o RepositoryOutput) ToRepositoryOutput() RepositoryOutput
func (RepositoryOutput) ToRepositoryOutputWithContext ¶
func (o RepositoryOutput) ToRepositoryOutputWithContext(ctx context.Context) RepositoryOutput
func (RepositoryOutput) ToRepositoryPtrOutput ¶
func (o RepositoryOutput) ToRepositoryPtrOutput() RepositoryPtrOutput
func (RepositoryOutput) ToRepositoryPtrOutputWithContext ¶
func (o RepositoryOutput) ToRepositoryPtrOutputWithContext(ctx context.Context) RepositoryPtrOutput
type RepositoryPtrInput ¶
type RepositoryPtrInput interface { pulumi.Input ToRepositoryPtrOutput() RepositoryPtrOutput ToRepositoryPtrOutputWithContext(ctx context.Context) RepositoryPtrOutput }
type RepositoryPtrOutput ¶
type RepositoryPtrOutput struct{ *pulumi.OutputState }
func (RepositoryPtrOutput) Elem ¶ added in v4.15.0
func (o RepositoryPtrOutput) Elem() RepositoryOutput
func (RepositoryPtrOutput) ElementType ¶
func (RepositoryPtrOutput) ElementType() reflect.Type
func (RepositoryPtrOutput) ToRepositoryPtrOutput ¶
func (o RepositoryPtrOutput) ToRepositoryPtrOutput() RepositoryPtrOutput
func (RepositoryPtrOutput) ToRepositoryPtrOutputWithContext ¶
func (o RepositoryPtrOutput) ToRepositoryPtrOutputWithContext(ctx context.Context) RepositoryPtrOutput
type RepositoryState ¶
type RepositoryState struct { // The ARN of the repository Arn pulumi.StringPtrInput // The URL to use for cloning the repository over HTTPS. CloneUrlHttp pulumi.StringPtrInput // The URL to use for cloning the repository over SSH. CloneUrlSsh pulumi.StringPtrInput // The default branch of the repository. The branch specified here needs to exist. DefaultBranch pulumi.StringPtrInput // The description of the repository. This needs to be less than 1000 characters Description pulumi.StringPtrInput // The ID of the repository RepositoryId pulumi.StringPtrInput // The name for the repository. This needs to be less than 100 characters. RepositoryName pulumi.StringPtrInput // Key-value map of resource tags. .If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. Tags pulumi.StringMapInput // A map of tags assigned to the resource, including those inherited from the provider . TagsAll pulumi.StringMapInput }
func (RepositoryState) ElementType ¶
func (RepositoryState) ElementType() reflect.Type
type Trigger ¶
type Trigger struct { pulumi.CustomResourceState // System-generated unique identifier. ConfigurationId pulumi.StringOutput `pulumi:"configurationId"` // The name for the repository. This needs to be less than 100 characters. RepositoryName pulumi.StringOutput `pulumi:"repositoryName"` Triggers TriggerTriggerArrayOutput `pulumi:"triggers"` }
Provides a CodeCommit Trigger Resource.
## Example Usage
```go package main
import (
"github.com/pulumi/pulumi-aws/sdk/v4/go/aws/codecommit" "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() { pulumi.Run(func(ctx *pulumi.Context) error { testRepository, err := codecommit.NewRepository(ctx, "testRepository", &codecommit.RepositoryArgs{ RepositoryName: pulumi.String("test"), }) if err != nil { return err } _, err = codecommit.NewTrigger(ctx, "testTrigger", &codecommit.TriggerArgs{ RepositoryName: testRepository.RepositoryName, Triggers: codecommit.TriggerTriggerArray{ &codecommit.TriggerTriggerArgs{ Name: pulumi.String("all"), Events: pulumi.StringArray{ pulumi.String("all"), }, DestinationArn: pulumi.Any(aws_sns_topic.Test.Arn), }, }, }) if err != nil { return err } return nil }) }
```
func GetTrigger ¶
func GetTrigger(ctx *pulumi.Context, name string, id pulumi.IDInput, state *TriggerState, opts ...pulumi.ResourceOption) (*Trigger, error)
GetTrigger gets an existing Trigger resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
func NewTrigger ¶
func NewTrigger(ctx *pulumi.Context, name string, args *TriggerArgs, opts ...pulumi.ResourceOption) (*Trigger, error)
NewTrigger registers a new resource with the given unique name, arguments, and options.
func (*Trigger) ElementType ¶
func (*Trigger) ToTriggerOutput ¶
func (i *Trigger) ToTriggerOutput() TriggerOutput
func (*Trigger) ToTriggerOutputWithContext ¶
func (i *Trigger) ToTriggerOutputWithContext(ctx context.Context) TriggerOutput
func (*Trigger) ToTriggerPtrOutput ¶
func (i *Trigger) ToTriggerPtrOutput() TriggerPtrOutput
func (*Trigger) ToTriggerPtrOutputWithContext ¶
func (i *Trigger) ToTriggerPtrOutputWithContext(ctx context.Context) TriggerPtrOutput
type TriggerArgs ¶
type TriggerArgs struct { // The name for the repository. This needs to be less than 100 characters. RepositoryName pulumi.StringInput Triggers TriggerTriggerArrayInput }
The set of arguments for constructing a Trigger resource.
func (TriggerArgs) ElementType ¶
func (TriggerArgs) ElementType() reflect.Type
type TriggerArray ¶
type TriggerArray []TriggerInput
func (TriggerArray) ElementType ¶
func (TriggerArray) ElementType() reflect.Type
func (TriggerArray) ToTriggerArrayOutput ¶
func (i TriggerArray) ToTriggerArrayOutput() TriggerArrayOutput
func (TriggerArray) ToTriggerArrayOutputWithContext ¶
func (i TriggerArray) ToTriggerArrayOutputWithContext(ctx context.Context) TriggerArrayOutput
type TriggerArrayInput ¶
type TriggerArrayInput interface { pulumi.Input ToTriggerArrayOutput() TriggerArrayOutput ToTriggerArrayOutputWithContext(context.Context) TriggerArrayOutput }
TriggerArrayInput is an input type that accepts TriggerArray and TriggerArrayOutput values. You can construct a concrete instance of `TriggerArrayInput` via:
TriggerArray{ TriggerArgs{...} }
type TriggerArrayOutput ¶
type TriggerArrayOutput struct{ *pulumi.OutputState }
func (TriggerArrayOutput) ElementType ¶
func (TriggerArrayOutput) ElementType() reflect.Type
func (TriggerArrayOutput) Index ¶
func (o TriggerArrayOutput) Index(i pulumi.IntInput) TriggerOutput
func (TriggerArrayOutput) ToTriggerArrayOutput ¶
func (o TriggerArrayOutput) ToTriggerArrayOutput() TriggerArrayOutput
func (TriggerArrayOutput) ToTriggerArrayOutputWithContext ¶
func (o TriggerArrayOutput) ToTriggerArrayOutputWithContext(ctx context.Context) TriggerArrayOutput
type TriggerInput ¶
type TriggerInput interface { pulumi.Input ToTriggerOutput() TriggerOutput ToTriggerOutputWithContext(ctx context.Context) TriggerOutput }
type TriggerMap ¶
type TriggerMap map[string]TriggerInput
func (TriggerMap) ElementType ¶
func (TriggerMap) ElementType() reflect.Type
func (TriggerMap) ToTriggerMapOutput ¶
func (i TriggerMap) ToTriggerMapOutput() TriggerMapOutput
func (TriggerMap) ToTriggerMapOutputWithContext ¶
func (i TriggerMap) ToTriggerMapOutputWithContext(ctx context.Context) TriggerMapOutput
type TriggerMapInput ¶
type TriggerMapInput interface { pulumi.Input ToTriggerMapOutput() TriggerMapOutput ToTriggerMapOutputWithContext(context.Context) TriggerMapOutput }
TriggerMapInput is an input type that accepts TriggerMap and TriggerMapOutput values. You can construct a concrete instance of `TriggerMapInput` via:
TriggerMap{ "key": TriggerArgs{...} }
type TriggerMapOutput ¶
type TriggerMapOutput struct{ *pulumi.OutputState }
func (TriggerMapOutput) ElementType ¶
func (TriggerMapOutput) ElementType() reflect.Type
func (TriggerMapOutput) MapIndex ¶
func (o TriggerMapOutput) MapIndex(k pulumi.StringInput) TriggerOutput
func (TriggerMapOutput) ToTriggerMapOutput ¶
func (o TriggerMapOutput) ToTriggerMapOutput() TriggerMapOutput
func (TriggerMapOutput) ToTriggerMapOutputWithContext ¶
func (o TriggerMapOutput) ToTriggerMapOutputWithContext(ctx context.Context) TriggerMapOutput
type TriggerOutput ¶
type TriggerOutput struct{ *pulumi.OutputState }
func (TriggerOutput) ElementType ¶
func (TriggerOutput) ElementType() reflect.Type
func (TriggerOutput) ToTriggerOutput ¶
func (o TriggerOutput) ToTriggerOutput() TriggerOutput
func (TriggerOutput) ToTriggerOutputWithContext ¶
func (o TriggerOutput) ToTriggerOutputWithContext(ctx context.Context) TriggerOutput
func (TriggerOutput) ToTriggerPtrOutput ¶
func (o TriggerOutput) ToTriggerPtrOutput() TriggerPtrOutput
func (TriggerOutput) ToTriggerPtrOutputWithContext ¶
func (o TriggerOutput) ToTriggerPtrOutputWithContext(ctx context.Context) TriggerPtrOutput
type TriggerPtrInput ¶
type TriggerPtrInput interface { pulumi.Input ToTriggerPtrOutput() TriggerPtrOutput ToTriggerPtrOutputWithContext(ctx context.Context) TriggerPtrOutput }
type TriggerPtrOutput ¶
type TriggerPtrOutput struct{ *pulumi.OutputState }
func (TriggerPtrOutput) Elem ¶ added in v4.15.0
func (o TriggerPtrOutput) Elem() TriggerOutput
func (TriggerPtrOutput) ElementType ¶
func (TriggerPtrOutput) ElementType() reflect.Type
func (TriggerPtrOutput) ToTriggerPtrOutput ¶
func (o TriggerPtrOutput) ToTriggerPtrOutput() TriggerPtrOutput
func (TriggerPtrOutput) ToTriggerPtrOutputWithContext ¶
func (o TriggerPtrOutput) ToTriggerPtrOutputWithContext(ctx context.Context) TriggerPtrOutput
type TriggerState ¶
type TriggerState struct { // System-generated unique identifier. ConfigurationId pulumi.StringPtrInput // The name for the repository. This needs to be less than 100 characters. RepositoryName pulumi.StringPtrInput Triggers TriggerTriggerArrayInput }
func (TriggerState) ElementType ¶
func (TriggerState) ElementType() reflect.Type
type TriggerTrigger ¶
type TriggerTrigger struct { // The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches. Branches []string `pulumi:"branches"` // Any custom data associated with the trigger that will be included in the information sent to the target of the trigger. CustomData *string `pulumi:"customData"` // The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS). DestinationArn string `pulumi:"destinationArn"` // The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events. Event types include: `all`, `updateReference`, `createReference`, `deleteReference`. Events []string `pulumi:"events"` // The name of the trigger. Name string `pulumi:"name"` }
type TriggerTriggerArgs ¶
type TriggerTriggerArgs struct { // The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches. Branches pulumi.StringArrayInput `pulumi:"branches"` // Any custom data associated with the trigger that will be included in the information sent to the target of the trigger. CustomData pulumi.StringPtrInput `pulumi:"customData"` // The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS). DestinationArn pulumi.StringInput `pulumi:"destinationArn"` // The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events. Event types include: `all`, `updateReference`, `createReference`, `deleteReference`. Events pulumi.StringArrayInput `pulumi:"events"` // The name of the trigger. Name pulumi.StringInput `pulumi:"name"` }
func (TriggerTriggerArgs) ElementType ¶
func (TriggerTriggerArgs) ElementType() reflect.Type
func (TriggerTriggerArgs) ToTriggerTriggerOutput ¶
func (i TriggerTriggerArgs) ToTriggerTriggerOutput() TriggerTriggerOutput
func (TriggerTriggerArgs) ToTriggerTriggerOutputWithContext ¶
func (i TriggerTriggerArgs) ToTriggerTriggerOutputWithContext(ctx context.Context) TriggerTriggerOutput
type TriggerTriggerArray ¶
type TriggerTriggerArray []TriggerTriggerInput
func (TriggerTriggerArray) ElementType ¶
func (TriggerTriggerArray) ElementType() reflect.Type
func (TriggerTriggerArray) ToTriggerTriggerArrayOutput ¶
func (i TriggerTriggerArray) ToTriggerTriggerArrayOutput() TriggerTriggerArrayOutput
func (TriggerTriggerArray) ToTriggerTriggerArrayOutputWithContext ¶
func (i TriggerTriggerArray) ToTriggerTriggerArrayOutputWithContext(ctx context.Context) TriggerTriggerArrayOutput
type TriggerTriggerArrayInput ¶
type TriggerTriggerArrayInput interface { pulumi.Input ToTriggerTriggerArrayOutput() TriggerTriggerArrayOutput ToTriggerTriggerArrayOutputWithContext(context.Context) TriggerTriggerArrayOutput }
TriggerTriggerArrayInput is an input type that accepts TriggerTriggerArray and TriggerTriggerArrayOutput values. You can construct a concrete instance of `TriggerTriggerArrayInput` via:
TriggerTriggerArray{ TriggerTriggerArgs{...} }
type TriggerTriggerArrayOutput ¶
type TriggerTriggerArrayOutput struct{ *pulumi.OutputState }
func (TriggerTriggerArrayOutput) ElementType ¶
func (TriggerTriggerArrayOutput) ElementType() reflect.Type
func (TriggerTriggerArrayOutput) Index ¶
func (o TriggerTriggerArrayOutput) Index(i pulumi.IntInput) TriggerTriggerOutput
func (TriggerTriggerArrayOutput) ToTriggerTriggerArrayOutput ¶
func (o TriggerTriggerArrayOutput) ToTriggerTriggerArrayOutput() TriggerTriggerArrayOutput
func (TriggerTriggerArrayOutput) ToTriggerTriggerArrayOutputWithContext ¶
func (o TriggerTriggerArrayOutput) ToTriggerTriggerArrayOutputWithContext(ctx context.Context) TriggerTriggerArrayOutput
type TriggerTriggerInput ¶
type TriggerTriggerInput interface { pulumi.Input ToTriggerTriggerOutput() TriggerTriggerOutput ToTriggerTriggerOutputWithContext(context.Context) TriggerTriggerOutput }
TriggerTriggerInput is an input type that accepts TriggerTriggerArgs and TriggerTriggerOutput values. You can construct a concrete instance of `TriggerTriggerInput` via:
TriggerTriggerArgs{...}
type TriggerTriggerOutput ¶
type TriggerTriggerOutput struct{ *pulumi.OutputState }
func (TriggerTriggerOutput) Branches ¶
func (o TriggerTriggerOutput) Branches() pulumi.StringArrayOutput
The branches that will be included in the trigger configuration. If no branches are specified, the trigger will apply to all branches.
func (TriggerTriggerOutput) CustomData ¶
func (o TriggerTriggerOutput) CustomData() pulumi.StringPtrOutput
Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.
func (TriggerTriggerOutput) DestinationArn ¶
func (o TriggerTriggerOutput) DestinationArn() pulumi.StringOutput
The ARN of the resource that is the target for a trigger. For example, the ARN of a topic in Amazon Simple Notification Service (SNS).
func (TriggerTriggerOutput) ElementType ¶
func (TriggerTriggerOutput) ElementType() reflect.Type
func (TriggerTriggerOutput) Events ¶
func (o TriggerTriggerOutput) Events() pulumi.StringArrayOutput
The repository events that will cause the trigger to run actions in another service, such as sending a notification through Amazon Simple Notification Service (SNS). If no events are specified, the trigger will run for all repository events. Event types include: `all`, `updateReference`, `createReference`, `deleteReference`.
func (TriggerTriggerOutput) Name ¶
func (o TriggerTriggerOutput) Name() pulumi.StringOutput
The name of the trigger.
func (TriggerTriggerOutput) ToTriggerTriggerOutput ¶
func (o TriggerTriggerOutput) ToTriggerTriggerOutput() TriggerTriggerOutput
func (TriggerTriggerOutput) ToTriggerTriggerOutputWithContext ¶
func (o TriggerTriggerOutput) ToTriggerTriggerOutputWithContext(ctx context.Context) TriggerTriggerOutput