From e2de86f45b4bd5405cd51fbfede0f4bc71ef947b Mon Sep 17 00:00:00 2001 From: "team-cdk-terrain[bot]" <254218809+team-cdk-terrain[bot]@users.noreply.github.com> Date: Wed, 27 May 2026 04:48:15 +0000 Subject: [PATCH] chore(deps): update by cdktn-io/cdktn-repository-manager@caf70e5 --- .github/workflows/force-release.yml | 3 +- .github/workflows/release.yml | 5 +- .projenrc.js | 1 + src/actions-hosted-runner/index.ts | 4 +- src/branch-protection/index.ts | 6 +- .../index.ts | 2 +- .../index.ts | 2 +- .../index.ts | 2 +- .../index.ts | 2 +- src/data-github-actions-secrets/index.ts | 2 +- src/data-github-actions-variables/index.ts | 2 +- .../index.ts | 2 +- .../index.ts | 2 +- src/data-github-codespaces-secrets/index.ts | 2 +- .../index.ts | 2 +- src/data-github-collaborators/index.ts | 2 +- .../index.ts | 2 +- src/data-github-dependabot-secrets/index.ts | 2 +- src/data-github-external-groups/index.ts | 2 +- src/data-github-issue-labels/index.ts | 2 +- .../index.ts | 2 +- .../index.ts | 2 +- .../index.ts | 2 +- .../index.ts | 2 +- .../index.ts | 2 +- .../index.ts | 2 +- src/data-github-organization-roles/index.ts | 2 +- .../index.ts | 2 +- .../index.ts | 2 +- src/data-github-organization-teams/index.ts | 2 +- .../index.ts | 2 +- src/data-github-release/index.ts | 2 +- .../index.ts | 2 +- src/data-github-repository-branches/index.ts | 2 +- .../index.ts | 2 +- .../index.ts | 2 +- .../index.ts | 2 +- .../index.ts | 2 +- .../index.ts | 2 +- src/data-github-repository-pages/index.ts | 2 +- .../index.ts | 2 +- src/data-github-repository-teams/index.ts | 2 +- src/data-github-repository-webhooks/index.ts | 2 +- src/data-github-repository/index.ts | 10 +- src/data-github-team/index.ts | 2 +- src/data-github-tree/index.ts | 2 +- src/index.ts | 328 +++++++++--------- src/issue-labels/index.ts | 2 +- src/organization-ruleset/index.ts | 14 +- src/repository-collaborators/index.ts | 6 +- src/repository-ruleset/index.ts | 8 +- src/team-members/index.ts | 2 +- src/team-sync-group-mapping/index.ts | 2 +- 53 files changed, 237 insertions(+), 234 deletions(-) diff --git a/.github/workflows/force-release.yml b/.github/workflows/force-release.yml index 76d0a4763..9985142ad 100644 --- a/.github/workflows/force-release.yml +++ b/.github/workflows/force-release.yml @@ -109,6 +109,7 @@ jobs: needs: release runs-on: ubuntu-latest permissions: + id-token: write contents: read issues: write if: ${{ inputs.publish_to_npm }} @@ -143,7 +144,7 @@ jobs: env: NPM_DIST_TAG: latest NPM_REGISTRY: registry.npmjs.org - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + NPM_TRUSTED_PUBLISHER: "true" PUBLIB_DRYRUN: ${{ inputs.dry_run }} run: npx -p publib@latest publib-npm release_maven: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c7ec84396..b2b8c388f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -142,13 +142,14 @@ jobs: needs: release runs-on: ubuntu-latest permissions: + id-token: write contents: read issues: write if: needs.release.outputs.tag_exists != 'true' && needs.release.outputs.latest_commit == github.sha steps: - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e with: - node-version: 20.16.0 + node-version: 24.x package-manager-cache: false - name: Download build artifacts uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c @@ -176,7 +177,7 @@ jobs: env: NPM_DIST_TAG: latest NPM_REGISTRY: registry.npmjs.org - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + NPM_TRUSTED_PUBLISHER: "true" PUBLIB_DRYRUN: ${{ inputs.dry_run }} run: npx -p publib@latest publib-npm - name: Extract Version diff --git a/.projenrc.js b/.projenrc.js index 0435a0820..8e6e10917 100644 --- a/.projenrc.js +++ b/.projenrc.js @@ -15,6 +15,7 @@ const project = new CdktnProviderProject({ jsiiVersion: "~5.9.0", // JSII and TS should always use the same major/minor version range devDeps: ["@cdktn/provider-project@^0.7.0"], isDeprecated: false, + npmTrustedPublishing: true }); project.synth(); diff --git a/src/actions-hosted-runner/index.ts b/src/actions-hosted-runner/index.ts index 15c89e22a..568eca135 100644 --- a/src/actions-hosted-runner/index.ts +++ b/src/actions-hosted-runner/index.ts @@ -147,7 +147,7 @@ export class ActionsHostedRunnerMachineSizeDetailsList extends cdktn.ComplexList * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -232,7 +232,7 @@ export class ActionsHostedRunnerPublicIpsList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/branch-protection/index.ts b/src/branch-protection/index.ts index 3a0efd0be..a5d03e93c 100644 --- a/src/branch-protection/index.ts +++ b/src/branch-protection/index.ts @@ -416,7 +416,7 @@ export class BranchProtectionRequiredPullRequestReviewsList extends cdktn.Comple * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -569,7 +569,7 @@ export class BranchProtectionRequiredStatusChecksList extends cdktn.ComplexList * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -722,7 +722,7 @@ export class BranchProtectionRestrictPushesList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-actions-environment-secrets/index.ts b/src/data-github-actions-environment-secrets/index.ts index 6e2cda398..2e97d92a6 100644 --- a/src/data-github-actions-environment-secrets/index.ts +++ b/src/data-github-actions-environment-secrets/index.ts @@ -107,7 +107,7 @@ export class DataGithubActionsEnvironmentSecretsSecretsList extends cdktn.Comple * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-actions-environment-variables/index.ts b/src/data-github-actions-environment-variables/index.ts index b0e7f6b23..1ba334abc 100644 --- a/src/data-github-actions-environment-variables/index.ts +++ b/src/data-github-actions-environment-variables/index.ts @@ -112,7 +112,7 @@ export class DataGithubActionsEnvironmentVariablesVariablesList extends cdktn.Co * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-actions-organization-secrets/index.ts b/src/data-github-actions-organization-secrets/index.ts index 6c489ae41..fb4c09e24 100644 --- a/src/data-github-actions-organization-secrets/index.ts +++ b/src/data-github-actions-organization-secrets/index.ts @@ -100,7 +100,7 @@ export class DataGithubActionsOrganizationSecretsSecretsList extends cdktn.Compl * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-actions-organization-variables/index.ts b/src/data-github-actions-organization-variables/index.ts index 92770ab8e..7ecdd4c21 100644 --- a/src/data-github-actions-organization-variables/index.ts +++ b/src/data-github-actions-organization-variables/index.ts @@ -105,7 +105,7 @@ export class DataGithubActionsOrganizationVariablesVariablesList extends cdktn.C * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-actions-secrets/index.ts b/src/data-github-actions-secrets/index.ts index 7b0f2e488..333060d00 100644 --- a/src/data-github-actions-secrets/index.ts +++ b/src/data-github-actions-secrets/index.ts @@ -103,7 +103,7 @@ export class DataGithubActionsSecretsSecretsList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-actions-variables/index.ts b/src/data-github-actions-variables/index.ts index 2ecbead46..5deae747d 100644 --- a/src/data-github-actions-variables/index.ts +++ b/src/data-github-actions-variables/index.ts @@ -108,7 +108,7 @@ export class DataGithubActionsVariablesVariablesList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-branch-protection-rules/index.ts b/src/data-github-branch-protection-rules/index.ts index f026a233a..d510a1970 100644 --- a/src/data-github-branch-protection-rules/index.ts +++ b/src/data-github-branch-protection-rules/index.ts @@ -89,7 +89,7 @@ export class DataGithubBranchProtectionRulesRulesList extends cdktn.ComplexList * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-codespaces-organization-secrets/index.ts b/src/data-github-codespaces-organization-secrets/index.ts index 7ebaadae4..77dce2221 100644 --- a/src/data-github-codespaces-organization-secrets/index.ts +++ b/src/data-github-codespaces-organization-secrets/index.ts @@ -100,7 +100,7 @@ export class DataGithubCodespacesOrganizationSecretsSecretsList extends cdktn.Co * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-codespaces-secrets/index.ts b/src/data-github-codespaces-secrets/index.ts index 7f3d9ba2f..ff29ac5c2 100644 --- a/src/data-github-codespaces-secrets/index.ts +++ b/src/data-github-codespaces-secrets/index.ts @@ -107,7 +107,7 @@ export class DataGithubCodespacesSecretsSecretsList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-codespaces-user-secrets/index.ts b/src/data-github-codespaces-user-secrets/index.ts index 8798d0c67..e71145a0d 100644 --- a/src/data-github-codespaces-user-secrets/index.ts +++ b/src/data-github-codespaces-user-secrets/index.ts @@ -100,7 +100,7 @@ export class DataGithubCodespacesUserSecretsSecretsList extends cdktn.ComplexLis * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-collaborators/index.ts b/src/data-github-collaborators/index.ts index 9bebb4e09..914ca868b 100644 --- a/src/data-github-collaborators/index.ts +++ b/src/data-github-collaborators/index.ts @@ -176,7 +176,7 @@ export class DataGithubCollaboratorsCollaboratorList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-dependabot-organization-secrets/index.ts b/src/data-github-dependabot-organization-secrets/index.ts index 83b953be3..aad11f76f 100644 --- a/src/data-github-dependabot-organization-secrets/index.ts +++ b/src/data-github-dependabot-organization-secrets/index.ts @@ -100,7 +100,7 @@ export class DataGithubDependabotOrganizationSecretsSecretsList extends cdktn.Co * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-dependabot-secrets/index.ts b/src/data-github-dependabot-secrets/index.ts index 3beaa4f21..296bb51e6 100644 --- a/src/data-github-dependabot-secrets/index.ts +++ b/src/data-github-dependabot-secrets/index.ts @@ -103,7 +103,7 @@ export class DataGithubDependabotSecretsSecretsList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-external-groups/index.ts b/src/data-github-external-groups/index.ts index 944d3e2ab..3ade4d665 100644 --- a/src/data-github-external-groups/index.ts +++ b/src/data-github-external-groups/index.ts @@ -95,7 +95,7 @@ export class DataGithubExternalGroupsExternalGroupsList extends cdktn.ComplexLis * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-issue-labels/index.ts b/src/data-github-issue-labels/index.ts index 4e0b5b6c3..57a0a1436 100644 --- a/src/data-github-issue-labels/index.ts +++ b/src/data-github-issue-labels/index.ts @@ -104,7 +104,7 @@ export class DataGithubIssueLabelsLabelsList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-organization-app-installations/index.ts b/src/data-github-organization-app-installations/index.ts index b7c1da828..266df7441 100644 --- a/src/data-github-organization-app-installations/index.ts +++ b/src/data-github-organization-app-installations/index.ts @@ -146,7 +146,7 @@ export class DataGithubOrganizationAppInstallationsInstallationsList extends cdk * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-organization-external-identities/index.ts b/src/data-github-organization-external-identities/index.ts index becbea1be..abdf2977b 100644 --- a/src/data-github-organization-external-identities/index.ts +++ b/src/data-github-organization-external-identities/index.ts @@ -97,7 +97,7 @@ export class DataGithubOrganizationExternalIdentitiesIdentitiesList extends cdkt * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-organization-ip-allow-list/index.ts b/src/data-github-organization-ip-allow-list/index.ts index e4ffadfb3..89ccc139f 100644 --- a/src/data-github-organization-ip-allow-list/index.ts +++ b/src/data-github-organization-ip-allow-list/index.ts @@ -110,7 +110,7 @@ export class DataGithubOrganizationIpAllowListIpAllowListStructList extends cdkt * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-organization-repository-roles/index.ts b/src/data-github-organization-repository-roles/index.ts index 926192a4a..f909686ad 100644 --- a/src/data-github-organization-repository-roles/index.ts +++ b/src/data-github-organization-repository-roles/index.ts @@ -105,7 +105,7 @@ export class DataGithubOrganizationRepositoryRolesRolesList extends cdktn.Comple * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-organization-role-teams/index.ts b/src/data-github-organization-role-teams/index.ts index 10a8d1875..61e27a5f8 100644 --- a/src/data-github-organization-role-teams/index.ts +++ b/src/data-github-organization-role-teams/index.ts @@ -106,7 +106,7 @@ export class DataGithubOrganizationRoleTeamsTeamsList extends cdktn.ComplexList * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-organization-role-users/index.ts b/src/data-github-organization-role-users/index.ts index 5c5ac1c26..b7620b98e 100644 --- a/src/data-github-organization-role-users/index.ts +++ b/src/data-github-organization-role-users/index.ts @@ -96,7 +96,7 @@ export class DataGithubOrganizationRoleUsersUsersList extends cdktn.ComplexList * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-organization-roles/index.ts b/src/data-github-organization-roles/index.ts index b26bf6d69..5ed70faaf 100644 --- a/src/data-github-organization-roles/index.ts +++ b/src/data-github-organization-roles/index.ts @@ -110,7 +110,7 @@ export class DataGithubOrganizationRolesRolesList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-organization-security-managers/index.ts b/src/data-github-organization-security-managers/index.ts index 76429e75a..b14f4cb83 100644 --- a/src/data-github-organization-security-managers/index.ts +++ b/src/data-github-organization-security-managers/index.ts @@ -100,7 +100,7 @@ export class DataGithubOrganizationSecurityManagersTeamsList extends cdktn.Compl * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-organization-team-sync-groups/index.ts b/src/data-github-organization-team-sync-groups/index.ts index 178bfe7bc..97b34d086 100644 --- a/src/data-github-organization-team-sync-groups/index.ts +++ b/src/data-github-organization-team-sync-groups/index.ts @@ -95,7 +95,7 @@ export class DataGithubOrganizationTeamSyncGroupsGroupsList extends cdktn.Comple * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-organization-teams/index.ts b/src/data-github-organization-teams/index.ts index 114104484..d8a28c0f2 100644 --- a/src/data-github-organization-teams/index.ts +++ b/src/data-github-organization-teams/index.ts @@ -148,7 +148,7 @@ export class DataGithubOrganizationTeamsTeamsList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-organization-webhooks/index.ts b/src/data-github-organization-webhooks/index.ts index 1e08456de..178ff10e5 100644 --- a/src/data-github-organization-webhooks/index.ts +++ b/src/data-github-organization-webhooks/index.ts @@ -105,7 +105,7 @@ export class DataGithubOrganizationWebhooksWebhooksList extends cdktn.ComplexLis * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-release/index.ts b/src/data-github-release/index.ts index 3ef0cb47c..dc52ccc2a 100644 --- a/src/data-github-release/index.ts +++ b/src/data-github-release/index.ts @@ -160,7 +160,7 @@ export class DataGithubReleaseAssetsList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-repository-autolink-references/index.ts b/src/data-github-repository-autolink-references/index.ts index e75f637d0..a6c56534a 100644 --- a/src/data-github-repository-autolink-references/index.ts +++ b/src/data-github-repository-autolink-references/index.ts @@ -99,7 +99,7 @@ export class DataGithubRepositoryAutolinkReferencesAutolinkReferencesList extend * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-repository-branches/index.ts b/src/data-github-repository-branches/index.ts index 16f170f83..f5eb6fc00 100644 --- a/src/data-github-repository-branches/index.ts +++ b/src/data-github-repository-branches/index.ts @@ -102,7 +102,7 @@ export class DataGithubRepositoryBranchesBranchesList extends cdktn.ComplexList * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-repository-custom-properties/index.ts b/src/data-github-repository-custom-properties/index.ts index 6d9203e29..b09278449 100644 --- a/src/data-github-repository-custom-properties/index.ts +++ b/src/data-github-repository-custom-properties/index.ts @@ -96,7 +96,7 @@ export class DataGithubRepositoryCustomPropertiesPropertyList extends cdktn.Comp * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-repository-deploy-keys/index.ts b/src/data-github-repository-deploy-keys/index.ts index 8496a214c..b2c27a151 100644 --- a/src/data-github-repository-deploy-keys/index.ts +++ b/src/data-github-repository-deploy-keys/index.ts @@ -104,7 +104,7 @@ export class DataGithubRepositoryDeployKeysKeysList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-repository-deployment-branch-policies/index.ts b/src/data-github-repository-deployment-branch-policies/index.ts index 0e9ba24b0..208939727 100644 --- a/src/data-github-repository-deployment-branch-policies/index.ts +++ b/src/data-github-repository-deployment-branch-policies/index.ts @@ -102,7 +102,7 @@ export class DataGithubRepositoryDeploymentBranchPoliciesDeploymentBranchPolicie * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-repository-environment-deployment-policies/index.ts b/src/data-github-repository-environment-deployment-policies/index.ts index 85211a4dc..294989e05 100644 --- a/src/data-github-repository-environment-deployment-policies/index.ts +++ b/src/data-github-repository-environment-deployment-policies/index.ts @@ -102,7 +102,7 @@ export class DataGithubRepositoryEnvironmentDeploymentPoliciesPoliciesList exten * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-repository-environments/index.ts b/src/data-github-repository-environments/index.ts index aaa3a76e7..84a1e1759 100644 --- a/src/data-github-repository-environments/index.ts +++ b/src/data-github-repository-environments/index.ts @@ -94,7 +94,7 @@ export class DataGithubRepositoryEnvironmentsEnvironmentsList extends cdktn.Comp * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-repository-pages/index.ts b/src/data-github-repository-pages/index.ts index 7e43e0d54..c18b1b9cf 100644 --- a/src/data-github-repository-pages/index.ts +++ b/src/data-github-repository-pages/index.ts @@ -96,7 +96,7 @@ export class DataGithubRepositoryPagesSourceAList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-repository-pull-requests/index.ts b/src/data-github-repository-pull-requests/index.ts index 9d3037222..2c0bce4bb 100644 --- a/src/data-github-repository-pull-requests/index.ts +++ b/src/data-github-repository-pull-requests/index.ts @@ -188,7 +188,7 @@ export class DataGithubRepositoryPullRequestsResultsList extends cdktn.ComplexLi * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-repository-teams/index.ts b/src/data-github-repository-teams/index.ts index 9fbf06f73..47e7d88ce 100644 --- a/src/data-github-repository-teams/index.ts +++ b/src/data-github-repository-teams/index.ts @@ -103,7 +103,7 @@ export class DataGithubRepositoryTeamsTeamsList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-repository-webhooks/index.ts b/src/data-github-repository-webhooks/index.ts index ca3f5458c..f87aef365 100644 --- a/src/data-github-repository-webhooks/index.ts +++ b/src/data-github-repository-webhooks/index.ts @@ -109,7 +109,7 @@ export class DataGithubRepositoryWebhooksWebhooksList extends cdktn.ComplexList * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-repository/index.ts b/src/data-github-repository/index.ts index 4b31546be..95a4d8fb1 100644 --- a/src/data-github-repository/index.ts +++ b/src/data-github-repository/index.ts @@ -106,7 +106,7 @@ export class DataGithubRepositoryPagesSourceList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -212,7 +212,7 @@ export class DataGithubRepositoryPagesList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -342,7 +342,7 @@ export class DataGithubRepositoryRepositoryLicenseLicenseList extends cdktn.Comp * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -473,7 +473,7 @@ export class DataGithubRepositoryRepositoryLicenseList extends cdktn.ComplexList * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -553,7 +553,7 @@ export class DataGithubRepositoryTemplateList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-team/index.ts b/src/data-github-team/index.ts index 81dd3e562..c000bde49 100644 --- a/src/data-github-team/index.ts +++ b/src/data-github-team/index.ts @@ -111,7 +111,7 @@ export class DataGithubTeamRepositoriesDetailedList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/data-github-tree/index.ts b/src/data-github-tree/index.ts index 9eca5c248..7abbe7581 100644 --- a/src/data-github-tree/index.ts +++ b/src/data-github-tree/index.ts @@ -117,7 +117,7 @@ export class DataGithubTreeEntriesList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/index.ts b/src/index.ts index 184481949..db720f5cd 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,168 +4,168 @@ */ // generated by cdktn get -export * as actionsEnvironmentSecret from './actions-environment-secret'; -export * as actionsEnvironmentVariable from './actions-environment-variable'; -export * as actionsHostedRunner from './actions-hosted-runner'; -export * as actionsOrganizationOidcSubjectClaimCustomizationTemplate from './actions-organization-oidc-subject-claim-customization-template'; -export * as actionsOrganizationPermissions from './actions-organization-permissions'; -export * as actionsOrganizationSecret from './actions-organization-secret'; -export * as actionsOrganizationSecretRepositories from './actions-organization-secret-repositories'; -export * as actionsOrganizationSecretRepository from './actions-organization-secret-repository'; -export * as actionsOrganizationVariable from './actions-organization-variable'; -export * as actionsOrganizationVariableRepositories from './actions-organization-variable-repositories'; -export * as actionsOrganizationVariableRepository from './actions-organization-variable-repository'; -export * as actionsOrganizationWorkflowPermissions from './actions-organization-workflow-permissions'; -export * as actionsRepositoryAccessLevel from './actions-repository-access-level'; -export * as actionsRepositoryOidcSubjectClaimCustomizationTemplate from './actions-repository-oidc-subject-claim-customization-template'; -export * as actionsRepositoryPermissions from './actions-repository-permissions'; -export * as actionsRunnerGroup from './actions-runner-group'; -export * as actionsSecret from './actions-secret'; -export * as actionsVariable from './actions-variable'; -export * as appInstallationRepositories from './app-installation-repositories'; -export * as appInstallationRepository from './app-installation-repository'; -export * as branch from './branch'; -export * as branchDefault from './branch-default'; -export * as branchProtection from './branch-protection'; -export * as branchProtectionV3 from './branch-protection-v3'; -export * as codespacesOrganizationSecret from './codespaces-organization-secret'; -export * as codespacesOrganizationSecretRepositories from './codespaces-organization-secret-repositories'; -export * as codespacesSecret from './codespaces-secret'; -export * as codespacesUserSecret from './codespaces-user-secret'; -export * as dependabotOrganizationSecret from './dependabot-organization-secret'; -export * as dependabotOrganizationSecretRepositories from './dependabot-organization-secret-repositories'; -export * as dependabotOrganizationSecretRepository from './dependabot-organization-secret-repository'; -export * as dependabotSecret from './dependabot-secret'; -export * as emuGroupMapping from './emu-group-mapping'; -export * as enterpriseActionsPermissions from './enterprise-actions-permissions'; -export * as enterpriseActionsRunnerGroup from './enterprise-actions-runner-group'; -export * as enterpriseActionsWorkflowPermissions from './enterprise-actions-workflow-permissions'; -export * as enterpriseIpAllowListEntry from './enterprise-ip-allow-list-entry'; -export * as enterpriseOrganization from './enterprise-organization'; -export * as enterpriseSecurityAnalysisSettings from './enterprise-security-analysis-settings'; -export * as issue from './issue'; -export * as issueLabel from './issue-label'; -export * as issueLabels from './issue-labels'; -export * as membership from './membership'; -export * as organizationBlock from './organization-block'; -export * as organizationCustomProperties from './organization-custom-properties'; -export * as organizationCustomRole from './organization-custom-role'; -export * as organizationProject from './organization-project'; -export * as organizationRepositoryRole from './organization-repository-role'; -export * as organizationRole from './organization-role'; -export * as organizationRoleTeam from './organization-role-team'; -export * as organizationRoleTeamAssignment from './organization-role-team-assignment'; -export * as organizationRoleUser from './organization-role-user'; -export * as organizationRuleset from './organization-ruleset'; -export * as organizationSecurityManager from './organization-security-manager'; -export * as organizationSettings from './organization-settings'; -export * as organizationWebhook from './organization-webhook'; -export * as projectCard from './project-card'; -export * as projectColumn from './project-column'; -export * as release from './release'; -export * as repository from './repository'; -export * as repositoryAutolinkReference from './repository-autolink-reference'; -export * as repositoryCollaborator from './repository-collaborator'; -export * as repositoryCollaborators from './repository-collaborators'; -export * as repositoryCustomProperty from './repository-custom-property'; -export * as repositoryDependabotSecurityUpdates from './repository-dependabot-security-updates'; -export * as repositoryDeployKey from './repository-deploy-key'; -export * as repositoryDeploymentBranchPolicy from './repository-deployment-branch-policy'; -export * as repositoryEnvironment from './repository-environment'; -export * as repositoryEnvironmentDeploymentPolicy from './repository-environment-deployment-policy'; -export * as repositoryFile from './repository-file'; -export * as repositoryMilestone from './repository-milestone'; -export * as repositoryPages from './repository-pages'; -export * as repositoryProject from './repository-project'; -export * as repositoryPullRequest from './repository-pull-request'; -export * as repositoryRuleset from './repository-ruleset'; -export * as repositoryTopics from './repository-topics'; -export * as repositoryVulnerabilityAlerts from './repository-vulnerability-alerts'; -export * as repositoryWebhook from './repository-webhook'; -export * as team from './team'; -export * as teamMembers from './team-members'; -export * as teamMembership from './team-membership'; -export * as teamRepository from './team-repository'; -export * as teamSettings from './team-settings'; -export * as teamSyncGroupMapping from './team-sync-group-mapping'; -export * as userGpgKey from './user-gpg-key'; -export * as userInvitationAccepter from './user-invitation-accepter'; -export * as userSshKey from './user-ssh-key'; -export * as workflowRepositoryPermissions from './workflow-repository-permissions'; -export * as dataGithubActionsEnvironmentPublicKey from './data-github-actions-environment-public-key'; -export * as dataGithubActionsEnvironmentSecrets from './data-github-actions-environment-secrets'; -export * as dataGithubActionsEnvironmentVariables from './data-github-actions-environment-variables'; -export * as dataGithubActionsOrganizationOidcSubjectClaimCustomizationTemplate from './data-github-actions-organization-oidc-subject-claim-customization-template'; -export * as dataGithubActionsOrganizationPublicKey from './data-github-actions-organization-public-key'; -export * as dataGithubActionsOrganizationRegistrationToken from './data-github-actions-organization-registration-token'; -export * as dataGithubActionsOrganizationSecrets from './data-github-actions-organization-secrets'; -export * as dataGithubActionsOrganizationVariables from './data-github-actions-organization-variables'; -export * as dataGithubActionsPublicKey from './data-github-actions-public-key'; -export * as dataGithubActionsRegistrationToken from './data-github-actions-registration-token'; -export * as dataGithubActionsRepositoryOidcSubjectClaimCustomizationTemplate from './data-github-actions-repository-oidc-subject-claim-customization-template'; -export * as dataGithubActionsSecrets from './data-github-actions-secrets'; -export * as dataGithubActionsVariables from './data-github-actions-variables'; -export * as dataGithubApp from './data-github-app'; -export * as dataGithubAppToken from './data-github-app-token'; -export * as dataGithubBranch from './data-github-branch'; -export * as dataGithubBranchProtectionRules from './data-github-branch-protection-rules'; -export * as dataGithubCodespacesOrganizationPublicKey from './data-github-codespaces-organization-public-key'; -export * as dataGithubCodespacesOrganizationSecrets from './data-github-codespaces-organization-secrets'; -export * as dataGithubCodespacesPublicKey from './data-github-codespaces-public-key'; -export * as dataGithubCodespacesSecrets from './data-github-codespaces-secrets'; -export * as dataGithubCodespacesUserPublicKey from './data-github-codespaces-user-public-key'; -export * as dataGithubCodespacesUserSecrets from './data-github-codespaces-user-secrets'; -export * as dataGithubCollaborators from './data-github-collaborators'; -export * as dataGithubDependabotOrganizationPublicKey from './data-github-dependabot-organization-public-key'; -export * as dataGithubDependabotOrganizationSecrets from './data-github-dependabot-organization-secrets'; -export * as dataGithubDependabotPublicKey from './data-github-dependabot-public-key'; -export * as dataGithubDependabotSecrets from './data-github-dependabot-secrets'; -export * as dataGithubEnterprise from './data-github-enterprise'; -export * as dataGithubExternalGroups from './data-github-external-groups'; -export * as dataGithubIpRanges from './data-github-ip-ranges'; -export * as dataGithubIssueLabels from './data-github-issue-labels'; -export * as dataGithubMembership from './data-github-membership'; -export * as dataGithubOrganization from './data-github-organization'; -export * as dataGithubOrganizationAppInstallations from './data-github-organization-app-installations'; -export * as dataGithubOrganizationCustomProperties from './data-github-organization-custom-properties'; -export * as dataGithubOrganizationCustomRole from './data-github-organization-custom-role'; -export * as dataGithubOrganizationExternalIdentities from './data-github-organization-external-identities'; -export * as dataGithubOrganizationIpAllowList from './data-github-organization-ip-allow-list'; -export * as dataGithubOrganizationRepositoryRole from './data-github-organization-repository-role'; -export * as dataGithubOrganizationRepositoryRoles from './data-github-organization-repository-roles'; -export * as dataGithubOrganizationRole from './data-github-organization-role'; -export * as dataGithubOrganizationRoleTeams from './data-github-organization-role-teams'; -export * as dataGithubOrganizationRoleUsers from './data-github-organization-role-users'; -export * as dataGithubOrganizationRoles from './data-github-organization-roles'; -export * as dataGithubOrganizationSecurityManagers from './data-github-organization-security-managers'; -export * as dataGithubOrganizationTeamSyncGroups from './data-github-organization-team-sync-groups'; -export * as dataGithubOrganizationTeams from './data-github-organization-teams'; -export * as dataGithubOrganizationWebhooks from './data-github-organization-webhooks'; -export * as dataGithubRef from './data-github-ref'; -export * as dataGithubRelease from './data-github-release'; -export * as dataGithubReleaseAsset from './data-github-release-asset'; -export * as dataGithubRepositories from './data-github-repositories'; -export * as dataGithubRepository from './data-github-repository'; -export * as dataGithubRepositoryAutolinkReferences from './data-github-repository-autolink-references'; -export * as dataGithubRepositoryBranches from './data-github-repository-branches'; -export * as dataGithubRepositoryCustomProperties from './data-github-repository-custom-properties'; -export * as dataGithubRepositoryDeployKeys from './data-github-repository-deploy-keys'; -export * as dataGithubRepositoryDeploymentBranchPolicies from './data-github-repository-deployment-branch-policies'; -export * as dataGithubRepositoryEnvironmentDeploymentPolicies from './data-github-repository-environment-deployment-policies'; -export * as dataGithubRepositoryEnvironments from './data-github-repository-environments'; -export * as dataGithubRepositoryFile from './data-github-repository-file'; -export * as dataGithubRepositoryMilestone from './data-github-repository-milestone'; -export * as dataGithubRepositoryPages from './data-github-repository-pages'; -export * as dataGithubRepositoryPullRequest from './data-github-repository-pull-request'; -export * as dataGithubRepositoryPullRequests from './data-github-repository-pull-requests'; -export * as dataGithubRepositoryTeams from './data-github-repository-teams'; -export * as dataGithubRepositoryWebhooks from './data-github-repository-webhooks'; -export * as dataGithubRestApi from './data-github-rest-api'; -export * as dataGithubSshKeys from './data-github-ssh-keys'; -export * as dataGithubTeam from './data-github-team'; -export * as dataGithubTree from './data-github-tree'; -export * as dataGithubUser from './data-github-user'; -export * as dataGithubUserExternalIdentity from './data-github-user-external-identity'; -export * as dataGithubUsers from './data-github-users'; -export * as provider from './provider'; +export * as actionsEnvironmentSecret from './actions-environment-secret/index'; +export * as actionsEnvironmentVariable from './actions-environment-variable/index'; +export * as actionsHostedRunner from './actions-hosted-runner/index'; +export * as actionsOrganizationOidcSubjectClaimCustomizationTemplate from './actions-organization-oidc-subject-claim-customization-template/index'; +export * as actionsOrganizationPermissions from './actions-organization-permissions/index'; +export * as actionsOrganizationSecret from './actions-organization-secret/index'; +export * as actionsOrganizationSecretRepositories from './actions-organization-secret-repositories/index'; +export * as actionsOrganizationSecretRepository from './actions-organization-secret-repository/index'; +export * as actionsOrganizationVariable from './actions-organization-variable/index'; +export * as actionsOrganizationVariableRepositories from './actions-organization-variable-repositories/index'; +export * as actionsOrganizationVariableRepository from './actions-organization-variable-repository/index'; +export * as actionsOrganizationWorkflowPermissions from './actions-organization-workflow-permissions/index'; +export * as actionsRepositoryAccessLevel from './actions-repository-access-level/index'; +export * as actionsRepositoryOidcSubjectClaimCustomizationTemplate from './actions-repository-oidc-subject-claim-customization-template/index'; +export * as actionsRepositoryPermissions from './actions-repository-permissions/index'; +export * as actionsRunnerGroup from './actions-runner-group/index'; +export * as actionsSecret from './actions-secret/index'; +export * as actionsVariable from './actions-variable/index'; +export * as appInstallationRepositories from './app-installation-repositories/index'; +export * as appInstallationRepository from './app-installation-repository/index'; +export * as branch from './branch/index'; +export * as branchDefault from './branch-default/index'; +export * as branchProtection from './branch-protection/index'; +export * as branchProtectionV3 from './branch-protection-v3/index'; +export * as codespacesOrganizationSecret from './codespaces-organization-secret/index'; +export * as codespacesOrganizationSecretRepositories from './codespaces-organization-secret-repositories/index'; +export * as codespacesSecret from './codespaces-secret/index'; +export * as codespacesUserSecret from './codespaces-user-secret/index'; +export * as dependabotOrganizationSecret from './dependabot-organization-secret/index'; +export * as dependabotOrganizationSecretRepositories from './dependabot-organization-secret-repositories/index'; +export * as dependabotOrganizationSecretRepository from './dependabot-organization-secret-repository/index'; +export * as dependabotSecret from './dependabot-secret/index'; +export * as emuGroupMapping from './emu-group-mapping/index'; +export * as enterpriseActionsPermissions from './enterprise-actions-permissions/index'; +export * as enterpriseActionsRunnerGroup from './enterprise-actions-runner-group/index'; +export * as enterpriseActionsWorkflowPermissions from './enterprise-actions-workflow-permissions/index'; +export * as enterpriseIpAllowListEntry from './enterprise-ip-allow-list-entry/index'; +export * as enterpriseOrganization from './enterprise-organization/index'; +export * as enterpriseSecurityAnalysisSettings from './enterprise-security-analysis-settings/index'; +export * as issue from './issue/index'; +export * as issueLabel from './issue-label/index'; +export * as issueLabels from './issue-labels/index'; +export * as membership from './membership/index'; +export * as organizationBlock from './organization-block/index'; +export * as organizationCustomProperties from './organization-custom-properties/index'; +export * as organizationCustomRole from './organization-custom-role/index'; +export * as organizationProject from './organization-project/index'; +export * as organizationRepositoryRole from './organization-repository-role/index'; +export * as organizationRole from './organization-role/index'; +export * as organizationRoleTeam from './organization-role-team/index'; +export * as organizationRoleTeamAssignment from './organization-role-team-assignment/index'; +export * as organizationRoleUser from './organization-role-user/index'; +export * as organizationRuleset from './organization-ruleset/index'; +export * as organizationSecurityManager from './organization-security-manager/index'; +export * as organizationSettings from './organization-settings/index'; +export * as organizationWebhook from './organization-webhook/index'; +export * as projectCard from './project-card/index'; +export * as projectColumn from './project-column/index'; +export * as release from './release/index'; +export * as repository from './repository/index'; +export * as repositoryAutolinkReference from './repository-autolink-reference/index'; +export * as repositoryCollaborator from './repository-collaborator/index'; +export * as repositoryCollaborators from './repository-collaborators/index'; +export * as repositoryCustomProperty from './repository-custom-property/index'; +export * as repositoryDependabotSecurityUpdates from './repository-dependabot-security-updates/index'; +export * as repositoryDeployKey from './repository-deploy-key/index'; +export * as repositoryDeploymentBranchPolicy from './repository-deployment-branch-policy/index'; +export * as repositoryEnvironment from './repository-environment/index'; +export * as repositoryEnvironmentDeploymentPolicy from './repository-environment-deployment-policy/index'; +export * as repositoryFile from './repository-file/index'; +export * as repositoryMilestone from './repository-milestone/index'; +export * as repositoryPages from './repository-pages/index'; +export * as repositoryProject from './repository-project/index'; +export * as repositoryPullRequest from './repository-pull-request/index'; +export * as repositoryRuleset from './repository-ruleset/index'; +export * as repositoryTopics from './repository-topics/index'; +export * as repositoryVulnerabilityAlerts from './repository-vulnerability-alerts/index'; +export * as repositoryWebhook from './repository-webhook/index'; +export * as team from './team/index'; +export * as teamMembers from './team-members/index'; +export * as teamMembership from './team-membership/index'; +export * as teamRepository from './team-repository/index'; +export * as teamSettings from './team-settings/index'; +export * as teamSyncGroupMapping from './team-sync-group-mapping/index'; +export * as userGpgKey from './user-gpg-key/index'; +export * as userInvitationAccepter from './user-invitation-accepter/index'; +export * as userSshKey from './user-ssh-key/index'; +export * as workflowRepositoryPermissions from './workflow-repository-permissions/index'; +export * as dataGithubActionsEnvironmentPublicKey from './data-github-actions-environment-public-key/index'; +export * as dataGithubActionsEnvironmentSecrets from './data-github-actions-environment-secrets/index'; +export * as dataGithubActionsEnvironmentVariables from './data-github-actions-environment-variables/index'; +export * as dataGithubActionsOrganizationOidcSubjectClaimCustomizationTemplate from './data-github-actions-organization-oidc-subject-claim-customization-template/index'; +export * as dataGithubActionsOrganizationPublicKey from './data-github-actions-organization-public-key/index'; +export * as dataGithubActionsOrganizationRegistrationToken from './data-github-actions-organization-registration-token/index'; +export * as dataGithubActionsOrganizationSecrets from './data-github-actions-organization-secrets/index'; +export * as dataGithubActionsOrganizationVariables from './data-github-actions-organization-variables/index'; +export * as dataGithubActionsPublicKey from './data-github-actions-public-key/index'; +export * as dataGithubActionsRegistrationToken from './data-github-actions-registration-token/index'; +export * as dataGithubActionsRepositoryOidcSubjectClaimCustomizationTemplate from './data-github-actions-repository-oidc-subject-claim-customization-template/index'; +export * as dataGithubActionsSecrets from './data-github-actions-secrets/index'; +export * as dataGithubActionsVariables from './data-github-actions-variables/index'; +export * as dataGithubApp from './data-github-app/index'; +export * as dataGithubAppToken from './data-github-app-token/index'; +export * as dataGithubBranch from './data-github-branch/index'; +export * as dataGithubBranchProtectionRules from './data-github-branch-protection-rules/index'; +export * as dataGithubCodespacesOrganizationPublicKey from './data-github-codespaces-organization-public-key/index'; +export * as dataGithubCodespacesOrganizationSecrets from './data-github-codespaces-organization-secrets/index'; +export * as dataGithubCodespacesPublicKey from './data-github-codespaces-public-key/index'; +export * as dataGithubCodespacesSecrets from './data-github-codespaces-secrets/index'; +export * as dataGithubCodespacesUserPublicKey from './data-github-codespaces-user-public-key/index'; +export * as dataGithubCodespacesUserSecrets from './data-github-codespaces-user-secrets/index'; +export * as dataGithubCollaborators from './data-github-collaborators/index'; +export * as dataGithubDependabotOrganizationPublicKey from './data-github-dependabot-organization-public-key/index'; +export * as dataGithubDependabotOrganizationSecrets from './data-github-dependabot-organization-secrets/index'; +export * as dataGithubDependabotPublicKey from './data-github-dependabot-public-key/index'; +export * as dataGithubDependabotSecrets from './data-github-dependabot-secrets/index'; +export * as dataGithubEnterprise from './data-github-enterprise/index'; +export * as dataGithubExternalGroups from './data-github-external-groups/index'; +export * as dataGithubIpRanges from './data-github-ip-ranges/index'; +export * as dataGithubIssueLabels from './data-github-issue-labels/index'; +export * as dataGithubMembership from './data-github-membership/index'; +export * as dataGithubOrganization from './data-github-organization/index'; +export * as dataGithubOrganizationAppInstallations from './data-github-organization-app-installations/index'; +export * as dataGithubOrganizationCustomProperties from './data-github-organization-custom-properties/index'; +export * as dataGithubOrganizationCustomRole from './data-github-organization-custom-role/index'; +export * as dataGithubOrganizationExternalIdentities from './data-github-organization-external-identities/index'; +export * as dataGithubOrganizationIpAllowList from './data-github-organization-ip-allow-list/index'; +export * as dataGithubOrganizationRepositoryRole from './data-github-organization-repository-role/index'; +export * as dataGithubOrganizationRepositoryRoles from './data-github-organization-repository-roles/index'; +export * as dataGithubOrganizationRole from './data-github-organization-role/index'; +export * as dataGithubOrganizationRoleTeams from './data-github-organization-role-teams/index'; +export * as dataGithubOrganizationRoleUsers from './data-github-organization-role-users/index'; +export * as dataGithubOrganizationRoles from './data-github-organization-roles/index'; +export * as dataGithubOrganizationSecurityManagers from './data-github-organization-security-managers/index'; +export * as dataGithubOrganizationTeamSyncGroups from './data-github-organization-team-sync-groups/index'; +export * as dataGithubOrganizationTeams from './data-github-organization-teams/index'; +export * as dataGithubOrganizationWebhooks from './data-github-organization-webhooks/index'; +export * as dataGithubRef from './data-github-ref/index'; +export * as dataGithubRelease from './data-github-release/index'; +export * as dataGithubReleaseAsset from './data-github-release-asset/index'; +export * as dataGithubRepositories from './data-github-repositories/index'; +export * as dataGithubRepository from './data-github-repository/index'; +export * as dataGithubRepositoryAutolinkReferences from './data-github-repository-autolink-references/index'; +export * as dataGithubRepositoryBranches from './data-github-repository-branches/index'; +export * as dataGithubRepositoryCustomProperties from './data-github-repository-custom-properties/index'; +export * as dataGithubRepositoryDeployKeys from './data-github-repository-deploy-keys/index'; +export * as dataGithubRepositoryDeploymentBranchPolicies from './data-github-repository-deployment-branch-policies/index'; +export * as dataGithubRepositoryEnvironmentDeploymentPolicies from './data-github-repository-environment-deployment-policies/index'; +export * as dataGithubRepositoryEnvironments from './data-github-repository-environments/index'; +export * as dataGithubRepositoryFile from './data-github-repository-file/index'; +export * as dataGithubRepositoryMilestone from './data-github-repository-milestone/index'; +export * as dataGithubRepositoryPages from './data-github-repository-pages/index'; +export * as dataGithubRepositoryPullRequest from './data-github-repository-pull-request/index'; +export * as dataGithubRepositoryPullRequests from './data-github-repository-pull-requests/index'; +export * as dataGithubRepositoryTeams from './data-github-repository-teams/index'; +export * as dataGithubRepositoryWebhooks from './data-github-repository-webhooks/index'; +export * as dataGithubRestApi from './data-github-rest-api/index'; +export * as dataGithubSshKeys from './data-github-ssh-keys/index'; +export * as dataGithubTeam from './data-github-team/index'; +export * as dataGithubTree from './data-github-tree/index'; +export * as dataGithubUser from './data-github-user/index'; +export * as dataGithubUserExternalIdentity from './data-github-user-external-identity/index'; +export * as dataGithubUsers from './data-github-users/index'; +export * as provider from './provider/index'; diff --git a/src/issue-labels/index.ts b/src/issue-labels/index.ts index 19a1ed1a7..7a9e3f8da 100644 --- a/src/issue-labels/index.ts +++ b/src/issue-labels/index.ts @@ -209,7 +209,7 @@ export class IssueLabelsLabelList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/organization-ruleset/index.ts b/src/organization-ruleset/index.ts index dd1669272..db2d2399d 100644 --- a/src/organization-ruleset/index.ts +++ b/src/organization-ruleset/index.ts @@ -228,7 +228,7 @@ export class OrganizationRulesetBypassActorsList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -675,7 +675,7 @@ export class OrganizationRulesetConditionsRepositoryPropertyExcludeList extends * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -857,7 +857,7 @@ export class OrganizationRulesetConditionsRepositoryPropertyIncludeList extends * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -2659,7 +2659,7 @@ export class OrganizationRulesetRulesPullRequestRequiredReviewersList extends cd * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -3134,7 +3134,7 @@ export class OrganizationRulesetRulesRequiredCodeScanningRequiredCodeScanningToo * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -3367,7 +3367,7 @@ export class OrganizationRulesetRulesRequiredStatusChecksRequiredCheckList exten * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -3702,7 +3702,7 @@ export class OrganizationRulesetRulesRequiredWorkflowsRequiredWorkflowList exten * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/repository-collaborators/index.ts b/src/repository-collaborators/index.ts index ebc569661..93c0a82a5 100644 --- a/src/repository-collaborators/index.ts +++ b/src/repository-collaborators/index.ts @@ -149,7 +149,7 @@ export class RepositoryCollaboratorsIgnoreTeamList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -297,7 +297,7 @@ export class RepositoryCollaboratorsTeamList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -445,7 +445,7 @@ export class RepositoryCollaboratorsUserList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/repository-ruleset/index.ts b/src/repository-ruleset/index.ts index 23f95d6e6..7f1d6f2b8 100644 --- a/src/repository-ruleset/index.ts +++ b/src/repository-ruleset/index.ts @@ -234,7 +234,7 @@ export class RepositoryRulesetBypassActorsList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -2218,7 +2218,7 @@ export class RepositoryRulesetRulesPullRequestRequiredReviewersList extends cdkt * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -2693,7 +2693,7 @@ export class RepositoryRulesetRulesRequiredCodeScanningRequiredCodeScanningToolL * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** @@ -3009,7 +3009,7 @@ export class RepositoryRulesetRulesRequiredStatusChecksRequiredCheckList extends * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/team-members/index.ts b/src/team-members/index.ts index 0d4aef50f..f8bfd91e3 100644 --- a/src/team-members/index.ts +++ b/src/team-members/index.ts @@ -172,7 +172,7 @@ export class TeamMembersMembersList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /** diff --git a/src/team-sync-group-mapping/index.ts b/src/team-sync-group-mapping/index.ts index b0b870d37..6400d088c 100644 --- a/src/team-sync-group-mapping/index.ts +++ b/src/team-sync-group-mapping/index.ts @@ -201,7 +201,7 @@ export class TeamSyncGroupMappingGroupList extends cdktn.ComplexList { * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktn.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean) { - super(terraformResource, terraformAttribute, wrapsSet) + super(terraformResource, terraformAttribute, wrapsSet); } /**