pulumi-azuredevops 3.8.0a1741843418__py3-none-any.whl → 3.9.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (155) hide show
  1. pulumi_azuredevops/__init__.py +21 -0
  2. pulumi_azuredevops/_inputs.py +1492 -956
  3. pulumi_azuredevops/area_permissions.py +71 -70
  4. pulumi_azuredevops/branch_policy_auto_reviewers.py +43 -42
  5. pulumi_azuredevops/branch_policy_build_validation.py +43 -42
  6. pulumi_azuredevops/branch_policy_comment_resolution.py +43 -42
  7. pulumi_azuredevops/branch_policy_merge_types.py +43 -42
  8. pulumi_azuredevops/branch_policy_min_reviewers.py +43 -42
  9. pulumi_azuredevops/branch_policy_status_check.py +43 -42
  10. pulumi_azuredevops/branch_policy_work_item_linking.py +43 -42
  11. pulumi_azuredevops/build_definition.py +427 -91
  12. pulumi_azuredevops/build_definition_permissions.py +71 -70
  13. pulumi_azuredevops/build_folder.py +43 -42
  14. pulumi_azuredevops/build_folder_permissions.py +78 -70
  15. pulumi_azuredevops/check_approval.py +120 -119
  16. pulumi_azuredevops/check_branch_control.py +120 -119
  17. pulumi_azuredevops/check_business_hours.py +218 -217
  18. pulumi_azuredevops/check_exclusive_lock.py +64 -63
  19. pulumi_azuredevops/check_required_template.py +50 -49
  20. pulumi_azuredevops/check_rest_api.py +218 -217
  21. pulumi_azuredevops/config/__init__.py +1 -0
  22. pulumi_azuredevops/config/__init__.pyi +1 -0
  23. pulumi_azuredevops/config/vars.py +1 -0
  24. pulumi_azuredevops/dashboard.py +78 -77
  25. pulumi_azuredevops/elastic_pool.py +169 -168
  26. pulumi_azuredevops/environment.py +43 -42
  27. pulumi_azuredevops/environment_resource_kubernetes.py +99 -98
  28. pulumi_azuredevops/extension.py +426 -0
  29. pulumi_azuredevops/feed.py +29 -28
  30. pulumi_azuredevops/feed_permission.py +106 -77
  31. pulumi_azuredevops/feed_retention_policy.py +57 -56
  32. pulumi_azuredevops/get_agent_queue.py +13 -12
  33. pulumi_azuredevops/get_area.py +19 -18
  34. pulumi_azuredevops/get_build_definition.py +64 -21
  35. pulumi_azuredevops/get_client_config.py +64 -7
  36. pulumi_azuredevops/get_descriptor.py +8 -7
  37. pulumi_azuredevops/get_environment.py +18 -17
  38. pulumi_azuredevops/get_feed.py +17 -16
  39. pulumi_azuredevops/get_git_repository.py +20 -19
  40. pulumi_azuredevops/get_git_repository_file.py +201 -0
  41. pulumi_azuredevops/get_group.py +16 -15
  42. pulumi_azuredevops/get_group_membership.py +132 -0
  43. pulumi_azuredevops/get_groups.py +7 -6
  44. pulumi_azuredevops/get_identity_group.py +14 -13
  45. pulumi_azuredevops/get_identity_groups.py +7 -6
  46. pulumi_azuredevops/get_identity_users.py +14 -13
  47. pulumi_azuredevops/get_iteration.py +19 -18
  48. pulumi_azuredevops/get_pool.py +10 -9
  49. pulumi_azuredevops/get_pools.py +2 -1
  50. pulumi_azuredevops/get_project.py +18 -17
  51. pulumi_azuredevops/get_projects.py +12 -11
  52. pulumi_azuredevops/get_repositories.py +17 -16
  53. pulumi_azuredevops/get_securityrole_definitions.py +7 -6
  54. pulumi_azuredevops/get_service_endpoint_azure_rm.py +31 -30
  55. pulumi_azuredevops/get_service_endpoint_github.py +19 -18
  56. pulumi_azuredevops/get_service_principal.py +10 -9
  57. pulumi_azuredevops/get_serviceendpoint_azurecr.py +29 -28
  58. pulumi_azuredevops/get_serviceendpoint_bitbucket.py +19 -18
  59. pulumi_azuredevops/get_serviceendpoint_npm.py +20 -19
  60. pulumi_azuredevops/get_serviceendpoint_sonarcloud.py +19 -18
  61. pulumi_azuredevops/get_storage_key.py +8 -7
  62. pulumi_azuredevops/get_team.py +21 -20
  63. pulumi_azuredevops/get_teams.py +14 -13
  64. pulumi_azuredevops/get_user.py +14 -13
  65. pulumi_azuredevops/get_users.py +88 -21
  66. pulumi_azuredevops/get_variable_group.py +14 -13
  67. pulumi_azuredevops/git.py +113 -112
  68. pulumi_azuredevops/git_permissions.py +85 -84
  69. pulumi_azuredevops/git_repository_branch.py +78 -77
  70. pulumi_azuredevops/git_repository_file.py +342 -85
  71. pulumi_azuredevops/group.py +134 -133
  72. pulumi_azuredevops/group_entitlement.py +85 -84
  73. pulumi_azuredevops/group_membership.py +43 -42
  74. pulumi_azuredevops/iterative_permissions.py +71 -70
  75. pulumi_azuredevops/library_permissions.py +57 -56
  76. pulumi_azuredevops/outputs.py +1569 -918
  77. pulumi_azuredevops/pipeline_authorization.py +71 -70
  78. pulumi_azuredevops/pool.py +57 -56
  79. pulumi_azuredevops/project.py +92 -91
  80. pulumi_azuredevops/project_features.py +25 -24
  81. pulumi_azuredevops/project_permissions.py +57 -56
  82. pulumi_azuredevops/project_pipeline_settings.py +99 -98
  83. pulumi_azuredevops/project_tags.py +29 -28
  84. pulumi_azuredevops/provider.py +157 -156
  85. pulumi_azuredevops/pulumi-plugin.json +1 -1
  86. pulumi_azuredevops/queue.py +43 -42
  87. pulumi_azuredevops/repository_policy_author_email_pattern.py +71 -70
  88. pulumi_azuredevops/repository_policy_case_enforcement.py +71 -70
  89. pulumi_azuredevops/repository_policy_check_credentials.py +57 -56
  90. pulumi_azuredevops/repository_policy_file_path_pattern.py +71 -70
  91. pulumi_azuredevops/repository_policy_max_file_size.py +71 -70
  92. pulumi_azuredevops/repository_policy_max_path_length.py +71 -70
  93. pulumi_azuredevops/repository_policy_reserved_names.py +57 -56
  94. pulumi_azuredevops/resource_authorization.py +71 -70
  95. pulumi_azuredevops/securityrole_assignment.py +57 -56
  96. pulumi_azuredevops/service_endpoint_artifactory.py +62 -61
  97. pulumi_azuredevops/service_endpoint_aws.py +144 -143
  98. pulumi_azuredevops/service_endpoint_azure_dev_ops.py +86 -85
  99. pulumi_azuredevops/service_endpoint_azure_ecr.py +175 -174
  100. pulumi_azuredevops/service_endpoint_azure_rm.py +203 -194
  101. pulumi_azuredevops/service_endpoint_bit_bucket.py +72 -71
  102. pulumi_azuredevops/service_endpoint_docker_registry.py +114 -113
  103. pulumi_azuredevops/service_endpoint_generic.py +86 -85
  104. pulumi_azuredevops/service_endpoint_generic_git.py +100 -99
  105. pulumi_azuredevops/service_endpoint_git_hub.py +44 -43
  106. pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +174 -82
  107. pulumi_azuredevops/service_endpoint_git_lab.py +86 -85
  108. pulumi_azuredevops/service_endpoint_kubernetes.py +72 -71
  109. pulumi_azuredevops/service_endpoint_npm.py +76 -75
  110. pulumi_azuredevops/service_endpoint_pipeline.py +58 -57
  111. pulumi_azuredevops/service_endpoint_service_fabric.py +58 -57
  112. pulumi_azuredevops/service_endpoint_sonar_cloud.py +62 -61
  113. pulumi_azuredevops/service_endpoint_sonar_qube.py +76 -75
  114. pulumi_azuredevops/service_endpoint_ssh.py +114 -113
  115. pulumi_azuredevops/service_principal_entitlement.py +71 -70
  116. pulumi_azuredevops/serviceendpoint_argocd.py +62 -61
  117. pulumi_azuredevops/serviceendpoint_azure_service_bus.py +72 -71
  118. pulumi_azuredevops/serviceendpoint_checkmarx_one.py +114 -113
  119. pulumi_azuredevops/serviceendpoint_checkmarx_sast.py +114 -113
  120. pulumi_azuredevops/serviceendpoint_checkmarx_sca.py +142 -141
  121. pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +114 -113
  122. pulumi_azuredevops/serviceendpoint_externaltfs.py +58 -57
  123. pulumi_azuredevops/serviceendpoint_gcp_terraform.py +116 -115
  124. pulumi_azuredevops/serviceendpoint_incomingwebhook.py +86 -85
  125. pulumi_azuredevops/serviceendpoint_jenkins.py +100 -99
  126. pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py +62 -61
  127. pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py +62 -61
  128. pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py +62 -61
  129. pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py +62 -61
  130. pulumi_azuredevops/serviceendpoint_maven.py +72 -71
  131. pulumi_azuredevops/serviceendpoint_nexus.py +86 -85
  132. pulumi_azuredevops/serviceendpoint_nuget.py +114 -113
  133. pulumi_azuredevops/serviceendpoint_octopusdeploy.py +86 -85
  134. pulumi_azuredevops/serviceendpoint_openshift.py +688 -0
  135. pulumi_azuredevops/serviceendpoint_permissions.py +71 -70
  136. pulumi_azuredevops/serviceendpoint_snyk.py +72 -71
  137. pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +58 -57
  138. pulumi_azuredevops/servicehook_permissions.py +57 -56
  139. pulumi_azuredevops/servicehook_storage_queue_pipelines.py +85 -84
  140. pulumi_azuredevops/tagging_permissions.py +57 -56
  141. pulumi_azuredevops/team.py +78 -77
  142. pulumi_azuredevops/team_administrators.py +57 -56
  143. pulumi_azuredevops/team_members.py +57 -56
  144. pulumi_azuredevops/user.py +78 -77
  145. pulumi_azuredevops/variable_group.py +57 -56
  146. pulumi_azuredevops/variable_group_permissions.py +71 -70
  147. pulumi_azuredevops/wiki.py +99 -98
  148. pulumi_azuredevops/wiki_page.py +67 -66
  149. pulumi_azuredevops/work_item_query_permissions.py +71 -70
  150. pulumi_azuredevops/workitem.py +113 -112
  151. {pulumi_azuredevops-3.8.0a1741843418.dist-info → pulumi_azuredevops-3.9.0.dist-info}/METADATA +2 -2
  152. pulumi_azuredevops-3.9.0.dist-info/RECORD +156 -0
  153. {pulumi_azuredevops-3.8.0a1741843418.dist-info → pulumi_azuredevops-3.9.0.dist-info}/WHEEL +1 -1
  154. pulumi_azuredevops-3.8.0a1741843418.dist-info/RECORD +0 -152
  155. {pulumi_azuredevops-3.8.0a1741843418.dist-info → pulumi_azuredevops-3.9.0.dist-info}/top_level.txt +0 -0
