pulumi-azuredevops 3.6.0a1737091250__py3-none-any.whl → 3.6.0a1737710622__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.
Files changed (119) hide show
  1. pulumi_azuredevops/__init__.py +64 -0
  2. pulumi_azuredevops/_inputs.py +120 -117
  3. pulumi_azuredevops/area_permissions.py +49 -49
  4. pulumi_azuredevops/branch_policy_auto_reviewers.py +7 -7
  5. pulumi_azuredevops/branch_policy_build_validation.py +7 -7
  6. pulumi_azuredevops/branch_policy_comment_resolution.py +7 -7
  7. pulumi_azuredevops/branch_policy_merge_types.py +7 -7
  8. pulumi_azuredevops/branch_policy_status_check.py +7 -7
  9. pulumi_azuredevops/branch_policy_work_item_linking.py +7 -7
  10. pulumi_azuredevops/build_definition.py +7 -7
  11. pulumi_azuredevops/check_branch_control.py +7 -7
  12. pulumi_azuredevops/check_business_hours.py +7 -7
  13. pulumi_azuredevops/check_exclusive_lock.py +7 -7
  14. pulumi_azuredevops/check_rest_api.py +986 -0
  15. pulumi_azuredevops/feed.py +8 -8
  16. pulumi_azuredevops/feed_permission.py +9 -9
  17. pulumi_azuredevops/feed_retention_policy.py +422 -0
  18. pulumi_azuredevops/get_agent_queue.py +2 -2
  19. pulumi_azuredevops/get_area.py +1 -1
  20. pulumi_azuredevops/get_client_config.py +3 -0
  21. pulumi_azuredevops/get_feed.py +4 -4
  22. pulumi_azuredevops/get_git_repository.py +8 -8
  23. pulumi_azuredevops/get_group.py +4 -4
  24. pulumi_azuredevops/get_groups.py +3 -3
  25. pulumi_azuredevops/get_identity_group.py +3 -0
  26. pulumi_azuredevops/get_identity_groups.py +1 -1
  27. pulumi_azuredevops/get_identity_users.py +5 -5
  28. pulumi_azuredevops/get_pool.py +14 -2
  29. pulumi_azuredevops/get_pools.py +3 -3
  30. pulumi_azuredevops/get_project.py +32 -0
  31. pulumi_azuredevops/get_projects.py +4 -4
  32. pulumi_azuredevops/get_repositories.py +7 -3
  33. pulumi_azuredevops/get_securityrole_definitions.py +4 -4
  34. pulumi_azuredevops/get_service_endpoint_azure_rm.py +5 -5
  35. pulumi_azuredevops/get_service_endpoint_github.py +6 -6
  36. pulumi_azuredevops/get_service_principal.py +153 -0
  37. pulumi_azuredevops/get_serviceendpoint_azurecr.py +1 -1
  38. pulumi_azuredevops/get_serviceendpoint_bitbucket.py +6 -6
  39. pulumi_azuredevops/get_serviceendpoint_npm.py +3 -3
  40. pulumi_azuredevops/get_serviceendpoint_sonarcloud.py +2 -2
  41. pulumi_azuredevops/get_team.py +4 -3
  42. pulumi_azuredevops/get_teams.py +2 -3
  43. pulumi_azuredevops/get_users.py +5 -9
  44. pulumi_azuredevops/git.py +7 -7
  45. pulumi_azuredevops/git_permissions.py +14 -21
  46. pulumi_azuredevops/git_repository_file.py +7 -14
  47. pulumi_azuredevops/group.py +21 -7
  48. pulumi_azuredevops/group_entitlement.py +16 -20
  49. pulumi_azuredevops/group_membership.py +35 -50
  50. pulumi_azuredevops/iterative_permissions.py +34 -34
  51. pulumi_azuredevops/library_permissions.py +75 -75
  52. pulumi_azuredevops/outputs.py +129 -102
  53. pulumi_azuredevops/pipeline_authorization.py +7 -7
  54. pulumi_azuredevops/pool.py +4 -4
  55. pulumi_azuredevops/project.py +114 -63
  56. pulumi_azuredevops/project_features.py +87 -45
  57. pulumi_azuredevops/project_permissions.py +7 -7
  58. pulumi_azuredevops/project_pipeline_settings.py +28 -35
  59. pulumi_azuredevops/project_tags.py +263 -0
  60. pulumi_azuredevops/pulumi-plugin.json +1 -1
  61. pulumi_azuredevops/queue.py +7 -14
  62. pulumi_azuredevops/repository_policy_author_email_pattern.py +21 -14
  63. pulumi_azuredevops/repository_policy_max_file_size.py +7 -7
  64. pulumi_azuredevops/resource_authorization.py +35 -35
  65. pulumi_azuredevops/service_endpoint_artifactory.py +24 -18
  66. pulumi_azuredevops/service_endpoint_aws.py +2 -2
  67. pulumi_azuredevops/service_endpoint_azure_ecr.py +13 -15
  68. pulumi_azuredevops/service_endpoint_azure_rm.py +25 -25
  69. pulumi_azuredevops/service_endpoint_bit_bucket.py +2 -2
  70. pulumi_azuredevops/service_endpoint_docker_registry.py +2 -2
  71. pulumi_azuredevops/service_endpoint_generic.py +2 -2
  72. pulumi_azuredevops/service_endpoint_generic_git.py +4 -8
  73. pulumi_azuredevops/service_endpoint_git_hub.py +15 -2
  74. pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +15 -2
  75. pulumi_azuredevops/service_endpoint_kubernetes.py +23 -23
  76. pulumi_azuredevops/service_endpoint_npm.py +4 -4
  77. pulumi_azuredevops/service_endpoint_pipeline.py +4 -4
  78. pulumi_azuredevops/service_endpoint_service_fabric.py +48 -9
  79. pulumi_azuredevops/service_endpoint_sonar_cloud.py +11 -11
  80. pulumi_azuredevops/service_endpoint_sonar_qube.py +11 -11
  81. pulumi_azuredevops/service_endpoint_ssh.py +2 -6
  82. pulumi_azuredevops/service_principal_entitlement.py +386 -0
  83. pulumi_azuredevops/serviceendpoint_argocd.py +2 -2
  84. pulumi_azuredevops/serviceendpoint_azure_service_bus.py +2 -2
  85. pulumi_azuredevops/serviceendpoint_checkmarx_one.py +627 -0
  86. pulumi_azuredevops/serviceendpoint_checkmarx_sast.py +575 -0
  87. pulumi_azuredevops/serviceendpoint_checkmarx_sca.py +674 -0
  88. pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +2 -2
  89. pulumi_azuredevops/serviceendpoint_externaltfs.py +63 -11
  90. pulumi_azuredevops/serviceendpoint_gcp_terraform.py +2 -2
  91. pulumi_azuredevops/serviceendpoint_incomingwebhook.py +2 -2
  92. pulumi_azuredevops/serviceendpoint_jenkins.py +2 -2
  93. pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py +18 -18
  94. pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py +18 -18
  95. pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py +18 -18
  96. pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py +18 -18
  97. pulumi_azuredevops/serviceendpoint_maven.py +2 -2
  98. pulumi_azuredevops/serviceendpoint_nexus.py +2 -2
  99. pulumi_azuredevops/serviceendpoint_nuget.py +2 -2
  100. pulumi_azuredevops/serviceendpoint_octopusdeploy.py +2 -2
  101. pulumi_azuredevops/serviceendpoint_permissions.py +40 -40
  102. pulumi_azuredevops/serviceendpoint_snyk.py +2 -2
  103. pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +4 -6
  104. pulumi_azuredevops/servicehook_permissions.py +51 -51
  105. pulumi_azuredevops/servicehook_storage_queue_pipelines.py +4 -4
  106. pulumi_azuredevops/tagging_permissions.py +49 -49
  107. pulumi_azuredevops/team.py +76 -56
  108. pulumi_azuredevops/team_administrators.py +83 -56
  109. pulumi_azuredevops/team_members.py +56 -49
  110. pulumi_azuredevops/variable_group.py +4 -2
  111. pulumi_azuredevops/variable_group_permissions.py +75 -75
  112. pulumi_azuredevops/wiki.py +15 -2
  113. pulumi_azuredevops/wiki_page.py +2 -2
  114. pulumi_azuredevops/work_item_query_permissions.py +7 -7
  115. {pulumi_azuredevops-3.6.0a1737091250.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/METADATA +1 -1
  116. pulumi_azuredevops-3.6.0a1737710622.dist-info/RECORD +148 -0
  117. pulumi_azuredevops-3.6.0a1737091250.dist-info/RECORD +0 -140
  118. {pulumi_azuredevops-3.6.0a1737091250.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/WHEEL +0 -0
  119. {pulumi_azuredevops-3.6.0a1737091250.dist-info → pulumi_azuredevops-3.6.0a1737710622.dist-info}/top_level.txt +0 -0
@@ -26,9 +26,9 @@ class GroupEntitlementArgs:
26
26
  origin_id: Optional[pulumi.Input[str]] = None):
27
27
  """
28
28
  The set of arguments for constructing a GroupEntitlement resource.
29
- :param pulumi.Input[str] account_license_type: Type of Account License. Valid values: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
29
+ :param pulumi.Input[str] account_license_type: Type of Account License. Possible values are: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
30
30
  :param pulumi.Input[str] display_name: The display name is the name used in Azure DevOps UI. Cannot be set together with `origin_id` and `origin`.
31
- :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.) Valid values: `account` (Default), `auto`, `msdn`, `none`, `profile`, `trial`
31
+ :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.). Possible values are: `account`, `auto`, `msdn`, `none`, `profile`, `trial`. Defaults to `account`.
32
32
 
33
33
  > **NOTE:** A existing group in Azure AD can only be referenced by the combination of `origin_id` and `origin`.
34
34
  :param pulumi.Input[str] origin: The type of source provider for the origin identifier.
@@ -49,7 +49,7 @@ class GroupEntitlementArgs:
49
49
  @pulumi.getter(name="accountLicenseType")
50
50
  def account_license_type(self) -> Optional[pulumi.Input[str]]:
51
51
  """
52
- Type of Account License. Valid values: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
52
+ Type of Account License. Possible values are: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
53
53
  """
54
54
  return pulumi.get(self, "account_license_type")
55
55
 
@@ -73,7 +73,7 @@ class GroupEntitlementArgs:
73
73
  @pulumi.getter(name="licensingSource")
74
74
  def licensing_source(self) -> Optional[pulumi.Input[str]]:
75
75
  """
76
- The source of the licensing (e.g. Account. MSDN etc.) Valid values: `account` (Default), `auto`, `msdn`, `none`, `profile`, `trial`
76
+ The source of the licensing (e.g. Account. MSDN etc.). Possible values are: `account`, `auto`, `msdn`, `none`, `profile`, `trial`. Defaults to `account`.
77
77
 
78
78
  > **NOTE:** A existing group in Azure AD can only be referenced by the combination of `origin_id` and `origin`.
79
79
  """
@@ -120,10 +120,10 @@ class _GroupEntitlementState:
120
120
  principal_name: Optional[pulumi.Input[str]] = None):
121
121
  """
122
122
  Input properties used for looking up and filtering GroupEntitlement resources.
123
- :param pulumi.Input[str] account_license_type: Type of Account License. Valid values: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
123
+ :param pulumi.Input[str] account_license_type: Type of Account License. Possible values are: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
124
124
  :param pulumi.Input[str] descriptor: The descriptor is the primary way to reference the graph subject while the system is running. This field will uniquely identify the group graph subject.
125
125
  :param pulumi.Input[str] display_name: The display name is the name used in Azure DevOps UI. Cannot be set together with `origin_id` and `origin`.
126
- :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.) Valid values: `account` (Default), `auto`, `msdn`, `none`, `profile`, `trial`
126
+ :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.). Possible values are: `account`, `auto`, `msdn`, `none`, `profile`, `trial`. Defaults to `account`.
127
127
 
