Skip to content

Latest commit

 

History

History
3188 lines (1991 loc) · 141 KB

dataGitlabProjectIssues.go.md

File metadata and controls

3188 lines (1991 loc) · 141 KB

dataGitlabProjectIssues Submodule

Constructs

DataGitlabProjectIssues

Represents a {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues gitlab_project_issues}.

Initializers

import "github.com/cdktf/cdktf-provider-gitlab-go/gitlab/v12/datagitlabprojectissues"

datagitlabprojectissues.NewDataGitlabProjectIssues(scope Construct, id *string, config DataGitlabProjectIssuesConfig) DataGitlabProjectIssues
Name Type Description
scope github.com/aws/constructs-go/constructs/v10.Construct The scope in which to define this construct.
id *string The scoped construct ID.
config DataGitlabProjectIssuesConfig No description.

scopeRequired
  • Type: github.com/aws/constructs-go/constructs/v10.Construct

The scope in which to define this construct.


idRequired
  • Type: *string

The scoped construct ID.

Must be unique amongst siblings in the same scope


configRequired

Methods

Name Description
ToString Returns a string representation of this construct.
AddOverride No description.
OverrideLogicalId Overrides the auto-generated logical ID with a specific ID.
ResetOverrideLogicalId Resets a previously passed logical Id to use the auto-generated logical id again.
ToHclTerraform Adds this resource to the terraform JSON output.
ToMetadata No description.
ToTerraform Adds this resource to the terraform JSON output.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
ResetAssigneeId No description.
ResetAssigneeUsername No description.
ResetAuthorId No description.
ResetConfidential No description.
ResetCreatedAfter No description.
ResetCreatedBefore No description.
ResetDueDate No description.
ResetId No description.
ResetIids No description.
ResetIssueType No description.
ResetLabels No description.
ResetMilestone No description.
ResetMyReactionEmoji No description.
ResetNotAssigneeId No description.
ResetNotAuthorId No description.
ResetNotLabels No description.
ResetNotMilestone No description.
ResetNotMyReactionEmoji No description.
ResetOrderBy No description.
ResetScope No description.
ResetSearch No description.
ResetSort No description.
ResetUpdatedAfter No description.
ResetUpdatedBefore No description.
ResetWeight No description.
ResetWithLabelsDetails No description.

ToString
func ToString() *string

Returns a string representation of this construct.

AddOverride
func AddOverride(path *string, value interface{})
pathRequired
  • Type: *string

valueRequired
  • Type: interface{}

OverrideLogicalId
func OverrideLogicalId(newLogicalId *string)

Overrides the auto-generated logical ID with a specific ID.

newLogicalIdRequired
  • Type: *string

The new logical ID to use for this stack element.


ResetOverrideLogicalId
func ResetOverrideLogicalId()

Resets a previously passed logical Id to use the auto-generated logical id again.

ToHclTerraform
func ToHclTerraform() interface{}

Adds this resource to the terraform JSON output.

ToMetadata
func ToMetadata() interface{}
ToTerraform
func ToTerraform() interface{}

Adds this resource to the terraform JSON output.

GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

ResetAssigneeId
func ResetAssigneeId()
ResetAssigneeUsername
func ResetAssigneeUsername()
ResetAuthorId
func ResetAuthorId()
ResetConfidential
func ResetConfidential()
ResetCreatedAfter
func ResetCreatedAfter()
ResetCreatedBefore
func ResetCreatedBefore()
ResetDueDate
func ResetDueDate()
ResetId
func ResetId()
ResetIids
func ResetIids()
ResetIssueType
func ResetIssueType()
ResetLabels
func ResetLabels()
ResetMilestone
func ResetMilestone()
ResetMyReactionEmoji
func ResetMyReactionEmoji()
ResetNotAssigneeId
func ResetNotAssigneeId()
ResetNotAuthorId
func ResetNotAuthorId()
ResetNotLabels
func ResetNotLabels()
ResetNotMilestone
func ResetNotMilestone()
ResetNotMyReactionEmoji
func ResetNotMyReactionEmoji()
ResetOrderBy
func ResetOrderBy()
ResetScope
func ResetScope()
ResetSearch
func ResetSearch()
ResetSort
func ResetSort()
ResetUpdatedAfter
func ResetUpdatedAfter()
ResetUpdatedBefore
func ResetUpdatedBefore()
ResetWeight
func ResetWeight()
ResetWithLabelsDetails
func ResetWithLabelsDetails()

Static Functions

Name Description
IsConstruct Checks if x is a construct.
IsTerraformElement No description.
IsTerraformDataSource No description.
GenerateConfigForImport Generates CDKTF code for importing a DataGitlabProjectIssues resource upon running "cdktf plan ".

