With the Secret Manager API, unless I provide an empty `automatic` object to `replication`, like so: ```js const secret = await client.createSecret({ parent: 'projects/1111111', secret: { name: 'foo', replication: { automatic: {} } }, secretId: 'foo' }) ``` I receive: ```bash INVALID_ARGUMENT: Secret.replication must be provided. ``` ☝️ an empty object feels like a weird interpretation of the protos?
With the Secret Manager API, unless I provide an empty
automaticobject toreplication, like so:I receive:
☝️ an empty object feels like a weird interpretation of the protos?