@@ -2,6 +2,7 @@
2
2
  # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
 
5
+ import builtins
5
6
  import copy
6
7
  import warnings
7
8
  import sys
@@ -21,19 +22,19 @@ __all__ = ['ServiceendpointMavenArgs', 'ServiceendpointMaven']
21
22
  @pulumi.input_type
22
23
  class ServiceendpointMavenArgs:
23
24
  def __init__(__self__, *,
24
- project_id: pulumi.Input[str],
25
- repository_id: pulumi.Input[str],
26
- service_endpoint_name: pulumi.Input[str],
27
- url: pulumi.Input[str],
25
+ project_id: pulumi.Input[builtins.str],
26
+ repository_id: pulumi.Input[builtins.str],
27
+ service_endpoint_name: pulumi.Input[builtins.str],
28
+ url: pulumi.Input[builtins.str],
28
29
  authentication_basic: Optional[pulumi.Input['ServiceendpointMavenAuthenticationBasicArgs']] = None,
29
30
  authentication_token: Optional[pulumi.Input['ServiceendpointMavenAuthenticationTokenArgs']] = None,
30
- description: Optional[pulumi.Input[str]] = None):
31
+ description: Optional[pulumi.Input[builtins.str]] = None):
31
32
  """
32
33
  The set of arguments for constructing a ServiceendpointMaven resource.
33
- :param pulumi.Input[str] project_id: The ID of the project. Changing this forces a new Service Connection Maven to be created.
34
- :param pulumi.Input[str] repository_id: The ID of the server that matches the id element of the `repository/mirror` that Maven tries to connect to.
35
- :param pulumi.Input[str] service_endpoint_name: The name of the service endpoint. Changing this forces a new Service Connection Maven to be created.
36
- :param pulumi.Input[str] url: The URL of the Maven Repository.
34
+ :param pulumi.Input[builtins.str] project_id: The ID of the project. Changing this forces a new Service Connection Maven to be created.
35
+ :param pulumi.Input[builtins.str] repository_id: The ID of the server that matches the id element of the `repository/mirror` that Maven tries to connect to.
36
+ :param pulumi.Input[builtins.str] service_endpoint_name: The name of the service endpoint. Changing this forces a new Service Connection Maven to be created.
37
+ :param pulumi.Input[builtins.str] url: The URL of the Maven Repository.
37
38
  :param pulumi.Input['ServiceendpointMavenAuthenticationBasicArgs'] authentication_basic: A `authentication_basic` block as documented below.
38
39
  :param pulumi.Input['ServiceendpointMavenAuthenticationTokenArgs'] authentication_token: A `authentication_token` block as documented below.
39
40
  """
