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
@@ -88,7 +88,7 @@ class GetServiceendpointAzurecrResult:
88
88
  @pulumi.getter
89
89
  def authorization(self) -> Mapping[str, str]:
90
90
  """
91
- Specifies the Authorization Scheme Map.
91
+ The Authorization scheme.
92
92
  """
93
93
  return pulumi.get(self, "authorization")
94
94
 
@@ -50,7 +50,7 @@ class GetServiceendpointBitbucketResult:
50
50
  @pulumi.getter
51
51
  def authorization(self) -> Mapping[str, str]:
52
52
  """
53
- Specifies the Authorization Scheme Map.
53
+ The Authorization scheme.
54
54
  """
55
55
  return pulumi.get(self, "authorization")
56
56
 
@@ -58,7 +58,7 @@ class GetServiceendpointBitbucketResult:
58
58
  @pulumi.getter
59
59
  def description(self) -> str:
60
60
  """
61
- Specifies the description of the Service Endpoint.
61
+ The description of the Service Endpoint.
62
62
  """
63
63
  return pulumi.get(self, "description")
64
64
 
@@ -142,8 +142,8 @@ def get_serviceendpoint_bitbucket(project_id: Optional[str] = None,
142
142
  :param str service_endpoint_id: the ID of the Service Endpoint.
143
143
  :param str service_endpoint_name: the Name of the Service Endpoint.
144
144
 
145
- > **NOTE:** One of either `service_endpoint_id` or `service_endpoint_name` must be specified.
146
- > **NOTE:** When supplying `service_endpoint_name`, take care to ensure that this is a unique name.
145
+ > **NOTE:** 1. One of either `service_endpoint_id` or `service_endpoint_name` must be specified.
146
+ <br>2. When supplying `service_endpoint_name`, take care to ensure that this is a unique name.
147
147
  """
148
148
  __args__ = dict()
149
149
  __args__['projectId'] = project_id
@@ -201,8 +201,8 @@ def get_serviceendpoint_bitbucket_output(project_id: Optional[pulumi.Input[str]]
201
201
  :param str service_endpoint_id: the ID of the Service Endpoint.
202
202
  :param str service_endpoint_name: the Name of the Service Endpoint.
203
203
 
204
- > **NOTE:** One of either `service_endpoint_id` or `service_endpoint_name` must be specified.
205
- > **NOTE:** When supplying `service_endpoint_name`, take care to ensure that this is a unique name.
204
+ > **NOTE:** 1. One of either `service_endpoint_id` or `service_endpoint_name` must be specified.
205
+ <br>2. When supplying `service_endpoint_name`, take care to ensure that this is a unique name.
206
206
  """
207
207
  __args__ = dict()
208
208
  __args__['projectId'] = project_id
@@ -53,7 +53,7 @@ class GetServiceendpointNpmResult:
53
53
  @pulumi.getter
54
54
  def authorization(self) -> Mapping[str, str]:
55
55
  """
56
- Specifies the Authorization Scheme Map.
56
+ The Authorization scheme.
57
57
  """
58
58
  return pulumi.get(self, "authorization")
59
59
 
@@ -61,7 +61,7 @@ class GetServiceendpointNpmResult:
61
61
  @pulumi.getter
62
62
  def description(self) -> str:
63
63
  """
64
- Specifies the description of the Service Endpoint.
64
+ The description of the Service Endpoint.
65
65
  """
66
66
  return pulumi.get(self, "description")
67
67
 
@@ -92,7 +92,7 @@ class GetServiceendpointNpmResult:
92
92
  @pulumi.getter
93
93
  def url(self) -> str:
94
94
  """
95
- Specifies the URL of the npm registry to connect with.
95
+ The URL of the NPM registry to connect with.
96
96
  """
97
97
  return pulumi.get(self, "url")
98
98
 
@@ -50,7 +50,7 @@ class GetServiceendpointSonarcloudResult:
50
50
  @pulumi.getter
51
51
  def authorization(self) -> Mapping[str, str]:
52
52
  """
53
- Specifies the Authorization Scheme Map.
53
+ The Authorization scheme.
54
54
  """
55
55
  return pulumi.get(self, "authorization")
56
56
 
@@ -58,7 +58,7 @@ class GetServiceendpointSonarcloudResult:
58
58
  @pulumi.getter
59
59
  def description(self) -> str:
60
60
  """
61
- Specifies the description of the Service Endpoint.
61
+ The description of the Service Endpoint.
62
62
  """
63
63
  return pulumi.get(self, "description")
64
64
 
@@ -64,7 +64,7 @@ class GetTeamResult:
64
64
  @pulumi.getter
65
65
  def description(self) -> str:
66
66
  """
67
- Team description.
67
+ The description of the team.
68
68
  """
69
69
  return pulumi.get(self, "description")
70
70
 
@@ -104,6 +104,7 @@ class GetTeamResult:
104
104
 
105
105
  @property
106
106
  @pulumi.getter
107
+ @_utilities.deprecated("""This property is deprecated and will be removed in the feature""")
107
108
  def top(self) -> Optional[int]:
108
109
  return pulumi.get(self, "top")
109
110
 
@@ -158,7 +159,7 @@ def get_team(name: Optional[str] = None,
158
159
 
159
160
  :param str name: The name of the Team.
160
161
  :param str project_id: The Project ID.
161
- :param int top: The maximum number of teams to return. Defaults to `100`.
162
+ :param int top: The maximum number of teams to return. Defaults to `100`. This property is deprecated and will be removed in the feature
162
163
  """
163
164
  __args__ = dict()
164
165
  __args__['name'] = name
@@ -210,7 +211,7 @@ def get_team_output(name: Optional[pulumi.Input[str]] = None,
210
211
 
211
212
  :param str name: The name of the Team.
212
213
  :param str project_id: The Project ID.
213
- :param int top: The maximum number of teams to return. Defaults to `100`.
214
+ :param int top: The maximum number of teams to return. Defaults to `100`. This property is deprecated and will be removed in the feature
214
215
  """
215
216
  __args__ = dict()
216
217
  __args__['name'] = name
@@ -53,8 +53,7 @@ class GetTeamsResult:
53
53
  @pulumi.getter(name="projectId")
54
54
  def project_id(self) -> Optional[str]:
55
55
  """
56
- Project identifier.
57
- - `id - Team identifier
56
+ The ID of the Project.
58
57
  """
59
58
  return pulumi.get(self, "project_id")
60
59
 
@@ -62,7 +61,7 @@ class GetTeamsResult:
62
61
  @pulumi.getter
63
62
  def teams(self) -> Sequence['outputs.GetTeamsTeamResult']:
64
63
  """
65
- A list of existing projects in your Azure DevOps Organization with details about every project which includes:
64
+ A list of `teams` blocks as documented below. A list of existing projects in your Azure DevOps Organization with details about every project which includes:
66
65
  """
67
66
  return pulumi.get(self, "teams")
68
67
 
@@ -97,7 +97,7 @@ class GetUsersResult:
97
97
  @pulumi.getter
98
98
  def users(self) -> Sequence['outputs.GetUsersUserResult']:
99
99
  """
100
- A set of existing users in your Azure DevOps Organization with details about every single user which includes:
100
+ A `users` block as defined below. A set of existing users in your Azure DevOps Organization with details about every single user.
101
101
  """
102
102
  return pulumi.get(self, "users")
103
103
 
@@ -128,14 +128,12 @@ def get_users(features: Optional[Union['GetUsersFeaturesArgs', 'GetUsersFeatures
128
128
 
129
129
 
130
130
  :param Union['GetUsersFeaturesArgs', 'GetUsersFeaturesArgsDict'] features: A `features` block as defined below.
131
-
132
- DataSource without specifying any arguments will return all users inside an organization.
133
-
134
- List of possible subject types
135
131
  :param str origin: The type of source provider for the `origin_id` parameter (ex:AD, AAD, MSA) The supported origins are listed below.
132
+ <pre>List of possible origins
136
133
  :param str origin_id: The unique identifier from the system of origin.
137
134
  :param str principal_name: The PrincipalName of this graph member from the source provider.
138
135
  :param Sequence[str] subject_types: A list of user subject subtypes to reduce the retrieved results, e.g. `msa`, `aad`, `svc` (service identity), `imp` (imported identity), etc. The supported subject types are listed below.
136
+ <pre>List of possible subject types
139
137
  """
140
138
  __args__ = dict()
141
139
  __args__['features'] = features
@@ -165,14 +163,12 @@ def get_users_output(features: Optional[pulumi.Input[Optional[Union['GetUsersFea
165
163
 
166
164
 
167
165
  :param Union['GetUsersFeaturesArgs', 'GetUsersFeaturesArgsDict'] features: A `features` block as defined below.
168
-
169
- DataSource without specifying any arguments will return all users inside an organization.
170
-
171
- List of possible subject types
172
166
  :param str origin: The type of source provider for the `origin_id` parameter (ex:AD, AAD, MSA) The supported origins are listed below.
167
+ <pre>List of possible origins
173
168
  :param str origin_id: The unique identifier from the system of origin.
174
169
  :param str principal_name: The PrincipalName of this graph member from the source provider.
175
170
  :param Sequence[str] subject_types: A list of user subject subtypes to reduce the retrieved results, e.g. `msa`, `aad`, `svc` (service identity), `imp` (imported identity), etc. The supported subject types are listed below.
171
+ <pre>List of possible subject types
176
172
  """
177
173
  __args__ = dict()
178
174
  __args__['features'] = features
pulumi_azuredevops/git.py CHANGED
@@ -29,7 +29,7 @@ class GitArgs:
29
29
  parent_repository_id: Optional[pulumi.Input[str]] = None):
30
30
  """
31
31
  The set of arguments for constructing a Git resource.
32
- :param pulumi.Input['GitInitializationArgs'] initialization: An `initialization` block as documented below.
32
+ :param pulumi.Input['GitInitializationArgs'] initialization: A `initialization` block as documented below.
33
33
  :param pulumi.Input[str] project_id: The project ID or project name.
34
34
  :param pulumi.Input[str] default_branch: The ref of the default branch. Will be used as the branch name for initialized repositories.
35
35
  :param pulumi.Input[bool] disabled: The ability to disable or enable the repository. Defaults to `false`.
@@ -51,7 +51,7 @@ class GitArgs:
51
51
  @pulumi.getter
52
52
  def initialization(self) -> pulumi.Input['GitInitializationArgs']:
53
53
  """
54
- An `initialization` block as documented below.
54
+ A `initialization` block as documented below.
55
55
  """
56
56
  return pulumi.get(self, "initialization")
57
57
 
@@ -139,7 +139,7 @@ class _GitState:
139
139
  Input properties used for looking up and filtering Git resources.
140
140
  :param pulumi.Input[str] default_branch: The ref of the default branch. Will be used as the branch name for initialized repositories.
141
141
  :param pulumi.Input[bool] disabled: The ability to disable or enable the repository. Defaults to `false`.
142
- :param pulumi.Input['GitInitializationArgs'] initialization: An `initialization` block as documented below.
142
+ :param pulumi.Input['GitInitializationArgs'] initialization: A `initialization` block as documented below.
143
143
  :param pulumi.Input[bool] is_fork: True if the repository was created as a fork.
144
144
  :param pulumi.Input[str] name: The name of the git repository.
145
145
  :param pulumi.Input[str] parent_repository_id: The ID of a Git project from which a fork is to be created.
@@ -203,7 +203,7 @@ class _GitState:
203
203
  @pulumi.getter
204
204
  def initialization(self) -> Optional[pulumi.Input['GitInitializationArgs']]:
205
205
  """
206
- An `initialization` block as documented below.
206
+ A `initialization` block as documented below.
207
207
  """
208
208
  return pulumi.get(self, "initialization")
209
209
 
@@ -351,7 +351,7 @@ class Git(pulumi.CustomResource):
351
351
  :param pulumi.ResourceOptions opts: Options for the resource.
352
352
  :param pulumi.Input[str] default_branch: The ref of the default branch. Will be used as the branch name for initialized repositories.
353
353
  :param pulumi.Input[bool] disabled: The ability to disable or enable the repository. Defaults to `false`.
354
- :param pulumi.Input[Union['GitInitializationArgs', 'GitInitializationArgsDict']] initialization: An `initialization` block as documented below.
354
+ :param pulumi.Input[Union['GitInitializationArgs', 'GitInitializationArgsDict']] initialization: A `initialization` block as documented below.
355
355
  :param pulumi.Input[str] name: The name of the git repository.
356
356
  :param pulumi.Input[str] parent_repository_id: The ID of a Git project from which a fork is to be created.
357
357
  :param pulumi.Input[str] project_id: The project ID or project name.
@@ -454,7 +454,7 @@ class Git(pulumi.CustomResource):
454
454
  :param pulumi.ResourceOptions opts: Options for the resource.
455
455
  :param pulumi.Input[str] default_branch: The ref of the default branch. Will be used as the branch name for initialized repositories.
456
456
  :param pulumi.Input[bool] disabled: The ability to disable or enable the repository. Defaults to `false`.
457
- :param pulumi.Input[Union['GitInitializationArgs', 'GitInitializationArgsDict']] initialization: An `initialization` block as documented below.
457
+ :param pulumi.Input[Union['GitInitializationArgs', 'GitInitializationArgsDict']] initialization: A `initialization` block as documented below.
458
458
  :param pulumi.Input[bool] is_fork: True if the repository was created as a fork.
459
459
  :param pulumi.Input[str] name: The name of the git repository.
460
460
  :param pulumi.Input[str] parent_repository_id: The ID of a Git project from which a fork is to be created.
@@ -503,7 +503,7 @@ class Git(pulumi.CustomResource):
503
503
  @pulumi.getter
504
504
  def initialization(self) -> pulumi.Output['outputs.GitInitialization']:
505
505
  """
506
- An `initialization` block as documented below.
506
+ A `initialization` block as documented below.
507
507
  """
508
508
  return pulumi.get(self, "initialization")
509
509
 
@@ -29,7 +29,6 @@ class GitPermissionsArgs:
29
29
  The set of arguments for constructing a GitPermissions resource.
30
30
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available
31
31
 
32
-
33
32
  | Permissions | Description |
34
33
  |-------------------------|--------------------------------------------------------|
35
34
  | Administer | Administer |
@@ -50,9 +49,9 @@ class GitPermissionsArgs:
50
49
  | PullRequestBypassPolicy | Bypass policies when completing pull requests |
51
50
  :param pulumi.Input[str] principal: The **group** principal to assign the permissions.
52
51
  :param pulumi.Input[str] project_id: The ID of the project to assign the permissions.
53
- :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
52
+ :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
54
53
 
55
- > **Note** to assign permissions to a branch, the `repository_id` must be set as well.
54
+ > **Note** To assign permissions to a branch, the `repository_id` must be set as well.
56
55
  :param pulumi.Input[bool] replace: Replace (`true`) or merge (`false`) the permissions. Default: `true`
57
56
  :param pulumi.Input[str] repository_id: The ID of the GIT repository to assign the permissions
58
57
  """
@@ -72,7 +71,6 @@ class GitPermissionsArgs:
72
71
  """
73
72
  the permissions to assign. The following permissions are available
74
73
 
75
-
76
74
  | Permissions | Description |
77
75
  |-------------------------|--------------------------------------------------------|
78
76
  | Administer | Administer |
@@ -126,9 +124,9 @@ class GitPermissionsArgs:
126
124
  @pulumi.getter(name="branchName")
127
125
  def branch_name(self) -> Optional[pulumi.Input[str]]:
128
126
  """
129
- The name of the branch to assign the permissions.
127
+ The name of the branch to assign the permissions.
130
128
 
131
- > **Note** to assign permissions to a branch, the `repository_id` must be set as well.
129
+ > **Note** To assign permissions to a branch, the `repository_id` must be set as well.
132
130
  """
133
131
  return pulumi.get(self, "branch_name")
134
132
 
@@ -172,12 +170,11 @@ class _GitPermissionsState:
172
170
  repository_id: Optional[pulumi.Input[str]] = None):
173
171
  """
174
172
  Input properties used for looking up and filtering GitPermissions resources.
175
- :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
173
+ :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
176
174
 
177
- > **Note** to assign permissions to a branch, the `repository_id` must be set as well.
175
+ > **Note** To assign permissions to a branch, the `repository_id` must be set as well.
178
176
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available
179
177
 
180
-
181
178
  | Permissions | Description |
182
179
  |-------------------------|--------------------------------------------------------|
183
180
  | Administer | Administer |
@@ -218,9 +215,9 @@ class _GitPermissionsState:
218
215
  @pulumi.getter(name="branchName")
219
216
  def branch_name(self) -> Optional[pulumi.Input[str]]:
220
217
  """
221
- The name of the branch to assign the permissions.
218
+ The name of the branch to assign the permissions.
222
219
 
223
- > **Note** to assign permissions to a branch, the `repository_id` must be set as well.
220
+ > **Note** To assign permissions to a branch, the `repository_id` must be set as well.
224
221
  """
225
222
  return pulumi.get(self, "branch_name")
226
223
 
@@ -234,7 +231,6 @@ class _GitPermissionsState:
234
231
  """
235
232
  the permissions to assign. The following permissions are available
236
233
 
237
-
238
234
  | Permissions | Description |
239
235
  |-------------------------|--------------------------------------------------------|
240
236
  | Administer | Administer |
@@ -496,12 +492,11 @@ class GitPermissions(pulumi.CustomResource):
496
492
 
497
493
  :param str resource_name: The name of the resource.
498
494
  :param pulumi.ResourceOptions opts: Options for the resource.
499
- :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
495
+ :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
500
496
 
501
- > **Note** to assign permissions to a branch, the `repository_id` must be set as well.
497
+ > **Note** To assign permissions to a branch, the `repository_id` must be set as well.
502
498
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available
503
499
 
504
-
505
500
  | Permissions | Description |
506
501
  |-------------------------|--------------------------------------------------------|
507
502
  | Administer | Administer |
@@ -769,12 +764,11 @@ class GitPermissions(pulumi.CustomResource):
769
764
  :param str resource_name: The unique name of the resulting resource.
770
765
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
771
766
  :param pulumi.ResourceOptions opts: Options for the resource.
772
- :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
767
+ :param pulumi.Input[str] branch_name: The name of the branch to assign the permissions.
773
768
 
774
- > **Note** to assign permissions to a branch, the `repository_id` must be set as well.
769
+ > **Note** To assign permissions to a branch, the `repository_id` must be set as well.
775
770
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] permissions: the permissions to assign. The following permissions are available
776
771
 
777
-
778
772
  | Permissions | Description |
779
773
  |-------------------------|--------------------------------------------------------|
780
774
  | Administer | Administer |
@@ -814,9 +808,9 @@ class GitPermissions(pulumi.CustomResource):
814
808
  @pulumi.getter(name="branchName")
815
809
  def branch_name(self) -> pulumi.Output[Optional[str]]:
816
810
  """
817
- The name of the branch to assign the permissions.
811
+ The name of the branch to assign the permissions.
818
812
 
819
- > **Note** to assign permissions to a branch, the `repository_id` must be set as well.
813
+ > **Note** To assign permissions to a branch, the `repository_id` must be set as well.
820
814
  """
821
815
  return pulumi.get(self, "branch_name")
822
816
 
@@ -826,7 +820,6 @@ class GitPermissions(pulumi.CustomResource):
826
820
  """
827
821
  the permissions to assign. The following permissions are available
828
822
 
829
-
830
823
  | Permissions | Description |
831
824
  |-------------------------|--------------------------------------------------------|
832
825
  | Administer | Administer |
@@ -30,8 +30,7 @@ class GitRepositoryFileArgs:
30
30
  :param pulumi.Input[str] content: The file content.
31
31
  :param pulumi.Input[str] file: The path of the file to manage.
32
32
  :param pulumi.Input[str] repository_id: The ID of the Git repository.
33
- :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it
34
- does not already exist.
33
+ :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it does not already exist.
35
34
  :param pulumi.Input[str] commit_message: Commit message when adding or updating the managed file.
36
35
  :param pulumi.Input[bool] overwrite_on_create: Enable overwriting existing files (defaults to `false`).
37
36
  """
@@ -85,8 +84,7 @@ class GitRepositoryFileArgs:
85
84
  @pulumi.getter
86
85
  def branch(self) -> Optional[pulumi.Input[str]]:
87
86
  """
88
- Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it
89
- does not already exist.
87
+ Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it does not already exist.
90
88
  """
91
89
  return pulumi.get(self, "branch")
92
90
 
@@ -130,8 +128,7 @@ class _GitRepositoryFileState:
130
128
  repository_id: Optional[pulumi.Input[str]] = None):
131
129
  """
132
130
  Input properties used for looking up and filtering GitRepositoryFile resources.
133
- :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it
134
- does not already exist.
131
+ :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it does not already exist.
135
132
  :param pulumi.Input[str] commit_message: Commit message when adding or updating the managed file.
136
133
  :param pulumi.Input[str] content: The file content.
137
134
  :param pulumi.Input[str] file: The path of the file to manage.
@@ -155,8 +152,7 @@ class _GitRepositoryFileState:
155
152
  @pulumi.getter
156
153
  def branch(self) -> Optional[pulumi.Input[str]]:
157
154
  """
158
- Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it
159
- does not already exist.
155
+ Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it does not already exist.
160
156
  """
161
157
  return pulumi.get(self, "branch")
162
158
 
@@ -286,8 +282,7 @@ class GitRepositoryFile(pulumi.CustomResource):
286
282
 
287
283
  :param str resource_name: The name of the resource.
288
284
  :param pulumi.ResourceOptions opts: Options for the resource.
289
- :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it
290
- does not already exist.
285
+ :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it does not already exist.
291
286
  :param pulumi.Input[str] commit_message: Commit message when adding or updating the managed file.
292
287
  :param pulumi.Input[str] content: The file content.
293
288
  :param pulumi.Input[str] file: The path of the file to manage.
@@ -412,8 +407,7 @@ class GitRepositoryFile(pulumi.CustomResource):
412
407
  :param str resource_name: The unique name of the resulting resource.
413
408
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
414
409
  :param pulumi.ResourceOptions opts: Options for the resource.
415
- :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it
416
- does not already exist.
410
+ :param pulumi.Input[str] branch: Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it does not already exist.
417
411
  :param pulumi.Input[str] commit_message: Commit message when adding or updating the managed file.
418
412
  :param pulumi.Input[str] content: The file content.
419
413
  :param pulumi.Input[str] file: The path of the file to manage.
@@ -436,8 +430,7 @@ class GitRepositoryFile(pulumi.CustomResource):
436
430
  @pulumi.getter
437
431
  def branch(self) -> pulumi.Output[Optional[str]]:
438
432
  """
439
- Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it
440
- does not already exist.
433
+ Git branch (defaults to `refs/heads/master`). The branch must already exist, it will not be created if it does not already exist.
441
434
  """
442
435
  return pulumi.get(self, "branch")
443
436
 
@@ -30,7 +30,9 @@ class GroupArgs:
30
30
  :param pulumi.Input[str] description: The Description of the Project.
31
31
  :param pulumi.Input[str] display_name: The name of a new Azure DevOps group that is not backed by an external provider. The `origin_id` and `mail` arguments cannot be used simultaneously with `display_name`.
32
32
  :param pulumi.Input[str] mail: The mail address as a reference to an existing group from an external AD or AAD backed provider. The `scope`, `origin_id` and `display_name` arguments cannot be used simultaneously with `mail`.
33
- :param pulumi.Input[Sequence[pulumi.Input[str]]] members: > NOTE: It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
33
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] members: The member of the Group.
34
+
35
+ > **NOTE:** It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
34
36
  :param pulumi.Input[str] origin_id: The OriginID as a reference to a group from an external AD or AAD backed provider. The `scope`, `mail` and `display_name` arguments cannot be used simultaneously with `origin_id`.
35
37
  :param pulumi.Input[str] scope: The scope of the group. A descriptor referencing the scope (collection, project) in which the group should be created. If omitted, will be created in the scope of the enclosing account or organization.x
36
38
  """
@@ -87,7 +89,9 @@ class GroupArgs:
87
89
  @pulumi.getter
88
90
  def members(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
89
91
  """
90
- > NOTE: It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
92
+ The member of the Group.
93
+
94
+ > **NOTE:** It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
91
95
  """
92
96
  return pulumi.get(self, "members")
93
97
 
@@ -144,7 +148,9 @@ class _GroupState:
144
148
  :param pulumi.Input[str] domain: This represents the name of the container of origin for a graph member.
145
149
  :param pulumi.Input[str] group_id: The ID of the Group.
146
150
  :param pulumi.Input[str] mail: The mail address as a reference to an existing group from an external AD or AAD backed provider. The `scope`, `origin_id` and `display_name` arguments cannot be used simultaneously with `mail`.
147
- :param pulumi.Input[Sequence[pulumi.Input[str]]] members: > NOTE: It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
151
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] members: The member of the Group.
152
+
153
+ > **NOTE:** It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
148
154
  :param pulumi.Input[str] origin: The type of source provider for the origin identifier (ex:AD, AAD, MSA)
149
155
  :param pulumi.Input[str] origin_id: The OriginID as a reference to a group from an external AD or AAD backed provider. The `scope`, `mail` and `display_name` arguments cannot be used simultaneously with `origin_id`.
150
156
  :param pulumi.Input[str] principal_name: This is the PrincipalName of this graph member from the source provider.
@@ -255,7 +261,9 @@ class _GroupState:
255
261
  @pulumi.getter
256
262
  def members(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
257
263
  """
258
- > NOTE: It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
264
+ The member of the Group.
265
+
266
+ > **NOTE:** It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
259
267
  """
260
268
  return pulumi.get(self, "members")
261
269
 
@@ -393,7 +401,9 @@ class Group(pulumi.CustomResource):
393
401
  :param pulumi.Input[str] description: The Description of the Project.
394
402
  :param pulumi.Input[str] display_name: The name of a new Azure DevOps group that is not backed by an external provider. The `origin_id` and `mail` arguments cannot be used simultaneously with `display_name`.
395
403
  :param pulumi.Input[str] mail: The mail address as a reference to an existing group from an external AD or AAD backed provider. The `scope`, `origin_id` and `display_name` arguments cannot be used simultaneously with `mail`.
396
- :param pulumi.Input[Sequence[pulumi.Input[str]]] members: > NOTE: It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
404
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] members: The member of the Group.
405
+
406
+ > **NOTE:** It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
397
407
  :param pulumi.Input[str] origin_id: The OriginID as a reference to a group from an external AD or AAD backed provider. The `scope`, `mail` and `display_name` arguments cannot be used simultaneously with `origin_id`.
398
408
  :param pulumi.Input[str] scope: The scope of the group. A descriptor referencing the scope (collection, project) in which the group should be created. If omitted, will be created in the scope of the enclosing account or organization.x
399
409
  """
@@ -522,7 +532,9 @@ class Group(pulumi.CustomResource):
522
532
  :param pulumi.Input[str] domain: This represents the name of the container of origin for a graph member.
523
533
  :param pulumi.Input[str] group_id: The ID of the Group.
524
534
  :param pulumi.Input[str] mail: The mail address as a reference to an existing group from an external AD or AAD backed provider. The `scope`, `origin_id` and `display_name` arguments cannot be used simultaneously with `mail`.
525
- :param pulumi.Input[Sequence[pulumi.Input[str]]] members: > NOTE: It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
535
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] members: The member of the Group.
536
+
537
+ > **NOTE:** It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
526
538
  :param pulumi.Input[str] origin: The type of source provider for the origin identifier (ex:AD, AAD, MSA)
527
539
  :param pulumi.Input[str] origin_id: The OriginID as a reference to a group from an external AD or AAD backed provider. The `scope`, `mail` and `display_name` arguments cannot be used simultaneously with `origin_id`.
528
540
  :param pulumi.Input[str] principal_name: This is the PrincipalName of this graph member from the source provider.
@@ -601,7 +613,9 @@ class Group(pulumi.CustomResource):
601
613
  @pulumi.getter
602
614
  def members(self) -> pulumi.Output[Sequence[str]]:
603
615
  """
604
- > NOTE: It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
616
+ The member of the Group.
617
+
618
+ > **NOTE:** It's possible to define group members both within the `Group` resource via the members block and by using the `GroupMembership` resource. However it's not possible to use both methods to manage group members, since there'll be conflicts.
605
619
  """
606
620
  return pulumi.get(self, "members")
607
621