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
feat(client-grafana): This release adds tagging support to the Managed Grafana service. New APIs: TagResource, UntagResource and ListTagsForResource. Updates: add optional field tags to support tagging while calling CreateWorkspace.
if(typeofoptionsOrCb!=="object")thrownewError(`Expect http options but get ${typeofoptionsOrCb}`);
345
+
this.send(command,optionsOrCb||{},cb);
346
+
}else{
347
+
returnthis.send(command,optionsOrCb);
348
+
}
349
+
}
350
+
306
351
/**
307
352
* <p>Returns a list of Amazon Managed Grafana workspaces in the account, with some information
308
353
* about each workspace. For more complete information about one workspace, use <a href="https://docs.aws.amazon.com/AAMG/latest/APIReference/API_DescribeWorkspace.html">DescribeWorkspace</a>.</p>
@@ -336,6 +381,69 @@ export class Grafana extends GrafanaClient {
336
381
}
337
382
}
338
383
384
+
/**
385
+
* <p>The <code>TagResource</code> operation associates tags with an Amazon Managed Grafana resource.
386
+
* Currently, the only resource that can be tagged is workspaces. </p>
387
+
* <p>If you specify a new tag key for the resource, this tag is appended to the list of tags associated
388
+
* with the resource. If you specify a tag key that is already associated with the resource, the new tag
389
+
* value that you specify replaces the previous value for that tag.</p>
0 commit comments