@@ -50,50 +51,50 @@ class ServiceendpointMavenArgs:
50
51
 
51
52
  @property
52
53
  @pulumi.getter(name="projectId")
53
- def project_id(self) -> pulumi.Input[str]:
54
+ def project_id(self) -> pulumi.Input[builtins.str]:
54
55
  """
55
56
  The ID of the project. Changing this forces a new Service Connection Maven to be created.
56
57
  """
57
58
  return pulumi.get(self, "project_id")
58
59
 
59
60
  @project_id.setter
60
- def project_id(self, value: pulumi.Input[str]):
61
+ def project_id(self, value: pulumi.Input[builtins.str]):
61
62
  pulumi.set(self, "project_id", value)
62
63
 
63
64
  @property
64
65
  @pulumi.getter(name="repositoryId")
65
- def repository_id(self) -> pulumi.Input[str]:
66
+ def repository_id(self) -> pulumi.Input[builtins.str]:
66
67
  """
67
68
  The ID of the server that matches the id element of the `repository/mirror` that Maven tries to connect to.
68
69
  """
69
70
  return pulumi.get(self, "repository_id")
70
71
 
71
72
  @repository_id.setter
72
- def repository_id(self, value: pulumi.Input[str]):
73
+ def repository_id(self, value: pulumi.Input[builtins.str]):
73
74
  pulumi.set(self, "repository_id", value)
