We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f49baf0 commit 9584eb3Copy full SHA for 9584eb3
src/notification-hub/azext_notification_hub/aaz/latest/notification_hub/credential/gcm/_create.py
@@ -92,7 +92,9 @@ def post_instance_create(self, instance):
92
pass
93
94
def _output(self, *args, **kwargs):
95
- result = self.deserialize_output(self.ctx.selectors.subresource.required(), client_flatten=True)
+ result = self.deserialize_output(self.ctx.selectors.subresource.get(), client_flatten=True)
96
+ if result is None or result == AAZUndefined:
97
+ return {}
98
return result
99
100
class SubresourceSelector(AAZJsonSelector):
0 commit comments