128
128
  > **NOTE:** A existing group in Azure AD can only be referenced by the combination of `origin_id` and `origin`.
129
129
  :param pulumi.Input[str] origin: The type of source provider for the origin identifier.
@@ -149,7 +149,7 @@ class _GroupEntitlementState:
149
149
  @pulumi.getter(name="accountLicenseType")
150
150
  def account_license_type(self) -> Optional[pulumi.Input[str]]:
151
151
  """
152
- Type of Account License. Valid values: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
152
+ Type of Account License. Possible values are: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
153
153
  """
154
154
  return pulumi.get(self, "account_license_type")
155
155
 
@@ -185,7 +185,7 @@ class _GroupEntitlementState:
185
185
  @pulumi.getter(name="licensingSource")
186
186
  def licensing_source(self) -> Optional[pulumi.Input[str]]:
187
187
  """
188
- The source of the licensing (e.g. Account. MSDN etc.) Valid values: `account` (Default), `auto`, `msdn`, `none`, `profile`, `trial`
188
+ The source of the licensing (e.g. Account. MSDN etc.). Possible values are: `account`, `auto`, `msdn`, `none`, `profile`, `trial`. Defaults to `account`.
189
189
 
190
190
  > **NOTE:** A existing group in Azure AD can only be referenced by the combination of `origin_id` and `origin`.
191
191
  """
