diff --git a/docs/dyn/dataform_v1beta1.projects.locations.html b/docs/dyn/dataform_v1beta1.projects.locations.html index 52157dbde8f..51d526c18eb 100644 --- a/docs/dyn/dataform_v1beta1.projects.locations.html +++ b/docs/dyn/dataform_v1beta1.projects.locations.html @@ -111,7 +111,7 @@

Method Details

Returns: An object of the form: - { # A resource that represents Google Cloud Platform location. + { # A resource that represents a Google Cloud location. "displayName": "A String", # The friendly name for this location, typically a nearby city name. For example, "Tokyo". "labels": { # Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} "a_key": "A String", @@ -143,7 +143,7 @@

Method Details

{ # The response message for Locations.ListLocations. "locations": [ # A list of locations that matches the specified filter in the request. - { # A resource that represents Google Cloud Platform location. + { # A resource that represents a Google Cloud location. "displayName": "A String", # The friendly name for this location, typically a nearby city name. For example, "Tokyo". "labels": { # Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} "a_key": "A String", diff --git a/docs/dyn/dataform_v1beta1.projects.locations.repositories.html b/docs/dyn/dataform_v1beta1.projects.locations.repositories.html index 2245d5101f0..8482a0a6e4b 100644 --- a/docs/dyn/dataform_v1beta1.projects.locations.repositories.html +++ b/docs/dyn/dataform_v1beta1.projects.locations.repositories.html @@ -102,6 +102,9 @@

Instance Methods

close()

Close httplib2 connections.

+

+ computeAccessTokenStatus(name, x__xgafv=None)

+

Computes a Repository's Git access token status.

create(parent, body=None, repositoryId=None, x__xgafv=None)

Creates a new Repository in a given project and location.

@@ -138,6 +141,25 @@

Method Details

Close httplib2 connections.
+
+ computeAccessTokenStatus(name, x__xgafv=None) +
Computes a Repository's Git access token status.
+
+Args:
+  name: string, Required. The repository's name. (required)
+  x__xgafv: string, V1 error format.
+    Allowed values
+      1 - v1 error format
+      2 - v2 error format
+
+Returns:
+  An object of the form:
+
+    { # `ComputeRepositoryAccessTokenStatus` response message.
+  "tokenStatus": "A String", # Indicates the status of the Git access token.
+}
+
+
create(parent, body=None, repositoryId=None, x__xgafv=None)
Creates a new Repository in a given project and location.
diff --git a/googleapiclient/discovery_cache/documents/dataform.v1beta1.json b/googleapiclient/discovery_cache/documents/dataform.v1beta1.json
index 625babf5340..3ec1cda00c5 100644
--- a/googleapiclient/discovery_cache/documents/dataform.v1beta1.json
+++ b/googleapiclient/discovery_cache/documents/dataform.v1beta1.json
@@ -178,6 +178,31 @@
           "resources": {
             "repositories": {
               "methods": {
+                "computeAccessTokenStatus": {
+                  "description": "Computes a Repository's Git access token status.",
+                  "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/repositories/{repositoriesId}:computeAccessTokenStatus",
+                  "httpMethod": "GET",
+                  "id": "dataform.projects.locations.repositories.computeAccessTokenStatus",
+                  "parameterOrder": [
+                    "name"
+                  ],
+                  "parameters": {
+                    "name": {
+                      "description": "Required. The repository's name.",
+                      "location": "path",
+                      "pattern": "^projects/[^/]+/locations/[^/]+/repositories/[^/]+$",
+                      "required": true,
+                      "type": "string"
+                    }
+                  },
+                  "path": "v1beta1/{+name}:computeAccessTokenStatus",
+                  "response": {
+                    "$ref": "ComputeRepositoryAccessTokenStatusResponse"
+                  },
+                  "scopes": [
+                    "https://www.googleapis.com/auth/cloud-platform"
+                  ]
+                },
                 "create": {
                   "description": "Creates a new Repository in a given project and location.",
                   "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/repositories",
@@ -1791,7 +1816,7 @@
       }
     }
   },
-  "revision": "20230408",
+  "revision": "20230512",
   "rootUrl": "https://dataform.googleapis.com/",
   "schemas": {
     "Assertion": {
@@ -2083,6 +2108,29 @@
       },
       "type": "object"
     },
+    "ComputeRepositoryAccessTokenStatusResponse": {
+      "description": "`ComputeRepositoryAccessTokenStatus` response message.",
+      "id": "ComputeRepositoryAccessTokenStatusResponse",
+      "properties": {
+        "tokenStatus": {
+          "description": "Indicates the status of the Git access token.",
+          "enum": [
+            "TOKEN_STATUS_UNSPECIFIED",
+            "NOT_FOUND",
+            "INVALID",
+            "VALID"
+          ],
+          "enumDescriptions": [
+            "Default value. This value is unused.",
+            "The token could not be found in Secret Manager (or the Dataform Service Account did not have permission to access it).",
+            "The token could not be used to authenticate against the Git remote.",
+            "The token was used successfully to authenticate against the Git remote."
+          ],
+          "type": "string"
+        }
+      },
+      "type": "object"
+    },
     "Declaration": {
       "description": "Represents a relation which is not managed by Dataform but which may be referenced by Dataform actions.",
       "id": "Declaration",
@@ -2501,7 +2549,7 @@
       "type": "object"
     },
     "Location": {
-      "description": "A resource that represents Google Cloud Platform location.",
+      "description": "A resource that represents a Google Cloud location.",
       "id": "Location",
       "properties": {
         "displayName": {