74
75
 
75
76
  @property
76
77
  @pulumi.getter(name="serviceEndpointName")
77
- def service_endpoint_name(self) -> pulumi.Input[str]:
78
+ def service_endpoint_name(self) -> pulumi.Input[builtins.str]:
78
79
  """
79
80
  The name of the service endpoint. Changing this forces a new Service Connection Maven to be created.
80
81
  """
81
82
  return pulumi.get(self, "service_endpoint_name")
82
83
 
83
84
  @service_endpoint_name.setter
84
- def service_endpoint_name(self, value: pulumi.Input[str]):
85
+ def service_endpoint_name(self, value: pulumi.Input[builtins.str]):
85
86
  pulumi.set(self, "service_endpoint_name", value)
86
87
 
87
88
  @property
88
89
  @pulumi.getter
89
- def url(self) -> pulumi.Input[str]:
90
+ def url(self) -> pulumi.Input[builtins.str]:
90
91
  """
91
92
  The URL of the Maven Repository.
92
93
  """
93
94
  return pulumi.get(self, "url")
94
95
 
95
96
  @url.setter
96
- def url(self, value: pulumi.Input[str]):
97
+ def url(self, value: pulumi.Input[builtins.str]):
97
98
  pulumi.set(self, "url", value)
98
99
 
