Michael Fore

Results 3 issues of Michael Fore

I am integrating with a db and we are storing some credentials in there for the calls. But the path doesn't take a dict.

Just opened this because in the PR default comment it asked to create an issue before creating a PR. In short, it would just be nice to have less typing...

type: feature request
api: monitoring
priority: p3
samples

```python from google.cloud import dataproc_v1 config = { "project_id": "...", "cluster_name":"...", "config": { "software_config": { "optional_components": ["ICEBERG"], } } dataproc_v1.ClusterControllerClient().create_cluster( request={ "project_id": self.project_id, "region": self.region, "cluster": cluster_config } ``` was...