|
650 | 650 | ]
|
651 | 651 | }
|
652 | 652 | }
|
| 653 | + }, |
| 654 | + "entitieswithacls": { |
| 655 | + "methods": { |
| 656 | + "list": { |
| 657 | + "description": "Lists entity rows with ACLs of a particular entity type contained in the request. Note: 1. Currently, only max of one 'sort_by' column is supported. 2. If no 'sort_by' column is provided, the primary key of the table is used. If zero or more than one primary key is available, we default to the unpaginated list entities logic which only returns the first page. 3. The values of the 'sort_by' columns must uniquely identify an entity row, otherwise undefined behaviors may be observed during pagination. 4. Since transactions are not supported, any updates, inserts or deletes during pagination can lead to stale data being returned or other unexpected behaviors.", |
| 658 | + "flatPath": "v2/projects/{projectsId}/locations/{locationsId}/connections/{connectionsId}/entityTypes/{entityTypesId}/entitieswithacls", |
| 659 | + "httpMethod": "GET", |
| 660 | + "id": "connectors.projects.locations.connections.entityTypes.entitieswithacls.list", |
| 661 | + "parameterOrder": [ |
| 662 | + "parent" |
| 663 | + ], |
| 664 | + "parameters": { |
| 665 | + "conditions": { |
| 666 | + "description": "Conditions to be used when listing entities. From a proto standpoint, There are no restrictions on what can be passed using this field. The connector documentation should have information about what format of filters/conditions are supported.", |
| 667 | + "location": "query", |
| 668 | + "type": "string" |
| 669 | + }, |
| 670 | + "gsutilUri": { |
| 671 | + "description": "Format: gs://object_path", |
| 672 | + "location": "query", |
| 673 | + "type": "string" |
| 674 | + }, |
| 675 | + "pageSize": { |
| 676 | + "description": "Number of entity rows to return. Defaults page size = 25. Max page size = 200.", |
| 677 | + "format": "int32", |
| 678 | + "location": "query", |
| 679 | + "type": "integer" |
| 680 | + }, |
| 681 | + "pageToken": { |
| 682 | + "description": "Page token value if available from a previous request.", |
| 683 | + "location": "query", |
| 684 | + "type": "string" |
| 685 | + }, |
| 686 | + "parent": { |
| 687 | + "description": "Required. Resource name of the Entity Type. Format: projects/{project}/locations/{location}/connections/{connection}/entityTypes/{type}", |
| 688 | + "location": "path", |
| 689 | + "pattern": "^projects/[^/]+/locations/[^/]+/connections/[^/]+/entityTypes/[^/]+$", |
| 690 | + "required": true, |
| 691 | + "type": "string" |
| 692 | + }, |
| 693 | + "sortBy": { |
| 694 | + "description": "List of 'sort_by' columns to use when returning the results.", |
| 695 | + "location": "query", |
| 696 | + "repeated": true, |
| 697 | + "type": "string" |
| 698 | + } |
| 699 | + }, |
| 700 | + "path": "v2/{+parent}/entitieswithacls", |
| 701 | + "response": { |
| 702 | + "$ref": "ListEntitiesWithACLsResponse" |
| 703 | + }, |
| 704 | + "scopes": [ |
| 705 | + "https://www.googleapis.com/auth/cloud-platform" |
| 706 | + ] |
| 707 | + } |
| 708 | + } |
653 | 709 | }
|
654 | 710 | }
|
655 | 711 | }
|
|
660 | 716 | }
|
661 | 717 | }
|
662 | 718 | },
|
663 |
| - "revision": "20240415", |
| 719 | + "revision": "20240529", |
664 | 720 | "rootUrl": "https://connectors.googleapis.com/",
|
665 | 721 | "schemas": {
|
666 | 722 | "AccessCredentials": {
|
|
683 | 739 | },
|
684 | 740 | "type": "object"
|
685 | 741 | },
|
| 742 | + "AclInfo": { |
| 743 | + "description": "AclInfo has a list of readers for a resource. This is defined as per the below docs https://cloud.google.com/generative-ai-app-builder/docs/reference/rest/v1alpha/projects.locations.collections.dataStores.branches.documents#aclinfo", |
| 744 | + "id": "AclInfo", |
| 745 | + "properties": { |
| 746 | + "readers": { |
| 747 | + "description": "A list of readers for a resource.", |
| 748 | + "items": { |
| 749 | + "$ref": "Readers" |
| 750 | + }, |
| 751 | + "type": "array" |
| 752 | + } |
| 753 | + }, |
| 754 | + "type": "object" |
| 755 | + }, |
686 | 756 | "Action": {
|
687 | 757 | "description": "Action message contains metadata information about a single action present in the external system.",
|
688 | 758 | "id": "Action",
|
|
887 | 957 | },
|
888 | 958 | "type": "object"
|
889 | 959 | },
|
| 960 | + "EntityWithACL": { |
| 961 | + "description": "EntityWithACL refers to a single row of an entity type with ACL information.", |
| 962 | + "id": "EntityWithACL", |
| 963 | + "properties": { |
| 964 | + "acl_info": { |
| 965 | + "$ref": "AclInfo", |
| 966 | + "description": "ACL information of the entity." |
| 967 | + }, |
| 968 | + "id": { |
| 969 | + "readOnly": true, |
| 970 | + "type": "string" |
| 971 | + }, |
| 972 | + "jsonData": { |
| 973 | + "description": "Entity data in JSON format.", |
| 974 | + "type": "string" |
| 975 | + } |
| 976 | + }, |
| 977 | + "type": "object" |
| 978 | + }, |
890 | 979 | "ExchangeAuthCodeRequest": {
|
891 | 980 | "description": "ExchangeAuthCodeRequest currently includes no fields.",
|
892 | 981 | "id": "ExchangeAuthCodeRequest",
|
|
1703 | 1792 | },
|
1704 | 1793 | "type": "object"
|
1705 | 1794 | },
|
| 1795 | + "ListEntitiesWithACLsResponse": { |
| 1796 | + "description": "Response message for EntityService.ListEntitiesWithACLs", |
| 1797 | + "id": "ListEntitiesWithACLsResponse", |
| 1798 | + "properties": { |
| 1799 | + "entitiesWithAcl": { |
| 1800 | + "description": "List containing entity rows.", |
| 1801 | + "items": { |
| 1802 | + "$ref": "EntityWithACL" |
| 1803 | + }, |
| 1804 | + "type": "array" |
| 1805 | + }, |
| 1806 | + "nextPageToken": { |
| 1807 | + "description": "Next page token if more records are available.", |
| 1808 | + "type": "string" |
| 1809 | + } |
| 1810 | + }, |
| 1811 | + "type": "object" |
| 1812 | + }, |
1706 | 1813 | "ListEntityTypesResponse": {
|
1707 | 1814 | "description": "Response message for EntityService.ListEntityTypes",
|
1708 | 1815 | "id": "ListEntityTypesResponse",
|
|
1893 | 2000 | },
|
1894 | 2001 | "type": "object"
|
1895 | 2002 | },
|
| 2003 | + "Principal": { |
| 2004 | + "description": "Principal is a user or group that has access to a resource.", |
| 2005 | + "id": "Principal", |
| 2006 | + "properties": { |
| 2007 | + "group_id": { |
| 2008 | + "description": "The group that has access to a resource.", |
| 2009 | + "type": "string" |
| 2010 | + }, |
| 2011 | + "user_id": { |
| 2012 | + "description": "The user that has access to a resource.", |
| 2013 | + "type": "string" |
| 2014 | + } |
| 2015 | + }, |
| 2016 | + "type": "object" |
| 2017 | + }, |
1896 | 2018 | "ProvisionedResource": {
|
1897 | 2019 | "description": "Describes provisioned dataplane resources.",
|
1898 | 2020 | "id": "ProvisionedResource",
|
|
2090 | 2212 | },
|
2091 | 2213 | "type": "object"
|
2092 | 2214 | },
|
| 2215 | + "Readers": { |
| 2216 | + "description": "Readers is a list of principals that have read access to a resource.", |
| 2217 | + "id": "Readers", |
| 2218 | + "properties": { |
| 2219 | + "principals": { |
| 2220 | + "description": "A list of principals that have read access to a resource.", |
| 2221 | + "items": { |
| 2222 | + "$ref": "Principal" |
| 2223 | + }, |
| 2224 | + "type": "array" |
| 2225 | + } |
| 2226 | + }, |
| 2227 | + "type": "object" |
| 2228 | + }, |
2093 | 2229 | "Reference": {
|
2094 | 2230 | "id": "Reference",
|
2095 | 2231 | "properties": {
|
|
0 commit comments