99
100
  @property
@@ -122,11 +123,11 @@ class ServiceendpointMavenArgs:
122
123
 
123
124
  @property
124
125
  @pulumi.getter
125
- def description(self) -> Optional[pulumi.Input[str]]:
126
+ def description(self) -> Optional[pulumi.Input[builtins.str]]:
126
127
  return pulumi.get(self, "description")
127
128
 
128
129
  @description.setter
129
- def description(self, value: Optional[pulumi.Input[str]]):
130
+ def description(self, value: Optional[pulumi.Input[builtins.str]]):
130
131
  pulumi.set(self, "description", value)
131
132
 
132
133
 
@@ -135,20 +136,20 @@ class _ServiceendpointMavenState:
135
136
  def __init__(__self__, *,
136
137
  authentication_basic: Optional[pulumi.Input['ServiceendpointMavenAuthenticationBasicArgs']] = None,
137
138
  authentication_token: Optional[pulumi.Input['ServiceendpointMavenAuthenticationTokenArgs']] = None,
138
- authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
139
- description: Optional[pulumi.Input[str]] = None,
140
- project_id: Optional[pulumi.Input[str]] = None,
141
- repository_id: Optional[pulumi.Input[str]] = None,
142
- service_endpoint_name: Optional[pulumi.Input[str]] = None,
143
- url: Optional[pulumi.Input[str]] = None):
139
+ authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
140
+ description: Optional[pulumi.Input[builtins.str]] = None,
141
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
142
+ repository_id: Optional[pulumi.Input[builtins.str]] = None,
143
+ service_endpoint_name: Optional[pulumi.Input[builtins.str]] = None,
144
+ url: Optional[pulumi.Input[builtins.str]] = None):
144
145
  """
145
146
  Input properties used for looking up and filtering ServiceendpointMaven resources.
146
147
  :param pulumi.Input['ServiceendpointMavenAuthenticationBasicArgs'] authentication_basic: A `authentication_basic` block as documented below.
147
148
  :param pulumi.Input['ServiceendpointMavenAuthenticationTokenArgs'] authentication_token: A `authentication_token` block as documented below.
148
- :param pulumi.Input[str] project_id: The ID of the project. Changing this forces a new Service Connection Maven to be created.
149
- :param pulumi.Input[str] repository_id: The ID of the server that matches the id element of the `repository/mirror` that Maven tries to connect to.
150
- :param pulumi.Input[str] service_endpoint_name: The name of the service endpoint. Changing this forces a new Service Connection Maven to be created.
151
- :param pulumi.Input[str] url: The URL of the Maven Repository.
149
+ :param pulumi.Input[builtins.str] project_id: The ID of the project. Changing this forces a new Service Connection Maven to be created.
150
+ :param pulumi.Input[builtins.str] repository_id: The ID of the server that matches the id element of the `repository/mirror` that Maven tries to connect to.
151
+ :param pulumi.Input[builtins.str] service_endpoint_name: The name of the service endpoint. Changing this forces a new Service Connection Maven to be created.
152
+ :param pulumi.Input[builtins.str] url: The URL of the Maven Repository.
152
153
  """
153
154
  if authentication_basic is not None:
154
155
  pulumi.set(__self__, "authentication_basic", authentication_basic)
@@ -193,68 +194,68 @@ class _ServiceendpointMavenState:
193
194
 
194
195
  @property
195
196
  @pulumi.getter
196
- def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
197
+ def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
197
198
  return pulumi.get(self, "authorization")
198
199
 
199
200
  @authorization.setter
200
- def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
201
+ def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
201
202
  pulumi.set(self, "authorization", value)
202
203
 
203
204
  @property
204
205
  @pulumi.getter
205
- def description(self) -> Optional[pulumi.Input[str]]:
206
+ def description(self) -> Optional[pulumi.Input[builtins.str]]:
206
207
  return pulumi.get(self, "description")
207
208
 
208
209
  @description.setter
209
- def description(self, value: Optional[pulumi.Input[str]]):
210
+ def description(self, value: Optional[pulumi.Input[builtins.str]]):
210
211
  pulumi.set(self, "description", value)
211
212
 
212
213
  @property
