Skip to content

Commit 1ef1b3b

Browse files
committed
init commit
0 parents  commit 1ef1b3b

File tree

5,464 files changed

+324325
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,464 files changed

+324325
-0
lines changed

.dart_tool/pub/bin/sdk-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.4.1
23.5 MB
Binary file not shown.

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# See https://www.dartlang.org/tools/private-files.html
2+
3+
# Files and directories created by pub
4+
.buildlog
5+
.packages
6+
.project
7+
.pub/
8+
build/
9+
**/packages/
10+
11+
# Files created by dart2js
12+
# (Most Dart developers will use pub build to compile Dart, use/modify these
13+
# rules if you intend to use dart2js directly
14+
# Convention is to use extension '.dart.js' for Dart compiled to Javascript to
15+
# differentiate from explicit Javascript files)
16+
*.dart.js
17+
*.part.js
18+
*.js.deps
19+
*.js.map
20+
*.info.json
21+
22+
# Directory created by dartdoc
23+
doc/api/
24+
25+
# Don't commit pubspec lock file
26+
# (Library packages only! Remove pattern if developing an application package)
27+
pubspec.lock

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Cameron Sowder
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 2485 additions & 0 deletions
Large diffs are not rendered by default.

doc/AadOauthTokenRequest.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# azure_devops_sdk.model.AadOauthTokenRequest
2+
3+
## Load the model package
4+
```dart
5+
import 'package:azure_devops_sdk/api.dart';
6+
```
7+
8+
## Properties
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**refresh** | **bool** | | [optional] [default to null]
12+
**resource** | **String** | | [optional] [default to null]
13+
**tenantId** | **String** | | [optional] [default to null]
14+
**token** | **String** | | [optional] [default to null]
15+
16+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
17+
18+

doc/AadOauthTokenResult.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# azure_devops_sdk.model.AadOauthTokenResult
2+
3+
## Load the model package
4+
```dart
5+
import 'package:azure_devops_sdk/api.dart';
6+
```
7+
8+
## Properties
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**accessToken** | **String** | | [optional] [default to null]
12+
**refreshTokenCache** | **String** | | [optional] [default to null]
13+
14+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
15+
16+

doc/AbortTestRunRequest.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# azure_devops_sdk.model.AbortTestRunRequest
2+
3+
## Load the model package
4+
```dart
5+
import 'package:azure_devops_sdk/api.dart';
6+
```
7+
8+
## Properties
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**options** | **int** | | [optional] [default to null]
12+
**projectName** | **String** | | [optional] [default to null]
13+
**revision** | **int** | | [optional] [default to null]
14+
**testRunId** | **int** | | [optional] [default to null]
15+
16+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
17+
18+