@@ -277,9 +277,7 @@ class GroupEntitlement(pulumi.CustomResource):
277
277
 
278
278
  ## Import
279
279
 
280
- The resource allows the import via the ID of a group entitlement, which is a
281
-
282
- UUID.
280
+ The resource allows the import via the ID of a group entitlement, which is a UUID.
283
281
 
284
282
  ```sh
285
283
  $ pulumi import azuredevops:index/groupEntitlement:GroupEntitlement example 00000000-0000-0000-0000-000000000000
@@ -287,9 +285,9 @@ class GroupEntitlement(pulumi.CustomResource):
287
285
 
288
286
  :param str resource_name: The name of the resource.
289
287
  :param pulumi.ResourceOptions opts: Options for the resource.
290
- :param pulumi.Input[str] account_license_type: Type of Account License. Valid values: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
288
+ :param pulumi.Input[str] account_license_type: Type of Account License. Possible values are: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
291
289
  :param pulumi.Input[str] display_name: The display name is the name used in Azure DevOps UI. Cannot be set together with `origin_id` and `origin`.
292
- :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.) Valid values: `account` (Default), `auto`, `msdn`, `none`, `profile`, `trial`
290
+ :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.). Possible values are: `account`, `auto`, `msdn`, `none`, `profile`, `trial`. Defaults to `account`.
293
291
 
294
292
  > **NOTE:** A existing group in Azure AD can only be referenced by the combination of `origin_id` and `origin`.
295
293
  :param pulumi.Input[str] origin: The type of source provider for the origin identifier.
@@ -335,9 +333,7 @@ class GroupEntitlement(pulumi.CustomResource):
335
333
 
336
334
  ## Import
337
335
 
338
- The resource allows the import via the ID of a group entitlement, which is a
339
-
340
- UUID.
336
+ The resource allows the import via the ID of a group entitlement, which is a UUID.
341
337
 
342
338
  ```sh