213
214
  @pulumi.getter(name="projectId")
214
- def project_id(self) -> Optional[pulumi.Input[str]]:
215
+ def project_id(self) -> Optional[pulumi.Input[builtins.str]]:
215
216
  """
216
217
  The ID of the project. Changing this forces a new Service Connection Maven to be created.
217
218
  """
218
219
  return pulumi.get(self, "project_id")
219
220
 
220
221
  @project_id.setter
221
- def project_id(self, value: Optional[pulumi.Input[str]]):
222
+ def project_id(self, value: Optional[pulumi.Input[builtins.str]]):
222
223
  pulumi.set(self, "project_id", value)
223
224
 
224
225
  @property
225
226
  @pulumi.getter(name="repositoryId")
226
- def repository_id(self) -> Optional[pulumi.Input[str]]:
227
+ def repository_id(self) -> Optional[pulumi.Input[builtins.str]]:
227
228
  """
228
229
  The ID of the server that matches the id element of the `repository/mirror` that Maven tries to connect to.
229
230
  """
230
231
  return pulumi.get(self, "repository_id")
231
232
 
232
233
  @repository_id.setter
233
- def repository_id(self, value: Optional[pulumi.Input[str]]):
234
+ def repository_id(self, value: Optional[pulumi.Input[builtins.str]]):
234
235
  pulumi.set(self, "repository_id", value)
235
236
 
236
237
  @property
237
238
  @pulumi.getter(name="serviceEndpointName")
238
- def service_endpoint_name(self) -> Optional[pulumi.Input[str]]:
239
+ def service_endpoint_name(self) -> Optional[pulumi.Input[builtins.str]]:
239
240
  """
240
241
  The name of the service endpoint. Changing this forces a new Service Connection Maven to be created.
241
242
  """
242
243
  return pulumi.get(self, "service_endpoint_name")
243
244
 
244
245
  @service_endpoint_name.setter
245
- def service_endpoint_name(self, value: Optional[pulumi.Input[str]]):
246
+ def service_endpoint_name(self, value: Optional[pulumi.Input[builtins.str]]):
246
247
  pulumi.set(self, "service_endpoint_name", value)
247
248
 
248
249
  @property
249
250
  @pulumi.getter
250
- def url(self) -> Optional[pulumi.Input[str]]:
251
+ def url(self) -> Optional[pulumi.Input[builtins.str]]:
251
252
  """
252
253
  The URL of the Maven Repository.
253
254
  """
254
255
  return pulumi.get(self, "url")
255
256
 
256
257
  @url.setter
257
- def url(self, value: Optional[pulumi.Input[str]]):
258
+ def url(self, value: Optional[pulumi.Input[builtins.str]]):
258
259
  pulumi.set(self, "url", value)
259
260
 
260
261
 
@@ -265,11 +266,11 @@ class ServiceendpointMaven(pulumi.CustomResource):
265
266
  opts: Optional[pulumi.ResourceOptions] = None,
266
267
  authentication_basic: Optional[pulumi.Input[Union['ServiceendpointMavenAuthenticationBasicArgs', 'ServiceendpointMavenAuthenticationBasicArgsDict']]] = None,
267
268
  authentication_token: Optional[pulumi.Input[Union['ServiceendpointMavenAuthenticationTokenArgs', 'ServiceendpointMavenAuthenticationTokenArgsDict']]] = None,
268
- description: Optional[pulumi.Input[str]] = None,
269
- project_id: Optional[pulumi.Input[str]] = None,
270
- repository_id: Optional[pulumi.Input[str]] = None,
271
- service_endpoint_name: Optional[pulumi.Input[str]] = None,
272
- url: Optional[pulumi.Input[str]] = None,
269
+ description: Optional[pulumi.Input[builtins.str]] = None,
270
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
271
+ repository_id: Optional[pulumi.Input[builtins.str]] = None,
272
+ service_endpoint_name: Optional[pulumi.Input[builtins.str]] = None,
273
+ url: Optional[pulumi.Input[builtins.str]] = None,
273
274
  __props__=None):
