Skip to content

Commit 4b44745

Browse files
authored
copyright headers, copyright headers everywhere
1 parent 7223f81 commit 4b44745

19 files changed

+57
-0
lines changed

sdk/cosmos/azure_data_cosmos/examples/cosmos_metadata.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
14
use azure_data_cosmos::{
25
clients::{ContainerClientMethods, DatabaseClientMethods},
36
CosmosClient, CosmosClientMethods,

sdk/cosmos/azure_data_cosmos/examples/cosmos_query.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
14
use azure_data_cosmos::{
25
clients::{ContainerClientMethods, DatabaseClientMethods},
36
CosmosClient, CosmosClientMethods,

sdk/cosmos/azure_data_cosmos/src/clients/container_client.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
14
use crate::{
25
constants,
36
models::{ContainerProperties, QueryResults},

sdk/cosmos/azure_data_cosmos/src/clients/cosmos_client.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
14
use crate::clients::DatabaseClient;
25
use crate::pipeline::{AuthorizationPolicy, CosmosPipeline};
36
use crate::CosmosClientOptions;

sdk/cosmos/azure_data_cosmos/src/clients/database_client.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
14
use crate::clients::ContainerClient;
25
use crate::models::DatabaseProperties;
36
use crate::options::ReadDatabaseOptions;

sdk/cosmos/azure_data_cosmos/src/clients/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
14
//! Clients used to communicate with Azure Cosmos DB
25
36
mod container_client;

sdk/cosmos/azure_data_cosmos/src/constants.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
14
// Don't spell-check header names (which should start with 'x-').
25
// cSpell:ignoreRegExp /x-[^\s]+/
36

sdk/cosmos/azure_data_cosmos/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
14
#![doc = include_str!("../README.md")]
25
// Docs.rs build is done with the nightly compiler, so we can enable nightly features in that build.
36
// In this case we enable two features:

sdk/cosmos/azure_data_cosmos/src/models/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
14
//! Model types sent to and received from the Cosmos DB API.
25
36
use azure_core::{

sdk/cosmos/azure_data_cosmos/src/options/cosmos_client_options.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
14
use azure_core::{builders::ClientOptionsBuilder, ClientOptions};
25

36
/// Options used when creating a [`CosmosClient`](crate::CosmosClient).

0 commit comments

Comments
 (0)