pulumi-github 6.11.0a1768542226__py3-none-any.whl → 6.12.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_github/__init__.py +37 -0
- pulumi_github/_inputs.py +527 -34
- pulumi_github/actions_environment_secret.py +141 -12
- pulumi_github/actions_environment_variable.py +73 -39
- pulumi_github/actions_organization_permissions.py +50 -3
- pulumi_github/actions_organization_secret.py +164 -55
- pulumi_github/actions_organization_secret_repositories.py +44 -28
- pulumi_github/actions_organization_secret_repository.py +44 -28
- pulumi_github/actions_organization_variable.py +44 -47
- pulumi_github/actions_organization_variable_repositories.py +262 -0
- pulumi_github/actions_organization_variable_repository.py +262 -0
- pulumi_github/actions_organization_workflow_permissions.py +320 -0
- pulumi_github/actions_repository_permissions.py +50 -3
- pulumi_github/actions_secret.py +176 -41
- pulumi_github/actions_variable.py +65 -33
- pulumi_github/app_installation_repositories.py +6 -6
- pulumi_github/app_installation_repository.py +6 -6
- pulumi_github/dependabot_organization_secret.py +128 -59
- pulumi_github/dependabot_organization_secret_repositories.py +44 -36
- pulumi_github/dependabot_organization_secret_repository.py +262 -0
- pulumi_github/dependabot_secret.py +154 -41
- pulumi_github/emu_group_mapping.py +62 -6
- pulumi_github/get_ip_ranges.py +3 -0
- pulumi_github/get_release_asset.py +370 -0
- pulumi_github/get_repository.py +17 -2
- pulumi_github/get_team.py +29 -13
- pulumi_github/organization_ruleset.py +11 -17
- pulumi_github/outputs.py +404 -25
- pulumi_github/pulumi-plugin.json +1 -1
- pulumi_github/repository.py +88 -23
- pulumi_github/repository_custom_property.py +2 -2
- pulumi_github/repository_environment.py +11 -11
- pulumi_github/repository_environment_deployment_policy.py +4 -4
- pulumi_github/repository_ruleset.py +7 -7
- pulumi_github/team.py +70 -21
- {pulumi_github-6.11.0a1768542226.dist-info → pulumi_github-6.12.0.dist-info}/METADATA +1 -1
- {pulumi_github-6.11.0a1768542226.dist-info → pulumi_github-6.12.0.dist-info}/RECORD +39 -34
- {pulumi_github-6.11.0a1768542226.dist-info → pulumi_github-6.12.0.dist-info}/WHEEL +1 -1
- {pulumi_github-6.11.0a1768542226.dist-info → pulumi_github-6.12.0.dist-info}/top_level.txt +0 -0
pulumi_github/__init__.py
CHANGED
|
@@ -15,6 +15,9 @@ from .actions_organization_secret import *
|
|
|
15
15
|
from .actions_organization_secret_repositories import *
|
|
16
16
|
from .actions_organization_secret_repository import *
|
|
17
17
|
from .actions_organization_variable import *
|
|
18
|
+
from .actions_organization_variable_repositories import *
|
|
19
|
+
from .actions_organization_variable_repository import *
|
|
20
|
+
from .actions_organization_workflow_permissions import *
|
|
18
21
|
from .actions_repository_access_level import *
|
|
19
22
|
from .actions_repository_oidc_subject_claim_customization_template import *
|
|
20
23
|
from .actions_repository_permissions import *
|
|
@@ -33,6 +36,7 @@ from .codespaces_secret import *
|
|
|
33
36
|
from .codespaces_user_secret import *
|
|
34
37
|
from .dependabot_organization_secret import *
|
|
35
38
|
from .dependabot_organization_secret_repositories import *
|
|
39
|
+
from .dependabot_organization_secret_repository import *
|
|
36
40
|
from .dependabot_secret import *
|
|
37
41
|
from .emu_group_mapping import *
|
|
38
42
|
from .enterprise_actions_permissions import *
|
|
@@ -90,6 +94,7 @@ from .get_organization_teams import *
|
|
|
90
94
|
from .get_organization_webhooks import *
|
|
91
95
|
from .get_ref import *
|
|
92
96
|
from .get_release import *
|
|
97
|
+
from .get_release_asset import *
|
|
93
98
|
from .get_repositories import *
|
|
94
99
|
from .get_repository import *
|
|
95
100
|
from .get_repository_autolink_references import *
|
|
@@ -245,6 +250,30 @@ _utilities.register(
|
|
|
245
250
|
"github:index/actionsOrganizationVariable:ActionsOrganizationVariable": "ActionsOrganizationVariable"
|
|
246
251
|
}
|
|
247
252
|
},
|
|
253
|
+
{
|
|
254
|
+
"pkg": "github",
|
|
255
|
+
"mod": "index/actionsOrganizationVariableRepositories",
|
|
256
|
+
"fqn": "pulumi_github",
|
|
257
|
+
"classes": {
|
|
258
|
+
"github:index/actionsOrganizationVariableRepositories:ActionsOrganizationVariableRepositories": "ActionsOrganizationVariableRepositories"
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"pkg": "github",
|
|
263
|
+
"mod": "index/actionsOrganizationVariableRepository",
|
|
264
|
+
"fqn": "pulumi_github",
|
|
265
|
+
"classes": {
|
|
266
|
+
"github:index/actionsOrganizationVariableRepository:ActionsOrganizationVariableRepository": "ActionsOrganizationVariableRepository"
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"pkg": "github",
|
|
271
|
+
"mod": "index/actionsOrganizationWorkflowPermissions",
|
|
272
|
+
"fqn": "pulumi_github",
|
|
273
|
+
"classes": {
|
|
274
|
+
"github:index/actionsOrganizationWorkflowPermissions:ActionsOrganizationWorkflowPermissions": "ActionsOrganizationWorkflowPermissions"
|
|
275
|
+
}
|
|
276
|
+
},
|
|
248
277
|
{
|
|
249
278
|
"pkg": "github",
|
|
250
279
|
"mod": "index/actionsRepositoryAccessLevel",
|
|
@@ -389,6 +418,14 @@ _utilities.register(
|
|
|
389
418
|
"github:index/dependabotOrganizationSecretRepositories:DependabotOrganizationSecretRepositories": "DependabotOrganizationSecretRepositories"
|
|
390
419
|
}
|
|
391
420
|
},
|
|
421
|
+
{
|
|
422
|
+
"pkg": "github",
|
|
423
|
+
"mod": "index/dependabotOrganizationSecretRepository",
|
|
424
|
+
"fqn": "pulumi_github",
|
|
425
|
+
"classes": {
|
|
426
|
+
"github:index/dependabotOrganizationSecretRepository:DependabotOrganizationSecretRepository": "DependabotOrganizationSecretRepository"
|
|
427
|
+
}
|
|
428
|
+
},
|
|
392
429
|
{
|
|
393
430
|
"pkg": "github",
|
|
394
431
|
"mod": "index/dependabotSecret",
|