Skip to content

Commit c7f1614

Browse files
authoredJun 3, 2024··
feat(all): auto-regenerate discovery clients (#2619)
1 parent 08fdd71 commit c7f1614

24 files changed

+4141
-869
lines changed
 

‎aiplatform/v1/aiplatform-api.json

+433-153
Large diffs are not rendered by default.

‎aiplatform/v1/aiplatform-gen.go

+530-111
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎aiplatform/v1beta1/aiplatform-api.json

+802-199
Large diffs are not rendered by default.

‎aiplatform/v1beta1/aiplatform-gen.go

+1,554-236
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎backupdr/v1/backupdr-api.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@
535535
}
536536
}
537537
},
538-
"revision": "20240508",
538+
"revision": "20240522",
539539
"rootUrl": "https://backupdr.googleapis.com/",
540540
"schemas": {
541541
"AuditConfig": {
@@ -793,6 +793,16 @@
793793
"readOnly": true,
794794
"type": "string"
795795
},
796+
"satisfiesPzi": {
797+
"description": "Output only. Reserved for future use.",
798+
"readOnly": true,
799+
"type": "boolean"
800+
},
801+
"satisfiesPzs": {
802+
"description": "Output only. Reserved for future use.",
803+
"readOnly": true,
804+
"type": "boolean"
805+
},
796806
"state": {
797807
"description": "Output only. The ManagementServer state.",
798808
"enum": [

‎backupdr/v1/backupdr-gen.go

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎connectors/v1/connectors-api.json

+14-1
Original file line numberDiff line numberDiff line change
@@ -2427,7 +2427,7 @@
24272427
}
24282428
}
24292429
},
2430-
"revision": "20240504",
2430+
"revision": "20240529",
24312431
"rootUrl": "https://connectors.googleapis.com/",
24322432
"schemas": {
24332433
"AuditConfig": {
@@ -3103,6 +3103,11 @@
31033103
"description": "Connectors indicates a specific connector type, e.x. Salesforce, SAP etc.",
31043104
"id": "Connector",
31053105
"properties": {
3106+
"category": {
3107+
"description": "Output only. Category of the connector.",
3108+
"readOnly": true,
3109+
"type": "string"
3110+
},
31063111
"createTime": {
31073112
"description": "Output only. Created time.",
31083113
"format": "google-datetime",
@@ -3166,6 +3171,14 @@
31663171
"readOnly": true,
31673172
"type": "string"
31683173
},
3174+
"tags": {
3175+
"description": "Output only. Tags of the connector.",
3176+
"items": {
3177+
"type": "string"
3178+
},
3179+
"readOnly": true,
3180+
"type": "array"
3181+
},
31693182
"updateTime": {
31703183
"description": "Output only. Updated time.",
31713184
"format": "google-datetime",

‎connectors/v1/connectors-gen.go

+6-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎connectors/v2/connectors-api.json

+137-1
Original file line numberDiff line numberDiff line change
@@ -650,6 +650,62 @@
650650
]
651651
}
652652
}
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+
}
653709
}
654710
}
655711
}
@@ -660,7 +716,7 @@
660716
}
661717
}
662718
},
663-
"revision": "20240415",
719+
"revision": "20240529",
664720
"rootUrl": "https://connectors.googleapis.com/",
665721
"schemas": {
666722
"AccessCredentials": {
@@ -683,6 +739,20 @@
683739
},
684740
"type": "object"
685741
},
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+
},
686756
"Action": {
687757
"description": "Action message contains metadata information about a single action present in the external system.",
688758
"id": "Action",
@@ -887,6 +957,25 @@
887957
},
888958
"type": "object"
889959
},
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+
},
890979
"ExchangeAuthCodeRequest": {
891980
"description": "ExchangeAuthCodeRequest currently includes no fields.",
892981
"id": "ExchangeAuthCodeRequest",
@@ -1703,6 +1792,24 @@
17031792
},
17041793
"type": "object"
17051794
},
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+
},
17061813
"ListEntityTypesResponse": {
17071814
"description": "Response message for EntityService.ListEntityTypes",
17081815
"id": "ListEntityTypesResponse",
@@ -1893,6 +2000,21 @@
18932000
},
18942001
"type": "object"
18952002
},
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+
},
18962018
"ProvisionedResource": {
18972019
"description": "Describes provisioned dataplane resources.",
18982020
"id": "ProvisionedResource",
@@ -2090,6 +2212,20 @@
20902212
},
20912213
"type": "object"
20922214
},
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+
},
20932229
"Reference": {
20942230
"id": "Reference",
20952231
"properties": {

0 commit comments

Comments
 (0)
Please sign in to comment.