274
275
  """
275
276
  Manages a Maven service endpoint within Azure DevOps, which can be used as a resource in YAML pipelines to connect to a Maven instance.
@@ -333,10 +334,10 @@ class ServiceendpointMaven(pulumi.CustomResource):
333
334
  :param pulumi.ResourceOptions opts: Options for the resource.
334
335
  :param pulumi.Input[Union['ServiceendpointMavenAuthenticationBasicArgs', 'ServiceendpointMavenAuthenticationBasicArgsDict']] authentication_basic: A `authentication_basic` block as documented below.
335
336
  :param pulumi.Input[Union['ServiceendpointMavenAuthenticationTokenArgs', 'ServiceendpointMavenAuthenticationTokenArgsDict']] authentication_token: A `authentication_token` block as documented below.
336
- :param pulumi.Input[str] project_id: The ID of the project. Changing this forces a new Service Connection Maven to be created.
337
- :param pulumi.Input[str] repository_id: The ID of the server that matches the id element of the `repository/mirror` that Maven tries to connect to.
338
- :param pulumi.Input[str] service_endpoint_name: The name of the service endpoint. Changing this forces a new Service Connection Maven to be created.
339
- :param pulumi.Input[str] url: The URL of the Maven Repository.
337
+ :param pulumi.Input[builtins.str] project_id: The ID of the project. Changing this forces a new Service Connection Maven to be created.
338
+ :param pulumi.Input[builtins.str] repository_id: The ID of the server that matches the id element of the `repository/mirror` that Maven tries to connect to.
339
+ :param pulumi.Input[builtins.str] service_endpoint_name: The name of the service endpoint. Changing this forces a new Service Connection Maven to be created.
340
+ :param pulumi.Input[builtins.str] url: The URL of the Maven Repository.
340
341
  """
341
342
  ...
342
343
  @overload
@@ -419,11 +420,11 @@ class ServiceendpointMaven(pulumi.CustomResource):
419
420
  opts: Optional[pulumi.ResourceOptions] = None,
420
421
  authentication_basic: Optional[pulumi.Input[Union['ServiceendpointMavenAuthenticationBasicArgs', 'ServiceendpointMavenAuthenticationBasicArgsDict']]] = None,
421
422
  authentication_token: Optional[pulumi.Input[Union['ServiceendpointMavenAuthenticationTokenArgs', 'ServiceendpointMavenAuthenticationTokenArgsDict']]] = None,
422
- description: Optional[pulumi.Input[str]] = None,
423
- project_id: Optional[pulumi.Input[str]] = None,
424
- repository_id: Optional[pulumi.Input[str]] = None,
425
- service_endpoint_name: Optional[pulumi.Input[str]] = None,
426
- url: Optional[pulumi.Input[str]] = None,
423
+ description: Optional[pulumi.Input[builtins.str]] = None,
424
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
425
+ repository_id: Optional[pulumi.Input[builtins.str]] = None,
426
+ service_endpoint_name: Optional[pulumi.Input[builtins.str]] = None,
427
+ url: Optional[pulumi.Input[builtins.str]] = None,
427
428
  __props__=None):
428
429
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
429
430
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -461,12 +462,12 @@ class ServiceendpointMaven(pulumi.CustomResource):
461
462
  opts: Optional[pulumi.ResourceOptions] = None,
462
463
  authentication_basic: Optional[pulumi.Input[Union['ServiceendpointMavenAuthenticationBasicArgs', 'ServiceendpointMavenAuthenticationBasicArgsDict']]] = None,
463
464
  authentication_token: Optional[pulumi.Input[Union['ServiceendpointMavenAuthenticationTokenArgs', 'ServiceendpointMavenAuthenticationTokenArgsDict']]] = None,
