* Audience remove scope * update record * update test * Update sdk/storage/azure-storage-common/src/storage_credential.cpp Co-authored-by: JinmingHu <jinmhu@microsoft.com> --------- Co-authored-by: JinmingHu <jinmhu@microsoft.com>
18 lines
597 B
C++
18 lines
597 B
C++
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
#include "azure/storage/queues/queue_options.hpp"
|
|
|
|
namespace Azure { namespace Storage { namespace Queues {
|
|
|
|
namespace Models {
|
|
|
|
const QueueAudience QueueAudience::PublicAudience(_internal::StoragePublicAudience);
|
|
} // namespace Models
|
|
|
|
const ServiceVersion ServiceVersion::V2018_03_28(std::string("2018-03-28"));
|
|
const ServiceVersion ServiceVersion::V2019_12_12(std::string("2019-12-12"));
|
|
const std::chrono::seconds EnqueueMessageOptions::MessageNeverExpires{-1};
|
|
|
|
}}} // namespace Azure::Storage::Queues
|