Documentation ¶
Index ¶
- func BranchProtection_GenerateConfigForImport(scope constructs.Construct, importToId *string, importFromId *string, ...) cdktf.ImportableResource
- func BranchProtection_IsConstruct(x interface{}) *bool
- func BranchProtection_IsTerraformElement(x interface{}) *bool
- func BranchProtection_IsTerraformResource(x interface{}) *bool
- func BranchProtection_TfResourceType() *string
- func NewBranchProtectionAllowedToMergeList_Override(b BranchProtectionAllowedToMergeList, ...)
- func NewBranchProtectionAllowedToMergeOutputReference_Override(b BranchProtectionAllowedToMergeOutputReference, ...)
- func NewBranchProtectionAllowedToPushList_Override(b BranchProtectionAllowedToPushList, ...)
- func NewBranchProtectionAllowedToPushOutputReference_Override(b BranchProtectionAllowedToPushOutputReference, ...)
- func NewBranchProtectionAllowedToUnprotectList_Override(b BranchProtectionAllowedToUnprotectList, ...)
- func NewBranchProtectionAllowedToUnprotectOutputReference_Override(b BranchProtectionAllowedToUnprotectOutputReference, ...)
- func NewBranchProtection_Override(b BranchProtection, scope constructs.Construct, id *string, ...)
- type BranchProtection
- type BranchProtectionAllowedToMerge
- type BranchProtectionAllowedToMergeList
- type BranchProtectionAllowedToMergeOutputReference
- type BranchProtectionAllowedToPush
- type BranchProtectionAllowedToPushList
- type BranchProtectionAllowedToPushOutputReference
- type BranchProtectionAllowedToUnprotect
- type BranchProtectionAllowedToUnprotectList
- type BranchProtectionAllowedToUnprotectOutputReference
- type BranchProtectionConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BranchProtection_GenerateConfigForImport ¶
func BranchProtection_GenerateConfigForImport(scope constructs.Construct, importToId *string, importFromId *string, provider cdktf.TerraformProvider) cdktf.ImportableResource
Generates CDKTF code for importing a BranchProtection resource upon running "cdktf plan <stack-name>".
func BranchProtection_IsConstruct ¶
func BranchProtection_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.
Returns: true if `x` is an object created from a class which extends `Construct`.
func BranchProtection_IsTerraformElement ¶
func BranchProtection_IsTerraformElement(x interface{}) *bool
Experimental.
func BranchProtection_IsTerraformResource ¶
func BranchProtection_IsTerraformResource(x interface{}) *bool
Experimental.
func BranchProtection_TfResourceType ¶
func BranchProtection_TfResourceType() *string
func NewBranchProtectionAllowedToMergeList_Override ¶
func NewBranchProtectionAllowedToMergeList_Override(b BranchProtectionAllowedToMergeList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewBranchProtectionAllowedToMergeOutputReference_Override ¶
func NewBranchProtectionAllowedToMergeOutputReference_Override(b BranchProtectionAllowedToMergeOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewBranchProtectionAllowedToPushList_Override ¶
func NewBranchProtectionAllowedToPushList_Override(b BranchProtectionAllowedToPushList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewBranchProtectionAllowedToPushOutputReference_Override ¶
func NewBranchProtectionAllowedToPushOutputReference_Override(b BranchProtectionAllowedToPushOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewBranchProtectionAllowedToUnprotectList_Override ¶
func NewBranchProtectionAllowedToUnprotectList_Override(b BranchProtectionAllowedToUnprotectList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewBranchProtectionAllowedToUnprotectOutputReference_Override ¶
func NewBranchProtectionAllowedToUnprotectOutputReference_Override(b BranchProtectionAllowedToUnprotectOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewBranchProtection_Override ¶
func NewBranchProtection_Override(b BranchProtection, scope constructs.Construct, id *string, config *BranchProtectionConfig)
Create a new {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection gitlab_branch_protection} Resource.
Types ¶
type BranchProtection ¶
type BranchProtection interface { cdktf.TerraformResource AllowedToMerge() BranchProtectionAllowedToMergeList AllowedToMergeInput() interface{} AllowedToPush() BranchProtectionAllowedToPushList AllowedToPushInput() interface{} AllowedToUnprotect() BranchProtectionAllowedToUnprotectList AllowedToUnprotectInput() interface{} AllowForcePush() interface{} SetAllowForcePush(val interface{}) AllowForcePushInput() interface{} Branch() *string SetBranch(val *string) BranchInput() *string BranchProtectionId() *float64 // Experimental. CdktfStack() cdktf.TerraformStack CodeOwnerApprovalRequired() interface{} SetCodeOwnerApprovalRequired(val interface{}) CodeOwnerApprovalRequiredInput() interface{} // Experimental. Connection() interface{} // Experimental. SetConnection(val interface{}) // Experimental. ConstructNodeMetadata() *map[string]interface{} // Experimental. Count() interface{} // Experimental. SetCount(val interface{}) // Experimental. DependsOn() *[]*string // Experimental. SetDependsOn(val *[]*string) // Experimental. ForEach() cdktf.ITerraformIterator // Experimental. SetForEach(val cdktf.ITerraformIterator) // Experimental. Fqn() *string // Experimental. FriendlyUniqueId() *string Id() *string // Experimental. Lifecycle() *cdktf.TerraformResourceLifecycle // Experimental. SetLifecycle(val *cdktf.TerraformResourceLifecycle) MergeAccessLevel() *string SetMergeAccessLevel(val *string) MergeAccessLevelInput() *string // The tree node. Node() constructs.Node Project() *string SetProject(val *string) ProjectInput() *string // Experimental. Provider() cdktf.TerraformProvider // Experimental. SetProvider(val cdktf.TerraformProvider) // Experimental. Provisioners() *[]interface{} // Experimental. SetProvisioners(val *[]interface{}) PushAccessLevel() *string SetPushAccessLevel(val *string) PushAccessLevelInput() *string // Experimental. RawOverrides() interface{} // Experimental. TerraformGeneratorMetadata() *cdktf.TerraformProviderGeneratorMetadata // Experimental. TerraformMetaArguments() *map[string]interface{} // Experimental. TerraformResourceType() *string UnprotectAccessLevel() *string SetUnprotectAccessLevel(val *string) UnprotectAccessLevelInput() *string // Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. // Experimental. AddMoveTarget(moveTarget *string) // Experimental. AddOverride(path *string, value interface{}) // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. HasResourceMove() interface{} // Experimental. ImportFrom(id *string, provider cdktf.TerraformProvider) // Experimental. InterpolationForAttribute(terraformAttribute *string) cdktf.IResolvable // Move the resource corresponding to "id" to this resource. // // Note that the resource being moved from must be marked as moved using it's instance function. // Experimental. MoveFromId(id *string) // Moves this resource to the target resource given by moveTarget. // Experimental. MoveTo(moveTarget *string, index interface{}) // Moves this resource to the resource corresponding to "id". // Experimental. MoveToId(id *string) // Overrides the auto-generated logical ID with a specific ID. // Experimental. OverrideLogicalId(newLogicalId *string) PutAllowedToMerge(value interface{}) PutAllowedToPush(value interface{}) PutAllowedToUnprotect(value interface{}) ResetAllowedToMerge() ResetAllowedToPush() ResetAllowedToUnprotect() ResetAllowForcePush() ResetCodeOwnerApprovalRequired() ResetMergeAccessLevel() // Resets a previously passed logical Id to use the auto-generated logical id again. // Experimental. ResetOverrideLogicalId() ResetPushAccessLevel() ResetUnprotectAccessLevel() SynthesizeAttributes() *map[string]interface{} SynthesizeHclAttributes() *map[string]interface{} // Experimental. ToHclTerraform() interface{} // Experimental. ToMetadata() interface{} // Returns a string representation of this construct. ToString() *string // Adds this resource to the terraform JSON output. // Experimental. ToTerraform() interface{} }
Represents a {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection gitlab_branch_protection}.
func NewBranchProtection ¶
func NewBranchProtection(scope constructs.Construct, id *string, config *BranchProtectionConfig) BranchProtection
Create a new {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection gitlab_branch_protection} Resource.
type BranchProtectionAllowedToMerge ¶
type BranchProtectionAllowedToMerge struct { // The ID of a GitLab group allowed to perform the relevant action. Mutually exclusive with `user_id`. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#group_id BranchProtection#group_id} GroupId *float64 `field:"optional" json:"groupId" yaml:"groupId"` // The ID of a GitLab user allowed to perform the relevant action. Mutually exclusive with `group_id`. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#user_id BranchProtection#user_id} UserId *float64 `field:"optional" json:"userId" yaml:"userId"` }
type BranchProtectionAllowedToMergeList ¶
type BranchProtectionAllowedToMergeList interface { cdktf.ComplexList // 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. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) BranchProtectionAllowedToMergeOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewBranchProtectionAllowedToMergeList ¶
func NewBranchProtectionAllowedToMergeList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) BranchProtectionAllowedToMergeList
type BranchProtectionAllowedToMergeOutputReference ¶
type BranchProtectionAllowedToMergeOutputReference interface { cdktf.ComplexObject AccessLevel() *string AccessLevelDescription() *string // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // 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. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string GroupId() *float64 SetGroupId(val *float64) GroupIdInput() *float64 InternalValue() interface{} SetInternalValue(val interface{}) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) UserId() *float64 SetUserId(val *float64) UserIdInput() *float64 // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetGroupId() ResetUserId() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewBranchProtectionAllowedToMergeOutputReference ¶
func NewBranchProtectionAllowedToMergeOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) BranchProtectionAllowedToMergeOutputReference
type BranchProtectionAllowedToPush ¶
type BranchProtectionAllowedToPush struct { // The ID of a GitLab deploy key allowed to perform the relevant action. // // Mutually exclusive with `group_id` and `user_id`. This field is read-only until Gitlab 17.5. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#deploy_key_id BranchProtection#deploy_key_id} DeployKeyId *float64 `field:"optional" json:"deployKeyId" yaml:"deployKeyId"` // The ID of a GitLab group allowed to perform the relevant action. Mutually exclusive with `deploy_key_id` and `user_id`. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#group_id BranchProtection#group_id} GroupId *float64 `field:"optional" json:"groupId" yaml:"groupId"` // The ID of a GitLab user allowed to perform the relevant action. Mutually exclusive with `deploy_key_id` and `group_id`. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#user_id BranchProtection#user_id} UserId *float64 `field:"optional" json:"userId" yaml:"userId"` }
type BranchProtectionAllowedToPushList ¶
type BranchProtectionAllowedToPushList interface { cdktf.ComplexList // 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. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) BranchProtectionAllowedToPushOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewBranchProtectionAllowedToPushList ¶
func NewBranchProtectionAllowedToPushList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) BranchProtectionAllowedToPushList
type BranchProtectionAllowedToPushOutputReference ¶
type BranchProtectionAllowedToPushOutputReference interface { cdktf.ComplexObject AccessLevel() *string AccessLevelDescription() *string // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // 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. // Experimental. CreationStack() *[]*string DeployKeyId() *float64 SetDeployKeyId(val *float64) DeployKeyIdInput() *float64 // Experimental. Fqn() *string GroupId() *float64 SetGroupId(val *float64) GroupIdInput() *float64 InternalValue() interface{} SetInternalValue(val interface{}) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) UserId() *float64 SetUserId(val *float64) UserIdInput() *float64 // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetDeployKeyId() ResetGroupId() ResetUserId() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewBranchProtectionAllowedToPushOutputReference ¶
func NewBranchProtectionAllowedToPushOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) BranchProtectionAllowedToPushOutputReference
type BranchProtectionAllowedToUnprotect ¶
type BranchProtectionAllowedToUnprotect struct { // The ID of a GitLab group allowed to perform the relevant action. Mutually exclusive with `user_id`. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#group_id BranchProtection#group_id} GroupId *float64 `field:"optional" json:"groupId" yaml:"groupId"` // The ID of a GitLab user allowed to perform the relevant action. Mutually exclusive with `group_id`. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#user_id BranchProtection#user_id} UserId *float64 `field:"optional" json:"userId" yaml:"userId"` }
type BranchProtectionAllowedToUnprotectList ¶
type BranchProtectionAllowedToUnprotectList interface { cdktf.ComplexList // 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. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) BranchProtectionAllowedToUnprotectOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewBranchProtectionAllowedToUnprotectList ¶
func NewBranchProtectionAllowedToUnprotectList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) BranchProtectionAllowedToUnprotectList
type BranchProtectionAllowedToUnprotectOutputReference ¶
type BranchProtectionAllowedToUnprotectOutputReference interface { cdktf.ComplexObject AccessLevel() *string AccessLevelDescription() *string // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // 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. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string GroupId() *float64 SetGroupId(val *float64) GroupIdInput() *float64 InternalValue() interface{} SetInternalValue(val interface{}) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) UserId() *float64 SetUserId(val *float64) UserIdInput() *float64 // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetGroupId() ResetUserId() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewBranchProtectionAllowedToUnprotectOutputReference ¶
func NewBranchProtectionAllowedToUnprotectOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) BranchProtectionAllowedToUnprotectOutputReference
type BranchProtectionConfig ¶
type BranchProtectionConfig struct { // Experimental. Connection interface{} `field:"optional" json:"connection" yaml:"connection"` // Experimental. Count interface{} `field:"optional" json:"count" yaml:"count"` // Experimental. DependsOn *[]cdktf.ITerraformDependable `field:"optional" json:"dependsOn" yaml:"dependsOn"` // Experimental. ForEach cdktf.ITerraformIterator `field:"optional" json:"forEach" yaml:"forEach"` // Experimental. Lifecycle *cdktf.TerraformResourceLifecycle `field:"optional" json:"lifecycle" yaml:"lifecycle"` // Experimental. Provider cdktf.TerraformProvider `field:"optional" json:"provider" yaml:"provider"` // Experimental. Provisioners *[]interface{} `field:"optional" json:"provisioners" yaml:"provisioners"` // Name of the branch. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#branch BranchProtection#branch} Branch *string `field:"required" json:"branch" yaml:"branch"` // The id of the project. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#project BranchProtection#project} Project *string `field:"required" json:"project" yaml:"project"` // allowed_to_merge block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#allowed_to_merge BranchProtection#allowed_to_merge} AllowedToMerge interface{} `field:"optional" json:"allowedToMerge" yaml:"allowedToMerge"` // allowed_to_push block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#allowed_to_push BranchProtection#allowed_to_push} AllowedToPush interface{} `field:"optional" json:"allowedToPush" yaml:"allowedToPush"` // allowed_to_unprotect block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#allowed_to_unprotect BranchProtection#allowed_to_unprotect} AllowedToUnprotect interface{} `field:"optional" json:"allowedToUnprotect" yaml:"allowedToUnprotect"` // Can be set to true to allow users with push access to force push. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#allow_force_push BranchProtection#allow_force_push} AllowForcePush interface{} `field:"optional" json:"allowForcePush" yaml:"allowForcePush"` // Can be set to true to require code owner approval before merging. Only available for Premium and Ultimate instances. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#code_owner_approval_required BranchProtection#code_owner_approval_required} CodeOwnerApprovalRequired interface{} `field:"optional" json:"codeOwnerApprovalRequired" yaml:"codeOwnerApprovalRequired"` // Access levels allowed to merge. Valid values are: `no one`, `developer`, `maintainer`. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#merge_access_level BranchProtection#merge_access_level} MergeAccessLevel *string `field:"optional" json:"mergeAccessLevel" yaml:"mergeAccessLevel"` // Access levels allowed to push. Valid values are: `no one`, `developer`, `maintainer`. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#push_access_level BranchProtection#push_access_level} PushAccessLevel *string `field:"optional" json:"pushAccessLevel" yaml:"pushAccessLevel"` // Access levels allowed to unprotect. Valid values are: `developer`, `maintainer`, `admin`. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/gitlabhq/gitlab/17.6.0/docs/resources/branch_protection#unprotect_access_level BranchProtection#unprotect_access_level} UnprotectAccessLevel *string `field:"optional" json:"unprotectAccessLevel" yaml:"unprotectAccessLevel"` }
Source Files ¶
- BranchProtection.go
- BranchProtectionAllowedToMerge.go
- BranchProtectionAllowedToMergeList.go
- BranchProtectionAllowedToMergeList__checks.go
- BranchProtectionAllowedToMergeOutputReference.go
- BranchProtectionAllowedToMergeOutputReference__checks.go
- BranchProtectionAllowedToPush.go
- BranchProtectionAllowedToPushList.go
- BranchProtectionAllowedToPushList__checks.go
- BranchProtectionAllowedToPushOutputReference.go
- BranchProtectionAllowedToPushOutputReference__checks.go
- BranchProtectionAllowedToUnprotect.go
- BranchProtectionAllowedToUnprotectList.go
- BranchProtectionAllowedToUnprotectList__checks.go
- BranchProtectionAllowedToUnprotectOutputReference.go
- BranchProtectionAllowedToUnprotectOutputReference__checks.go
- BranchProtectionConfig.go
- BranchProtection__checks.go
- main.go