Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Transcoding Error Improvements #441

Closed
Labels
priority: p1Important issue which blocks shipping the next release. Will be fixed prior to next release.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.
@parthea

Description

@parthea

raiseValueError(
"Request {} does not match any URL path template in available HttpRule's {}".format(
request_kwargs, [opt["uri"]foroptinhttp_options]
)

The transcoding error above should be improved to provide more helpful information when there is a transcoding issue. For example, given the code below which is missing theinstance_group parameter, the error message should say something along the lines ofmissing required parameter instance_group instead of the cryptic errorRequest {} does not match any URL path template in available HttpRule's ['/compute/v1/projects/{project}/zones/{zone}/instanceGroups/{instance_group}/listInstances']. In addition, it's not desirable to echo the parameters in the error message.

from google.cloud import compute_v1project = "project-XXX"zone = "us-central1-a"instance_groups_list_instances_request_resource = compute_v1.InstanceGroupsListInstancesRequest()instance_groups_list_instances_request_resource.instance_state = "RUNNING"instance_groups_client = compute_v1.InstanceGroupsClient()instance_groups_list = instance_groups_client.list_instances(project=project, zone=zone,  instance_groups_list_instances_request_resource=instance_groups_list_instances_request_resource)for instance in instance_groups_list:    print(instance.name, instance.labels)

Metadata

Metadata

Assignees

No one assigned

    Labels

    priority: p1Important issue which blocks shipping the next release. Will be fixed prior to next release.type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions


      [8]ページ先頭

      ©2009-2025 Movatter.jp