IsConstruct
import "github.com/cdktf/cdktf-provider-gitlab-go/gitlab/v12/datagitlabprojectissues"

datagitlabprojectissues.DataGitlabProjectIssues_IsConstruct(x interface{}) *bool

Checks if x is a construct.

Use this method instead of instanceof to properly detect Construct instances, even when the construct library is symlinked.

Explanation: in JavaScript, multiple copies of the constructs library on disk are seen as independent, completely different libraries. As a consequence, the class Construct in each copy of the constructs library is seen as a different class, and an instance of one class will not test as instanceof the other class. npm install will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of the constructs library can be accidentally installed, and instanceof will behave unpredictably. It is safest to avoid using instanceof, and using this type-testing method instead.

xRequired
  • Type: interface{}

Any object.


IsTerraformElement
import "github.com/cdktf/cdktf-provider-gitlab-go/gitlab/v12/datagitlabprojectissues"

datagitlabprojectissues.DataGitlabProjectIssues_IsTerraformElement(x interface{}) *bool
xRequired
  • Type: interface{}

IsTerraformDataSource
import "github.com/cdktf/cdktf-provider-gitlab-go/gitlab/v12/datagitlabprojectissues"

datagitlabprojectissues.DataGitlabProjectIssues_IsTerraformDataSource(x interface{}) *bool
xRequired
  • Type: interface{}

GenerateConfigForImport
import "github.com/cdktf/cdktf-provider-gitlab-go/gitlab/v12/datagitlabprojectissues"

datagitlabprojectissues.DataGitlabProjectIssues_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource

Generates CDKTF code for importing a DataGitlabProjectIssues resource upon running "cdktf plan ".

scopeRequired
  • Type: github.com/aws/constructs-go/constructs/v10.Construct

The scope in which to define this construct.


importToIdRequired
  • Type: *string

The construct id used in the generated config for the DataGitlabProjectIssues to import.


importFromIdRequired
  • Type: *string

The id of the existing DataGitlabProjectIssues that should be imported.

