Skip to content

Commit 64a118f

Browse files
authored
multi-value query parameters (#63)
* before multi-value query params * multi-value query parameters
1 parent 6c9e9bb commit 64a118f

File tree

140 files changed

+23543
-526
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+23543
-526
lines changed

services/mgmt/advisor/src/package_2017_04/operations.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ pub mod suppressions {
636636
pub async fn list(
637637
operation_config: &crate::OperationConfig,
638638
subscription_id: &str,
639-
top: Option<i64>,
639+
top: Option<i32>,
640640
skip_token: Option<&str>,
641641
) -> std::result::Result<SuppressionContractListResult, list::Error> {
642642
let client = &operation_config.client;

services/mgmt/advisor/src/package_2020_01/operations.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ pub mod suppressions {
703703
pub async fn list(
704704
operation_config: &crate::OperationConfig,
705705
subscription_id: &str,
706-
top: Option<i64>,
706+
top: Option<i32>,
707707
skip_token: Option<&str>,
708708
) -> std::result::Result<SuppressionContractListResult, list::Error> {
709709
let client = &operation_config.client;

services/mgmt/appconfiguration/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ tokio = { version = "0.2", features = ["macros"] }
1616

1717
[features]
1818
default = ["package-2020-06-01"]
19+
"package-2020-07-01-preview" = []
1920
"package-2020-06-01" = []
2021
"package-2019-11-01-preview" = []
2122
"package-2019-02-01-preview" = []

services/mgmt/appconfiguration/src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#![doc = "generated by AutoRust 0.1.0"]
2+
#[cfg(feature = "package-2020-07-01-preview")]
3+
mod package_2020_07_01_preview;
4+
#[cfg(feature = "package-2020-07-01-preview")]
5+
pub use package_2020_07_01_preview::{models, operations, API_VERSION};
26
#[cfg(feature = "package-2020-06-01")]
37
mod package_2020_06_01;
48
#[cfg(feature = "package-2020-06-01")]
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pub mod models;
2+
pub mod operations;
3+
pub const API_VERSION: &str = "2020-07-01-preview";

0 commit comments

Comments
 (0)