doc/AccessControlEntriesApi.md

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
# azure_devops_sdk.api.AccessControlEntriesApi
2+
3+
## Load the API package
4+
```dart
5+
import 'package:azure_devops_sdk/api.dart';
6+
```
7+
8+
All URIs are relative to *https://app.vssps.visualstudio.com*
9+
10+
Method | HTTP request | Description
11+
------------- | ------------- | -------------
12+
[**remove Access Control Entries**](AccessControlEntriesApi.md#remove Access Control Entries) | **DELETE** /{organization}/_apis/accesscontrolentries/{securityNamespaceId} |
13+
[**set Access Control Entries**](AccessControlEntriesApi.md#set Access Control Entries) | **POST** /{organization}/_apis/accesscontrolentries/{securityNamespaceId} |
14+
15+
16+
# **remove Access Control Entries**
17+
> bool remove Access Control Entries(securityNamespaceId, organization, apiVersion, token, descriptors)
18+
19+
20+
21+
Remove the specified ACEs from the ACL belonging to the specified token.
22+
23+
### Example
24+
```dart
25+
import 'package:azure_devops_sdk/api.dart';
26+
// TODO Configure OAuth2 access token for authorization: oauth2
27+
//defaultApiClient.getAuthentication<OAuth>('oauth2').accessToken = 'YOUR_ACCESS_TOKEN';
28+
29+
var api_instance = AccessControlEntriesApi();
30+
var securityNamespaceId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String | Security namespace identifier.
31+
var organization = organization_example; // String | The name of the Azure DevOps organization.
32+
var apiVersion = apiVersion_example; // String | Version of the API to use. This should be set to '5.1' to use this version of the api.
33+
var token = token_example; // String | The token whose ACL should be modified.
34+
var descriptors = descriptors_example; // String | String containing a list of identity descriptors separated by ',' whose entries should be removed.
35+
36+
try {
37+
var result = api_instance.remove Access Control Entries(securityNamespaceId, organization, apiVersion, token, descriptors);
38+
print(result);
39+
} catch (e) {
40+
print("Exception when calling AccessControlEntriesApi->remove Access Control Entries: $e\n");
41+
}
42+
```
43+
44+
### Parameters
45+
46+
Name | Type | Description | Notes
47+
------------- | ------------- | ------------- | -------------
48+
**securityNamespaceId** | [**String**](.md)| Security namespace identifier. | [default to null]
49+
**organization** | **String**| The name of the Azure DevOps organization. | [default to null]
50+
**apiVersion** | **String**| Version of the API to use. This should be set to &#39;5.1&#39; to use this version of the api. | [default to null]
51+
**token** | **String**| The token whose ACL should be modified. | [optional] [default to null]
52+
**descriptors** | **String**| String containing a list of identity descriptors separated by &#39;,&#39; whose entries should be removed. | [optional] [default to null]
53+
54+
### Return type
55+
56+
**bool**
57+
58+
### Authorization
59+
60+
[oauth2](../README.md#oauth2)
61+
62+
### HTTP request headers
63+
64+
- **Content-Type**: Not defined
65+
- **Accept**: application/json
66+
67+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
68+
69+
# **set Access Control Entries**
70+
> List<AccessControlEntry> set Access Control Entries(securityNamespaceId, organization, apiVersion, body)
71+
72+
73+
74+
Add or update ACEs in the ACL for the provided token. The request body contains the target token, a list of [ACEs](https://docs.microsoft.com/en-us/rest/api/azure/devops/security/access%20control%20entries/set%20access%20control%20entries?#accesscontrolentry) and a optional merge parameter. In the case of a collision (by identity descriptor) with an existing ACE in the ACL, the \"merge\" parameter determines the behavior. If set, the existing ACE has its allow and deny merged with the incoming ACE's allow and deny. If unset, the existing ACE is displaced.
75+
76+
### Example
77+
```dart
78+
import 'package:azure_devops_sdk/api.dart';
79+
// TODO Configure OAuth2 access token for authorization: oauth2
80+
//defaultApiClient.getAuthentication<OAuth>('oauth2').accessToken = 'YOUR_ACCESS_TOKEN';
81+
82+
var api_instance = AccessControlEntriesApi();
83+
var securityNamespaceId = 38400000-8cf0-11bd-b23e-10b96e4ef00d; // String | Security namespace identifier.
84+
var organization = organization_example; // String | The name of the Azure DevOps organization.
85+
var apiVersion = apiVersion_example; // String | Version of the API to use. This should be set to '5.1' to use this version of the api.
86+
var body = JObject(); // JObject |
87+
88+
try {
89+
var result = api_instance.set Access Control Entries(securityNamespaceId, organization, apiVersion, body);
90+
print(result);
91+
} catch (e) {
92+
print("Exception when calling AccessControlEntriesApi->set Access Control Entries: $e\n");
93+
}
94+
```
95+
96+
### Parameters
97+
98+
Name | Type | Description | Notes
99+
------------- | ------------- | ------------- | -------------
100+
**securityNamespaceId** | [**String**](.md)| Security namespace identifier. | [default to null]
101+
**organization** | **String**| The name of the Azure DevOps organization. | [default to null]
102+
**apiVersion** | **String**| Version of the API to use. This should be set to &#39;5.1&#39; to use this version of the api. | [default to null]
103+
**body** | [**JObject**](JObject.md)| |
104+
105+
### Return type
106+
107+
[**List<AccessControlEntry>**](AccessControlEntry.md)
108+
109+
### Authorization
110+
111+
[oauth2](../README.md#oauth2)
112+
113+
### HTTP request headers
114+
115+
- **Content-Type**: application/json
116+
- **Accept**: application/json
117+
118+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
119+

doc/AccessControlEntry.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# azure_devops_sdk.model.AccessControlEntry
2+
3+
## Load the model package
4+
```dart
5+
import 'package:azure_devops_sdk/api.dart';
6+
```
7+
8+
## Properties
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**allow** | **int** | The set of permission bits that represent the actions that the associated descriptor is allowed to perform. | [optional] [default to null]
12+
**deny** | **int** | The set of permission bits that represent the actions that the associated descriptor is not allowed to perform. | [optional] [default to null]
13+
**descriptor** | [**IdentityDescriptor**](IdentityDescriptor.md) | | [optional] [default to null]
14+
**extendedInfo** | [**AceExtendedInformation**](AceExtendedInformation.md) | | [optional] [default to null]
15+
16+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
17+
18+

doc/AccessControlList.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# azure_devops_sdk.model.AccessControlList
2+
3+
## Load the model package
4+
```dart
5+
import 'package:azure_devops_sdk/api.dart';
6+
```
7+
8+
## Properties
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**acesDictionary** | [**Map&lt;String, AccessControlEntry&gt;**](AccessControlEntry.md) | Storage of permissions keyed on the identity the permission is for. | [optional] [default to {}]
12+
**includeExtendedInfo** | **bool** | True if this ACL holds ACEs that have extended information. | [optional] [default to null]
13+
**inheritPermissions** | **bool** | True if the given token inherits permissions from parents. | [optional] [default to null]
14+
**token** | **String** | The token that this AccessControlList is for. | [optional] [default to null]
15+
16+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
17+
18+

0 commit comments

Comments
 (0)