343
339
  $ pulumi import azuredevops:index/groupEntitlement:GroupEntitlement example 00000000-0000-0000-0000-000000000000
@@ -403,10 +399,10 @@ class GroupEntitlement(pulumi.CustomResource):
403
399
  :param str resource_name: The unique name of the resulting resource.
404
400
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
405
401
  :param pulumi.ResourceOptions opts: Options for the resource.
406
- :param pulumi.Input[str] account_license_type: Type of Account License. Valid values: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
402
+ :param pulumi.Input[str] account_license_type: Type of Account License. Possible values are: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
407
403
  :param pulumi.Input[str] descriptor: The descriptor is the primary way to reference the graph subject while the system is running. This field will uniquely identify the group graph subject.
408
404
  :param pulumi.Input[str] display_name: The display name is the name used in Azure DevOps UI. Cannot be set together with `origin_id` and `origin`.
409
- :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.) Valid values: `account` (Default), `auto`, `msdn`, `none`, `profile`, `trial`
405
+ :param pulumi.Input[str] licensing_source: The source of the licensing (e.g. Account. MSDN etc.). Possible values are: `account`, `auto`, `msdn`, `none`, `profile`, `trial`. Defaults to `account`.
410
406
 
411
407
  > **NOTE:** A existing group in Azure AD can only be referenced by the combination of `origin_id` and `origin`.
412
408
  :param pulumi.Input[str] origin: The type of source provider for the origin identifier.
@@ -430,7 +426,7 @@ class GroupEntitlement(pulumi.CustomResource):
430
426
  @pulumi.getter(name="accountLicenseType")
431
427
  def account_license_type(self) -> pulumi.Output[Optional[str]]:
432
428
  """
433
- Type of Account License. Valid values: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
429
+ Type of Account License. Possible values are: `advanced`, `earlyAdopter`, `express`, `none`, `professional`, or `stakeholder`. Defaults to `express`. In addition, the value `basic` is allowed which is an alias for `express` and reflects the name of the `express` license used in the Azure DevOps web interface.
434
430
  """
435
431
  return pulumi.get(self, "account_license_type")
436
432
 
@@ -454,7 +450,7 @@ class GroupEntitlement(pulumi.CustomResource):
454
450
  @pulumi.getter(name="licensingSource")
455
451
  def licensing_source(self) -> pulumi.Output[Optional[str]]:
456
452
  """
457
- The source of the licensing (e.g. Account. MSDN etc.) Valid values: `account` (Default), `auto`, `msdn`, `none`, `profile`, `trial`
453
+ The source of the licensing (e.g. Account. MSDN etc.). Possible values are: `account`, `auto`, `msdn`, `none`, `profile`, `trial`. Defaults to `account`.
458
454
 
459
455
  > **NOTE:** A existing group in Azure AD can only be referenced by the combination of `origin_id` and `origin`.
460
456
  """
@@ -27,14 +27,13 @@ class GroupMembershipArgs:
27
27
  :param pulumi.Input[str] group: The descriptor of the group being managed.
28
28
  :param pulumi.Input[Sequence[pulumi.Input[str]]] members: A list of user or group descriptors that will become members of the group.
29
29
 
