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
@@ -46,7 +47,7 @@ class GetRepositoriesResult:
46
47
 
47
48
  @property
48
49
  @pulumi.getter
49
- def id(self) -> str:
50
+ def id(self) -> builtins.str:
50
51
  """
51
52
  The provider-assigned unique ID for this managed resource.
52
53
  """
@@ -54,12 +55,12 @@ class GetRepositoriesResult:
54
55
 
55
56
  @property
56
57
  @pulumi.getter(name="includeHidden")
57
- def include_hidden(self) -> Optional[bool]:
58
+ def include_hidden(self) -> Optional[builtins.bool]:
58
59
  return pulumi.get(self, "include_hidden")
59
60
 
60
61
  @property
61
62
  @pulumi.getter
62
- def name(self) -> Optional[str]:
63
+ def name(self) -> Optional[builtins.str]:
63
64
  """
64
65
  Git repository name.
65
66
  """
@@ -67,7 +68,7 @@ class GetRepositoriesResult:
67
68
 
68
69
  @property
69
70
  @pulumi.getter(name="projectId")
70
- def project_id(self) -> Optional[str]:
71
+ def project_id(self) -> Optional[builtins.str]:
71
72
  """
72
73
  Project identifier to which the Git repository belongs.
73
74
  """
@@ -95,9 +96,9 @@ class AwaitableGetRepositoriesResult(GetRepositoriesResult):
95
96
  repositories=self.repositories)
96
97
 
97
98
 
