You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"launchStage": "A String", # Output only. Flag to mark the version indicating the launch stage.
136
137
"name": "A String", # Output only. Resource name of the Connector. Format: projects/{project}/locations/{location}/providers/{provider}/connectors/{connector} Only global location is supported for Connector resource.
138
+
"tags": [ # Output only. Tags of the connector.
"launchStage": "A String", # Output only. Flag to mark the version indicating the launch stage.
183
188
"name": "A String", # Output only. Resource name of the Connector. Format: projects/{project}/locations/{location}/providers/{provider}/connectors/{connector} Only global location is supported for Connector resource.
189
+
"tags": [ # Output only. Tags of the connector.
<pclass="firstline">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.</p>
<pre>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.
95
+
96
+
Args:
97
+
parent: string, Required. Resource name of the Entity Type. Format: projects/{project}/locations/{location}/connections/{connection}/entityTypes/{type} (required)
98
+
conditions: string, 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.
99
+
gsutilUri: string, Format: gs://object_path
100
+
pageSize: integer, Number of entity rows to return. Defaults page size = 25. Max page size = 200.
101
+
pageToken: string, Page token value if available from a previous request.
102
+
sortBy: string, List of 'sort_by' columns to use when returning the results. (repeated)
103
+
x__xgafv: string, V1 error format.
104
+
Allowed values
105
+
1 - v1 error format
106
+
2 - v2 error format
107
+
108
+
Returns:
109
+
An object of the form:
110
+
111
+
{ # Response message for EntityService.ListEntitiesWithACLs
112
+
"entitiesWithAcl": [ # List containing entity rows.
113
+
{ # EntityWithACL refers to a single row of an entity type with ACL information.
114
+
"acl_info": { # 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 # ACL information of the entity.
115
+
"readers": [ # A list of readers for a resource.
116
+
{ # Readers is a list of principals that have read access to a resource.
117
+
"principals": [ # A list of principals that have read access to a resource.
118
+
{ # Principal is a user or group that has access to a resource.
119
+
"group_id": "A String", # The group that has access to a resource.
120
+
"user_id": "A String", # The user that has access to a resource.
121
+
},
122
+
],
123
+
},
124
+
],
125
+
},
126
+
"id": "A String",
127
+
"jsonData": "A String", # Entity data in JSON format.
128
+
},
129
+
],
130
+
"nextPageToken": "A String", # Next page token if more records are available.
0 commit comments