30
- > **NOTE** It's possible to define group members both within the `GroupMembership resource` via the members block and by using the `Group` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
31
-
32
- > **NOTE** The `members` uses `descriptor` as the identifier not Resource ID or others.
30
+ > **NOTE** 1. It's possible to define group members both within the `GroupMembership resource` via the members block and by using the `Group` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
31
+ <br>2. The `members` uses `descriptor` as the identifier not Resource ID or others.
33
32
  :param pulumi.Input[str] mode: The mode how the resource manages group members.
34
- - `mode == add`: the resource will ensure that all specified members will be part of the referenced group
35
- - `mode == overwrite`: the resource will replace all existing members with the members specified within the `members` block
36
33
 
37
- > **NOTE** To clear all members from a group, specify an empty list of descriptors in the `members` attribute and set the `mode` member to `overwrite`.
34
+ ~>**NOTE** 1. `mode = add`: the resource will ensure that all specified members will be part of the referenced group
35
+ <br>2. `mode = overwrite`: the resource will replace all existing members with the members specified within the `members` block
36
+ <br>3. To clear all members from a group, specify an empty list of descriptors in the `members` attribute and set the `mode` member to `overwrite`.
38
37
  """
39
38
  pulumi.set(__self__, "group", group)
40
39
  pulumi.set(__self__, "members", members)
@@ -59,9 +58,8 @@ class GroupMembershipArgs:
59
58
  """
60
59
  A list of user or group descriptors that will become members of the group.
61
60
 
62
- > **NOTE** It's possible to define group members both within the `GroupMembership resource` via the members block and by using the `Group` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
63
-
64
- > **NOTE** The `members` uses `descriptor` as the identifier not Resource ID or others.
61
+ > **NOTE** 1. It's possible to define group members both within the `GroupMembership resource` via the members block and by using the `Group` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
62
+ <br>2. The `members` uses `descriptor` as the identifier not Resource ID or others.
65
63
  """
66
64
  return pulumi.get(self, "members")
67
65
 
@@ -74,10 +72,10 @@ class GroupMembershipArgs:
74
72
  def mode(self) -> Optional[pulumi.Input[str]]:
75
73
  """
76
74
  The mode how the resource manages group members.
77
- - `mode == add`: the resource will ensure that all specified members will be part of the referenced group
78
- - `mode == overwrite`: the resource will replace all existing members with the members specified within the `members` block
79
75
 
80
- > **NOTE** To clear all members from a group, specify an empty list of descriptors in the `members` attribute and set the `mode` member to `overwrite`.
76
+ ~>**NOTE** 1. `mode = add`: the resource will ensure that all specified members will be part of the referenced group
77
+ <br>2. `mode = overwrite`: the resource will replace all existing members with the members specified within the `members` block
78
+ <br>3. To clear all members from a group, specify an empty list of descriptors in the `members` attribute and set the `mode` member to `overwrite`.
81
79
  """
82
80
  return pulumi.get(self, "mode")
83
81
 
@@ -97,14 +95,13 @@ class _GroupMembershipState:
97
95
  :param pulumi.Input[str] group: The descriptor of the group being managed.
98
96
  :param pulumi.Input[Sequence[pulumi.Input[str]]] members: A list of user or group descriptors that will become members of the group.
99
97
 
100
- > **NOTE** It's possible to define group members both within the `GroupMembership resource` via the members block and by using the `Group` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
101
-
102
- > **NOTE** The `members` uses `descriptor` as the identifier not Resource ID or others.
98
+ > **NOTE** 1. It's possible to define group members both within the `GroupMembership resource` via the members block and by using the `Group` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
99
+ <br>2. The `members` uses `descriptor` as the identifier not Resource ID or others.
103
100
  :param pulumi.Input[str] mode: The mode how the resource manages group members.
104
- - `mode == add`: the resource will ensure that all specified members will be part of the referenced group
105
- - `mode == overwrite`: the resource will replace all existing members with the members specified within the `members` block
106
101
 
107
- > **NOTE** To clear all members from a group, specify an empty list of descriptors in the `members` attribute and set the `mode` member to `overwrite`.
102
+ ~>**NOTE** 1. `mode = add`: the resource will ensure that all specified members will be part of the referenced group
103
+ <br>2. `mode = overwrite`: the resource will replace all existing members with the members specified within the `members` block
104
+ <br>3. To clear all members from a group, specify an empty list of descriptors in the `members` attribute and set the `mode` member to `overwrite`.
108
105
  """
109
106
  if group is not None:
110
107
  pulumi.set(__self__, "group", group)
