Skip to content

Commit

Permalink
chore(deps): Updated (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
team-tf-cdk authored Nov 28, 2022
1 parent 6867882 commit 98ca849
Show file tree
Hide file tree
Showing 115 changed files with 40,956 additions and 33,267 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-lint.yml

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

72,480 changes: 39,333 additions & 33,147 deletions API.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json

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

26 changes: 25 additions & 1 deletion src/application-settings/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,12 @@ export interface ApplicationSettingsConfig extends cdktf.TerraformMetaArguments
*/
readonly gravatarEnabled?: boolean | cdktf.IResolvable;
/**
* Prevent overrides of default branch protection.
*
* Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/gitlab/r/application_settings#group_owners_can_manage_default_branch_protection ApplicationSettings#group_owners_can_manage_default_branch_protection}
*/
readonly groupOwnersCanManageDefaultBranchProtection?: boolean | cdktf.IResolvable;
/**
* Create new projects using hashed storage paths: Enable immutable, hash-based paths and repository names to store repositories on disk. This prevents repositories from having to be moved or renamed when the Project URL changes and may improve disk I/O performance. (Always enabled in GitLab versions 13.0 and later, configuration is scheduled for removal in 14.0).
*
* Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/gitlab/r/application_settings#hashed_storage_enabled ApplicationSettings#hashed_storage_enabled}
Expand Down Expand Up @@ -1482,7 +1488,7 @@ export class ApplicationSettings extends cdktf.TerraformResource {
terraformResourceType: 'gitlab_application_settings',
terraformGeneratorMetadata: {
providerName: 'gitlab',
providerVersion: '3.19.0',
providerVersion: '3.20.0',
providerVersionConstraint: '~> 3.14'
},
provider: config.provider,
Expand Down Expand Up @@ -1594,6 +1600,7 @@ export class ApplicationSettings extends cdktf.TerraformResource {
this._grafanaEnabled = config.grafanaEnabled;
this._grafanaUrl = config.grafanaUrl;
this._gravatarEnabled = config.gravatarEnabled;
this._groupOwnersCanManageDefaultBranchProtection = config.groupOwnersCanManageDefaultBranchProtection;
this._hashedStorageEnabled = config.hashedStorageEnabled;
this._helpPageHideCommercialContent = config.helpPageHideCommercialContent;
this._helpPageSupportUrl = config.helpPageSupportUrl;
Expand Down Expand Up @@ -3356,6 +3363,22 @@ export class ApplicationSettings extends cdktf.TerraformResource {
return this._gravatarEnabled;
}

// group_owners_can_manage_default_branch_protection - computed: true, optional: true, required: false
private _groupOwnersCanManageDefaultBranchProtection?: boolean | cdktf.IResolvable;
public get groupOwnersCanManageDefaultBranchProtection() {
return this.getBooleanAttribute('group_owners_can_manage_default_branch_protection');
}
public set groupOwnersCanManageDefaultBranchProtection(value: boolean | cdktf.IResolvable) {
this._groupOwnersCanManageDefaultBranchProtection = value;
}
public resetGroupOwnersCanManageDefaultBranchProtection() {
this._groupOwnersCanManageDefaultBranchProtection = undefined;
}
// Temporarily expose input value. Use with caution.
public get groupOwnersCanManageDefaultBranchProtectionInput() {
return this._groupOwnersCanManageDefaultBranchProtection;
}

// hashed_storage_enabled - computed: true, optional: true, required: false
private _hashedStorageEnabled?: boolean | cdktf.IResolvable;
public get hashedStorageEnabled() {
Expand Down Expand Up @@ -5703,6 +5726,7 @@ export class ApplicationSettings extends cdktf.TerraformResource {
grafana_enabled: cdktf.booleanToTerraform(this._grafanaEnabled),
grafana_url: cdktf.stringToTerraform(this._grafanaUrl),
gravatar_enabled: cdktf.booleanToTerraform(this._gravatarEnabled),
group_owners_can_manage_default_branch_protection: cdktf.booleanToTerraform(this._groupOwnersCanManageDefaultBranchProtection),
hashed_storage_enabled: cdktf.booleanToTerraform(this._hashedStorageEnabled),
help_page_hide_commercial_content: cdktf.booleanToTerraform(this._helpPageHideCommercialContent),
help_page_support_url: cdktf.stringToTerraform(this._helpPageSupportUrl),
Expand Down
4 changes: 2 additions & 2 deletions src/branch-protection/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface BranchProtectionConfig extends cdktf.TerraformMetaArguments {
*/
readonly branch: string;
/**
* Can be set to true to require code owner approval before merging.
* Can be set to true to require code owner approval before merging. Only available own Premium and Ultimate instances.
*
* Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/gitlab/r/branch_protection#code_owner_approval_required BranchProtection#code_owner_approval_required}
*/
Expand Down Expand Up @@ -516,7 +516,7 @@ export class BranchProtection extends cdktf.TerraformResource {
terraformResourceType: 'gitlab_branch_protection',
terraformGeneratorMetadata: {
providerName: 'gitlab',
providerVersion: '3.19.0',
providerVersion: '3.20.0',
providerVersionConstraint: '~> 3.14'
},
provider: config.provider,
Expand Down
2 changes: 1 addition & 1 deletion src/branch/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export class Branch extends cdktf.TerraformResource {
terraformResourceType: 'gitlab_branch',
terraformGeneratorMetadata: {
providerName: 'gitlab',
providerVersion: '3.19.0',
providerVersion: '3.20.0',
providerVersionConstraint: '~> 3.14'
},
provider: config.provider,
Expand Down
2 changes: 1 addition & 1 deletion src/cluster-agent-token/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class ClusterAgentToken extends cdktf.TerraformResource {
terraformResourceType: 'gitlab_cluster_agent_token',
terraformGeneratorMetadata: {
providerName: 'gitlab',
providerVersion: '3.19.0',
providerVersion: '3.20.0',
providerVersionConstraint: '~> 3.14'
},
provider: config.provider,
Expand Down
2 changes: 1 addition & 1 deletion src/cluster-agent/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class ClusterAgent extends cdktf.TerraformResource {
terraformResourceType: 'gitlab_cluster_agent',
terraformGeneratorMetadata: {
providerName: 'gitlab',
providerVersion: '3.19.0',
providerVersion: '3.20.0',
providerVersionConstraint: '~> 3.14'
},
provider: config.provider,
Expand Down
2 changes: 1 addition & 1 deletion src/data-gitlab-branch/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export class DataGitlabBranch extends cdktf.TerraformDataSource {
terraformResourceType: 'gitlab_branch',
terraformGeneratorMetadata: {
providerName: 'gitlab',
providerVersion: '3.19.0',
providerVersion: '3.20.0',
providerVersionConstraint: '~> 3.14'
},
provider: config.provider,
Expand Down
2 changes: 1 addition & 1 deletion src/data-gitlab-cluster-agent/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class DataGitlabClusterAgent extends cdktf.TerraformDataSource {
terraformResourceType: 'gitlab_cluster_agent',
terraformGeneratorMetadata: {
providerName: 'gitlab',
providerVersion: '3.19.0',
providerVersion: '3.20.0',
providerVersionConstraint: '~> 3.14'
},
provider: config.provider,
Expand Down
2 changes: 1 addition & 1 deletion src/data-gitlab-cluster-agents/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export class DataGitlabClusterAgents extends cdktf.TerraformDataSource {
terraformResourceType: 'gitlab_cluster_agents',
terraformGeneratorMetadata: {
providerName: 'gitlab',
providerVersion: '3.19.0',
providerVersion: '3.20.0',
providerVersionConstraint: '~> 3.14'
},
provider: config.provider,
Expand Down
2 changes: 1 addition & 1 deletion src/data-gitlab-current-user/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class DataGitlabCurrentUser extends cdktf.TerraformDataSource {
terraformResourceType: 'gitlab_current_user',
terraformGeneratorMetadata: {
providerName: 'gitlab',
providerVersion: '3.19.0',
providerVersion: '3.20.0',
providerVersionConstraint: '~> 3.14'
},
provider: config.provider,
Expand Down
2 changes: 1 addition & 1 deletion src/data-gitlab-group-hook/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class DataGitlabGroupHook extends cdktf.TerraformDataSource {
terraformResourceType: 'gitlab_group_hook',
terraformGeneratorMetadata: {
providerName: 'gitlab',
providerVersion: '3.19.0',
providerVersion: '3.20.0',
providerVersionConstraint: '~> 3.14'
},
provider: config.provider,
Expand Down
2 changes: 1 addition & 1 deletion src/data-gitlab-group-hooks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export class DataGitlabGroupHooks extends cdktf.TerraformDataSource {
terraformResourceType: 'gitlab_group_hooks',
terraformGeneratorMetadata: {
providerName: 'gitlab',
providerVersion: '3.19.0',
providerVersion: '3.20.0',
providerVersionConstraint: '~> 3.14'
},
provider: config.provider,
Expand Down
2 changes: 1 addition & 1 deletion src/data-gitlab-group-membership/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export class DataGitlabGroupMembership extends cdktf.TerraformDataSource {
terraformResourceType: 'gitlab_group_membership',
terraformGeneratorMetadata: {
providerName: 'gitlab',
providerVersion: '3.19.0',
providerVersion: '3.20.0',
providerVersionConstraint: '~> 3.14'
},
provider: config.provider,
Expand Down
3 changes: 3 additions & 0 deletions src/data-gitlab-group-subgroups/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# `data_gitlab_group_subgroups`

Refer to the Terraform Registory for docs: [`data_gitlab_group_subgroups`](https://www.terraform.io/docs/providers/gitlab/d/group_subgroups).
Loading

0 comments on commit 98ca849

Please sign in to comment.