-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Excavator: Upgrade API Version (#77)
- Loading branch information
1 parent
6ae589a
commit fcd5603
Showing
209 changed files
with
4,088 additions
and
249 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
**/__pycache__ | ||
*.pyc | ||
tmp | ||
|
||
# IntelliJ | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# DeleteInterfaceObjectRule | ||
|
||
DeleteInterfaceObjectRule | ||
|
||
## Properties | ||
| Name | Type | Required | Description | | ||
| ------------ | ------------- | ------------- | ------------- | | ||
**interface_type_api_name** | InterfaceTypeApiName | Yes | | | ||
**type** | Literal["deleteInterfaceObject"] | Yes | None | | ||
|
||
|
||
[[Back to Model list]](../../../../README.md#models-v1-link) [[Back to API list]](../../../../README.md#apis-v1-link) [[Back to README]](../../../../README.md) |
12 changes: 12 additions & 0 deletions
12
docs/v1/ontologies/models/DeleteInterfaceObjectRuleDict.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# DeleteInterfaceObjectRuleDict | ||
|
||
DeleteInterfaceObjectRule | ||
|
||
## Properties | ||
| Name | Type | Required | Description | | ||
| ------------ | ------------- | ------------- | ------------- | | ||
**interfaceTypeApiName** | InterfaceTypeApiName | Yes | | | ||
**type** | Literal["deleteInterfaceObject"] | Yes | None | | ||
|
||
|
||
[[Back to Model list]](../../../../README.md#models-v1-link) [[Back to API list]](../../../../README.md#apis-v1-link) [[Back to README]](../../../../README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# InterfaceTypeApiName | ||
|
||
The name of the interface type in the API in UpperCamelCase format. To find the API name for your interface | ||
type, use the `List interface types` endpoint or check the **Ontology Manager**. | ||
|
||
|
||
## Type | ||
```python | ||
pydantic.StrictStr | ||
``` | ||
|
||
|
||
[[Back to Model list]](../../../../README.md#models-v1-link) [[Back to API list]](../../../../README.md#apis-v1-link) [[Back to README]](../../../../README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,17 @@ foundry_client = FoundryClient( | |
) | ||
|
||
# Dict[AttributeName, AttributeValues] | A map of the Group's attributes. Attributes prefixed with "multipass:" are reserved for internal use by Foundry and are subject to change. | ||
attributes = None | ||
attributes = { | ||
"multipass:givenName": ["John"], | ||
"multipass:familyName": ["Smith"], | ||
"multipass:email:primary": ["[email protected]"], | ||
"multipass:realm": ["eab0a251-ca1a-4a84-a482-200edfb8026f"], | ||
"multipass:organization-rid": [ | ||
"ri.multipass..organization.c30ee6ad-b5e4-4afe-a74f-fe4a289f2faa" | ||
], | ||
"department": ["Finance"], | ||
"jobTitle": ["Accountant"], | ||
} | ||
# GroupName | The name of the Group. | ||
name = "Data Source Admins" | ||
# List[OrganizationRid] | The RIDs of the Organizations whose members can see this group. At least one Organization RID must be listed. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.