pulumi-azuredevops 3.7.0a1741238592__py3-none-any.whl → 3.8.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.
- pulumi_azuredevops/__init__.py +13 -0
- pulumi_azuredevops/_inputs.py +435 -26
- pulumi_azuredevops/build_definition.py +335 -0
- pulumi_azuredevops/dashboard.py +475 -0
- pulumi_azuredevops/feed_retention_policy.py +0 -22
- pulumi_azuredevops/get_build_definition.py +43 -1
- pulumi_azuredevops/get_client_config.py +61 -5
- pulumi_azuredevops/get_descriptor.py +133 -0
- pulumi_azuredevops/get_group_membership.py +131 -0
- pulumi_azuredevops/get_identity_group.py +20 -6
- pulumi_azuredevops/get_identity_groups.py +2 -2
- pulumi_azuredevops/get_identity_users.py +19 -5
- pulumi_azuredevops/get_storage_key.py +133 -0
- pulumi_azuredevops/get_teams.py +2 -2
- pulumi_azuredevops/get_user.py +193 -0
- pulumi_azuredevops/get_users.py +4 -0
- pulumi_azuredevops/outputs.py +558 -19
- pulumi_azuredevops/pulumi-plugin.json +1 -1
- pulumi_azuredevops/service_endpoint_artifactory.py +1 -15
- pulumi_azuredevops/service_endpoint_aws.py +1 -15
- pulumi_azuredevops/service_endpoint_azure_dev_ops.py +1 -15
- pulumi_azuredevops/service_endpoint_azure_ecr.py +13 -27
- pulumi_azuredevops/service_endpoint_azure_rm.py +9 -15
- pulumi_azuredevops/service_endpoint_bit_bucket.py +1 -15
- pulumi_azuredevops/service_endpoint_docker_registry.py +1 -15
- pulumi_azuredevops/service_endpoint_generic.py +1 -15
- pulumi_azuredevops/service_endpoint_generic_git.py +1 -15
- pulumi_azuredevops/service_endpoint_git_hub.py +1 -15
- pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +1 -15
- pulumi_azuredevops/service_endpoint_git_lab.py +1 -15
- pulumi_azuredevops/service_endpoint_kubernetes.py +1 -15
- pulumi_azuredevops/service_endpoint_npm.py +1 -15
- pulumi_azuredevops/service_endpoint_pipeline.py +1 -15
- pulumi_azuredevops/service_endpoint_service_fabric.py +1 -15
- pulumi_azuredevops/service_endpoint_sonar_cloud.py +1 -15
- pulumi_azuredevops/service_endpoint_sonar_qube.py +1 -15
- pulumi_azuredevops/service_endpoint_ssh.py +1 -15
- pulumi_azuredevops/serviceendpoint_argocd.py +1 -15
- pulumi_azuredevops/serviceendpoint_azure_service_bus.py +1 -15
- pulumi_azuredevops/serviceendpoint_checkmarx_one.py +1 -15
- pulumi_azuredevops/serviceendpoint_checkmarx_sast.py +1 -15
- pulumi_azuredevops/serviceendpoint_checkmarx_sca.py +1 -15
- pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +1 -15
- pulumi_azuredevops/serviceendpoint_externaltfs.py +1 -15
- pulumi_azuredevops/serviceendpoint_gcp_terraform.py +1 -15
- pulumi_azuredevops/serviceendpoint_incomingwebhook.py +1 -15
- pulumi_azuredevops/serviceendpoint_jenkins.py +1 -15
- pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py +1 -15
- pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py +1 -15
- pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py +1 -15
- pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py +1 -15
- pulumi_azuredevops/serviceendpoint_maven.py +1 -15
- pulumi_azuredevops/serviceendpoint_nexus.py +1 -15
- pulumi_azuredevops/serviceendpoint_nuget.py +1 -15
- pulumi_azuredevops/serviceendpoint_octopusdeploy.py +1 -15
- pulumi_azuredevops/serviceendpoint_snyk.py +1 -15
- pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +1 -15
- {pulumi_azuredevops-3.7.0a1741238592.dist-info → pulumi_azuredevops-3.8.0.dist-info}/METADATA +1 -1
- {pulumi_azuredevops-3.7.0a1741238592.dist-info → pulumi_azuredevops-3.8.0.dist-info}/RECORD +61 -56
- {pulumi_azuredevops-3.7.0a1741238592.dist-info → pulumi_azuredevops-3.8.0.dist-info}/WHEEL +1 -1
- {pulumi_azuredevops-3.7.0a1741238592.dist-info → pulumi_azuredevops-3.8.0.dist-info}/top_level.txt +0 -0
@@ -26,13 +26,25 @@ class GetClientConfigResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getClientConfig.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, id=None, organization_url=None):
|
29
|
+
def __init__(__self__, id=None, name=None, organization_url=None, owner_id=None, status=None, tenant_id=None):
|
30
30
|
if id and not isinstance(id, str):
|
31
31
|
raise TypeError("Expected argument 'id' to be a str")
|
32
32
|
pulumi.set(__self__, "id", id)
|
33
|
+
if name and not isinstance(name, str):
|
34
|
+
raise TypeError("Expected argument 'name' to be a str")
|
35
|
+
pulumi.set(__self__, "name", name)
|
33
36
|
if organization_url and not isinstance(organization_url, str):
|
34
37
|
raise TypeError("Expected argument 'organization_url' to be a str")
|
35
38
|
pulumi.set(__self__, "organization_url", organization_url)
|
39
|
+
if owner_id and not isinstance(owner_id, str):
|
40
|
+
raise TypeError("Expected argument 'owner_id' to be a str")
|
41
|
+
pulumi.set(__self__, "owner_id", owner_id)
|
42
|
+
if status and not isinstance(status, str):
|
43
|
+
raise TypeError("Expected argument 'status' to be a str")
|
44
|
+
pulumi.set(__self__, "status", status)
|
45
|
+
if tenant_id and not isinstance(tenant_id, str):
|
46
|
+
raise TypeError("Expected argument 'tenant_id' to be a str")
|
47
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
36
48
|
|
37
49
|
@property
|
38
50
|
@pulumi.getter
|
@@ -42,14 +54,46 @@ class GetClientConfigResult:
|
|
42
54
|
"""
|
43
55
|
return pulumi.get(self, "id")
|
44
56
|
|
57
|
+
@property
|
58
|
+
@pulumi.getter
|
59
|
+
def name(self) -> str:
|
60
|
+
"""
|
61
|
+
The name of the organization.
|
62
|
+
"""
|
63
|
+
return pulumi.get(self, "name")
|
64
|
+
|
45
65
|
@property
|
46
66
|
@pulumi.getter(name="organizationUrl")
|
47
67
|
def organization_url(self) -> str:
|
48
68
|
"""
|
49
|
-
The
|
69
|
+
The URL of the organization.
|
50
70
|
"""
|
51
71
|
return pulumi.get(self, "organization_url")
|
52
72
|
|
73
|
+
@property
|
74
|
+
@pulumi.getter(name="ownerId")
|
75
|
+
def owner_id(self) -> str:
|
76
|
+
"""
|
77
|
+
The owner ID of the organization.
|
78
|
+
"""
|
79
|
+
return pulumi.get(self, "owner_id")
|
80
|
+
|
81
|
+
@property
|
82
|
+
@pulumi.getter
|
83
|
+
def status(self) -> str:
|
84
|
+
"""
|
85
|
+
The status of the organization.
|
86
|
+
"""
|
87
|
+
return pulumi.get(self, "status")
|
88
|
+
|
89
|
+
@property
|
90
|
+
@pulumi.getter(name="tenantId")
|
91
|
+
def tenant_id(self) -> str:
|
92
|
+
"""
|
93
|
+
The Tenant ID of the connected Azure Directory.
|
94
|
+
"""
|
95
|
+
return pulumi.get(self, "tenant_id")
|
96
|
+
|
53
97
|
|
54
98
|
class AwaitableGetClientConfigResult(GetClientConfigResult):
|
55
99
|
# pylint: disable=using-constant-test
|
@@ -58,7 +102,11 @@ class AwaitableGetClientConfigResult(GetClientConfigResult):
|
|
58
102
|
yield self
|
59
103
|
return GetClientConfigResult(
|
60
104
|
id=self.id,
|
61
|
-
|
105
|
+
name=self.name,
|
106
|
+
organization_url=self.organization_url,
|
107
|
+
owner_id=self.owner_id,
|
108
|
+
status=self.status,
|
109
|
+
tenant_id=self.tenant_id)
|
62
110
|
|
63
111
|
|
64
112
|
def get_client_config(opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetClientConfigResult:
|
@@ -81,7 +129,11 @@ def get_client_config(opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableG
|
|
81
129
|
|
82
130
|
return AwaitableGetClientConfigResult(
|
83
131
|
id=pulumi.get(__ret__, 'id'),
|
84
|
-
|
132
|
+
name=pulumi.get(__ret__, 'name'),
|
133
|
+
organization_url=pulumi.get(__ret__, 'organization_url'),
|
134
|
+
owner_id=pulumi.get(__ret__, 'owner_id'),
|
135
|
+
status=pulumi.get(__ret__, 'status'),
|
136
|
+
tenant_id=pulumi.get(__ret__, 'tenant_id'))
|
85
137
|
def get_client_config_output(opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetClientConfigResult]:
|
86
138
|
"""
|
87
139
|
Use this data source to access information about the Azure DevOps organization configured for the provider.
|
@@ -101,4 +153,8 @@ def get_client_config_output(opts: Optional[Union[pulumi.InvokeOptions, pulumi.I
|
|
101
153
|
__ret__ = pulumi.runtime.invoke_output('azuredevops:index/getClientConfig:getClientConfig', __args__, opts=opts, typ=GetClientConfigResult)
|
102
154
|
return __ret__.apply(lambda __response__: GetClientConfigResult(
|
103
155
|
id=pulumi.get(__response__, 'id'),
|
104
|
-
|
156
|
+
name=pulumi.get(__response__, 'name'),
|
157
|
+
organization_url=pulumi.get(__response__, 'organization_url'),
|
158
|
+
owner_id=pulumi.get(__response__, 'owner_id'),
|
159
|
+
status=pulumi.get(__response__, 'status'),
|
160
|
+
tenant_id=pulumi.get(__response__, 'tenant_id')))
|
@@ -0,0 +1,133 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from . import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'GetDescriptorResult',
|
19
|
+
'AwaitableGetDescriptorResult',
|
20
|
+
'get_descriptor',
|
21
|
+
'get_descriptor_output',
|
22
|
+
]
|
23
|
+
|
24
|
+
@pulumi.output_type
|
25
|
+
class GetDescriptorResult:
|
26
|
+
"""
|
27
|
+
A collection of values returned by getDescriptor.
|
28
|
+
"""
|
29
|
+
def __init__(__self__, descriptor=None, id=None, storage_key=None):
|
30
|
+
if descriptor and not isinstance(descriptor, str):
|
31
|
+
raise TypeError("Expected argument 'descriptor' to be a str")
|
32
|
+
pulumi.set(__self__, "descriptor", descriptor)
|
33
|
+
if id and not isinstance(id, str):
|
34
|
+
raise TypeError("Expected argument 'id' to be a str")
|
35
|
+
pulumi.set(__self__, "id", id)
|
36
|
+
if storage_key and not isinstance(storage_key, str):
|
37
|
+
raise TypeError("Expected argument 'storage_key' to be a str")
|
38
|
+
pulumi.set(__self__, "storage_key", storage_key)
|
39
|
+
|
40
|
+
@property
|
41
|
+
@pulumi.getter
|
42
|
+
def descriptor(self) -> str:
|
43
|
+
"""
|
44
|
+
The descriptor of the storage key.
|
45
|
+
"""
|
46
|
+
return pulumi.get(self, "descriptor")
|
47
|
+
|
48
|
+
@property
|
49
|
+
@pulumi.getter
|
50
|
+
def id(self) -> str:
|
51
|
+
"""
|
52
|
+
The provider-assigned unique ID for this managed resource.
|
53
|
+
"""
|
54
|
+
return pulumi.get(self, "id")
|
55
|
+
|
56
|
+
@property
|
57
|
+
@pulumi.getter(name="storageKey")
|
58
|
+
def storage_key(self) -> str:
|
59
|
+
return pulumi.get(self, "storage_key")
|
60
|
+
|
61
|
+
|
62
|
+
class AwaitableGetDescriptorResult(GetDescriptorResult):
|
63
|
+
# pylint: disable=using-constant-test
|
64
|
+
def __await__(self):
|
65
|
+
if False:
|
66
|
+
yield self
|
67
|
+
return GetDescriptorResult(
|
68
|
+
descriptor=self.descriptor,
|
69
|
+
id=self.id,
|
70
|
+
storage_key=self.storage_key)
|
71
|
+
|
72
|
+
|
73
|
+
def get_descriptor(storage_key: Optional[str] = None,
|
74
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDescriptorResult:
|
75
|
+
"""
|
76
|
+
Use this data source to access information about an existing Descriptor.
|
77
|
+
|
78
|
+
## Example Usage
|
79
|
+
|
80
|
+
```python
|
81
|
+
import pulumi
|
82
|
+
import pulumi_azuredevops as azuredevops
|
83
|
+
|
84
|
+
example = azuredevops.get_descriptor(storage_key="00000000-0000-0000-0000-000000000000")
|
85
|
+
pulumi.export("id", example.id)
|
86
|
+
```
|
87
|
+
|
88
|
+
## Relevant Links
|
89
|
+
|
90
|
+
- [Azure DevOps Service REST API 7.1 - Descriptors - Get](https://learn.microsoft.com/en-us/rest/api/azure/devops/graph/descriptors/get?view=azure-devops-rest-7.1)
|
91
|
+
|
92
|
+
|
93
|
+
:param str storage_key: The ID of the resource(`user`, `group`, `scope`, etc.) that will be resolved to a descriptor.
|
94
|
+
"""
|
95
|
+
__args__ = dict()
|
96
|
+
__args__['storageKey'] = storage_key
|
97
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
98
|
+
__ret__ = pulumi.runtime.invoke('azuredevops:index/getDescriptor:getDescriptor', __args__, opts=opts, typ=GetDescriptorResult).value
|
99
|
+
|
100
|
+
return AwaitableGetDescriptorResult(
|
101
|
+
descriptor=pulumi.get(__ret__, 'descriptor'),
|
102
|
+
id=pulumi.get(__ret__, 'id'),
|
103
|
+
storage_key=pulumi.get(__ret__, 'storage_key'))
|
104
|
+
def get_descriptor_output(storage_key: Optional[pulumi.Input[str]] = None,
|
105
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDescriptorResult]:
|
106
|
+
"""
|
107
|
+
Use this data source to access information about an existing Descriptor.
|
108
|
+
|
109
|
+
## Example Usage
|
110
|
+
|
111
|
+
```python
|
112
|
+
import pulumi
|
113
|
+
import pulumi_azuredevops as azuredevops
|
114
|
+
|
115
|
+
example = azuredevops.get_descriptor(storage_key="00000000-0000-0000-0000-000000000000")
|
116
|
+
pulumi.export("id", example.id)
|
117
|
+
```
|
118
|
+
|
119
|
+
## Relevant Links
|
120
|
+
|
121
|
+
- [Azure DevOps Service REST API 7.1 - Descriptors - Get](https://learn.microsoft.com/en-us/rest/api/azure/devops/graph/descriptors/get?view=azure-devops-rest-7.1)
|
122
|
+
|
123
|
+
|
124
|
+
:param str storage_key: The ID of the resource(`user`, `group`, `scope`, etc.) that will be resolved to a descriptor.
|
125
|
+
"""
|
126
|
+
__args__ = dict()
|
127
|
+
__args__['storageKey'] = storage_key
|
128
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
129
|
+
__ret__ = pulumi.runtime.invoke_output('azuredevops:index/getDescriptor:getDescriptor', __args__, opts=opts, typ=GetDescriptorResult)
|
130
|
+
return __ret__.apply(lambda __response__: GetDescriptorResult(
|
131
|
+
descriptor=pulumi.get(__response__, 'descriptor'),
|
132
|
+
id=pulumi.get(__response__, 'id'),
|
133
|
+
storage_key=pulumi.get(__response__, 'storage_key')))
|
@@ -0,0 +1,131 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from . import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'GetGroupMembershipResult',
|
19
|
+
'AwaitableGetGroupMembershipResult',
|
20
|
+
'get_group_membership',
|
21
|
+
'get_group_membership_output',
|
22
|
+
]
|
23
|
+
|
24
|
+
@pulumi.output_type
|
25
|
+
class GetGroupMembershipResult:
|
26
|
+
"""
|
27
|
+
A collection of values returned by getGroupMembership.
|
28
|
+
"""
|
29
|
+
def __init__(__self__, group_descriptor=None, id=None, members=None):
|
30
|
+
if group_descriptor and not isinstance(group_descriptor, str):
|
31
|
+
raise TypeError("Expected argument 'group_descriptor' to be a str")
|
32
|
+
pulumi.set(__self__, "group_descriptor", group_descriptor)
|
33
|
+
if id and not isinstance(id, str):
|
34
|
+
raise TypeError("Expected argument 'id' to be a str")
|
35
|
+
pulumi.set(__self__, "id", id)
|
36
|
+
if members and not isinstance(members, list):
|
37
|
+
raise TypeError("Expected argument 'members' to be a list")
|
38
|
+
pulumi.set(__self__, "members", members)
|
39
|
+
|
40
|
+
@property
|
41
|
+
@pulumi.getter(name="groupDescriptor")
|
42
|
+
def group_descriptor(self) -> str:
|
43
|
+
return pulumi.get(self, "group_descriptor")
|
44
|
+
|
45
|
+
@property
|
46
|
+
@pulumi.getter
|
47
|
+
def id(self) -> str:
|
48
|
+
"""
|
49
|
+
The provider-assigned unique ID for this managed resource.
|
50
|
+
"""
|
51
|
+
return pulumi.get(self, "id")
|
52
|
+
|
53
|
+
@property
|
54
|
+
@pulumi.getter
|
55
|
+
def members(self) -> Sequence[str]:
|
56
|
+
"""
|
57
|
+
A list of user or group descriptors.
|
58
|
+
"""
|
59
|
+
return pulumi.get(self, "members")
|
60
|
+
|
61
|
+
|
62
|
+
class AwaitableGetGroupMembershipResult(GetGroupMembershipResult):
|
63
|
+
# pylint: disable=using-constant-test
|
64
|
+
def __await__(self):
|
65
|
+
if False:
|
66
|
+
yield self
|
67
|
+
return GetGroupMembershipResult(
|
68
|
+
group_descriptor=self.group_descriptor,
|
69
|
+
id=self.id,
|
70
|
+
members=self.members)
|
71
|
+
|
72
|
+
|
73
|
+
def get_group_membership(group_descriptor: Optional[str] = None,
|
74
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetGroupMembershipResult:
|
75
|
+
"""
|
76
|
+
Use this data source to access information about an existing Group Memberships within Azure DevOps
|
77
|
+
|
78
|
+
## Example Usage
|
79
|
+
|
80
|
+
```python
|
81
|
+
import pulumi
|
82
|
+
import pulumi_azuredevops as azuredevops
|
83
|
+
|
84
|
+
example = azuredevops.get_group_membership(group_descriptor="groupdescroptpr")
|
85
|
+
```
|
86
|
+
|
87
|
+
## Relevant Links
|
88
|
+
|
89
|
+
- [Azure DevOps Service REST API 7.1 - Memberships](https://docs.microsoft.com/en-us/rest/api/azure/devops/graph/memberships?view=azure-devops-rest-7.1)
|
90
|
+
|
91
|
+
|
92
|
+
:param str group_descriptor: The descriptor of the group.
|
93
|
+
"""
|
94
|
+
__args__ = dict()
|
95
|
+
__args__['groupDescriptor'] = group_descriptor
|
96
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
97
|
+
__ret__ = pulumi.runtime.invoke('azuredevops:index/getGroupMembership:getGroupMembership', __args__, opts=opts, typ=GetGroupMembershipResult).value
|
98
|
+
|
99
|
+
return AwaitableGetGroupMembershipResult(
|
100
|
+
group_descriptor=pulumi.get(__ret__, 'group_descriptor'),
|
101
|
+
id=pulumi.get(__ret__, 'id'),
|
102
|
+
members=pulumi.get(__ret__, 'members'))
|
103
|
+
def get_group_membership_output(group_descriptor: Optional[pulumi.Input[str]] = None,
|
104
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetGroupMembershipResult]:
|
105
|
+
"""
|
106
|
+
Use this data source to access information about an existing Group Memberships within Azure DevOps
|
107
|
+
|
108
|
+
## Example Usage
|
109
|
+
|
110
|
+
```python
|
111
|
+
import pulumi
|
112
|
+
import pulumi_azuredevops as azuredevops
|
113
|
+
|
114
|
+
example = azuredevops.get_group_membership(group_descriptor="groupdescroptpr")
|
115
|
+
```
|
116
|
+
|
117
|
+
## Relevant Links
|
118
|
+
|
119
|
+
- [Azure DevOps Service REST API 7.1 - Memberships](https://docs.microsoft.com/en-us/rest/api/azure/devops/graph/memberships?view=azure-devops-rest-7.1)
|
120
|
+
|
121
|
+
|
122
|
+
:param str group_descriptor: The descriptor of the group.
|
123
|
+
"""
|
124
|
+
__args__ = dict()
|
125
|
+
__args__['groupDescriptor'] = group_descriptor
|
126
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
127
|
+
__ret__ = pulumi.runtime.invoke_output('azuredevops:index/getGroupMembership:getGroupMembership', __args__, opts=opts, typ=GetGroupMembershipResult)
|
128
|
+
return __ret__.apply(lambda __response__: GetGroupMembershipResult(
|
129
|
+
group_descriptor=pulumi.get(__response__, 'group_descriptor'),
|
130
|
+
id=pulumi.get(__response__, 'id'),
|
131
|
+
members=pulumi.get(__response__, 'members')))
|
@@ -26,7 +26,7 @@ class GetIdentityGroupResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getIdentityGroup.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, descriptor=None, id=None, name=None, project_id=None):
|
29
|
+
def __init__(__self__, descriptor=None, id=None, name=None, project_id=None, subject_descriptor=None):
|
30
30
|
if descriptor and not isinstance(descriptor, str):
|
31
31
|
raise TypeError("Expected argument 'descriptor' to be a str")
|
32
32
|
pulumi.set(__self__, "descriptor", descriptor)
|
@@ -39,6 +39,9 @@ class GetIdentityGroupResult:
|
|
39
39
|
if project_id and not isinstance(project_id, str):
|
40
40
|
raise TypeError("Expected argument 'project_id' to be a str")
|
41
41
|
pulumi.set(__self__, "project_id", project_id)
|
42
|
+
if subject_descriptor and not isinstance(subject_descriptor, str):
|
43
|
+
raise TypeError("Expected argument 'subject_descriptor' to be a str")
|
44
|
+
pulumi.set(__self__, "subject_descriptor", subject_descriptor)
|
42
45
|
|
43
46
|
@property
|
44
47
|
@pulumi.getter
|
@@ -69,6 +72,14 @@ class GetIdentityGroupResult:
|
|
69
72
|
def project_id(self) -> str:
|
70
73
|
return pulumi.get(self, "project_id")
|
71
74
|
|
75
|
+
@property
|
76
|
+
@pulumi.getter(name="subjectDescriptor")
|
77
|
+
def subject_descriptor(self) -> str:
|
78
|
+
"""
|
79
|
+
The subject descriptor of the identity group.
|
80
|
+
"""
|
81
|
+
return pulumi.get(self, "subject_descriptor")
|
82
|
+
|
72
83
|
|
73
84
|
class AwaitableGetIdentityGroupResult(GetIdentityGroupResult):
|
74
85
|
# pylint: disable=using-constant-test
|
@@ -79,7 +90,8 @@ class AwaitableGetIdentityGroupResult(GetIdentityGroupResult):
|
|
79
90
|
descriptor=self.descriptor,
|
80
91
|
id=self.id,
|
81
92
|
name=self.name,
|
82
|
-
project_id=self.project_id
|
93
|
+
project_id=self.project_id,
|
94
|
+
subject_descriptor=self.subject_descriptor)
|
83
95
|
|
84
96
|
|
85
97
|
def get_identity_group(name: Optional[str] = None,
|
@@ -101,7 +113,7 @@ def get_identity_group(name: Optional[str] = None,
|
|
101
113
|
|
102
114
|
## Relevant Links
|
103
115
|
|
104
|
-
- [Azure DevOps Service REST API 7.
|
116
|
+
- [Azure DevOps Service REST API 7.1 - Identities](https://docs.microsoft.com/en-us/rest/api/azure/devops/ims/?view=azure-devops-rest-7.2)
|
105
117
|
|
106
118
|
|
107
119
|
:param str name: The name of the group.
|
@@ -117,7 +129,8 @@ def get_identity_group(name: Optional[str] = None,
|
|
117
129
|
descriptor=pulumi.get(__ret__, 'descriptor'),
|
118
130
|
id=pulumi.get(__ret__, 'id'),
|
119
131
|
name=pulumi.get(__ret__, 'name'),
|
120
|
-
project_id=pulumi.get(__ret__, 'project_id')
|
132
|
+
project_id=pulumi.get(__ret__, 'project_id'),
|
133
|
+
subject_descriptor=pulumi.get(__ret__, 'subject_descriptor'))
|
121
134
|
def get_identity_group_output(name: Optional[pulumi.Input[str]] = None,
|
122
135
|
project_id: Optional[pulumi.Input[str]] = None,
|
123
136
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetIdentityGroupResult]:
|
@@ -137,7 +150,7 @@ def get_identity_group_output(name: Optional[pulumi.Input[str]] = None,
|
|
137
150
|
|
138
151
|
## Relevant Links
|
139
152
|
|
140
|
-
- [Azure DevOps Service REST API 7.
|
153
|
+
- [Azure DevOps Service REST API 7.1 - Identities](https://docs.microsoft.com/en-us/rest/api/azure/devops/ims/?view=azure-devops-rest-7.2)
|
141
154
|
|
142
155
|
|
143
156
|
:param str name: The name of the group.
|
@@ -152,4 +165,5 @@ def get_identity_group_output(name: Optional[pulumi.Input[str]] = None,
|
|
152
165
|
descriptor=pulumi.get(__response__, 'descriptor'),
|
153
166
|
id=pulumi.get(__response__, 'id'),
|
154
167
|
name=pulumi.get(__response__, 'name'),
|
155
|
-
project_id=pulumi.get(__response__, 'project_id')
|
168
|
+
project_id=pulumi.get(__response__, 'project_id'),
|
169
|
+
subject_descriptor=pulumi.get(__response__, 'subject_descriptor')))
|
@@ -91,7 +91,7 @@ def get_identity_groups(project_id: Optional[str] = None,
|
|
91
91
|
|
92
92
|
## Relevant Links
|
93
93
|
|
94
|
-
- [Azure DevOps Service REST API 7.
|
94
|
+
- [Azure DevOps Service REST API 7.1 - Identities](https://docs.microsoft.com/en-us/rest/api/azure/devops/ims/?view=azure-devops-rest-7.2)
|
95
95
|
|
96
96
|
|
97
97
|
:param str project_id: The Project ID. If no project ID is specified all groups of an organization will be returned
|
@@ -125,7 +125,7 @@ def get_identity_groups_output(project_id: Optional[pulumi.Input[Optional[str]]]
|
|
125
125
|
|
126
126
|
## Relevant Links
|
127
127
|
|
128
|
-
- [Azure DevOps Service REST API 7.
|
128
|
+
- [Azure DevOps Service REST API 7.1 - Identities](https://docs.microsoft.com/en-us/rest/api/azure/devops/ims/?view=azure-devops-rest-7.2)
|
129
129
|
|
130
130
|
|
131
131
|
:param str project_id: The Project ID. If no project ID is specified all groups of an organization will be returned
|
@@ -26,7 +26,7 @@ class GetIdentityUsersResult:
|
|
26
26
|
"""
|
27
27
|
A collection of values returned by getIdentityUsers.
|
28
28
|
"""
|
29
|
-
def __init__(__self__, descriptor=None, id=None, name=None, search_filter=None):
|
29
|
+
def __init__(__self__, descriptor=None, id=None, name=None, search_filter=None, subject_descriptor=None):
|
30
30
|
if descriptor and not isinstance(descriptor, str):
|
31
31
|
raise TypeError("Expected argument 'descriptor' to be a str")
|
32
32
|
pulumi.set(__self__, "descriptor", descriptor)
|
@@ -39,12 +39,15 @@ class GetIdentityUsersResult:
|
|
39
39
|
if search_filter and not isinstance(search_filter, str):
|
40
40
|
raise TypeError("Expected argument 'search_filter' to be a str")
|
41
41
|
pulumi.set(__self__, "search_filter", search_filter)
|
42
|
+
if subject_descriptor and not isinstance(subject_descriptor, str):
|
43
|
+
raise TypeError("Expected argument 'subject_descriptor' to be a str")
|
44
|
+
pulumi.set(__self__, "subject_descriptor", subject_descriptor)
|
42
45
|
|
43
46
|
@property
|
44
47
|
@pulumi.getter
|
45
48
|
def descriptor(self) -> str:
|
46
49
|
"""
|
47
|
-
The
|
50
|
+
The Descriptor of the user.
|
48
51
|
"""
|
49
52
|
return pulumi.get(self, "descriptor")
|
50
53
|
|
@@ -66,6 +69,14 @@ class GetIdentityUsersResult:
|
|
66
69
|
def search_filter(self) -> Optional[str]:
|
67
70
|
return pulumi.get(self, "search_filter")
|
68
71
|
|
72
|
+
@property
|
73
|
+
@pulumi.getter(name="subjectDescriptor")
|
74
|
+
def subject_descriptor(self) -> str:
|
75
|
+
"""
|
76
|
+
The Subject Descriptor of the user.
|
77
|
+
"""
|
78
|
+
return pulumi.get(self, "subject_descriptor")
|
79
|
+
|
69
80
|
|
70
81
|
class AwaitableGetIdentityUsersResult(GetIdentityUsersResult):
|
71
82
|
# pylint: disable=using-constant-test
|
@@ -76,7 +87,8 @@ class AwaitableGetIdentityUsersResult(GetIdentityUsersResult):
|
|
76
87
|
descriptor=self.descriptor,
|
77
88
|
id=self.id,
|
78
89
|
name=self.name,
|
79
|
-
search_filter=self.search_filter
|
90
|
+
search_filter=self.search_filter,
|
91
|
+
subject_descriptor=self.subject_descriptor)
|
80
92
|
|
81
93
|
|
82
94
|
def get_identity_users(name: Optional[str] = None,
|
@@ -99,7 +111,8 @@ def get_identity_users(name: Optional[str] = None,
|
|
99
111
|
descriptor=pulumi.get(__ret__, 'descriptor'),
|
100
112
|
id=pulumi.get(__ret__, 'id'),
|
101
113
|
name=pulumi.get(__ret__, 'name'),
|
102
|
-
search_filter=pulumi.get(__ret__, 'search_filter')
|
114
|
+
search_filter=pulumi.get(__ret__, 'search_filter'),
|
115
|
+
subject_descriptor=pulumi.get(__ret__, 'subject_descriptor'))
|
103
116
|
def get_identity_users_output(name: Optional[pulumi.Input[str]] = None,
|
104
117
|
search_filter: Optional[pulumi.Input[Optional[str]]] = None,
|
105
118
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetIdentityUsersResult]:
|
@@ -119,4 +132,5 @@ def get_identity_users_output(name: Optional[pulumi.Input[str]] = None,
|
|
119
132
|
descriptor=pulumi.get(__response__, 'descriptor'),
|
120
133
|
id=pulumi.get(__response__, 'id'),
|
121
134
|
name=pulumi.get(__response__, 'name'),
|
122
|
-
search_filter=pulumi.get(__response__, 'search_filter')
|
135
|
+
search_filter=pulumi.get(__response__, 'search_filter'),
|
136
|
+
subject_descriptor=pulumi.get(__response__, 'subject_descriptor')))
|
@@ -0,0 +1,133 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from . import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'GetStorageKeyResult',
|
19
|
+
'AwaitableGetStorageKeyResult',
|
20
|
+
'get_storage_key',
|
21
|
+
'get_storage_key_output',
|
22
|
+
]
|
23
|
+
|
24
|
+
@pulumi.output_type
|
25
|
+
class GetStorageKeyResult:
|
26
|
+
"""
|
27
|
+
A collection of values returned by getStorageKey.
|
28
|
+
"""
|
29
|
+
def __init__(__self__, descriptor=None, id=None, storage_key=None):
|
30
|
+
if descriptor and not isinstance(descriptor, str):
|
31
|
+
raise TypeError("Expected argument 'descriptor' to be a str")
|
32
|
+
pulumi.set(__self__, "descriptor", descriptor)
|
33
|
+
if id and not isinstance(id, str):
|
34
|
+
raise TypeError("Expected argument 'id' to be a str")
|
35
|
+
pulumi.set(__self__, "id", id)
|
36
|
+
if storage_key and not isinstance(storage_key, str):
|
37
|
+
raise TypeError("Expected argument 'storage_key' to be a str")
|
38
|
+
pulumi.set(__self__, "storage_key", storage_key)
|
39
|
+
|
40
|
+
@property
|
41
|
+
@pulumi.getter
|
42
|
+
def descriptor(self) -> str:
|
43
|
+
return pulumi.get(self, "descriptor")
|
44
|
+
|
45
|
+
@property
|
46
|
+
@pulumi.getter
|
47
|
+
def id(self) -> str:
|
48
|
+
"""
|
49
|
+
The provider-assigned unique ID for this managed resource.
|
50
|
+
"""
|
51
|
+
return pulumi.get(self, "id")
|
52
|
+
|
53
|
+
@property
|
54
|
+
@pulumi.getter(name="storageKey")
|
55
|
+
def storage_key(self) -> str:
|
56
|
+
"""
|
57
|
+
The Storage Key of the descriptor.
|
58
|
+
"""
|
59
|
+
return pulumi.get(self, "storage_key")
|
60
|
+
|
61
|
+
|
62
|
+
class AwaitableGetStorageKeyResult(GetStorageKeyResult):
|
63
|
+
# pylint: disable=using-constant-test
|
64
|
+
def __await__(self):
|
65
|
+
if False:
|
66
|
+
yield self
|
67
|
+
return GetStorageKeyResult(
|
68
|
+
descriptor=self.descriptor,
|
69
|
+
id=self.id,
|
70
|
+
storage_key=self.storage_key)
|
71
|
+
|
72
|
+
|
73
|
+
def get_storage_key(descriptor: Optional[str] = None,
|
74
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetStorageKeyResult:
|
75
|
+
"""
|
76
|
+
Use this data source to access information about an existing Storage Key.
|
77
|
+
|
78
|
+
## Example Usage
|
79
|
+
|
80
|
+
```python
|
81
|
+
import pulumi
|
82
|
+
import pulumi_azuredevops as azuredevops
|
83
|
+
|
84
|
+
example = azuredevops.get_storage_key(descriptor="aad.000000000000000000000000000000000000")
|
85
|
+
pulumi.export("id", example.id)
|
86
|
+
```
|
87
|
+
|
88
|
+
## Relevant Links
|
89
|
+
|
90
|
+
- [Azure DevOps Service REST API 7.1 - Storage Key - Get](https://learn.microsoft.com/en-us/rest/api/azure/devops/graph/storage-keys/get?view=azure-devops-rest-7.1)
|
91
|
+
|
92
|
+
|
93
|
+
:param str descriptor: The descriptor that will be resolved to a storage key.
|
94
|
+
"""
|
95
|
+
__args__ = dict()
|
96
|
+
__args__['descriptor'] = descriptor
|
97
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
98
|
+
__ret__ = pulumi.runtime.invoke('azuredevops:index/getStorageKey:getStorageKey', __args__, opts=opts, typ=GetStorageKeyResult).value
|
99
|
+
|
100
|
+
return AwaitableGetStorageKeyResult(
|
101
|
+
descriptor=pulumi.get(__ret__, 'descriptor'),
|
102
|
+
id=pulumi.get(__ret__, 'id'),
|
103
|
+
storage_key=pulumi.get(__ret__, 'storage_key'))
|
104
|
+
def get_storage_key_output(descriptor: Optional[pulumi.Input[str]] = None,
|
105
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetStorageKeyResult]:
|
106
|
+
"""
|
107
|
+
Use this data source to access information about an existing Storage Key.
|
108
|
+
|
109
|
+
## Example Usage
|
110
|
+
|
111
|
+
```python
|
112
|
+
import pulumi
|
113
|
+
import pulumi_azuredevops as azuredevops
|
114
|
+
|
115
|
+
example = azuredevops.get_storage_key(descriptor="aad.000000000000000000000000000000000000")
|
116
|
+
pulumi.export("id", example.id)
|
117
|
+
```
|
118
|
+
|
119
|
+
## Relevant Links
|
120
|
+
|
121
|
+
- [Azure DevOps Service REST API 7.1 - Storage Key - Get](https://learn.microsoft.com/en-us/rest/api/azure/devops/graph/storage-keys/get?view=azure-devops-rest-7.1)
|
122
|
+
|
123
|
+
|
124
|
+
:param str descriptor: The descriptor that will be resolved to a storage key.
|
125
|
+
"""
|
126
|
+
__args__ = dict()
|
127
|
+
__args__['descriptor'] = descriptor
|
128
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
129
|
+
__ret__ = pulumi.runtime.invoke_output('azuredevops:index/getStorageKey:getStorageKey', __args__, opts=opts, typ=GetStorageKeyResult)
|
130
|
+
return __ret__.apply(lambda __response__: GetStorageKeyResult(
|
131
|
+
descriptor=pulumi.get(__response__, 'descriptor'),
|
132
|
+
id=pulumi.get(__response__, 'id'),
|
133
|
+
storage_key=pulumi.get(__response__, 'storage_key')))
|