@@ -131,9 +128,8 @@ class _GroupMembershipState:
131
128
  """
132
129
  A list of user or group descriptors that will become members of the group.
133
130
 
134
- > **NOTE** It's possible to define group members both within the `GroupMembership resource` via the members block and by using the `Group` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
135
-
136
- > **NOTE** The `members` uses `descriptor` as the identifier not Resource ID or others.
131
+ > **NOTE** 1. It's possible to define group members both within the `GroupMembership resource` via the members block and by using the `Group` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
132
+ <br>2. The `members` uses `descriptor` as the identifier not Resource ID or others.
137
133
  """
138
134
  return pulumi.get(self, "members")
139
135
 
@@ -146,10 +142,10 @@ class _GroupMembershipState:
146
142
  def mode(self) -> Optional[pulumi.Input[str]]:
147
143
  """
148
144
  The mode how the resource manages group members.
149
- - `mode == add`: the resource will ensure that all specified members will be part of the referenced group
150
- - `mode == overwrite`: the resource will replace all existing members with the members specified within the `members` block
151
145
 
152
- > **NOTE** To clear all members from a group, specify an empty list of descriptors in the `members` attribute and set the `mode` member to `overwrite`.
146
+ ~>**NOTE** 1. `mode = add`: the resource will ensure that all specified members will be part of the referenced group
147
+ <br>2. `mode = overwrite`: the resource will replace all existing members with the members specified within the `members` block
148
+ <br>3. To clear all members from a group, specify an empty list of descriptors in the `members` attribute and set the `mode` member to `overwrite`.
153
149
  """
154
150
  return pulumi.get(self, "mode")
155
151
 
@@ -193,23 +189,18 @@ class GroupMembership(pulumi.CustomResource):
193
189
 
194
190
  - **Deployment Groups**: Read & Manage
195
191
 
196
- ## Import
197
-
198
- Not supported.
199
-
200
192
  :param str resource_name: The name of the resource.
201
193
  :param pulumi.ResourceOptions opts: Options for the resource.
202
194
  :param pulumi.Input[str] group: The descriptor of the group being managed.
203
195
  :param pulumi.Input[Sequence[pulumi.Input[str]]] members: A list of user or group descriptors that will become members of the group.
204
196
 
205
- > **NOTE** It's possible to define group members both within the `GroupMembership resource` via the members block and by using the `Group` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
206
-
207
- > **NOTE** The `members` uses `descriptor` as the identifier not Resource ID or others.
197
+ > **NOTE** 1. It's possible to define group members both within the `GroupMembership resource` via the members block and by using the `Group` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
198
+ <br>2. The `members` uses `descriptor` as the identifier not Resource ID or others.
208
199
  :param pulumi.Input[str] mode: The mode how the resource manages group members.
209
- - `mode == add`: the resource will ensure that all specified members will be part of the referenced group
210
- - `mode == overwrite`: the resource will replace all existing members with the members specified within the `members` block
211
200
 
212
- > **NOTE** To clear all members from a group, specify an empty list of descriptors in the `members` attribute and set the `mode` member to `overwrite`.
201
+ ~>**NOTE** 1. `mode = add`: the resource will ensure that all specified members will be part of the referenced group
202
+ <br>2. `mode = overwrite`: the resource will replace all existing members with the members specified within the `members` block
203
+ <br>3. To clear all members from a group, specify an empty list of descriptors in the `members` attribute and set the `mode` member to `overwrite`.
213
204
  """
214
205
  ...
215
206
  @overload
@@ -243,10 +234,6 @@ class GroupMembership(pulumi.CustomResource):
243
234
 
244
235
  - **Deployment Groups**: Read & Manage
245
236
 
246
- ## Import
247
-
248
- Not supported.
249
-
250
237
  :param str resource_name: The name of the resource.
251
238
  :param GroupMembershipArgs args: The arguments to use to populate this resource's properties.
252
239
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -304,14 +291,13 @@ class GroupMembership(pulumi.CustomResource):
304
291
  :param pulumi.Input[str] group: The descriptor of the group being managed.
305
292
  :param pulumi.Input[Sequence[pulumi.Input[str]]] members: A list of user or group descriptors that will become members of the group.
306
293
 
307
- > **NOTE** It's possible to define group members both within the `GroupMembership resource` via the members block and by using the `Group` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
308
-
309
- > **NOTE** The `members` uses `descriptor` as the identifier not Resource ID or others.
294
+ > **NOTE** 1. It's possible to define group members both within the `GroupMembership resource` via the members block and by using the `Group` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
295
+ <br>2. The `members` uses `descriptor` as the identifier not Resource ID or others.
310
296
  :param pulumi.Input[str] mode: The mode how the resource manages group members.
311
- - `mode == add`: the resource will ensure that all specified members will be part of the referenced group
312
- - `mode == overwrite`: the resource will replace all existing members with the members specified within the `members` block
313
297
 
314
- > **NOTE** To clear all members from a group, specify an empty list of descriptors in the `members` attribute and set the `mode` member to `overwrite`.
298
+ ~>**NOTE** 1. `mode = add`: the resource will ensure that all specified members will be part of the referenced group
299
+ <br>2. `mode = overwrite`: the resource will replace all existing members with the members specified within the `members` block
300
+ <br>3. To clear all members from a group, specify an empty list of descriptors in the `members` attribute and set the `mode` member to `overwrite`.
315
301
  """