Refer to the {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#import import section} in the documentation of this resource for the id to use


providerOptional
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider

? Optional instance of the provider where the DataGitlabProjectIssues to import is found.


Properties

Name Type Description
Node github.com/aws/constructs-go/constructs/v10.Node The tree node.
CdktfStack github.com/hashicorp/terraform-cdk-go/cdktf.TerraformStack No description.
Fqn *string No description.
FriendlyUniqueId *string No description.
TerraformMetaArguments *map[string]interface{} No description.
TerraformResourceType *string No description.
TerraformGeneratorMetadata github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProviderGeneratorMetadata No description.
Count interface{} No description.
DependsOn *[]*string No description.
ForEach github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator No description.
Lifecycle github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle No description.
Provider github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider No description.
Issues DataGitlabProjectIssuesIssuesList No description.
AssigneeIdInput *f64 No description.
AssigneeUsernameInput *string No description.
AuthorIdInput *f64 No description.
ConfidentialInput interface{} No description.
CreatedAfterInput *string No description.
CreatedBeforeInput *string No description.
DueDateInput *string No description.
IdInput *string No description.
IidsInput *[]*f64 No description.
IssueTypeInput *string No description.
LabelsInput *[]*string No description.
MilestoneInput *string No description.
MyReactionEmojiInput *string No description.
NotAssigneeIdInput *[]*f64 No description.
NotAuthorIdInput *[]*f64 No description.
NotLabelsInput *[]*string No description.
NotMilestoneInput *string No description.
NotMyReactionEmojiInput *[]*string No description.
OrderByInput *string No description.
ProjectInput *string No description.
ScopeInput *string No description.
SearchInput *string No description.
SortInput *string No description.
UpdatedAfterInput *string No description.
UpdatedBeforeInput *string No description.
WeightInput *f64 No description.
WithLabelsDetailsInput interface{} No description.
AssigneeId *f64 No description.
AssigneeUsername *string No description.
AuthorId *f64 No description.
Confidential interface{} No description.
CreatedAfter *string No description.
CreatedBefore *string No description.
DueDate *string No description.
Id *string No description.
Iids *[]*f64 No description.
IssueType *string No description.
Labels *[]*string No description.
Milestone *string No description.
MyReactionEmoji *string No description.
NotAssigneeId *[]*f64 No description.
NotAuthorId *[]*f64 No description.
NotLabels *[]*string No description.
NotMilestone *string No description.
NotMyReactionEmoji *[]*string No description.
OrderBy *string No description.
Project *string No description.
Scope *string No description.
Search *string No description.
Sort *string No description.
UpdatedAfter *string No description.
UpdatedBefore *string No description.
Weight *f64 No description.
WithLabelsDetails interface{} No description.

NodeRequired
func Node() Node
  • Type: github.com/aws/constructs-go/constructs/v10.Node

The tree node.


CdktfStackRequired
func CdktfStack() TerraformStack
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformStack

FqnRequired
func Fqn() *string
  • Type: *string

FriendlyUniqueIdRequired
func FriendlyUniqueId() *string
  • Type: *string

TerraformMetaArgumentsRequired
func TerraformMetaArguments() *map[string]interface{}
  • Type: *map[string]interface{}

TerraformResourceTypeRequired
func TerraformResourceType() *string
  • Type: *string

TerraformGeneratorMetadataOptional
func TerraformGeneratorMetadata() TerraformProviderGeneratorMetadata
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProviderGeneratorMetadata

CountOptional
func Count() interface{}
  • Type: interface{}

DependsOnOptional
func DependsOn() *[]*string
  • Type: *[]*string

ForEachOptional
func ForEach() ITerraformIterator
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator

LifecycleOptional
func Lifecycle() TerraformResourceLifecycle
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle

ProviderOptional
func Provider() TerraformProvider
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider

IssuesRequired
func Issues() DataGitlabProjectIssuesIssuesList

AssigneeIdInputOptional
func AssigneeIdInput() *f64
  • Type: *f64

AssigneeUsernameInputOptional
func AssigneeUsernameInput() *string
  • Type: *string

AuthorIdInputOptional
func AuthorIdInput() *f64
  • Type: *f64

ConfidentialInputOptional
func ConfidentialInput() interface{}
  • Type: interface{}

CreatedAfterInputOptional
func CreatedAfterInput() *string
  • Type: *string

CreatedBeforeInputOptional
func CreatedBeforeInput() *string
  • Type: *string

DueDateInputOptional
func DueDateInput() *string
  • Type: *string

IdInputOptional
func IdInput() *string
  • Type: *string

IidsInputOptional
func IidsInput() *[]*f64
  • Type: *[]*f64

IssueTypeInputOptional
func IssueTypeInput() *string
  • Type: *string

LabelsInputOptional
func LabelsInput() *[]*string
  • Type: *[]*string

MilestoneInputOptional
func MilestoneInput() *string
  • Type: *string

MyReactionEmojiInputOptional
func MyReactionEmojiInput() *string
  • Type: *string

NotAssigneeIdInputOptional
func NotAssigneeIdInput() *[]*f64
  • Type: *[]*f64

NotAuthorIdInputOptional
func NotAuthorIdInput() *[]*f64
  • Type: *[]*f64

NotLabelsInputOptional
func NotLabelsInput() *[]*string
  • Type: *[]*string

NotMilestoneInputOptional
func NotMilestoneInput() *string
  • Type: *string

NotMyReactionEmojiInputOptional
func NotMyReactionEmojiInput() *[]*string
  • Type: *[]*string

OrderByInputOptional
func OrderByInput() *string
  • Type: *string

ProjectInputOptional
func ProjectInput() *string
  • Type: *string

ScopeInputOptional
func ScopeInput() *string
  • Type: *string

SearchInputOptional
func SearchInput() *string
  • Type: *string

SortInputOptional
func SortInput() *string
  • Type: *string

UpdatedAfterInputOptional
func UpdatedAfterInput() *string
  • Type: *string

UpdatedBeforeInputOptional
func UpdatedBeforeInput() *string
  • Type: *string

WeightInputOptional
func WeightInput() *f64
  • Type: *f64

WithLabelsDetailsInputOptional
func WithLabelsDetailsInput() interface{}
  • Type: interface{}

AssigneeIdRequired
func AssigneeId() *f64
  • Type: *f64

AssigneeUsernameRequired
func AssigneeUsername() *string
  • Type: *string

AuthorIdRequired
func AuthorId() *f64
  • Type: *f64

ConfidentialRequired
func Confidential() interface{}
  • Type: interface{}

CreatedAfterRequired
func CreatedAfter() *string
  • Type: *string

CreatedBeforeRequired
func CreatedBefore() *string
  • Type: *string

DueDateRequired
func DueDate() *string
  • Type: *string

IdRequired
func Id() *string
  • Type: *string

IidsRequired
func Iids() *[]*f64
  • Type: *[]*f64

IssueTypeRequired
func IssueType() *string
  • Type: *string

LabelsRequired
func Labels() *[]*string
  • Type: *[]*string

MilestoneRequired
func Milestone() *string
  • Type: *string

MyReactionEmojiRequired
func MyReactionEmoji() *string
  • Type: *string

NotAssigneeIdRequired
func NotAssigneeId() *[]*f64
  • Type: *[]*f64

NotAuthorIdRequired
func NotAuthorId() *[]*f64
  • Type: *[]*f64

NotLabelsRequired
func NotLabels() *[]*string
  • Type: *[]*string

NotMilestoneRequired
func NotMilestone() *string
  • Type: *string

NotMyReactionEmojiRequired
func NotMyReactionEmoji() *[]*string
  • Type: *[]*string

OrderByRequired
func OrderBy() *string
  • Type: *string

ProjectRequired
func Project() *string
  • Type: *string

ScopeRequired
func Scope() *string
  • Type: *string

SearchRequired
func Search() *string
  • Type: *string

SortRequired
func Sort() *string
  • Type: *string

UpdatedAfterRequired
func UpdatedAfter() *string
  • Type: *string

UpdatedBeforeRequired
func UpdatedBefore() *string
  • Type: *string

WeightRequired
func Weight() *f64
  • Type: *f64

WithLabelsDetailsRequired
func WithLabelsDetails() interface{}
  • Type: interface{}

Constants

Name Type Description
TfResourceType *string No description.

TfResourceTypeRequired
func TfResourceType() *string
  • Type: *string

Structs

DataGitlabProjectIssuesConfig

Initializer

import "github.com/cdktf/cdktf-provider-gitlab-go/gitlab/v12/datagitlabprojectissues"

&datagitlabprojectissues.DataGitlabProjectIssuesConfig {
	Connection: interface{},
	Count: interface{},
	DependsOn: *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable,
	ForEach: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator,
	Lifecycle: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle,
	Provider: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider,
	Provisioners: *[]interface{},
	Project: *string,
	AssigneeId: *f64,
	AssigneeUsername: *string,
	AuthorId: *f64,
	Confidential: interface{},
	CreatedAfter: *string,
	CreatedBefore: *string,
	DueDate: *string,
	Id: *string,
	Iids: *[]*f64,
	IssueType: *string,
	Labels: *[]*string,
	Milestone: *string,
	MyReactionEmoji: *string,
	NotAssigneeId: *[]*f64,
	NotAuthorId: *[]*f64,
	NotLabels: *[]*string,
	NotMilestone: *string,
	NotMyReactionEmoji: *[]*string,
	OrderBy: *string,
	Scope: *string,
	Search: *string,
	Sort: *string,
	UpdatedAfter: *string,
	UpdatedBefore: *string,
	Weight: *f64,
	WithLabelsDetails: interface{},
}

Properties

Name Type Description
Connection interface{} No description.
Count interface{} No description.
DependsOn *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable No description.
ForEach github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator No description.
Lifecycle github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle No description.
Provider github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider No description.
Provisioners *[]interface{} No description.
Project *string The name or id of the project.
AssigneeId *f64 Return issues assigned to the given user id.
AssigneeUsername *string Return issues assigned to the given username.
AuthorId *f64 Return issues created by the given user id. Combine with scope=all or scope=assigned_to_me.
Confidential interface{} Filter confidential or public issues.
CreatedAfter *string Return issues created on or after the given time. Expected in ISO 8601 format (2019-03-15T08:00:00Z).
CreatedBefore *string Return issues created on or before the given time. Expected in ISO 8601 format (2019-03-15T08:00:00Z).
DueDate *string Return issues that have no due date, are overdue, or whose due date is this week, this month, or between two weeks ago and next month.
Id *string Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#id DataGitlabProjectIssues#id}.
Iids *[]*f64 Return only the issues having the given iid.
IssueType *string Filter to a given type of issue. Valid values are [issue incident test_case]. (Introduced in GitLab 13.12).
Labels *[]*string Return issues with labels.
Milestone *string The milestone title. None lists all issues with no milestone. Any lists all issues that have an assigned milestone.
MyReactionEmoji *string Return issues reacted by the authenticated user by the given emoji.
NotAssigneeId *[]*f64 Return issues that do not match the assignee id.
NotAuthorId *[]*f64 Return issues that do not match the author id.
NotLabels *[]*string Return issues that do not match the labels.
NotMilestone *string Return issues that do not match the milestone.
NotMyReactionEmoji *[]*string Return issues not reacted by the authenticated user by the given emoji.
OrderBy *string Return issues ordered by. Valid values are created_at, updated_at, priority, due_date, relative_position, label_priority, milestone_due, popularity, weight. Default is created_at.
Scope *string Return issues for the given scope. Valid values are created_by_me, assigned_to_me, all. Defaults to all.
Search *string Search project issues against their title and description.
Sort *string Return issues sorted in asc or desc order. Default is desc.
UpdatedAfter *string Return issues updated on or after the given time. Expected in ISO 8601 format (2019-03-15T08:00:00Z).
UpdatedBefore *string Return issues updated on or before the given time. Expected in ISO 8601 format (2019-03-15T08:00:00Z).
Weight *f64 Return issues with the specified weight.
WithLabelsDetails interface{} If true, the response returns more details for each label in labels field: :name, :color, :description, :description_html, :text_color.

ConnectionOptional
Connection interface{}
  • Type: interface{}

CountOptional
Count interface{}
  • Type: interface{}

DependsOnOptional
DependsOn *[]ITerraformDependable
  • Type: *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable

ForEachOptional
ForEach ITerraformIterator
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator

LifecycleOptional
Lifecycle TerraformResourceLifecycle
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle

ProviderOptional
Provider TerraformProvider
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider

ProvisionersOptional
Provisioners *[]interface{}
  • Type: *[]interface{}

ProjectRequired
Project *string
  • Type: *string

The name or id of the project.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#project DataGitlabProjectIssues#project}


AssigneeIdOptional
AssigneeId *f64
  • Type: *f64

Return issues assigned to the given user id.

Mutually exclusive with assignee_username. None returns unassigned issues. Any returns issues with an assignee.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#assignee_id DataGitlabProjectIssues#assignee_id}


AssigneeUsernameOptional
AssigneeUsername *string
  • Type: *string

Return issues assigned to the given username.

Similar to assignee_id and mutually exclusive with assignee_id. In GitLab CE, the assignee_username array should only contain a single value. Otherwise, an invalid parameter error is returned.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#assignee_username DataGitlabProjectIssues#assignee_username}


AuthorIdOptional
AuthorId *f64
  • Type: *f64

Return issues created by the given user id. Combine with scope=all or scope=assigned_to_me.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#author_id DataGitlabProjectIssues#author_id}


ConfidentialOptional
Confidential interface{}
  • Type: interface{}

Filter confidential or public issues.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#confidential DataGitlabProjectIssues#confidential}


CreatedAfterOptional
CreatedAfter *string
  • Type: *string

Return issues created on or after the given time. Expected in ISO 8601 format (2019-03-15T08:00:00Z).

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#created_after DataGitlabProjectIssues#created_after}


CreatedBeforeOptional
CreatedBefore *string
  • Type: *string

Return issues created on or before the given time. Expected in ISO 8601 format (2019-03-15T08:00:00Z).

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#created_before DataGitlabProjectIssues#created_before}


DueDateOptional
DueDate *string
  • Type: *string

Return issues that have no due date, are overdue, or whose due date is this week, this month, or between two weeks ago and next month.

Accepts: 0 (no due date), any, today, tomorrow, overdue, week, month, next_month_and_previous_two_weeks.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#due_date DataGitlabProjectIssues#due_date}


IdOptional
Id *string
  • Type: *string

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#id DataGitlabProjectIssues#id}.

Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.


IidsOptional
Iids *[]*f64
  • Type: *[]*f64

Return only the issues having the given iid.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#iids DataGitlabProjectIssues#iids}


IssueTypeOptional
IssueType *string
  • Type: *string

Filter to a given type of issue. Valid values are [issue incident test_case]. (Introduced in GitLab 13.12).

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#issue_type DataGitlabProjectIssues#issue_type}


LabelsOptional
Labels *[]*string
  • Type: *[]*string

Return issues with labels.

Issues must have all labels to be returned. None lists all issues with no labels. Any lists all issues with at least one label. No+Label (Deprecated) lists all issues with no labels. Predefined names are case-insensitive.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#labels DataGitlabProjectIssues#labels}


MilestoneOptional
Milestone *string
  • Type: *string

The milestone title. None lists all issues with no milestone. Any lists all issues that have an assigned milestone.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#milestone DataGitlabProjectIssues#milestone}


MyReactionEmojiOptional
MyReactionEmoji *string
  • Type: *string

Return issues reacted by the authenticated user by the given emoji.

None returns issues not given a reaction. Any returns issues given at least one reaction.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#my_reaction_emoji DataGitlabProjectIssues#my_reaction_emoji}


NotAssigneeIdOptional
NotAssigneeId *[]*f64
  • Type: *[]*f64

Return issues that do not match the assignee id.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#not_assignee_id DataGitlabProjectIssues#not_assignee_id}


NotAuthorIdOptional
NotAuthorId *[]*f64
  • Type: *[]*f64

Return issues that do not match the author id.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#not_author_id DataGitlabProjectIssues#not_author_id}


NotLabelsOptional
NotLabels *[]*string
  • Type: *[]*string

Return issues that do not match the labels.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#not_labels DataGitlabProjectIssues#not_labels}


NotMilestoneOptional
NotMilestone *string
  • Type: *string

Return issues that do not match the milestone.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#not_milestone DataGitlabProjectIssues#not_milestone}


NotMyReactionEmojiOptional
NotMyReactionEmoji *[]*string
  • Type: *[]*string

Return issues not reacted by the authenticated user by the given emoji.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#not_my_reaction_emoji DataGitlabProjectIssues#not_my_reaction_emoji}


OrderByOptional
OrderBy *string
  • Type: *string

Return issues ordered by. Valid values are created_at, updated_at, priority, due_date, relative_position, label_priority, milestone_due, popularity, weight. Default is created_at.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#order_by DataGitlabProjectIssues#order_by}


ScopeOptional
Scope *string
  • Type: *string

Return issues for the given scope. Valid values are created_by_me, assigned_to_me, all. Defaults to all.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#scope DataGitlabProjectIssues#scope}


SearchOptional
Search *string
  • Type: *string

Search project issues against their title and description.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#search DataGitlabProjectIssues#search}


SortOptional
Sort *string
  • Type: *string

Return issues sorted in asc or desc order. Default is desc.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#sort DataGitlabProjectIssues#sort}


UpdatedAfterOptional
UpdatedAfter *string
  • Type: *string

Return issues updated on or after the given time. Expected in ISO 8601 format (2019-03-15T08:00:00Z).

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#updated_after DataGitlabProjectIssues#updated_after}


UpdatedBeforeOptional
UpdatedBefore *string
  • Type: *string

Return issues updated on or before the given time. Expected in ISO 8601 format (2019-03-15T08:00:00Z).

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#updated_before DataGitlabProjectIssues#updated_before}


WeightOptional
Weight *f64
  • Type: *f64

Return issues with the specified weight.

None returns issues with no weight assigned. Any returns issues with a weight assigned.

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#weight DataGitlabProjectIssues#weight}


WithLabelsDetailsOptional
WithLabelsDetails interface{}
  • Type: interface{}

If true, the response returns more details for each label in labels field: :name, :color, :description, :description_html, :text_color.

Default is false. description_html was introduced in GitLab 12.7

Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/16.11.0/docs/data-sources/project_issues#with_labels_details DataGitlabProjectIssues#with_labels_details}


DataGitlabProjectIssuesIssues

Initializer

import "github.com/cdktf/cdktf-provider-gitlab-go/gitlab/v12/datagitlabprojectissues"

&datagitlabprojectissues.DataGitlabProjectIssuesIssues {

}

DataGitlabProjectIssuesIssuesTaskCompletionStatus

Initializer

import "github.com/cdktf/cdktf-provider-gitlab-go/gitlab/v12/datagitlabprojectissues"

&datagitlabprojectissues.DataGitlabProjectIssuesIssuesTaskCompletionStatus {

}

Classes

DataGitlabProjectIssuesIssuesList

Initializers

import "github.com/cdktf/cdktf-provider-gitlab-go/gitlab/v12/datagitlabprojectissues"

datagitlabprojectissues.NewDataGitlabProjectIssuesIssuesList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataGitlabProjectIssuesIssuesList
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
wrapsSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


wrapsSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
AllWithMapKey Creating an iterator for this complex list.
ComputeFqn No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
Get No description.

AllWithMapKey
func AllWithMapKey(mapKeyAttributeName *string) DynamicListTerraformIterator

Creating an iterator for this complex list.

The list will be converted into a map with the mapKeyAttributeName as the key.

mapKeyAttributeNameRequired
  • Type: *string

ComputeFqn
func ComputeFqn() *string
Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Get
func Get(index *f64) DataGitlabProjectIssuesIssuesOutputReference
indexRequired
  • Type: *f64

the index of the item to return.


Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*string

The creation stack of this resolvable which will be appended to errors thrown during resolution.

If this returns an empty array the stack will not be attached.


FqnRequired
func Fqn() *string
  • Type: *string

DataGitlabProjectIssuesIssuesOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-gitlab-go/gitlab/v12/datagitlabprojectissues"

datagitlabprojectissues.NewDataGitlabProjectIssuesIssuesOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataGitlabProjectIssuesIssuesOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
complexObjectIndex *f64 the index of this item in the list.
complexObjectIsFromSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


complexObjectIndexRequired
  • Type: *f64

the index of this item in the list.


complexObjectIsFromSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
AssigneeIds *[]*f64 No description.
AuthorId *f64 No description.
ClosedAt *string No description.
ClosedByUserId *f64 No description.
Confidential github.com/hashicorp/terraform-cdk-go/cdktf.IResolvable No description.
CreatedAt *string No description.
Description *string No description.
DiscussionLocked github.com/hashicorp/terraform-cdk-go/cdktf.IResolvable No description.
DiscussionToResolve *string No description.
Downvotes *f64 No description.
DueDate *string No description.
EpicId *f64 No description.
EpicIssueId *f64 No description.
ExternalId *string No description.
HumanTimeEstimate *string No description.
HumanTotalTimeSpent *string No description.
Iid *f64 No description.
IssueId *f64 No description.
IssueLinkId *f64 No description.
IssueType *string No description.
Labels *[]*string No description.
Links github.com/hashicorp/terraform-cdk-go/cdktf.StringMap No description.
MergeRequestsCount *f64 No description.
MergeRequestToResolveDiscussionsOf *f64 No description.
MilestoneId *f64 No description.
MovedToId *f64 No description.
Project *string No description.
References github.com/hashicorp/terraform-cdk-go/cdktf.StringMap No description.
State *string No description.
Subscribed github.com/hashicorp/terraform-cdk-go/cdktf.IResolvable No description.
TaskCompletionStatus DataGitlabProjectIssuesIssuesTaskCompletionStatusList No description.
TimeEstimate *f64 No description.
Title *string No description.
TotalTimeSpent *f64 No description.
UpdatedAt *string No description.
Upvotes *f64 No description.
UserNotesCount *f64 No description.
WebUrl *string No description.
Weight *f64 No description.
InternalValue DataGitlabProjectIssuesIssues No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*string

The creation stack of this resolvable which will be appended to errors thrown during resolution.

If this returns an empty array the stack will not be attached.


FqnRequired
func Fqn() *string
  • Type: *string

AssigneeIdsRequired
func AssigneeIds() *[]*f64
  • Type: *[]*f64

AuthorIdRequired
func AuthorId() *f64
  • Type: *f64

ClosedAtRequired
func ClosedAt() *string
  • Type: *string

ClosedByUserIdRequired
func ClosedByUserId() *f64
  • Type: *f64

ConfidentialRequired
func Confidential() IResolvable
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolvable

CreatedAtRequired
func CreatedAt() *string
  • Type: *string

DescriptionRequired
func Description() *string
  • Type: *string

DiscussionLockedRequired
func DiscussionLocked() IResolvable
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolvable

DiscussionToResolveRequired
func DiscussionToResolve() *string
  • Type: *string

DownvotesRequired
func Downvotes() *f64
  • Type: *f64

DueDateRequired
func DueDate() *string
  • Type: *string

EpicIdRequired
func EpicId() *f64
  • Type: *f64

EpicIssueIdRequired
func EpicIssueId() *f64
  • Type: *f64

ExternalIdRequired
func ExternalId() *string
  • Type: *string

HumanTimeEstimateRequired
func HumanTimeEstimate() *string
  • Type: *string

HumanTotalTimeSpentRequired
func HumanTotalTimeSpent() *string
  • Type: *string

IidRequired
func Iid() *f64
  • Type: *f64

IssueIdRequired
func IssueId() *f64
  • Type: *f64

IssueLinkIdRequired
func IssueLinkId() *f64
  • Type: *f64

IssueTypeRequired
func IssueType() *string
  • Type: *string

LabelsRequired
func Labels() *[]*string
  • Type: *[]*string

LinksRequired
func Links() StringMap
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.StringMap

MergeRequestsCountRequired
func MergeRequestsCount() *f64
  • Type: *f64

MergeRequestToResolveDiscussionsOfRequired
func MergeRequestToResolveDiscussionsOf() *f64
  • Type: *f64

MilestoneIdRequired
func MilestoneId() *f64
  • Type: *f64

MovedToIdRequired
func MovedToId() *f64
  • Type: *f64

ProjectRequired
func Project() *string
  • Type: *string

ReferencesRequired
func References() StringMap
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.StringMap

StateRequired
func State() *string
  • Type: *string

SubscribedRequired
func Subscribed() IResolvable
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolvable

TaskCompletionStatusRequired
func TaskCompletionStatus() DataGitlabProjectIssuesIssuesTaskCompletionStatusList

TimeEstimateRequired
func TimeEstimate() *f64
  • Type: *f64

TitleRequired
func Title() *string
  • Type: *string

TotalTimeSpentRequired
func TotalTimeSpent() *f64
  • Type: *f64

UpdatedAtRequired
func UpdatedAt() *string
  • Type: *string

UpvotesRequired
func Upvotes() *f64
  • Type: *f64

UserNotesCountRequired
func UserNotesCount() *f64
  • Type: *f64

WebUrlRequired
func WebUrl() *string
  • Type: *string

WeightRequired
func Weight() *f64
  • Type: *f64

InternalValueOptional
func InternalValue() DataGitlabProjectIssuesIssues

DataGitlabProjectIssuesIssuesTaskCompletionStatusList

Initializers

import "github.com/cdktf/cdktf-provider-gitlab-go/gitlab/v12/datagitlabprojectissues"

datagitlabprojectissues.NewDataGitlabProjectIssuesIssuesTaskCompletionStatusList(terraformResource IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) DataGitlabProjectIssuesIssuesTaskCompletionStatusList
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
wrapsSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


wrapsSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
AllWithMapKey Creating an iterator for this complex list.
ComputeFqn No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.
Get No description.

AllWithMapKey
func AllWithMapKey(mapKeyAttributeName *string) DynamicListTerraformIterator

Creating an iterator for this complex list.

The list will be converted into a map with the mapKeyAttributeName as the key.

mapKeyAttributeNameRequired
  • Type: *string

ComputeFqn
func ComputeFqn() *string
Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Get
func Get(index *f64) DataGitlabProjectIssuesIssuesTaskCompletionStatusOutputReference
indexRequired
  • Type: *f64

the index of the item to return.


Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*string

The creation stack of this resolvable which will be appended to errors thrown during resolution.

If this returns an empty array the stack will not be attached.


FqnRequired
func Fqn() *string
  • Type: *string

DataGitlabProjectIssuesIssuesTaskCompletionStatusOutputReference

Initializers

import "github.com/cdktf/cdktf-provider-gitlab-go/gitlab/v12/datagitlabprojectissues"

datagitlabprojectissues.NewDataGitlabProjectIssuesIssuesTaskCompletionStatusOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string, complexObjectIndex *f64, complexObjectIsFromSet *bool) DataGitlabProjectIssuesIssuesTaskCompletionStatusOutputReference
Name Type Description
terraformResource github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent The parent resource.
terraformAttribute *string The attribute on the parent resource this class is referencing.
complexObjectIndex *f64 the index of this item in the list.
complexObjectIsFromSet *bool whether the list is wrapping a set (will add tolist() to be able to access an item via an index).

terraformResourceRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent

The parent resource.


terraformAttributeRequired
  • Type: *string

The attribute on the parent resource this class is referencing.


complexObjectIndexRequired
  • Type: *f64

the index of this item in the list.


complexObjectIsFromSetRequired
  • Type: *bool

whether the list is wrapping a set (will add tolist() to be able to access an item via an index).


Methods

Name Description
ComputeFqn No description.
GetAnyMapAttribute No description.
GetBooleanAttribute No description.
GetBooleanMapAttribute No description.
GetListAttribute No description.
GetNumberAttribute No description.
GetNumberListAttribute No description.
GetNumberMapAttribute No description.
GetStringAttribute No description.
GetStringMapAttribute No description.
InterpolationForAttribute No description.
Resolve Produce the Token's value at resolution time.
ToString Return a string representation of this resolvable object.

ComputeFqn
func ComputeFqn() *string
GetAnyMapAttribute
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
terraformAttributeRequired
  • Type: *string

GetBooleanAttribute
func GetBooleanAttribute(terraformAttribute *string) IResolvable
terraformAttributeRequired
  • Type: *string

GetBooleanMapAttribute
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
terraformAttributeRequired
  • Type: *string

GetListAttribute
func GetListAttribute(terraformAttribute *string) *[]*string
terraformAttributeRequired
  • Type: *string

