stream = datastream_v1alpha1.Stream(
display_name='MySQL to gcs Stream',
source_config = source_config,
destination_config = destination_config,backfill_all=datastream_v1alpha1.Stream.BackfillAllStrategy(),
)
req=datastream_v1alpha1.CreateStreamRequest(parent=parent,stream_id=stream_id,stream=stream,force=True)
stream_response = client.create_stream(request=req)
operation = client.start_stream(name=stream.name)
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
Input In [25], in <cell line: 1>()
----> 1 operation = client.start_stream(name=stream.name)
AttributeError: 'DatastreamClient' object has no attribute 'start_stream'
i am getting this error while using library datastream_v1alpha1, there is no function like start_stream in datastream_v1alpha1 client . so i tried different approach's by updating the stream State to running to start and run the stream, but those approach's are not working. please help me in this issue