pulumi-github 6.11.0a1768455780__py3-none-any.whl → 6.11.0a1768966924__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 +9 -0
- pulumi_github/_inputs.py +203 -15
- pulumi_github/actions_environment_variable.py +4 -4
- pulumi_github/actions_organization_workflow_permissions.py +320 -0
- pulumi_github/emu_group_mapping.py +4 -8
- pulumi_github/get_ip_ranges.py +3 -0
- pulumi_github/get_repository.py +17 -2
- pulumi_github/get_team.py +29 -13
- pulumi_github/outputs.py +170 -12
- pulumi_github/pulumi-plugin.json +1 -1
- pulumi_github/repository.py +67 -7
- 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/team.py +70 -21
- {pulumi_github-6.11.0a1768455780.dist-info → pulumi_github-6.11.0a1768966924.dist-info}/METADATA +1 -1
- {pulumi_github-6.11.0a1768455780.dist-info → pulumi_github-6.11.0a1768966924.dist-info}/RECORD +19 -18
- {pulumi_github-6.11.0a1768455780.dist-info → pulumi_github-6.11.0a1768966924.dist-info}/WHEEL +0 -0
- {pulumi_github-6.11.0a1768455780.dist-info → pulumi_github-6.11.0a1768966924.dist-info}/top_level.txt +0 -0
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
|
|
{pulumi_github-6.11.0a1768455780.dist-info → pulumi_github-6.11.0a1768966924.dist-info}/RECORD
RENAMED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
pulumi_github/__init__.py,sha256=
|
|
2
|
-
pulumi_github/_inputs.py,sha256=
|
|
1
|
+
pulumi_github/__init__.py,sha256=l6-9ExfkAnCREFoCE0h_gR7vw21jeVs0nMUWcAHtc_8,23513
|
|
2
|
+
pulumi_github/_inputs.py,sha256=AS0eA0HZslgVBklMVsF7gPfyLs10_bqRfRyUkLECN6k,316850
|
|
3
3
|
pulumi_github/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
4
4
|
pulumi_github/actions_environment_secret.py,sha256=_U4w3lI1aW6BFsM2Sc2_2jxDzqXRTLo9Sip7BoRK76c,17774
|
|
5
|
-
pulumi_github/actions_environment_variable.py,sha256=
|
|
5
|
+
pulumi_github/actions_environment_variable.py,sha256=EbqXG9falr6HX6FihnJA8neWTop1MotA7EzyToMrfbQ,17267
|
|
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
8
|
pulumi_github/actions_organization_permissions.py,sha256=jHAIUwWThY7_dymme9Ir34fLbj6eYPUZNER4B1eTveQ,21764
|
|
@@ -10,6 +10,7 @@ pulumi_github/actions_organization_secret.py,sha256=FcTJoiXyanPOgjdC7IC73UxEhEfQ
|
|
|
10
10
|
pulumi_github/actions_organization_secret_repositories.py,sha256=2x8u9O0u3DQrThJ2_6dLinLdweZiuSY2fGyUkjhWa5I,11526
|
|
11
11
|
pulumi_github/actions_organization_secret_repository.py,sha256=gk4BdtJ-Jkt9XeWjVGD-XFEJvMsuUFGkNEjGYWOdfb0,10744
|
|
12
12
|
pulumi_github/actions_organization_variable.py,sha256=Ay0W4H2O-IXQDxjJLXTSpYluixlZSYVvT6t6aksuNeI,18866
|
|
13
|
+
pulumi_github/actions_organization_workflow_permissions.py,sha256=PoGdEMv0YB9VGR-_4Becnq9jAoqvi7BFZEoKzYvQMog,16381
|
|
13
14
|
pulumi_github/actions_repository_access_level.py,sha256=IwvKo_HBydIsxw7ZkkwwEjuoksG9F08-1_unk4m4xJk,10671
|
|
14
15
|
pulumi_github/actions_repository_oidc_subject_claim_customization_template.py,sha256=Tc1PB-VE06zFe3SxyLOk7h1CpJNtZopn3_osj50cSHY,15685
|
|
15
16
|
pulumi_github/actions_repository_permissions.py,sha256=QUpLWfH2i6mp08gybSl6vt-6I2hsm_Z27WtKSKERpp8,17265
|
|
@@ -29,7 +30,7 @@ pulumi_github/codespaces_user_secret.py,sha256=mUzjFl65oNscUMr2BRcGI-tvQtZJy5j7W
|
|
|
29
30
|
pulumi_github/dependabot_organization_secret.py,sha256=2F53WIm73BmfPmE2oBWFYPTiEAvycpkIdoI-zcyZsIQ,20686
|
|
30
31
|
pulumi_github/dependabot_organization_secret_repositories.py,sha256=aQqRYVASQyeJjSh6djn97MSfHcGagjjKXWYAvvr78Ic,12048
|
|
31
32
|
pulumi_github/dependabot_secret.py,sha256=OSKDM3ZngmErR7XEvAntRcsK66RbqxYFzin5ogLU43c,16246
|
|
32
|
-
pulumi_github/emu_group_mapping.py,sha256=
|
|
33
|
+
pulumi_github/emu_group_mapping.py,sha256=SgqoynPuAE2JHvz6yELLM0bbLk-OqkVicW8M_Fy1H7E,9906
|
|
33
34
|
pulumi_github/enterprise_actions_permissions.py,sha256=Wop0r64sgXbtkNdZsBE8DgaI58w1x4OcxgT8T56P5Qo,23953
|
|
34
35
|
pulumi_github/enterprise_actions_runner_group.py,sha256=XRMC8_uXYz8KglBKRXbc5gnoqFyNi1ek2VSPtN4lhE8,30898
|
|
35
36
|
pulumi_github/enterprise_actions_workflow_permissions.py,sha256=hJX81_SlhVJeTXyTLPtpF7SpcJADdy7NquEIDKNhYl4,16191
|
|
@@ -65,7 +66,7 @@ pulumi_github/get_dependabot_secrets.py,sha256=sY7WntoHpfqh5qrLo4hx6ZccxKVFjQBA4
|
|
|
65
66
|
pulumi_github/get_enterprise.py,sha256=ikjZbqUi-rrI8SNia0FF-nWS2ur_u5saFPJrsTfJmVQ,6283
|
|
66
67
|
pulumi_github/get_external_groups.py,sha256=6rirBGkXNYo7Bu8VXOLQ6paas6Xl8soqd2wHZ-7dbFc,3865
|
|
67
68
|
pulumi_github/get_github_app.py,sha256=ZQ1bezhgYSCkCMP4N0TzUbSH5NsgWchV6AIgrRTNyvU,5026
|
|
68
|
-
pulumi_github/get_ip_ranges.py,sha256=
|
|
69
|
+
pulumi_github/get_ip_ranges.py,sha256=4YegCBuArCzxBaoCj8A_5Wy7LLaC1eps_p5GsDOGy1w,20097
|
|
69
70
|
pulumi_github/get_issue_labels.py,sha256=7Gq5QK6Sj0YOHkrur87r2BefU7Hdqurc97tNERpQopk,3972
|
|
70
71
|
pulumi_github/get_membership.py,sha256=e5cTSlcnn1iyXoiu_9jpGipqy0npZ3kvZTLUa-CRG9A,6696
|
|
71
72
|
pulumi_github/get_organization.py,sha256=1W0ZLaLo1JFhWqWWZuluv4Oi83TatMC_FiYf1Hp8qG0,29456
|
|
@@ -86,7 +87,7 @@ pulumi_github/get_organization_webhooks.py,sha256=EN1RlTzXO73d956YJGuIzuoI8lDvLM
|
|
|
86
87
|
pulumi_github/get_ref.py,sha256=tjnOKTTXoGx59wTgXmkrQ9HDgFOf7KmsSPFMnDy4o1A,6111
|
|
87
88
|
pulumi_github/get_release.py,sha256=E5ThEgvhY_rmhTvYx0w-jQ-ww8GeSjgCc3Vnt6j3mEQ,17015
|
|
88
89
|
pulumi_github/get_repositories.py,sha256=aMsVbbabJ6apgCBfI0VpoEhatCDunc0wjVq5yXfekeY,9099
|
|
89
|
-
pulumi_github/get_repository.py,sha256=
|
|
90
|
+
pulumi_github/get_repository.py,sha256=bRW00uZ7CeHzGHwdvsvR-_u33g74287dFEHA95mEnLU,28840
|
|
90
91
|
pulumi_github/get_repository_autolink_references.py,sha256=jWapWwoHbsP-iLUNZdRtX-g7PdeBezolCbAt6KT_65M,5089
|
|
91
92
|
pulumi_github/get_repository_branches.py,sha256=NtesAi9_-Kb-nFBHQk_7I3y7kLfc602ciX9aM6_CJqg,7404
|
|
92
93
|
pulumi_github/get_repository_custom_properties.py,sha256=Qf0QcKv2zCZyERmweZX2d0pVQBvfjFvqMs09eV48Zfg,4860
|
|
@@ -102,7 +103,7 @@ pulumi_github/get_repository_teams.py,sha256=xtaQvcLL_u14EKxCgthMz3M22LEnKIUMhjM
|
|
|
102
103
|
pulumi_github/get_repository_webhooks.py,sha256=pLBTpXmPaBUM4mwJYn3j0RkoAhZgz_jPvn6aDSUnWOo,4447
|
|
103
104
|
pulumi_github/get_rest_api.py,sha256=MA9G4N5zrXs2iQauTowlp4KgjObdVtb2JRyuwlZJXRY,5621
|
|
104
105
|
pulumi_github/get_ssh_keys.py,sha256=gNogQAhONHJNfBhN5939F4f7Apj3W2VHYung5MOHQMQ,3173
|
|
105
|
-
pulumi_github/get_team.py,sha256=
|
|
106
|
+
pulumi_github/get_team.py,sha256=bwLDMqQkDfabuZTIAOw4uKXZCUhAmM2DG_IlC1x73wc,12576
|
|
106
107
|
pulumi_github/get_tree.py,sha256=V7N1DAfH0-dr7kp2yg1jLmqB4ATAWR3U5uKmNsn0IBU,6456
|
|
107
108
|
pulumi_github/get_user.py,sha256=rS78kaSjpDMkHCmmZ0T7rLAdFYmD7xywQdu88nyA_sM,14700
|
|
108
109
|
pulumi_github/get_user_external_identity.py,sha256=4EMy6ac4nDyi8_Q6bcbtoWeYkpMty_6uK7U-AZ1UtXc,5978
|
|
@@ -124,23 +125,23 @@ pulumi_github/organization_ruleset.py,sha256=v4m4WlsNbbQD-44Ell22b9SR0KKiCuHoAQ6
|
|
|
124
125
|
pulumi_github/organization_security_manager.py,sha256=_d0ioo2TFtYBWu0I4sKVJiFoYGR58OcjAsiJHqr-GGM,7634
|
|
125
126
|
pulumi_github/organization_settings.py,sha256=j-UhuwUCzrzVdnpKMYMqtnpeJnXdyP7gK44Nh6BWx10,84552
|
|
126
127
|
pulumi_github/organization_webhook.py,sha256=ZBNHqHxNNxRK6Idi05yQjw2sEfDM2JBsO2AoPObJGdM,15991
|
|
127
|
-
pulumi_github/outputs.py,sha256=
|
|
128
|
+
pulumi_github/outputs.py,sha256=Q1kkW87C9BqR9fF59ewqVkcpnFALK9iI1J4DwtwxDr8,309974
|
|
128
129
|
pulumi_github/project_card.py,sha256=x_A-Iv8cb94mTA5sx1nRlCh2sSmxfTAvuwaNPLAYY7Q,18969
|
|
129
130
|
pulumi_github/project_column.py,sha256=QTcfk22084bOk7BTTVeqk4RyzOY8WdWLNlz8kIjD-VM,11250
|
|
130
131
|
pulumi_github/provider.py,sha256=EpU2hqQ5WGwM5nq_c5rGE7MJLNAskPz32F03EJ-GIoc,23731
|
|
131
|
-
pulumi_github/pulumi-plugin.json,sha256=
|
|
132
|
+
pulumi_github/pulumi-plugin.json,sha256=oTIWGR0oLPFkpWMSMldQfJ_QXfBQvYIHh07pVqMG7F0,83
|
|
132
133
|
pulumi_github/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
134
|
pulumi_github/release.py,sha256=udD_Paft3i0R_W9ktVPxnlsx8PzvLfi1LsLcmspgLnU,43043
|
|
134
|
-
pulumi_github/repository.py,sha256=
|
|
135
|
+
pulumi_github/repository.py,sha256=IjQsFh8qGVrP7_8VrLw65v4uMezdHk2yO10CNzDCzMs,136494
|
|
135
136
|
pulumi_github/repository_autolink_reference.py,sha256=7BziThFSVSHTbflGHTzsz6X-UB9aJj1vCVKErQ6i62E,17479
|
|
136
137
|
pulumi_github/repository_collaborator.py,sha256=uFs8uJF8HktK-MLYP9WzzCDsDWO4zsz0VhCMl6e5sDg,20644
|
|
137
138
|
pulumi_github/repository_collaborators.py,sha256=G8kcY52vBH3AMD-U5p5MD_lnfeMxijW3csdvqAmu1DU,19090
|
|
138
|
-
pulumi_github/repository_custom_property.py,sha256=
|
|
139
|
+
pulumi_github/repository_custom_property.py,sha256=t2Yg7sHDEH49aO3u-gqnA-gl4c-eiXtXGsSDbO8wPE0,17524
|
|
139
140
|
pulumi_github/repository_dependabot_security_updates.py,sha256=bOOpx-yQvaErLWvZRjt05QOT_tJqNk4PHdQBgOAoMzo,10321
|
|
140
141
|
pulumi_github/repository_deploy_key.py,sha256=vsla6fWEIbDVQUQTXPqexN41Z1I1ku-0QsMv3RejJTo,14800
|
|
141
142
|
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=
|
|
143
|
+
pulumi_github/repository_environment.py,sha256=QsTX98cF3pcUTxzvsVNtg1FHdruzBJa3eK_RzS2S7_Q,24372
|
|
144
|
+
pulumi_github/repository_environment_deployment_policy.py,sha256=ZT9Jfz2cS2tlXu8f6maWW89WeIot_ltJ7h8IhzpEMks,18724
|
|
144
145
|
pulumi_github/repository_file.py,sha256=64QTmA1hRsmSlSWfzkKqb03bBptGiYZTjW9EjwLR2wE,41601
|
|
145
146
|
pulumi_github/repository_milestone.py,sha256=5vqlWJAkp0-U310nsmpKJDBvtxfKNmtD4EIeb0OuRKc,18465
|
|
146
147
|
pulumi_github/repository_project.py,sha256=l38rsdFcHzdz3dNdjdFS1euE91WEvlCU0y1ffHHUk7o,13329
|
|
@@ -148,7 +149,7 @@ pulumi_github/repository_pull_request.py,sha256=fiDd8z0AltmhHdvkLDjtC3U6uilZarbc
|
|
|
148
149
|
pulumi_github/repository_ruleset.py,sha256=m5_L7kV5bV93sKfTcfHzUFz1ZfEbmi0TPPJ9v9Z3FhA,30867
|
|
149
150
|
pulumi_github/repository_topics.py,sha256=QgbO_Lfthloe0x7l1WK2k1c0wIRIvgbJM4RJJP1H-SE,9331
|
|
150
151
|
pulumi_github/repository_webhook.py,sha256=596-JnU1pGyu8BMcYCTaQnT6YPiZ19BjjdpjD4j_TN0,18869
|
|
151
|
-
pulumi_github/team.py,sha256=
|
|
152
|
+
pulumi_github/team.py,sha256=ns2N_MXIJgrP6GnsjL45SzYo_zWjUpfylYJDMVLL1Iw,32769
|
|
152
153
|
pulumi_github/team_members.py,sha256=A5KeFFyG5dx5xajxjZOek28cKZGu_6Me2qpwnW98Hs8,13418
|
|
153
154
|
pulumi_github/team_membership.py,sha256=qlwOx7Grh9NDaLRHvQVJI0-bcLtds3z7rFTiOin6gI0,14365
|
|
154
155
|
pulumi_github/team_repository.py,sha256=0Z35sqrupz7n3W81aaGbqa2NDXRplRrH0FXg58nYZek,15047
|
|
@@ -162,7 +163,7 @@ pulumi_github/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRo
|
|
|
162
163
|
pulumi_github/config/__init__.pyi,sha256=M2eV8Tt6VJ60ULawmuIyADkImmrlvoT7zrqnv6QRfUQ,2568
|
|
163
164
|
pulumi_github/config/outputs.py,sha256=B49PRqlSRiWQLjrE6YGuDSNwd6JTXzlRtYm1vw743S0,1758
|
|
164
165
|
pulumi_github/config/vars.py,sha256=McIM_AqaMDbpD67QH1LNkR2D-VYe6qirG7E1x9uZFTM,4234
|
|
165
|
-
pulumi_github-6.11.
|
|
166
|
-
pulumi_github-6.11.
|
|
167
|
-
pulumi_github-6.11.
|
|
168
|
-
pulumi_github-6.11.
|
|
166
|
+
pulumi_github-6.11.0a1768966924.dist-info/METADATA,sha256=p5GvimSehsoAw34KvUPjOJ9M15yXl22y1ofHDfrsQB4,2912
|
|
167
|
+
pulumi_github-6.11.0a1768966924.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
168
|
+
pulumi_github-6.11.0a1768966924.dist-info/top_level.txt,sha256=0kq3fQJy2bJ9f0g7Mz21Ley0o3Go-U0OXSU4tRUpR2s,14
|
|
169
|
+
pulumi_github-6.11.0a1768966924.dist-info/RECORD,,
|
{pulumi_github-6.11.0a1768455780.dist-info → pulumi_github-6.11.0a1768966924.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|