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
|
@@ -35,7 +35,7 @@ class RepositoryRulesetArgs:
|
|
|
35
35
|
:param pulumi.Input['RepositoryRulesetRulesArgs'] rules: (Block List, Min: 1, Max: 1) Rules within the ruleset. (see below for nested schema)
|
|
36
36
|
:param pulumi.Input[_builtins.str] target: (String) Possible values are `branch`, `tag` and `push`.
|
|
37
37
|
:param pulumi.Input[Sequence[pulumi.Input['RepositoryRulesetBypassActorArgs']]] bypass_actors: (Block List) The actors that can bypass the rules in this ruleset. (see below for nested schema)
|
|
38
|
-
:param pulumi.Input['RepositoryRulesetConditionsArgs'] conditions: (Block List, Max: 1) Parameters for a repository ruleset
|
|
38
|
+
:param pulumi.Input['RepositoryRulesetConditionsArgs'] conditions: (Block List, Max: 1) Parameters for a repository ruleset condition. For `branch` and `tag` targets, `ref_name` is required. For `push` targets, `ref_name` must NOT be set - conditions are optional for push targets. (see below for nested schema)
|
|
39
39
|
:param pulumi.Input[_builtins.str] name: (String) The name of the ruleset.
|
|
40
40
|
"""
|
|
41
41
|
pulumi.set(__self__, "enforcement", enforcement)
|
|
@@ -113,7 +113,7 @@ class RepositoryRulesetArgs:
|
|
|
113
113
|
@pulumi.getter
|
|
114
114
|
def conditions(self) -> Optional[pulumi.Input['RepositoryRulesetConditionsArgs']]:
|
|
115
115
|
"""
|
|
116
|
-
(Block List, Max: 1) Parameters for a repository ruleset
|
|
116
|
+
(Block List, Max: 1) Parameters for a repository ruleset condition. For `branch` and `tag` targets, `ref_name` is required. For `push` targets, `ref_name` must NOT be set - conditions are optional for push targets. (see below for nested schema)
|
|
117
117
|
"""
|
|
118
118
|
return pulumi.get(self, "conditions")
|
|
119
119
|
|
|
@@ -150,7 +150,7 @@ class _RepositoryRulesetState:
|
|
|
150
150
|
"""
|
|
151
151
|
Input properties used for looking up and filtering RepositoryRuleset resources.
|
|
152
152
|
:param pulumi.Input[Sequence[pulumi.Input['RepositoryRulesetBypassActorArgs']]] bypass_actors: (Block List) The actors that can bypass the rules in this ruleset. (see below for nested schema)
|
|
153
|
-
:param pulumi.Input['RepositoryRulesetConditionsArgs'] conditions: (Block List, Max: 1) Parameters for a repository ruleset
|
|
153
|
+
:param pulumi.Input['RepositoryRulesetConditionsArgs'] conditions: (Block List, Max: 1) Parameters for a repository ruleset condition. For `branch` and `tag` targets, `ref_name` is required. For `push` targets, `ref_name` must NOT be set - conditions are optional for push targets. (see below for nested schema)
|
|
154
154
|
:param pulumi.Input[_builtins.str] enforcement: (String) Possible values for Enforcement are `disabled`, `active`, `evaluate`. Note: `evaluate` is currently only supported for owners of type `organization`.
|
|
155
155
|
:param pulumi.Input[_builtins.str] etag: (String)
|
|
156
156
|
:param pulumi.Input[_builtins.str] name: (String) The name of the ruleset.
|
|
@@ -197,7 +197,7 @@ class _RepositoryRulesetState:
|
|
|
197
197
|
@pulumi.getter
|
|
198
198
|
def conditions(self) -> Optional[pulumi.Input['RepositoryRulesetConditionsArgs']]:
|
|
199
199
|
"""
|
|
200
|
-
(Block List, Max: 1) Parameters for a repository ruleset
|
|
200
|
+
(Block List, Max: 1) Parameters for a repository ruleset condition. For `branch` and `tag` targets, `ref_name` is required. For `push` targets, `ref_name` must NOT be set - conditions are optional for push targets. (see below for nested schema)
|
|
201
201
|
"""
|
|
202
202
|
return pulumi.get(self, "conditions")
|
|
203
203
|
|
|
@@ -403,7 +403,7 @@ class RepositoryRuleset(pulumi.CustomResource):
|
|
|
403
403
|
:param str resource_name: The name of the resource.
|
|
404
404
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
405
405
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RepositoryRulesetBypassActorArgs', 'RepositoryRulesetBypassActorArgsDict']]]] bypass_actors: (Block List) The actors that can bypass the rules in this ruleset. (see below for nested schema)
|
|
406
|
-
:param pulumi.Input[Union['RepositoryRulesetConditionsArgs', 'RepositoryRulesetConditionsArgsDict']] conditions: (Block List, Max: 1) Parameters for a repository ruleset
|
|
406
|
+
:param pulumi.Input[Union['RepositoryRulesetConditionsArgs', 'RepositoryRulesetConditionsArgsDict']] conditions: (Block List, Max: 1) Parameters for a repository ruleset condition. For `branch` and `tag` targets, `ref_name` is required. For `push` targets, `ref_name` must NOT be set - conditions are optional for push targets. (see below for nested schema)
|
|
407
407
|
:param pulumi.Input[_builtins.str] enforcement: (String) Possible values for Enforcement are `disabled`, `active`, `evaluate`. Note: `evaluate` is currently only supported for owners of type `organization`.
|
|
408
408
|
:param pulumi.Input[_builtins.str] name: (String) The name of the ruleset.
|
|
409
409
|
:param pulumi.Input[_builtins.str] repository: (String) Name of the repository to apply ruleset to.
|
|
@@ -577,7 +577,7 @@ class RepositoryRuleset(pulumi.CustomResource):
|
|
|
577
577
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
578
578
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
579
579
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RepositoryRulesetBypassActorArgs', 'RepositoryRulesetBypassActorArgsDict']]]] bypass_actors: (Block List) The actors that can bypass the rules in this ruleset. (see below for nested schema)
|
|
580
|
-
:param pulumi.Input[Union['RepositoryRulesetConditionsArgs', 'RepositoryRulesetConditionsArgsDict']] conditions: (Block List, Max: 1) Parameters for a repository ruleset
|
|
580
|
+
:param pulumi.Input[Union['RepositoryRulesetConditionsArgs', 'RepositoryRulesetConditionsArgsDict']] conditions: (Block List, Max: 1) Parameters for a repository ruleset condition. For `branch` and `tag` targets, `ref_name` is required. For `push` targets, `ref_name` must NOT be set - conditions are optional for push targets. (see below for nested schema)
|
|
581
581
|
:param pulumi.Input[_builtins.str] enforcement: (String) Possible values for Enforcement are `disabled`, `active`, `evaluate`. Note: `evaluate` is currently only supported for owners of type `organization`.
|
|
582
582
|
:param pulumi.Input[_builtins.str] etag: (String)
|
|
583
583
|
:param pulumi.Input[_builtins.str] name: (String) The name of the ruleset.
|
|
@@ -615,7 +615,7 @@ class RepositoryRuleset(pulumi.CustomResource):
|
|
|
615
615
|
@pulumi.getter
|
|
616
616
|
def conditions(self) -> pulumi.Output[Optional['outputs.RepositoryRulesetConditions']]:
|
|
617
617
|
"""
|
|
618
|
-
(Block List, Max: 1) Parameters for a repository ruleset
|
|
618
|
+
(Block List, Max: 1) Parameters for a repository ruleset condition. For `branch` and `tag` targets, `ref_name` is required. For `push` targets, `ref_name` must NOT be set - conditions are optional for push targets. (see below for nested schema)
|
|
619
619
|
"""
|
|
620
620
|
return pulumi.get(self, "conditions")
|
|
621
621
|
|
pulumi_github/team.py
CHANGED
|
@@ -23,22 +23,26 @@ class TeamArgs:
|
|
|
23
23
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
24
24
|
ldap_dn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
25
25
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
26
|
+
notification_setting: Optional[pulumi.Input[_builtins.str]] = None,
|
|
26
27
|
parent_team_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
28
|
parent_team_read_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
28
29
|
parent_team_read_slug: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
30
|
privacy: Optional[pulumi.Input[_builtins.str]] = None):
|
|
30
31
|
"""
|
|
31
32
|
The set of arguments for constructing a Team resource.
|
|
32
|
-
:param pulumi.Input[_builtins.bool] create_default_maintainer: Adds a default maintainer to the team. Defaults to `false` and adds the creating user to the team when `true`.
|
|
33
|
+
:param pulumi.Input[_builtins.bool] create_default_maintainer: (Optional) Adds a default maintainer to the team. Defaults to `false` and adds the creating user to the team when `true`.
|
|
33
34
|
:param pulumi.Input[_builtins.str] description: A description of the team.
|
|
34
35
|
:param pulumi.Input[_builtins.str] ldap_dn: The LDAP Distinguished Name of the group where membership will be synchronized. Only available in GitHub Enterprise Server.
|
|
35
36
|
:param pulumi.Input[_builtins.str] name: The name of the team.
|
|
37
|
+
:param pulumi.Input[_builtins.str] notification_setting: The notification setting for the team. Must be one of `notifications_enabled` _(default)_ or `notifications_disabled`.
|
|
36
38
|
:param pulumi.Input[_builtins.str] parent_team_id: The ID or slug of the parent team, if this is a nested team.
|
|
37
39
|
:param pulumi.Input[_builtins.str] parent_team_read_id: The id of the parent team read in Github.
|
|
38
40
|
:param pulumi.Input[_builtins.str] parent_team_read_slug: The id of the parent team read in Github.
|
|
39
|
-
:param pulumi.Input[_builtins.str] privacy: The level of privacy for the team. Must be one of `secret` or `closed`.
|
|
40
|
-
Defaults to `secret`.
|
|
41
|
+
:param pulumi.Input[_builtins.str] privacy: The level of privacy for the team. Must be one of `secret` _(default)_ or `closed`.
|
|
41
42
|
"""
|
|
43
|
+
if create_default_maintainer is not None:
|
|
44
|
+
warnings.warn("""Use TeamMembership or TeamMembers resource to manage team memberships explicitly.""", DeprecationWarning)
|
|
45
|
+
pulumi.log.warn("""create_default_maintainer is deprecated: Use TeamMembership or TeamMembers resource to manage team memberships explicitly.""")
|
|
42
46
|
if create_default_maintainer is not None:
|
|
43
47
|
pulumi.set(__self__, "create_default_maintainer", create_default_maintainer)
|
|
44
48
|
if description is not None:
|
|
@@ -47,6 +51,8 @@ class TeamArgs:
|
|
|
47
51
|
pulumi.set(__self__, "ldap_dn", ldap_dn)
|
|
48
52
|
if name is not None:
|
|
49
53
|
pulumi.set(__self__, "name", name)
|
|
54
|
+
if notification_setting is not None:
|
|
55
|
+
pulumi.set(__self__, "notification_setting", notification_setting)
|
|
50
56
|
if parent_team_id is not None:
|
|
51
57
|
pulumi.set(__self__, "parent_team_id", parent_team_id)
|
|
52
58
|
if parent_team_read_id is not None:
|
|
@@ -58,9 +64,10 @@ class TeamArgs:
|
|
|
58
64
|
|
|
59
65
|
@_builtins.property
|
|
60
66
|
@pulumi.getter(name="createDefaultMaintainer")
|
|
67
|
+
@_utilities.deprecated("""Use TeamMembership or TeamMembers resource to manage team memberships explicitly.""")
|
|
61
68
|
def create_default_maintainer(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
62
69
|
"""
|
|
63
|
-
Adds a default maintainer to the team. Defaults to `false` and adds the creating user to the team when `true`.
|
|
70
|
+
(Optional) Adds a default maintainer to the team. Defaults to `false` and adds the creating user to the team when `true`.
|
|
64
71
|
"""
|
|
65
72
|
return pulumi.get(self, "create_default_maintainer")
|
|
66
73
|
|
|
@@ -104,6 +111,18 @@ class TeamArgs:
|
|
|
104
111
|
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
105
112
|
pulumi.set(self, "name", value)
|
|
106
113
|
|
|
114
|
+
@_builtins.property
|
|
115
|
+
@pulumi.getter(name="notificationSetting")
|
|
116
|
+
def notification_setting(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
117
|
+
"""
|
|
118
|
+
The notification setting for the team. Must be one of `notifications_enabled` _(default)_ or `notifications_disabled`.
|
|
119
|
+
"""
|
|
120
|
+
return pulumi.get(self, "notification_setting")
|
|
121
|
+
|
|
122
|
+
@notification_setting.setter
|
|
123
|
+
def notification_setting(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
124
|
+
pulumi.set(self, "notification_setting", value)
|
|
125
|
+
|
|
107
126
|
@_builtins.property
|
|
108
127
|
@pulumi.getter(name="parentTeamId")
|
|
109
128
|
def parent_team_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -144,8 +163,7 @@ class TeamArgs:
|
|
|
144
163
|
@pulumi.getter
|
|
145
164
|
def privacy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
146
165
|
"""
|
|
147
|
-
The level of privacy for the team. Must be one of `secret` or `closed`.
|
|
148
|
-
Defaults to `secret`.
|
|
166
|
+
The level of privacy for the team. Must be one of `secret` _(default)_ or `closed`.
|
|
149
167
|
"""
|
|
150
168
|
return pulumi.get(self, "privacy")
|
|
151
169
|
|
|
@@ -164,6 +182,7 @@ class _TeamState:
|
|
|
164
182
|
members_count: Optional[pulumi.Input[_builtins.int]] = None,
|
|
165
183
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
166
184
|
node_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
185
|
+
notification_setting: Optional[pulumi.Input[_builtins.str]] = None,
|
|
167
186
|
parent_team_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
168
187
|
parent_team_read_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
169
188
|
parent_team_read_slug: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -171,20 +190,23 @@ class _TeamState:
|
|
|
171
190
|
slug: Optional[pulumi.Input[_builtins.str]] = None):
|
|
172
191
|
"""
|
|
173
192
|
Input properties used for looking up and filtering Team resources.
|
|
174
|
-
:param pulumi.Input[_builtins.bool] create_default_maintainer: Adds a default maintainer to the team. Defaults to `false` and adds the creating user to the team when `true`.
|
|
193
|
+
:param pulumi.Input[_builtins.bool] create_default_maintainer: (Optional) Adds a default maintainer to the team. Defaults to `false` and adds the creating user to the team when `true`.
|
|
175
194
|
:param pulumi.Input[_builtins.str] description: A description of the team.
|
|
176
195
|
:param pulumi.Input[_builtins.str] ldap_dn: The LDAP Distinguished Name of the group where membership will be synchronized. Only available in GitHub Enterprise Server.
|
|
177
196
|
:param pulumi.Input[_builtins.str] name: The name of the team.
|
|
178
197
|
:param pulumi.Input[_builtins.str] node_id: The Node ID of the created team.
|
|
198
|
+
:param pulumi.Input[_builtins.str] notification_setting: The notification setting for the team. Must be one of `notifications_enabled` _(default)_ or `notifications_disabled`.
|
|
179
199
|
:param pulumi.Input[_builtins.str] parent_team_id: The ID or slug of the parent team, if this is a nested team.
|
|
180
200
|
:param pulumi.Input[_builtins.str] parent_team_read_id: The id of the parent team read in Github.
|
|
181
201
|
:param pulumi.Input[_builtins.str] parent_team_read_slug: The id of the parent team read in Github.
|
|
182
|
-
:param pulumi.Input[_builtins.str] privacy: The level of privacy for the team. Must be one of `secret` or `closed`.
|
|
183
|
-
Defaults to `secret`.
|
|
202
|
+
:param pulumi.Input[_builtins.str] privacy: The level of privacy for the team. Must be one of `secret` _(default)_ or `closed`.
|
|
184
203
|
:param pulumi.Input[_builtins.str] slug: The slug of the created team, which may or may not differ from `name`,
|
|
185
204
|
depending on whether `name` contains "URL-unsafe" characters.
|
|
186
205
|
Useful when referencing the team in [`BranchProtection`](https://www.terraform.io/docs/providers/github/r/branch_protection.html).
|
|
187
206
|
"""
|
|
207
|
+
if create_default_maintainer is not None:
|
|
208
|
+
warnings.warn("""Use TeamMembership or TeamMembers resource to manage team memberships explicitly.""", DeprecationWarning)
|
|
209
|
+
pulumi.log.warn("""create_default_maintainer is deprecated: Use TeamMembership or TeamMembers resource to manage team memberships explicitly.""")
|
|
188
210
|
if create_default_maintainer is not None:
|
|
189
211
|
pulumi.set(__self__, "create_default_maintainer", create_default_maintainer)
|
|
190
212
|
if description is not None:
|
|
@@ -199,6 +221,8 @@ class _TeamState:
|
|
|
199
221
|
pulumi.set(__self__, "name", name)
|
|
200
222
|
if node_id is not None:
|
|
201
223
|
pulumi.set(__self__, "node_id", node_id)
|
|
224
|
+
if notification_setting is not None:
|
|
225
|
+
pulumi.set(__self__, "notification_setting", notification_setting)
|
|
202
226
|
if parent_team_id is not None:
|
|
203
227
|
pulumi.set(__self__, "parent_team_id", parent_team_id)
|
|
204
228
|
if parent_team_read_id is not None:
|
|
@@ -212,9 +236,10 @@ class _TeamState:
|
|
|
212
236
|
|
|
213
237
|
@_builtins.property
|
|
214
238
|
@pulumi.getter(name="createDefaultMaintainer")
|
|
239
|
+
@_utilities.deprecated("""Use TeamMembership or TeamMembers resource to manage team memberships explicitly.""")
|
|
215
240
|
def create_default_maintainer(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
216
241
|
"""
|
|
217
|
-
Adds a default maintainer to the team. Defaults to `false` and adds the creating user to the team when `true`.
|
|
242
|
+
(Optional) Adds a default maintainer to the team. Defaults to `false` and adds the creating user to the team when `true`.
|
|
218
243
|
"""
|
|
219
244
|
return pulumi.get(self, "create_default_maintainer")
|
|
220
245
|
|
|
@@ -288,6 +313,18 @@ class _TeamState:
|
|
|
288
313
|
def node_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
289
314
|
pulumi.set(self, "node_id", value)
|
|
290
315
|
|
|
316
|
+
@_builtins.property
|
|
317
|
+
@pulumi.getter(name="notificationSetting")
|
|
318
|
+
def notification_setting(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
319
|
+
"""
|
|
320
|
+
The notification setting for the team. Must be one of `notifications_enabled` _(default)_ or `notifications_disabled`.
|
|
321
|
+
"""
|
|
322
|
+
return pulumi.get(self, "notification_setting")
|
|
323
|
+
|
|
324
|
+
@notification_setting.setter
|
|
325
|
+
def notification_setting(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
326
|
+
pulumi.set(self, "notification_setting", value)
|
|
327
|
+
|
|
291
328
|
@_builtins.property
|
|
292
329
|
@pulumi.getter(name="parentTeamId")
|
|
293
330
|
def parent_team_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -328,8 +365,7 @@ class _TeamState:
|
|
|
328
365
|
@pulumi.getter
|
|
329
366
|
def privacy(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
330
367
|
"""
|
|
331
|
-
The level of privacy for the team. Must be one of `secret` or `closed`.
|
|
332
|
-
Defaults to `secret`.
|
|
368
|
+
The level of privacy for the team. Must be one of `secret` _(default)_ or `closed`.
|
|
333
369
|
"""
|
|
334
370
|
return pulumi.get(self, "privacy")
|
|
335
371
|
|
|
@@ -362,6 +398,7 @@ class Team(pulumi.CustomResource):
|
|
|
362
398
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
363
399
|
ldap_dn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
364
400
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
401
|
+
notification_setting: Optional[pulumi.Input[_builtins.str]] = None,
|
|
365
402
|
parent_team_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
366
403
|
parent_team_read_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
367
404
|
parent_team_read_slug: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -400,15 +437,15 @@ class Team(pulumi.CustomResource):
|
|
|
400
437
|
|
|
401
438
|
:param str resource_name: The name of the resource.
|
|
402
439
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
403
|
-
:param pulumi.Input[_builtins.bool] create_default_maintainer: Adds a default maintainer to the team. Defaults to `false` and adds the creating user to the team when `true`.
|
|
440
|
+
:param pulumi.Input[_builtins.bool] create_default_maintainer: (Optional) Adds a default maintainer to the team. Defaults to `false` and adds the creating user to the team when `true`.
|
|
404
441
|
:param pulumi.Input[_builtins.str] description: A description of the team.
|
|
405
442
|
:param pulumi.Input[_builtins.str] ldap_dn: The LDAP Distinguished Name of the group where membership will be synchronized. Only available in GitHub Enterprise Server.
|
|
406
443
|
:param pulumi.Input[_builtins.str] name: The name of the team.
|
|
444
|
+
:param pulumi.Input[_builtins.str] notification_setting: The notification setting for the team. Must be one of `notifications_enabled` _(default)_ or `notifications_disabled`.
|
|
407
445
|
:param pulumi.Input[_builtins.str] parent_team_id: The ID or slug of the parent team, if this is a nested team.
|
|
408
446
|
:param pulumi.Input[_builtins.str] parent_team_read_id: The id of the parent team read in Github.
|
|
409
447
|
:param pulumi.Input[_builtins.str] parent_team_read_slug: The id of the parent team read in Github.
|
|
410
|
-
:param pulumi.Input[_builtins.str] privacy: The level of privacy for the team. Must be one of `secret` or `closed`.
|
|
411
|
-
Defaults to `secret`.
|
|
448
|
+
:param pulumi.Input[_builtins.str] privacy: The level of privacy for the team. Must be one of `secret` _(default)_ or `closed`.
|
|
412
449
|
"""
|
|
413
450
|
...
|
|
414
451
|
@overload
|
|
@@ -466,6 +503,7 @@ class Team(pulumi.CustomResource):
|
|
|
466
503
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
467
504
|
ldap_dn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
468
505
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
506
|
+
notification_setting: Optional[pulumi.Input[_builtins.str]] = None,
|
|
469
507
|
parent_team_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
470
508
|
parent_team_read_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
471
509
|
parent_team_read_slug: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -483,6 +521,7 @@ class Team(pulumi.CustomResource):
|
|
|
483
521
|
__props__.__dict__["description"] = description
|
|
484
522
|
__props__.__dict__["ldap_dn"] = ldap_dn
|
|
485
523
|
__props__.__dict__["name"] = name
|
|
524
|
+
__props__.__dict__["notification_setting"] = notification_setting
|
|
486
525
|
__props__.__dict__["parent_team_id"] = parent_team_id
|
|
487
526
|
__props__.__dict__["parent_team_read_id"] = parent_team_read_id
|
|
488
527
|
__props__.__dict__["parent_team_read_slug"] = parent_team_read_slug
|
|
@@ -508,6 +547,7 @@ class Team(pulumi.CustomResource):
|
|
|
508
547
|
members_count: Optional[pulumi.Input[_builtins.int]] = None,
|
|
509
548
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
510
549
|
node_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
550
|
+
notification_setting: Optional[pulumi.Input[_builtins.str]] = None,
|
|
511
551
|
parent_team_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
512
552
|
parent_team_read_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
513
553
|
parent_team_read_slug: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -520,16 +560,16 @@ class Team(pulumi.CustomResource):
|
|
|
520
560
|
:param str resource_name: The unique name of the resulting resource.
|
|
521
561
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
522
562
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
523
|
-
:param pulumi.Input[_builtins.bool] create_default_maintainer: Adds a default maintainer to the team. Defaults to `false` and adds the creating user to the team when `true`.
|
|
563
|
+
:param pulumi.Input[_builtins.bool] create_default_maintainer: (Optional) Adds a default maintainer to the team. Defaults to `false` and adds the creating user to the team when `true`.
|
|
524
564
|
:param pulumi.Input[_builtins.str] description: A description of the team.
|
|
525
565
|
:param pulumi.Input[_builtins.str] ldap_dn: The LDAP Distinguished Name of the group where membership will be synchronized. Only available in GitHub Enterprise Server.
|
|
526
566
|
:param pulumi.Input[_builtins.str] name: The name of the team.
|
|
527
567
|
:param pulumi.Input[_builtins.str] node_id: The Node ID of the created team.
|
|
568
|
+
:param pulumi.Input[_builtins.str] notification_setting: The notification setting for the team. Must be one of `notifications_enabled` _(default)_ or `notifications_disabled`.
|
|
528
569
|
:param pulumi.Input[_builtins.str] parent_team_id: The ID or slug of the parent team, if this is a nested team.
|
|
529
570
|
:param pulumi.Input[_builtins.str] parent_team_read_id: The id of the parent team read in Github.
|
|
530
571
|
:param pulumi.Input[_builtins.str] parent_team_read_slug: The id of the parent team read in Github.
|
|
531
|
-
:param pulumi.Input[_builtins.str] privacy: The level of privacy for the team. Must be one of `secret` or `closed`.
|
|
532
|
-
Defaults to `secret`.
|
|
572
|
+
:param pulumi.Input[_builtins.str] privacy: The level of privacy for the team. Must be one of `secret` _(default)_ or `closed`.
|
|
533
573
|
:param pulumi.Input[_builtins.str] slug: The slug of the created team, which may or may not differ from `name`,
|
|
534
574
|
depending on whether `name` contains "URL-unsafe" characters.
|
|
535
575
|
Useful when referencing the team in [`BranchProtection`](https://www.terraform.io/docs/providers/github/r/branch_protection.html).
|
|
@@ -545,6 +585,7 @@ class Team(pulumi.CustomResource):
|
|
|
545
585
|
__props__.__dict__["members_count"] = members_count
|
|
546
586
|
__props__.__dict__["name"] = name
|
|
547
587
|
__props__.__dict__["node_id"] = node_id
|
|
588
|
+
__props__.__dict__["notification_setting"] = notification_setting
|
|
548
589
|
__props__.__dict__["parent_team_id"] = parent_team_id
|
|
549
590
|
__props__.__dict__["parent_team_read_id"] = parent_team_read_id
|
|
550
591
|
__props__.__dict__["parent_team_read_slug"] = parent_team_read_slug
|
|
@@ -554,9 +595,10 @@ class Team(pulumi.CustomResource):
|
|
|
554
595
|
|
|
555
596
|
@_builtins.property
|
|
556
597
|
@pulumi.getter(name="createDefaultMaintainer")
|
|
598
|
+
@_utilities.deprecated("""Use TeamMembership or TeamMembers resource to manage team memberships explicitly.""")
|
|
557
599
|
def create_default_maintainer(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
558
600
|
"""
|
|
559
|
-
Adds a default maintainer to the team. Defaults to `false` and adds the creating user to the team when `true`.
|
|
601
|
+
(Optional) Adds a default maintainer to the team. Defaults to `false` and adds the creating user to the team when `true`.
|
|
560
602
|
"""
|
|
561
603
|
return pulumi.get(self, "create_default_maintainer")
|
|
562
604
|
|
|
@@ -602,6 +644,14 @@ class Team(pulumi.CustomResource):
|
|
|
602
644
|
"""
|
|
603
645
|
return pulumi.get(self, "node_id")
|
|
604
646
|
|
|
647
|
+
@_builtins.property
|
|
648
|
+
@pulumi.getter(name="notificationSetting")
|
|
649
|
+
def notification_setting(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
650
|
+
"""
|
|
651
|
+
The notification setting for the team. Must be one of `notifications_enabled` _(default)_ or `notifications_disabled`.
|
|
652
|
+
"""
|
|
653
|
+
return pulumi.get(self, "notification_setting")
|
|
654
|
+
|
|
605
655
|
@_builtins.property
|
|
606
656
|
@pulumi.getter(name="parentTeamId")
|
|
607
657
|
def parent_team_id(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
@@ -630,8 +680,7 @@ class Team(pulumi.CustomResource):
|
|
|
630
680
|
@pulumi.getter
|
|
631
681
|
def privacy(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
632
682
|
"""
|
|
633
|
-
The level of privacy for the team. Must be one of `secret` or `closed`.
|
|
634
|
-
Defaults to `secret`.
|
|
683
|
+
The level of privacy for the team. Must be one of `secret` _(default)_ or `closed`.
|
|
635
684
|
"""
|
|
636
685
|
return pulumi.get(self, "privacy")
|
|
637
686
|
|
|
@@ -1,23 +1,26 @@
|
|
|
1
|
-
pulumi_github/__init__.py,sha256=
|
|
2
|
-
pulumi_github/_inputs.py,sha256=
|
|
1
|
+
pulumi_github/__init__.py,sha256=ZxQOtjQOkqdvM20LltXUxMeHwLrHAIm9Q-q_8CtGk8s,24515
|
|
2
|
+
pulumi_github/_inputs.py,sha256=PUbJvSpA8mPt5sC1-ZIKyIk3ZqokRTtDGFrOMNZHFGE,333317
|
|
3
3
|
pulumi_github/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
|
-
pulumi_github/actions_environment_secret.py,sha256=
|
|
5
|
-
pulumi_github/actions_environment_variable.py,sha256=
|
|
4
|
+
pulumi_github/actions_environment_secret.py,sha256=i4ima60wz7L_v0eBLBvq2T5fuXpSpPEjYvwlQ_cGN7k,24662
|
|
5
|
+
pulumi_github/actions_environment_variable.py,sha256=qXDupTmDSUa1ihp1L8o7YiVeMEeGhJQ-xxWsoZR-JGI,18521
|
|
6
6
|
pulumi_github/actions_hosted_runner.py,sha256=itmCa2JVslSj7C_C7mY3k76cQwfm-4q2GseS7jsNrCE,38401
|
|
7
7
|
pulumi_github/actions_organization_oidc_subject_claim_customization_template.py,sha256=4PFkbU5kRN_1fSmFg8Q2_NKe1h-kkuDuToOKktQ9qXQ,9643
|
|
8
|
-
pulumi_github/actions_organization_permissions.py,sha256=
|
|
9
|
-
pulumi_github/actions_organization_secret.py,sha256=
|
|
10
|
-
pulumi_github/actions_organization_secret_repositories.py,sha256=
|
|
11
|
-
pulumi_github/actions_organization_secret_repository.py,sha256=
|
|
12
|
-
pulumi_github/actions_organization_variable.py,sha256=
|
|
8
|
+
pulumi_github/actions_organization_permissions.py,sha256=H22240IvswqX1Mju5-mga5zVysJRQD4pqwN0ogkyHdM,24636
|
|
9
|
+
pulumi_github/actions_organization_secret.py,sha256=MQKrGWy3_Li6z1o5yltEbPbX8xsq6noH-P8rxyVDFk0,32951
|
|
10
|
+
pulumi_github/actions_organization_secret_repositories.py,sha256=sFvI5amosSGOWFl8JjxV5lgRBQ-UOkhA_JNmW1Yclsk,12422
|
|
11
|
+
pulumi_github/actions_organization_secret_repository.py,sha256=znaHEEfFianSaZzYD2uUovg7Izr-bk8Lgz-hVrIdSgg,11581
|
|
12
|
+
pulumi_github/actions_organization_variable.py,sha256=3wpxDnYbnPSo1AtNKlAuY34bopX4fB3W07AOUq9WfYE,18957
|
|
13
|
+
pulumi_github/actions_organization_variable_repositories.py,sha256=Ls6u4z6RJxetcS2kRDXgJLs_eEF6j2lZvZnMuX22eaU,12624
|
|
14
|
+
pulumi_github/actions_organization_variable_repository.py,sha256=Fv789X57CS4XkNvpu1dc_hDbr3zUWv1aRZmhEdZ50iI,11785
|
|
15
|
+
pulumi_github/actions_organization_workflow_permissions.py,sha256=PoGdEMv0YB9VGR-_4Becnq9jAoqvi7BFZEoKzYvQMog,16381
|
|
13
16
|
pulumi_github/actions_repository_access_level.py,sha256=IwvKo_HBydIsxw7ZkkwwEjuoksG9F08-1_unk4m4xJk,10671
|
|
14
17
|
pulumi_github/actions_repository_oidc_subject_claim_customization_template.py,sha256=Tc1PB-VE06zFe3SxyLOk7h1CpJNtZopn3_osj50cSHY,15685
|
|
15
|
-
pulumi_github/actions_repository_permissions.py,sha256=
|
|
18
|
+
pulumi_github/actions_repository_permissions.py,sha256=1SpCXRHuDZHZ-5rO-YnYktDmE1SpcQBuZCcKBAirz8w,20116
|
|
16
19
|
pulumi_github/actions_runner_group.py,sha256=4ZIiDcoHchnjHNswhEntqFE5loLsFbXdBUdWBeBR8zw,29003
|
|
17
|
-
pulumi_github/actions_secret.py,sha256=
|
|
18
|
-
pulumi_github/actions_variable.py,sha256=
|
|
19
|
-
pulumi_github/app_installation_repositories.py,sha256=
|
|
20
|
-
pulumi_github/app_installation_repository.py,sha256=
|
|
20
|
+
pulumi_github/actions_secret.py,sha256=FD_ff02onr2Mo1lkuyV2dvCBEencM_9nWbJdQwQatak,27675
|
|
21
|
+
pulumi_github/actions_variable.py,sha256=FopfW6jAJ-noRu4koqRb-EGbGFiXIxPCXgyjNVXvr2c,14854
|
|
22
|
+
pulumi_github/app_installation_repositories.py,sha256=EyOwCJdyuDMu4jWnMgEQS41Bqda73JJvfptS3w3IegA,13937
|
|
23
|
+
pulumi_github/app_installation_repository.py,sha256=rPXlr-VoDkqG_Eod-hJd3eybCOgLug7ZRs_-jnQVLLM,12243
|
|
21
24
|
pulumi_github/branch.py,sha256=C1ruPNSW-YuZ-1eil6Jt3r8tFtBvjF9bOKcHzWFwklM,18841
|
|
22
25
|
pulumi_github/branch_default.py,sha256=t6QYm8AFOs2tFJLANPnK7zqP4rtq52DXW79233gmGRQ,14225
|
|
23
26
|
pulumi_github/branch_protection.py,sha256=EQgKChwyyBXJmwSak_aRZXcjMWK60cNwtOvYgwhDUnc,48369
|
|
@@ -26,10 +29,11 @@ pulumi_github/codespaces_organization_secret.py,sha256=Gm1ZohHi5R4TDt3CjX2K2z8-o
|
|
|
26
29
|
pulumi_github/codespaces_organization_secret_repositories.py,sha256=bYb-IWvQ2aP89SGYSyMGMV4n0PAnMfL2oN7MH5G2C4U,11624
|
|
27
30
|
pulumi_github/codespaces_secret.py,sha256=MsXP38COG9rmQDOWk_1ejln_cnccZl2O9bo0htLOzPs,16256
|
|
28
31
|
pulumi_github/codespaces_user_secret.py,sha256=mUzjFl65oNscUMr2BRcGI-tvQtZJy5j7WlFlEcIu68Q,17310
|
|
29
|
-
pulumi_github/dependabot_organization_secret.py,sha256=
|
|
30
|
-
pulumi_github/dependabot_organization_secret_repositories.py,sha256=
|
|
31
|
-
pulumi_github/
|
|
32
|
-
pulumi_github/
|
|
32
|
+
pulumi_github/dependabot_organization_secret.py,sha256=JglQ3AeUkmpDAsDANZ8I15NzOxNY3p3AsZhaEEwO7BE,27025
|
|
33
|
+
pulumi_github/dependabot_organization_secret_repositories.py,sha256=rXOJTi9Jslfa9wQNHAjUPaSVn5yQydSYj22kaChgTfQ,12555
|
|
34
|
+
pulumi_github/dependabot_organization_secret_repository.py,sha256=2rYisCmvJhxQBXLLmVGsDkReeRqZLx896DOjZFrynTA,11620
|
|
35
|
+
pulumi_github/dependabot_secret.py,sha256=R0HwryN59W8J3wAXk9wnNPnHLP9HSa4Ousud1hxGsTM,22446
|
|
36
|
+
pulumi_github/emu_group_mapping.py,sha256=SM7OzIlmMgbXGT9jNfewDTqqN2rLor2CvUyV0_BtH4E,12949
|
|
33
37
|
pulumi_github/enterprise_actions_permissions.py,sha256=Wop0r64sgXbtkNdZsBE8DgaI58w1x4OcxgT8T56P5Qo,23953
|
|
34
38
|
pulumi_github/enterprise_actions_runner_group.py,sha256=XRMC8_uXYz8KglBKRXbc5gnoqFyNi1ek2VSPtN4lhE8,30898
|
|
35
39
|
pulumi_github/enterprise_actions_workflow_permissions.py,sha256=hJX81_SlhVJeTXyTLPtpF7SpcJADdy7NquEIDKNhYl4,16191
|
|
@@ -65,7 +69,7 @@ pulumi_github/get_dependabot_secrets.py,sha256=sY7WntoHpfqh5qrLo4hx6ZccxKVFjQBA4
|
|
|
65
69
|
pulumi_github/get_enterprise.py,sha256=ikjZbqUi-rrI8SNia0FF-nWS2ur_u5saFPJrsTfJmVQ,6283
|
|
66
70
|
pulumi_github/get_external_groups.py,sha256=6rirBGkXNYo7Bu8VXOLQ6paas6Xl8soqd2wHZ-7dbFc,3865
|
|
67
71
|
pulumi_github/get_github_app.py,sha256=ZQ1bezhgYSCkCMP4N0TzUbSH5NsgWchV6AIgrRTNyvU,5026
|
|
68
|
-
pulumi_github/get_ip_ranges.py,sha256=
|
|
72
|
+
pulumi_github/get_ip_ranges.py,sha256=4YegCBuArCzxBaoCj8A_5Wy7LLaC1eps_p5GsDOGy1w,20097
|
|
69
73
|
pulumi_github/get_issue_labels.py,sha256=7Gq5QK6Sj0YOHkrur87r2BefU7Hdqurc97tNERpQopk,3972
|
|
70
74
|
pulumi_github/get_membership.py,sha256=e5cTSlcnn1iyXoiu_9jpGipqy0npZ3kvZTLUa-CRG9A,6696
|
|
71
75
|
pulumi_github/get_organization.py,sha256=1W0ZLaLo1JFhWqWWZuluv4Oi83TatMC_FiYf1Hp8qG0,29456
|
|
@@ -85,8 +89,9 @@ pulumi_github/get_organization_teams.py,sha256=IuFZWkZFMIK1Rk4SpHqG5I453hKm1ebON
|
|
|
85
89
|
pulumi_github/get_organization_webhooks.py,sha256=EN1RlTzXO73d956YJGuIzuoI8lDvLMZnRr5cP-XSL_I,3747
|
|
86
90
|
pulumi_github/get_ref.py,sha256=tjnOKTTXoGx59wTgXmkrQ9HDgFOf7KmsSPFMnDy4o1A,6111
|
|
87
91
|
pulumi_github/get_release.py,sha256=E5ThEgvhY_rmhTvYx0w-jQ-ww8GeSjgCc3Vnt6j3mEQ,17015
|
|
92
|
+
pulumi_github/get_release_asset.py,sha256=377aLeUUoMRq9lTAGIcch56-WO8-ThDMil2QmVeGiOk,14706
|
|
88
93
|
pulumi_github/get_repositories.py,sha256=aMsVbbabJ6apgCBfI0VpoEhatCDunc0wjVq5yXfekeY,9099
|
|
89
|
-
pulumi_github/get_repository.py,sha256=
|
|
94
|
+
pulumi_github/get_repository.py,sha256=bRW00uZ7CeHzGHwdvsvR-_u33g74287dFEHA95mEnLU,28840
|
|
90
95
|
pulumi_github/get_repository_autolink_references.py,sha256=jWapWwoHbsP-iLUNZdRtX-g7PdeBezolCbAt6KT_65M,5089
|
|
91
96
|
pulumi_github/get_repository_branches.py,sha256=NtesAi9_-Kb-nFBHQk_7I3y7kLfc602ciX9aM6_CJqg,7404
|
|
92
97
|
pulumi_github/get_repository_custom_properties.py,sha256=Qf0QcKv2zCZyERmweZX2d0pVQBvfjFvqMs09eV48Zfg,4860
|
|
@@ -102,7 +107,7 @@ pulumi_github/get_repository_teams.py,sha256=xtaQvcLL_u14EKxCgthMz3M22LEnKIUMhjM
|
|
|
102
107
|
pulumi_github/get_repository_webhooks.py,sha256=pLBTpXmPaBUM4mwJYn3j0RkoAhZgz_jPvn6aDSUnWOo,4447
|
|
103
108
|
pulumi_github/get_rest_api.py,sha256=MA9G4N5zrXs2iQauTowlp4KgjObdVtb2JRyuwlZJXRY,5621
|
|
104
109
|
pulumi_github/get_ssh_keys.py,sha256=gNogQAhONHJNfBhN5939F4f7Apj3W2VHYung5MOHQMQ,3173
|
|
105
|
-
pulumi_github/get_team.py,sha256=
|
|
110
|
+
pulumi_github/get_team.py,sha256=bwLDMqQkDfabuZTIAOw4uKXZCUhAmM2DG_IlC1x73wc,12576
|
|
106
111
|
pulumi_github/get_tree.py,sha256=V7N1DAfH0-dr7kp2yg1jLmqB4ATAWR3U5uKmNsn0IBU,6456
|
|
107
112
|
pulumi_github/get_user.py,sha256=rS78kaSjpDMkHCmmZ0T7rLAdFYmD7xywQdu88nyA_sM,14700
|
|
108
113
|
pulumi_github/get_user_external_identity.py,sha256=4EMy6ac4nDyi8_Q6bcbtoWeYkpMty_6uK7U-AZ1UtXc,5978
|
|
@@ -120,35 +125,35 @@ pulumi_github/organization_role.py,sha256=iWwMCsSGnJFzhSNynsHV2QpVNavE14DFEzYuWv
|
|
|
120
125
|
pulumi_github/organization_role_team.py,sha256=OP6BOO_OzCXRKmxiBmtuSEVNDUFmrrxRc0rDx7nVJus,9143
|
|
121
126
|
pulumi_github/organization_role_team_assignment.py,sha256=9DC2sWPd-v_8gWt8FIJ8u7ocsgMrDAcbLxUtVno55YU,10404
|
|
122
127
|
pulumi_github/organization_role_user.py,sha256=NPWKzsUdq2-B_SnQC5n96Qb4OvZb0PNjzkiuY6ZBHBg,9042
|
|
123
|
-
pulumi_github/organization_ruleset.py,sha256=
|
|
128
|
+
pulumi_github/organization_ruleset.py,sha256=Z1JyKOUmhlPCeie2Lwvowf4f1IX3K3KM1NPKrAoCEXg,31293
|
|
124
129
|
pulumi_github/organization_security_manager.py,sha256=_d0ioo2TFtYBWu0I4sKVJiFoYGR58OcjAsiJHqr-GGM,7634
|
|
125
130
|
pulumi_github/organization_settings.py,sha256=j-UhuwUCzrzVdnpKMYMqtnpeJnXdyP7gK44Nh6BWx10,84552
|
|
126
131
|
pulumi_github/organization_webhook.py,sha256=ZBNHqHxNNxRK6Idi05yQjw2sEfDM2JBsO2AoPObJGdM,15991
|
|
127
|
-
pulumi_github/outputs.py,sha256=
|
|
132
|
+
pulumi_github/outputs.py,sha256=sVsE4d_hSQMRlL4c8BWfWHwK5EBsgxE5sW5Qs03O8kE,321200
|
|
128
133
|
pulumi_github/project_card.py,sha256=x_A-Iv8cb94mTA5sx1nRlCh2sSmxfTAvuwaNPLAYY7Q,18969
|
|
129
134
|
pulumi_github/project_column.py,sha256=QTcfk22084bOk7BTTVeqk4RyzOY8WdWLNlz8kIjD-VM,11250
|
|
130
135
|
pulumi_github/provider.py,sha256=EpU2hqQ5WGwM5nq_c5rGE7MJLNAskPz32F03EJ-GIoc,23731
|
|
131
|
-
pulumi_github/pulumi-plugin.json,sha256=
|
|
136
|
+
pulumi_github/pulumi-plugin.json,sha256=Uf7ovhpSSVUS5MIi5HHJaBuwHda6yfRcLMGSJUxqNSc,66
|
|
132
137
|
pulumi_github/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
138
|
pulumi_github/release.py,sha256=udD_Paft3i0R_W9ktVPxnlsx8PzvLfi1LsLcmspgLnU,43043
|
|
134
|
-
pulumi_github/repository.py,sha256=
|
|
139
|
+
pulumi_github/repository.py,sha256=gMFjkKrsFsuFacPIUKbq3aCcNWeKYYKvispSRfhFdHg,137039
|
|
135
140
|
pulumi_github/repository_autolink_reference.py,sha256=7BziThFSVSHTbflGHTzsz6X-UB9aJj1vCVKErQ6i62E,17479
|
|
136
141
|
pulumi_github/repository_collaborator.py,sha256=uFs8uJF8HktK-MLYP9WzzCDsDWO4zsz0VhCMl6e5sDg,20644
|
|
137
142
|
pulumi_github/repository_collaborators.py,sha256=G8kcY52vBH3AMD-U5p5MD_lnfeMxijW3csdvqAmu1DU,19090
|
|
138
|
-
pulumi_github/repository_custom_property.py,sha256=
|
|
143
|
+
pulumi_github/repository_custom_property.py,sha256=t2Yg7sHDEH49aO3u-gqnA-gl4c-eiXtXGsSDbO8wPE0,17524
|
|
139
144
|
pulumi_github/repository_dependabot_security_updates.py,sha256=bOOpx-yQvaErLWvZRjt05QOT_tJqNk4PHdQBgOAoMzo,10321
|
|
140
145
|
pulumi_github/repository_deploy_key.py,sha256=vsla6fWEIbDVQUQTXPqexN41Z1I1ku-0QsMv3RejJTo,14800
|
|
141
146
|
pulumi_github/repository_deployment_branch_policy.py,sha256=dT7CFJxjb6ltB_qeZ-mOse6II2qbhBpARqSh87UYJhM,15353
|
|
142
|
-
pulumi_github/repository_environment.py,sha256=
|
|
143
|
-
pulumi_github/repository_environment_deployment_policy.py,sha256=
|
|
147
|
+
pulumi_github/repository_environment.py,sha256=QsTX98cF3pcUTxzvsVNtg1FHdruzBJa3eK_RzS2S7_Q,24372
|
|
148
|
+
pulumi_github/repository_environment_deployment_policy.py,sha256=ZT9Jfz2cS2tlXu8f6maWW89WeIot_ltJ7h8IhzpEMks,18724
|
|
144
149
|
pulumi_github/repository_file.py,sha256=64QTmA1hRsmSlSWfzkKqb03bBptGiYZTjW9EjwLR2wE,41601
|
|
145
150
|
pulumi_github/repository_milestone.py,sha256=5vqlWJAkp0-U310nsmpKJDBvtxfKNmtD4EIeb0OuRKc,18465
|
|
146
151
|
pulumi_github/repository_project.py,sha256=l38rsdFcHzdz3dNdjdFS1euE91WEvlCU0y1ffHHUk7o,13329
|
|
147
152
|
pulumi_github/repository_pull_request.py,sha256=fiDd8z0AltmhHdvkLDjtC3U6uilZarbcxxp5yWDi6wo,30934
|
|
148
|
-
pulumi_github/repository_ruleset.py,sha256=
|
|
153
|
+
pulumi_github/repository_ruleset.py,sha256=fj_XXvkqAlWypK5X2Q2P7G2NV6q2o1L89wYbnghPcNk,31833
|
|
149
154
|
pulumi_github/repository_topics.py,sha256=QgbO_Lfthloe0x7l1WK2k1c0wIRIvgbJM4RJJP1H-SE,9331
|
|
150
155
|
pulumi_github/repository_webhook.py,sha256=596-JnU1pGyu8BMcYCTaQnT6YPiZ19BjjdpjD4j_TN0,18869
|
|
151
|
-
pulumi_github/team.py,sha256=
|
|
156
|
+
pulumi_github/team.py,sha256=ns2N_MXIJgrP6GnsjL45SzYo_zWjUpfylYJDMVLL1Iw,32769
|
|
152
157
|
pulumi_github/team_members.py,sha256=A5KeFFyG5dx5xajxjZOek28cKZGu_6Me2qpwnW98Hs8,13418
|
|
153
158
|
pulumi_github/team_membership.py,sha256=qlwOx7Grh9NDaLRHvQVJI0-bcLtds3z7rFTiOin6gI0,14365
|
|
154
159
|
pulumi_github/team_repository.py,sha256=0Z35sqrupz7n3W81aaGbqa2NDXRplRrH0FXg58nYZek,15047
|
|
@@ -162,7 +167,7 @@ pulumi_github/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRo
|
|
|
162
167
|
pulumi_github/config/__init__.pyi,sha256=M2eV8Tt6VJ60ULawmuIyADkImmrlvoT7zrqnv6QRfUQ,2568
|
|
163
168
|
pulumi_github/config/outputs.py,sha256=B49PRqlSRiWQLjrE6YGuDSNwd6JTXzlRtYm1vw743S0,1758
|
|
164
169
|
pulumi_github/config/vars.py,sha256=McIM_AqaMDbpD67QH1LNkR2D-VYe6qirG7E1x9uZFTM,4234
|
|
165
|
-
pulumi_github-6.
|
|
166
|
-
pulumi_github-6.
|
|
167
|
-
pulumi_github-6.
|
|
168
|
-
pulumi_github-6.
|
|
170
|
+
pulumi_github-6.12.0.dist-info/METADATA,sha256=8QuOLREj3ocyWndBZRd1guOwl_P-RWA8md3Mx1FFM1U,2901
|
|
171
|
+
pulumi_github-6.12.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
172
|
+
pulumi_github-6.12.0.dist-info/top_level.txt,sha256=0kq3fQJy2bJ9f0g7Mz21Ley0o3Go-U0OXSU4tRUpR2s,14
|
|
173
|
+
pulumi_github-6.12.0.dist-info/RECORD,,
|
|
File without changes
|