464
- authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
465
- description: Optional[pulumi.Input[str]] = None,
466
- project_id: Optional[pulumi.Input[str]] = None,
467
- repository_id: Optional[pulumi.Input[str]] = None,
468
- service_endpoint_name: Optional[pulumi.Input[str]] = None,
469
- url: Optional[pulumi.Input[str]] = None) -> 'ServiceendpointMaven':
465
+ authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
466
+ description: Optional[pulumi.Input[builtins.str]] = None,
467
+ project_id: Optional[pulumi.Input[builtins.str]] = None,
468
+ repository_id: Optional[pulumi.Input[builtins.str]] = None,
469
+ service_endpoint_name: Optional[pulumi.Input[builtins.str]] = None,
470
+ url: Optional[pulumi.Input[builtins.str]] = None) -> 'ServiceendpointMaven':
470
471
  """
471
472
  Get an existing ServiceendpointMaven resource's state with the given name, id, and optional extra
472
473
  properties used to qualify the lookup.
@@ -476,10 +477,10 @@ class ServiceendpointMaven(pulumi.CustomResource):
476
477
  :param pulumi.ResourceOptions opts: Options for the resource.
477
478
  :param pulumi.Input[Union['ServiceendpointMavenAuthenticationBasicArgs', 'ServiceendpointMavenAuthenticationBasicArgsDict']] authentication_basic: A `authentication_basic` block as documented below.
478
479
  :param pulumi.Input[Union['ServiceendpointMavenAuthenticationTokenArgs', 'ServiceendpointMavenAuthenticationTokenArgsDict']] authentication_token: A `authentication_token` block as documented below.
479
- :param pulumi.Input[str] project_id: The ID of the project. Changing this forces a new Service Connection Maven to be created.
480
- :param pulumi.Input[str] repository_id: The ID of the server that matches the id element of the `repository/mirror` that Maven tries to connect to.
481
- :param pulumi.Input[str] service_endpoint_name: The name of the service endpoint. Changing this forces a new Service Connection Maven to be created.
482
- :param pulumi.Input[str] url: The URL of the Maven Repository.
480
+ :param pulumi.Input[builtins.str] project_id: The ID of the project. Changing this forces a new Service Connection Maven to be created.
481
+ :param pulumi.Input[builtins.str] repository_id: The ID of the server that matches the id element of the `repository/mirror` that Maven tries to connect to.
482
+ :param pulumi.Input[builtins.str] service_endpoint_name: The name of the service endpoint. Changing this forces a new Service Connection Maven to be created.
483
+ :param pulumi.Input[builtins.str] url: The URL of the Maven Repository.
483
484
  """
484
485
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
485
486
 
@@ -513,17 +514,17 @@ class ServiceendpointMaven(pulumi.CustomResource):
513
514
 
514
515
  @property
515
516
  @pulumi.getter
516
- def authorization(self) -> pulumi.Output[Mapping[str, str]]:
517
+ def authorization(self) -> pulumi.Output[Mapping[str, builtins.str]]:
517
518
  return pulumi.get(self, "authorization")
518
519
 
519
520
  @property
520
521
  @pulumi.getter
521
- def description(self) -> pulumi.Output[Optional[str]]:
522
+ def description(self) -> pulumi.Output[Optional[builtins.str]]:
522
523
  return pulumi.get(self, "description")
523
524
 
524
525
  @property
525
526
  @pulumi.getter(name="projectId")
526
- def project_id(self) -> pulumi.Output[str]:
527
+ def project_id(self) -> pulumi.Output[builtins.str]:
527
528
  """
528
529
  The ID of the project. Changing this forces a new Service Connection Maven to be created.
529
530
  """
@@ -531,7 +532,7 @@ class ServiceendpointMaven(pulumi.CustomResource):
531
532
 
532
533
  @property
533
534
  @pulumi.getter(name="repositoryId")
534
- def repository_id(self) -> pulumi.Output[str]:
535
+ def repository_id(self) -> pulumi.Output[builtins.str]:
535
536
  """
536
537
  The ID of the server that matches the id element of the `repository/mirror` that Maven tries to connect to.
537
538
  """
@@ -539,7 +540,7 @@ class ServiceendpointMaven(pulumi.CustomResource):
539
540
 
540
541
  @property
541
542
  @pulumi.getter(name="serviceEndpointName")
542
- def service_endpoint_name(self) -> pulumi.Output[str]:
543
+ def service_endpoint_name(self) -> pulumi.Output[builtins.str]:
543
544
  """
544
545
  The name of the service endpoint. Changing this forces a new Service Connection Maven to be created.
545
546
  """
@@ -547,7 +548,7 @@ class ServiceendpointMaven(pulumi.CustomResource):
547
548
 
548
549
  @property
549
550
  @pulumi.getter
550
- def url(self) -> pulumi.Output[str]:
551
+ def url(self) -> pulumi.Output[builtins.str]:
551
552
  """
552
553
  The URL of the Maven Repository.
553
554
  """