316
302
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
317
303
 
@@ -336,9 +322,8 @@ class GroupMembership(pulumi.CustomResource):
336
322
  """
337
323
  A list of user or group descriptors that will become members of the group.
338
324
 
339
- > **NOTE** It's possible to define group members both within the `GroupMembership resource` via the members block and by using the `Group` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
340
-
341
- > **NOTE** The `members` uses `descriptor` as the identifier not Resource ID or others.
325
+ > **NOTE** 1. It's possible to define group members both within the `GroupMembership resource` via the members block and by using the `Group` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
326
+ <br>2. The `members` uses `descriptor` as the identifier not Resource ID or others.
342
327
  """
343
328
  return pulumi.get(self, "members")
344
329
 
@@ -347,10 +332,10 @@ class GroupMembership(pulumi.CustomResource):
347
332
  def mode(self) -> pulumi.Output[Optional[str]]:
348
333
  """
349
334
  The mode how the resource manages group members.
350
- - `mode == add`: the resource will ensure that all specified members will be part of the referenced group
351
- - `mode == overwrite`: the resource will replace all existing members with the members specified within the `members` block
352
335
 
353
- > **NOTE** To clear all members from a group, specify an empty list of descriptors in the `members` attribute and set the `mode` member to `overwrite`.
336
+ ~>**NOTE** 1. `mode = add`: the resource will ensure that all specified members will be part of the referenced group
337
+ <br>2. `mode = overwrite`: the resource will replace all existing members with the members specified within the `members` block
338
+ <br>3. To clear all members from a group, specify an empty list of descriptors in the `members` attribute and set the `mode` member to `overwrite`.
354
339
  """
355
340
  return pulumi.get(self, "mode")
356
341
 
@@ -27,10 +27,6 @@ class IterativePermissionsArgs:
27
27
  """
28
28
  The set of arguments for constructing a IterativePermissions resource.
29
29
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
30
- :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
31
- :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
32
- :param pulumi.Input[str] path: The name of the branch to assign the permissions.
33
- :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
34
30
 
35
31
  | Permission | Description |
36
32
  |-----------------|--------------------------------|
@@ -38,6 +34,10 @@ class IterativePermissionsArgs:
38
34
  | GENERIC_WRITE | Edit this node |
39
35
  | CREATE_CHILDREN | Create child nodes |
40
36
  | DELETE | Delete this node |
37
+ :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
38
+ :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
39
+ :param pulumi.Input[str] path: The name of the branch to assign the permissions.
40
+ :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
41
41
  """
42
42
  pulumi.set(__self__, "permissions", permissions)
43
43
  pulumi.set(__self__, "principal", principal)
@@ -52,6 +52,13 @@ class IterativePermissionsArgs:
52
52
  def permissions(self) -> pulumi.Input[Mapping[str, pulumi.Input[str]]]:
53
53
  """
54
54
  the permissions to assign. The following permissions are available.
55
+
56
+ | Permission | Description |
57
+ |-----------------|--------------------------------|
58
+ | GENERIC_READ | View permissions for this node |
59
+ | GENERIC_WRITE | Edit this node |
60
+ | CREATE_CHILDREN | Create child nodes |
61
+ | DELETE | Delete this node |
55
62
  """
56
63
  return pulumi.get(self, "permissions")
57
64
 
@@ -100,13 +107,6 @@ class IterativePermissionsArgs:
100
107
  def replace(self) -> Optional[pulumi.Input[bool]]:
101
108
  """
102
109
  Replace (`true`) or merge (`false`) the permissions. Default: `true`
103
-
104
- | Permission | Description |
105
- |-----------------|--------------------------------|
106
- | GENERIC_READ | View permissions for this node |
107
- | GENERIC_WRITE | Edit this node |
108
- | CREATE_CHILDREN | Create child nodes |
109
- | DELETE | Delete this node |
110
110
  """
111
111
  return pulumi.get(self, "replace")
112
112
 
@@ -127,9 +127,6 @@ class _IterativePermissionsState:
127
127
  Input properties used for looking up and filtering IterativePermissions resources.
