Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

d/aws_batch_job_definition #34663

Merged
merged 20 commits into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/34663.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-data-source
aws_batch_job_definition
```
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ require (
github.com/aws/aws-sdk-go-v2/service/apprunner v1.27.0
github.com/aws/aws-sdk-go-v2/service/athena v1.39.0
github.com/aws/aws-sdk-go-v2/service/auditmanager v1.31.0
github.com/aws/aws-sdk-go-v2/service/batch v1.32.0
github.com/aws/aws-sdk-go-v2/service/bedrock v1.6.0
github.com/aws/aws-sdk-go-v2/service/bedrockagent v1.3.0
github.com/aws/aws-sdk-go-v2/service/budgets v1.21.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ github.com/aws/aws-sdk-go-v2/service/athena v1.39.0 h1:oVrFdlLcYETrVftzF0Q/Dr0tf
github.com/aws/aws-sdk-go-v2/service/athena v1.39.0/go.mod h1:PPlSmhFoI4r5BGLB+6YDUHSU3E77brazZXLcj2DeQZQ=
github.com/aws/aws-sdk-go-v2/service/auditmanager v1.31.0 h1:wW06a5cOpVYJ1NrjmcKpk54xqUYK2PbL0ttOcXKyBrQ=
github.com/aws/aws-sdk-go-v2/service/auditmanager v1.31.0/go.mod h1:KPniIDEIjjhk8v1hkQeBeUcSPS0i/MAGXt80hUr6Cbc=
github.com/aws/aws-sdk-go-v2/service/batch v1.32.0 h1:KIV3V/Edj0N7dG38u6wjq6zytO6prVjDewT88KzXlVE=
github.com/aws/aws-sdk-go-v2/service/batch v1.32.0/go.mod h1:75qh07u8lNpPtIoUlKWN5RCDga/yN6PDJyPVFLlVaMU=
github.com/aws/aws-sdk-go-v2/service/bedrock v1.6.0 h1:Eah+mRIMPbq3KdgLpUT44nCJi7cECjy5U2fgFO0jiiQ=
github.com/aws/aws-sdk-go-v2/service/bedrock v1.6.0/go.mod h1:orxULvnjYi9X3Na7eGy27KD6uOE8vDvyJCNJejmU92E=
github.com/aws/aws-sdk-go-v2/service/bedrockagent v1.3.0 h1:pAaehMb08sPnGBvPnm0paurEj6EtjCEwxaw8WZN51LA=
Expand Down
5 changes: 5 additions & 0 deletions internal/conns/awsclient_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions internal/service/batch/enum.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package batch

const (
jobDefinitionStatusActive string = "ACTIVE"
jobDefinitionStatusInactive string = "INACTIVE"
)

func jobDefinitionStatus_Values() []string {
return []string{
jobDefinitionStatusInactive,
jobDefinitionStatusActive,
}
}
Loading
Loading