GetNumberAttribute
func GetNumberAttribute(terraformAttribute *string) *f64
terraformAttributeRequired
  • Type: *string

GetNumberListAttribute
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
terraformAttributeRequired
  • Type: *string

GetNumberMapAttribute
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
terraformAttributeRequired
  • Type: *string

GetStringAttribute
func GetStringAttribute(terraformAttribute *string) *string
terraformAttributeRequired
  • Type: *string

GetStringMapAttribute
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
terraformAttributeRequired
  • Type: *string

InterpolationForAttribute
func InterpolationForAttribute(property *string) IResolvable
propertyRequired
  • Type: *string

Resolve
func Resolve(_context IResolveContext) interface{}

Produce the Token's value at resolution time.

_contextRequired
  • Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext

ToString
func ToString() *string

Return a string representation of this resolvable object.

Returns a reversible string representation.

Properties

Name Type Description
CreationStack *[]*string The creation stack of this resolvable which will be appended to errors thrown during resolution.
Fqn *string No description.
CompletedCount *f64 No description.
Count *f64 No description.
InternalValue DataGitlabProjectIssuesIssuesTaskCompletionStatus No description.

CreationStackRequired
func CreationStack() *[]*string
  • Type: *[]*string

The creation stack of this resolvable which will be appended to errors thrown during resolution.

If this returns an empty array the stack will not be attached.


FqnRequired
func Fqn() *string
  • Type: *string

CompletedCountRequired
func CompletedCount() *f64
  • Type: *f64

CountRequired
func Count() *f64
  • Type: *f64

InternalValueOptional
func InternalValue() DataGitlabProjectIssuesIssuesTaskCompletionStatus