128
128
  :param pulumi.Input[str] path: The name of the branch to assign the permissions.
129
129
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
130
- :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
131
- :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
132
- :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
133
130
 
134
131
  | Permission | Description |
135
132
  |-----------------|--------------------------------|
@@ -137,6 +134,9 @@ class _IterativePermissionsState:
137
134
  | GENERIC_WRITE | Edit this node |
138
135
  | CREATE_CHILDREN | Create child nodes |
139
136
  | DELETE | Delete this node |
137
+ :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
138
+ :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
139
+ :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
140
140
  """
141
141
  if path is not None:
142
142
  pulumi.set(__self__, "path", path)
@@ -166,6 +166,13 @@ class _IterativePermissionsState:
166
166
  def permissions(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
167
167
  """
168
168
  the permissions to assign. The following permissions are available.
169
+
170
+ | Permission | Description |
171
+ |-----------------|--------------------------------|
172
+ | GENERIC_READ | View permissions for this node |
173
+ | GENERIC_WRITE | Edit this node |
174
+ | CREATE_CHILDREN | Create child nodes |
175
+ | DELETE | Delete this node |
169
176
  """
170
177
  return pulumi.get(self, "permissions")
171
178
 
@@ -202,13 +209,6 @@ class _IterativePermissionsState:
202
209
  def replace(self) -> Optional[pulumi.Input[bool]]:
203
210
  """
204
211
  Replace (`true`) or merge (`false`) the permissions. Default: `true`
205
-
206
- | Permission | Description |
207
- |-----------------|--------------------------------|
208
- | GENERIC_READ | View permissions for this node |
209
- | GENERIC_WRITE | Edit this node |
210
- | CREATE_CHILDREN | Create child nodes |
211
- | DELETE | Delete this node |
212
212
  """
213
213
  return pulumi.get(self, "replace")
214
214
 
@@ -287,9 +287,6 @@ class IterativePermissions(pulumi.CustomResource):
287
287
  :param pulumi.ResourceOptions opts: Options for the resource.
288
288
  :param pulumi.Input[str] path: The name of the branch to assign the permissions.
289
289
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
290
- :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
291
- :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
292
- :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
293
290
 
294
291
  | Permission | Description |
295
292
  |-----------------|--------------------------------|
@@ -297,6 +294,9 @@ class IterativePermissions(pulumi.CustomResource):
297
294
  | GENERIC_WRITE | Edit this node |
298
295
  | CREATE_CHILDREN | Create child nodes |
299
296
  | DELETE | Delete this node |
297
+ :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
298
+ :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
299
+ :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
300
300
  """
301
301
  ...
302
302
  @overload
@@ -423,9 +423,6 @@ class IterativePermissions(pulumi.CustomResource):
423
423
  :param pulumi.ResourceOptions opts: Options for the resource.
424
424
  :param pulumi.Input[str] path: The name of the branch to assign the permissions.
425
425
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available.
426
- :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
427
- :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
428
- :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
429
426
 
430
427
  | Permission | Description |
431
428
  |-----------------|--------------------------------|
@@ -433,6 +430,9 @@ class IterativePermissions(pulumi.CustomResource):
433
430
  | GENERIC_WRITE | Edit this node |
434
431
  | CREATE_CHILDREN | Create child nodes |
435
432
  | DELETE | Delete this node |
433
+ :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
434
+ :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
435
+ :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
436
436
  """
437
437
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
438
438
 
@@ -458,6 +458,13 @@ class IterativePermissions(pulumi.CustomResource):
458
458
  def permissions(self) -> pulumi.Output[Mapping[str, str]]:
459
459
  """
460
460
  the permissions to assign. The following permissions are available.
461
+
462
+ | Permission | Description |
463
+ |-----------------|--------------------------------|
464
+ | GENERIC_READ | View permissions for this node |
465
+ | GENERIC_WRITE | Edit this node |
466
+ | CREATE_CHILDREN | Create child nodes |
467
+ | DELETE | Delete this node |
461
468
  """
462
469
  return pulumi.get(self, "permissions")
463
470
 
@@ -482,13 +489,6 @@ class IterativePermissions(pulumi.CustomResource):
482
489
  def replace(self) -> pulumi.Output[Optional[bool]]:
483
490
  """
484
491
  Replace (`true`) or merge (`false`) the permissions. Default: `true`
485
-
486
- | Permission | Description |
487
- |-----------------|--------------------------------|
488
- | GENERIC_READ | View permissions for this node |
489
- | GENERIC_WRITE | Edit this node |
490
- | CREATE_CHILDREN | Create child nodes |
491
- | DELETE | Delete this node |
492
492
  """
493
493
  return pulumi.get(self, "replace")
494
494