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
{{ message }}
This repository was archived by the owner on Mar 26, 2026. It is now read-only.
Mock values generated for resource paths currently look like this: (see #941):
asyncdefsample_delete_feed():
"""Snippet for delete_feed"""# Create a clientclient=asset_v1.AssetServiceAsyncClient()
# Initialize request argument(s)request=asset_v1.DeleteFeedRequest(
name="projects/{project}/feeds/{feed}",
To make it easier to understand how the string should be filled, it should be turned into a f-string with separate variables in the "initialize request argument(s) section".
asyncdefsample_delete_feed():
"""Snippet for delete_feed"""# Create a clientclient=asset_v1.AssetServiceAsyncClient()
# Initialize request argument(s)project="my-project"feed="my-feed"request=asset_v1.DeleteFeedRequest(
name=f"projects/{project}/feeds/{feed}",