98
- def get_repositories(include_hidden: Optional[bool] = None,
99
- name: Optional[str] = None,
100
- project_id: Optional[str] = None,
99
+ def get_repositories(include_hidden: Optional[builtins.bool] = None,
100
+ name: Optional[builtins.str] = None,
101
+ project_id: Optional[builtins.str] = None,
101
102
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRepositoriesResult:
102
103
  """
103
104
  Use this data source to access information about **multiple** existing Git Repositories within Azure DevOps.
@@ -123,11 +124,11 @@ def get_repositories(include_hidden: Optional[bool] = None,
123
124
  - [Azure DevOps Service REST API 7.0 - Git API](https://docs.microsoft.com/en-us/rest/api/azure/devops/git/?view=azure-devops-rest-7.0)
124
125
 
125
126
 
126
- :param bool include_hidden: Defaults to `false`.
127
+ :param builtins.bool include_hidden: Defaults to `false`.
127
128
 
128
129
  DataSource without specifying any arguments will return all Git repositories of an organization.
129
- :param str name: Name of the Git repository to retrieve; requires `project_id` to be specified as well
130
- :param str project_id: ID of project to list Git repositories
130
+ :param builtins.str name: Name of the Git repository to retrieve; requires `project_id` to be specified as well
131
+ :param builtins.str project_id: ID of project to list Git repositories
131
132
  """
132
133
  __args__ = dict()
133
134
  __args__['includeHidden'] = include_hidden
@@ -142,9 +143,9 @@ def get_repositories(include_hidden: Optional[bool] = None,
142
143
  name=pulumi.get(__ret__, 'name'),
143
144
  project_id=pulumi.get(__ret__, 'project_id'),
144
145
  repositories=pulumi.get(__ret__, 'repositories'))
145
- def get_repositories_output(include_hidden: Optional[pulumi.Input[Optional[bool]]] = None,
146
- name: Optional[pulumi.Input[Optional[str]]] = None,
147
- project_id: Optional[pulumi.Input[Optional[str]]] = None,
146
+ def get_repositories_output(include_hidden: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
147
+ name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
148
+ project_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
148
149
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetRepositoriesResult]:
149
150
  """
150
151
  Use this data source to access information about **multiple** existing Git Repositories within Azure DevOps.
@@ -170,11 +171,11 @@ def get_repositories_output(include_hidden: Optional[pulumi.Input[Optional[bool]
170
171
  - [Azure DevOps Service REST API 7.0 - Git API](https://docs.microsoft.com/en-us/rest/api/azure/devops/git/?view=azure-devops-rest-7.0)
171
172
 
172
173
 
173
- :param bool include_hidden: Defaults to `false`.
174
+ :param builtins.bool include_hidden: Defaults to `false`.
174
175
 
175
176
  DataSource without specifying any arguments will return all Git repositories of an organization.
176
- :param str name: Name of the Git repository to retrieve; requires `project_id` to be specified as well
177
- :param str project_id: ID of project to list Git repositories
177
+ :param builtins.str name: Name of the Git repository to retrieve; requires `project_id` to be specified as well
178
+ :param builtins.str project_id: ID of project to list Git repositories
178
179
  """
179
180
  __args__ = dict()
180
181
  __args__['includeHidden'] = include_hidden
@@ -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
@@ -48,7 +49,7 @@ class GetSecurityroleDefinitionsResult:
48
49
 
49
50
  @property
50
51
  @pulumi.getter
51
- def id(self) -> str:
52
+ def id(self) -> builtins.str:
52
53
  """
53
54
  The provider-assigned unique ID for this managed resource.
54
55
  """
@@ -56,7 +57,7 @@ class GetSecurityroleDefinitionsResult:
56
57
 
57
58
  @property
58
59
  @pulumi.getter
59
- def scope(self) -> str:
60
+ def scope(self) -> builtins.str:
60
61
  """
61
62
  The scope of the Security Role Definition.
62
63
  """
@@ -74,7 +75,7 @@ class AwaitableGetSecurityroleDefinitionsResult(GetSecurityroleDefinitionsResult
74
75
  scope=self.scope)
75
76
 
76
77
 
77
- def get_securityrole_definitions(scope: Optional[str] = None,
78
+ def get_securityrole_definitions(scope: Optional[builtins.str] = None,
78
79
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSecurityroleDefinitionsResult:
79
80
  """
80
81
  Use this data source to access information about existing Security Role Definitions within a given scope in Azure DevOps.
@@ -94,7 +95,7 @@ def get_securityrole_definitions(scope: Optional[str] = None,
94
95
  - [Azure DevOps Service REST API 7.0 - Role Definitions - List](https://learn.microsoft.com/en-us/rest/api/azure/devops/securityroles/roledefinitions/list?view=azure-devops-rest-7.1)
95
96
 
96
97
 
97
- :param str scope: Name of the Scope for which Security Role Definitions will be returned.
98
+ :param builtins.str scope: Name of the Scope for which Security Role Definitions will be returned.
98
99
 
99
100
  > **NOTE:** DataSource without specifying any arguments will return all projects.
100
101
  """
@@ -107,7 +108,7 @@ def get_securityrole_definitions(scope: Optional[str] = None,
107
108
  definitions=pulumi.get(__ret__, 'definitions'),
108
109
  id=pulumi.get(__ret__, 'id'),
109
110
  scope=pulumi.get(__ret__, 'scope'))
110
- def get_securityrole_definitions_output(scope: Optional[pulumi.Input[str]] = None,
111
+ def get_securityrole_definitions_output(scope: Optional[pulumi.Input[builtins.str]] = None,
111
112
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetSecurityroleDefinitionsResult]:
112
113
  """
113
114
  Use this data source to access information about existing Security Role Definitions within a given scope in Azure DevOps.
@@ -127,7 +128,7 @@ def get_securityrole_definitions_output(scope: Optional[pulumi.Input[str]] = Non
127
128
  - [Azure DevOps Service REST API 7.0 - Role Definitions - List](https://learn.microsoft.com/en-us/rest/api/azure/devops/securityroles/roledefinitions/list?view=azure-devops-rest-7.1)
128
129
 
129
130
 
130
- :param str scope: Name of the Scope for which Security Role Definitions will be returned.
131
+ :param builtins.str scope: Name of the Scope for which Security Role Definitions will be returned.
131
132
 
132
133
  > **NOTE:** DataSource without specifying any arguments will return all projects.
133
134
  """
@@ -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
@@ -84,7 +85,7 @@ class GetServiceEndpointAzureRMResult:
84
85
 
85
86
  @property
86
87
  @pulumi.getter
87
- def authorization(self) -> Mapping[str, str]:
88
+ def authorization(self) -> Mapping[str, builtins.str]:
88
89
  """
89
90
  The Authorization scheme.
90
91
  """
@@ -92,7 +93,7 @@ class GetServiceEndpointAzureRMResult:
92
93
 
93
94
  @property
94
95
  @pulumi.getter(name="azurermManagementGroupId")
95
- def azurerm_management_group_id(self) -> str:
96
+ def azurerm_management_group_id(self) -> builtins.str:
96
97
  """
97
98
  The Management Group ID of the Service Endpoint is target, if available.
98
99
  """
@@ -100,7 +101,7 @@ class GetServiceEndpointAzureRMResult:
100
101
 
101
102
  @property
102
103
  @pulumi.getter(name="azurermManagementGroupName")
103
- def azurerm_management_group_name(self) -> str:
104
+ def azurerm_management_group_name(self) -> builtins.str:
104
105
  """
105
106
  The Management Group Name of the Service Endpoint target, if available.
106
107
  """
@@ -108,7 +109,7 @@ class GetServiceEndpointAzureRMResult:
108
109
 
109
110
  @property
110
111
  @pulumi.getter(name="azurermSpnTenantid")
111
- def azurerm_spn_tenantid(self) -> str:
112
+ def azurerm_spn_tenantid(self) -> builtins.str:
112
113
  """
113
114
  The Tenant ID of the Azure targets.
114
115
  """
@@ -116,7 +117,7 @@ class GetServiceEndpointAzureRMResult:
116
117
 
117
118
  @property
118
119
  @pulumi.getter(name="azurermSubscriptionId")
119
- def azurerm_subscription_id(self) -> str:
120
+ def azurerm_subscription_id(self) -> builtins.str:
120
121
  """
121
122
  The Subscription ID of the Service Endpoint target, if available.
122
123
  """
@@ -124,7 +125,7 @@ class GetServiceEndpointAzureRMResult:
124
125
 
125
126
  @property
126
127
  @pulumi.getter(name="azurermSubscriptionName")
127
- def azurerm_subscription_name(self) -> str:
128
+ def azurerm_subscription_name(self) -> builtins.str:
128
129
  """
129
130
  The Subscription Name of the Service Endpoint target, if available.
130
131
  """
@@ -132,7 +133,7 @@ class GetServiceEndpointAzureRMResult:
132
133
 
133
134
  @property
134
135
  @pulumi.getter
135
- def description(self) -> str:
136
+ def description(self) -> builtins.str:
136
137
  """
137
138
  The description of the Service Endpoint.
138
139
  """
@@ -140,7 +141,7 @@ class GetServiceEndpointAzureRMResult:
140
141
 
141
142
  @property
142
143
  @pulumi.getter
143
- def environment(self) -> str:
144
+ def environment(self) -> builtins.str:
144
145
  """
145
146
  The Cloud Environment.
146
147
  """
@@ -148,7 +149,7 @@ class GetServiceEndpointAzureRMResult:
148
149
 
149
150
  @property
150
151
  @pulumi.getter
151
- def id(self) -> str:
152
+ def id(self) -> builtins.str:
152
153
  """
153
154
  The provider-assigned unique ID for this managed resource.
154
155
  """
@@ -156,12 +157,12 @@ class GetServiceEndpointAzureRMResult:
156
157
 
157
158
  @property
158
159
  @pulumi.getter(name="projectId")
159
- def project_id(self) -> str:
160
+ def project_id(self) -> builtins.str:
160
161
  return pulumi.get(self, "project_id")
161
162
 
162
163
  @property
163
164
  @pulumi.getter(name="resourceGroup")
164
- def resource_group(self) -> str:
165
+ def resource_group(self) -> builtins.str:
165
166
  """
166
167
  The Resource Group of the Service Endpoint target, if available.
167
168
  """
@@ -169,7 +170,7 @@ class GetServiceEndpointAzureRMResult:
169
170
 
170
171
  @property
171
172
  @pulumi.getter(name="serverUrl")
172
- def server_url(self) -> str:
173
+ def server_url(self) -> builtins.str:
173
174
  """
174
175
  The server URL of the service Endpoint.
175
176
  """
@@ -177,7 +178,7 @@ class GetServiceEndpointAzureRMResult:
177
178
 
178
179
  @property
179
180
  @pulumi.getter(name="serviceEndpointAuthenticationScheme")
180
- def service_endpoint_authentication_scheme(self) -> str:
181
+ def service_endpoint_authentication_scheme(self) -> builtins.str:
181
182
  """
182
183
  The authentication scheme of Azure Resource Management Endpoint
183
184
  """
@@ -185,17 +186,17 @@ class GetServiceEndpointAzureRMResult:
185
186
 
186
187
  @property
187
188
  @pulumi.getter(name="serviceEndpointId")
188
- def service_endpoint_id(self) -> str:
189
+ def service_endpoint_id(self) -> builtins.str:
189
190
  return pulumi.get(self, "service_endpoint_id")
190
191
 
191
192
  @property
192
193
  @pulumi.getter(name="serviceEndpointName")
193
- def service_endpoint_name(self) -> str:
194
+ def service_endpoint_name(self) -> builtins.str:
194
195
  return pulumi.get(self, "service_endpoint_name")
195
196
 
196
197
  @property
197
198
  @pulumi.getter(name="servicePrincipalId")
198
- def service_principal_id(self) -> str:
199
+ def service_principal_id(self) -> builtins.str:
199
200
  """
200
201
  The Application(Client) ID of the Service Principal.
201
202
  """
@@ -203,7 +204,7 @@ class GetServiceEndpointAzureRMResult:
203
204
 
204
205
  @property
205
206
  @pulumi.getter(name="workloadIdentityFederationIssuer")
206
- def workload_identity_federation_issuer(self) -> str:
207
+ def workload_identity_federation_issuer(self) -> builtins.str:
207
208
  """
208
209
  The issuer if `of the Workload Identity Federation Subject
209
210
  """
@@ -211,7 +212,7 @@ class GetServiceEndpointAzureRMResult:
211
212
 
212
213
  @property
213
214
  @pulumi.getter(name="workloadIdentityFederationSubject")
214
- def workload_identity_federation_subject(self) -> str:
215
+ def workload_identity_federation_subject(self) -> builtins.str:
215
216
  """
216
217
  The subject of the Workload Identity Federation Subject.
217
218
  """
@@ -244,9 +245,9 @@ class AwaitableGetServiceEndpointAzureRMResult(GetServiceEndpointAzureRMResult):
244
245
  workload_identity_federation_subject=self.workload_identity_federation_subject)
245
246
 
246
247
 
247
- def get_service_endpoint_azure_rm(project_id: Optional[str] = None,
248
- service_endpoint_id: Optional[str] = None,
249
- service_endpoint_name: Optional[str] = None,
248
+ def get_service_endpoint_azure_rm(project_id: Optional[builtins.str] = None,
249
+ service_endpoint_id: Optional[builtins.str] = None,
250
+ service_endpoint_name: Optional[builtins.str] = None,
250
251
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServiceEndpointAzureRMResult:
251
252
  """
252
253
  Use this data source to access information about an existing AzureRM service Endpoint.
@@ -278,9 +279,9 @@ def get_service_endpoint_azure_rm(project_id: Optional[str] = None,
278
279
  ```
279
280
 
280
281
 
281
- :param str project_id: The ID of the project.
282
- :param str service_endpoint_id: the ID of the Service Endpoint.
283
- :param str service_endpoint_name: the Name of the Service Endpoint.
282
+ :param builtins.str project_id: The ID of the project.
283
+ :param builtins.str service_endpoint_id: the ID of the Service Endpoint.
284
+ :param builtins.str service_endpoint_name: the Name of the Service Endpoint.
284
285
 
285
286
  > **NOTE:** 1. One of either `service_endpoint_id` or `service_endpoint_name` must be specified.
286
287
  <br>2. When supplying `service_endpoint_name`, take care to ensure that this is a unique name.
@@ -311,9 +312,9 @@ def get_service_endpoint_azure_rm(project_id: Optional[str] = None,
311
312
  service_principal_id=pulumi.get(__ret__, 'service_principal_id'),
312
313
  workload_identity_federation_issuer=pulumi.get(__ret__, 'workload_identity_federation_issuer'),
313
314
  workload_identity_federation_subject=pulumi.get(__ret__, 'workload_identity_federation_subject'))
314
- def get_service_endpoint_azure_rm_output(project_id: Optional[pulumi.Input[str]] = None,
315
- service_endpoint_id: Optional[pulumi.Input[Optional[str]]] = None,
316
- service_endpoint_name: Optional[pulumi.Input[Optional[str]]] = None,
315
+ def get_service_endpoint_azure_rm_output(project_id: Optional[pulumi.Input[builtins.str]] = None,
316
+ service_endpoint_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
317
+ service_endpoint_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
317
318
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetServiceEndpointAzureRMResult]:
318
319
  """
319
320
  Use this data source to access information about an existing AzureRM service Endpoint.
@@ -345,9 +346,9 @@ def get_service_endpoint_azure_rm_output(project_id: Optional[pulumi.Input[str]]
345
346
  ```
346
347
 
347
348
 
348
- :param str project_id: The ID of the project.
349
- :param str service_endpoint_id: the ID of the Service Endpoint.
350
- :param str service_endpoint_name: the Name of the Service Endpoint.
349
+ :param builtins.str project_id: The ID of the project.
350
+ :param builtins.str service_endpoint_id: the ID of the Service Endpoint.
351
+ :param builtins.str service_endpoint_name: the Name of the Service Endpoint.
351
352
 
352
353
  > **NOTE:** 1. One of either `service_endpoint_id` or `service_endpoint_name` must be specified.
353
354
  <br>2. When supplying `service_endpoint_name`, take care to ensure that this is a unique name.
@@ -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
@@ -48,7 +49,7 @@ class GetServiceEndpointGithubResult:
48
49
 
49
50
  @property
50
51
  @pulumi.getter
51
- def authorization(self) -> Mapping[str, str]:
52
+ def authorization(self) -> Mapping[str, builtins.str]:
52
53
  """
53
54
  The Authorization scheme.
54
55
  """
@@ -56,7 +57,7 @@ class GetServiceEndpointGithubResult:
56
57
 
57
58
  @property
58
59
  @pulumi.getter
59
- def description(self) -> str:
60
+ def description(self) -> builtins.str:
60
61
  """
61
62
  The description of the Service Endpoint.
62
63
  """
@@ -64,7 +65,7 @@ class GetServiceEndpointGithubResult:
64
65
 
65
66
  @property
66
67
  @pulumi.getter
67
- def id(self) -> str:
68
+ def id(self) -> builtins.str:
68
69
  """
69
70
  The provider-assigned unique ID for this managed resource.
70
71
  """
@@ -72,17 +73,17 @@ class GetServiceEndpointGithubResult:
72
73
 
73
74
  @property
74
75
  @pulumi.getter(name="projectId")
75
- def project_id(self) -> str:
76
+ def project_id(self) -> builtins.str:
76
77
  return pulumi.get(self, "project_id")
77
78
 
78
79
  @property
79
80
  @pulumi.getter(name="serviceEndpointId")
80
- def service_endpoint_id(self) -> str:
81
+ def service_endpoint_id(self) -> builtins.str:
81
82
  return pulumi.get(self, "service_endpoint_id")
82
83
 
83
84
  @property
84
85
  @pulumi.getter(name="serviceEndpointName")
85
- def service_endpoint_name(self) -> str:
86
+ def service_endpoint_name(self) -> builtins.str:
86
87
  return pulumi.get(self, "service_endpoint_name")
87
88
 
88
89
 
@@ -100,9 +101,9 @@ class AwaitableGetServiceEndpointGithubResult(GetServiceEndpointGithubResult):
100
101
  service_endpoint_name=self.service_endpoint_name)
101
102
 
102
103
 
103
- def get_service_endpoint_github(project_id: Optional[str] = None,
104
- service_endpoint_id: Optional[str] = None,
105
- service_endpoint_name: Optional[str] = None,
104
+ def get_service_endpoint_github(project_id: Optional[builtins.str] = None,
105
+ service_endpoint_id: Optional[builtins.str] = None,
106
+ service_endpoint_name: Optional[builtins.str] = None,
106
107
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServiceEndpointGithubResult:
107
108
  """
108
109
  Use this data source to access information about an existing GitHub service Endpoint.
@@ -134,9 +135,9 @@ def get_service_endpoint_github(project_id: Optional[str] = None,
134
135
  ```
135
136
 
136
137
 
137
- :param str project_id: The ID of the project.
138
- :param str service_endpoint_id: the ID of the Service Endpoint.
139
- :param str service_endpoint_name: the Name of the Service Endpoint.
138
+ :param builtins.str project_id: The ID of the project.
139
+ :param builtins.str service_endpoint_id: the ID of the Service Endpoint.
140
+ :param builtins.str service_endpoint_name: the Name of the Service Endpoint.
140
141
 
141
142
  > **NOTE:** 1. One of either `service_endpoint_id` or `service_endpoint_name` must be specified.
142
143
  <br>2. When supplying `service_endpoint_name`, take care to ensure that this is a unique name.
@@ -155,9 +156,9 @@ def get_service_endpoint_github(project_id: Optional[str] = None,
155
156
  project_id=pulumi.get(__ret__, 'project_id'),
156
157
  service_endpoint_id=pulumi.get(__ret__, 'service_endpoint_id'),
157
158
  service_endpoint_name=pulumi.get(__ret__, 'service_endpoint_name'))
158
- def get_service_endpoint_github_output(project_id: Optional[pulumi.Input[str]] = None,
159
- service_endpoint_id: Optional[pulumi.Input[Optional[str]]] = None,
160
- service_endpoint_name: Optional[pulumi.Input[Optional[str]]] = None,
159
+ def get_service_endpoint_github_output(project_id: Optional[pulumi.Input[builtins.str]] = None,
160
+ service_endpoint_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
161
+ service_endpoint_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
161
162
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetServiceEndpointGithubResult]:
162
163
  """
163
164
  Use this data source to access information about an existing GitHub service Endpoint.
@@ -189,9 +190,9 @@ def get_service_endpoint_github_output(project_id: Optional[pulumi.Input[str]] =
189
190
  ```
190
191
 
191
192
 
192
- :param str project_id: The ID of the project.
193
- :param str service_endpoint_id: the ID of the Service Endpoint.
194
- :param str service_endpoint_name: the Name of the Service Endpoint.
193
+ :param builtins.str project_id: The ID of the project.
194
+ :param builtins.str service_endpoint_id: the ID of the Service Endpoint.
195
+ :param builtins.str service_endpoint_name: the Name of the Service Endpoint.
195
196
 
196
197
  > **NOTE:** 1. One of either `service_endpoint_id` or `service_endpoint_name` must be specified.
197
198
  <br>2. When supplying `service_endpoint_name`, take care to ensure that this is a unique name.
@@ -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
@@ -45,7 +46,7 @@ class GetServicePrincipalResult:
45
46
 
46
47
  @property
47
48
  @pulumi.getter
48
- def descriptor(self) -> str:
49
+ def descriptor(self) -> builtins.str:
49
50
  """
50
51
  The descriptor of the Service Principal.
51
52
  """
@@ -53,12 +54,12 @@ class GetServicePrincipalResult:
53
54
 
54
55
  @property
55
56
  @pulumi.getter(name="displayName")
56
- def display_name(self) -> str:
57
+ def display_name(self) -> builtins.str:
57
58
  return pulumi.get(self, "display_name")
58
59
 
59
60
  @property
60
61
  @pulumi.getter
61
- def id(self) -> str:
62
+ def id(self) -> builtins.str:
62
63
  """
63
64
  The provider-assigned unique ID for this managed resource.
64
65
  """
@@ -66,7 +67,7 @@ class GetServicePrincipalResult:
66
67
 
67
68
  @property
68
69
  @pulumi.getter
69
- def origin(self) -> str:
70
+ def origin(self) -> builtins.str:
70
71
  """
71
72
  The origin of the Service Principal.
72
73
  """
@@ -74,7 +75,7 @@ class GetServicePrincipalResult:
74
75
 
75
76
  @property
76
77
  @pulumi.getter(name="originId")
77
- def origin_id(self) -> str:
78
+ def origin_id(self) -> builtins.str:
78
79
  """
79
80
  The origin ID of the Service Principal..
80
81
  """
@@ -94,7 +95,7 @@ class AwaitableGetServicePrincipalResult(GetServicePrincipalResult):
94
95
  origin_id=self.origin_id)
95
96
 
96
97
 
97
- def get_service_principal(display_name: Optional[str] = None,
98
+ def get_service_principal(display_name: Optional[builtins.str] = None,
98
99
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServicePrincipalResult:
99
100
  """
100
101
  Use this data source to access information about an existing Service Principal.
@@ -110,7 +111,7 @@ def get_service_principal(display_name: Optional[str] = None,
110
111
  ```
111
112
 
112
113
 
113
- :param str display_name: The Display Name of the Service Principal. Changing this forces a new Service Principal to be created.
114
+ :param builtins.str display_name: The Display Name of the Service Principal. Changing this forces a new Service Principal to be created.
114
115
  """
115
116
  __args__ = dict()
116
117
  __args__['displayName'] = display_name
@@ -123,7 +124,7 @@ def get_service_principal(display_name: Optional[str] = None,
123
124
  id=pulumi.get(__ret__, 'id'),
124
125
  origin=pulumi.get(__ret__, 'origin'),
125
126
  origin_id=pulumi.get(__ret__, 'origin_id'))
126
- def get_service_principal_output(display_name: Optional[pulumi.Input[str]] = None,
127
+ def get_service_principal_output(display_name: Optional[pulumi.Input[builtins.str]] = None,
127
128
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetServicePrincipalResult]:
128
129
  """
129
130
  Use this data source to access information about an existing Service Principal.
@@ -139,7 +140,7 @@ def get_service_principal_output(display_name: Optional[pulumi.Input[str]] = Non
139
140
  ```
140
141
 
141
142
 
142
- :param str display_name: The Display Name of the Service Principal. Changing this forces a new Service Principal to be created.
143
+ :param builtins.str display_name: The Display Name of the Service Principal. Changing this forces a new Service Principal to be created.
143
144
  """
144
145
  __args__ = dict()
145
146
  __args__['displayName'] = display_name