Skip to content

Commit

Permalink
Sep release (#159)
Browse files Browse the repository at this point in the history
* network Tokenization changes

* sep release

* version update
  • Loading branch information
monu-kumar-visa authored Oct 6, 2023
1 parent 59d6e7f commit afdff65
Show file tree
Hide file tree
Showing 329 changed files with 11,061 additions and 4,561 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -190,3 +190,4 @@ $RECYCLE.BIN/
build.bat
git_push.sh
mono_nunit_test.sh
.vs/
176 changes: 88 additions & 88 deletions Api/BatchesApi.cs

Large diffs are not rendered by default.

544 changes: 544 additions & 0 deletions Api/DecisionManagerApi.cs

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions Api/KeymanagementApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ public interface IKeymanagementApi : IApiAccessor
/// <param name="keyTypes">Key Type, Possible values - certificate, password, pgp and scmp_api. When Key Type is provided atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationStartDate">Expiry Filter Start Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationEndDate">Expiry Filter End Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <returns>InlineResponse20011</returns>
InlineResponse20011 SearchKeys (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null);
/// <returns>InlineResponse2001</returns>
InlineResponse2001 SearchKeys (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null);

/// <summary>
/// Search Keys
Expand All @@ -60,8 +60,8 @@ public interface IKeymanagementApi : IApiAccessor
/// <param name="keyTypes">Key Type, Possible values - certificate, password, pgp and scmp_api. When Key Type is provided atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationStartDate">Expiry Filter Start Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationEndDate">Expiry Filter End Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <returns>ApiResponse of InlineResponse20011</returns>
ApiResponse<InlineResponse20011> SearchKeysWithHttpInfo (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null);
/// <returns>ApiResponse of InlineResponse2001</returns>
ApiResponse<InlineResponse2001> SearchKeysWithHttpInfo (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null);
#endregion Synchronous Operations
#region Asynchronous Operations
/// <summary>
Expand All @@ -79,8 +79,8 @@ public interface IKeymanagementApi : IApiAccessor
/// <param name="keyTypes">Key Type, Possible values - certificate, password, pgp and scmp_api. When Key Type is provided atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationStartDate">Expiry Filter Start Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationEndDate">Expiry Filter End Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <returns>Task of InlineResponse20011</returns>
System.Threading.Tasks.Task<InlineResponse20011> SearchKeysAsync (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null);
/// <returns>Task of InlineResponse2001</returns>
System.Threading.Tasks.Task<InlineResponse2001> SearchKeysAsync (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null);

/// <summary>
/// Search Keys
Expand All @@ -97,8 +97,8 @@ public interface IKeymanagementApi : IApiAccessor
/// <param name="keyTypes">Key Type, Possible values - certificate, password, pgp and scmp_api. When Key Type is provided atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationStartDate">Expiry Filter Start Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationEndDate">Expiry Filter End Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <returns>Task of ApiResponse (InlineResponse20011)</returns>
System.Threading.Tasks.Task<ApiResponse<InlineResponse20011>> SearchKeysAsyncWithHttpInfo (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null);
/// <returns>Task of ApiResponse (InlineResponse2001)</returns>
System.Threading.Tasks.Task<ApiResponse<InlineResponse2001>> SearchKeysAsyncWithHttpInfo (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null);
#endregion Asynchronous Operations
}

Expand Down Expand Up @@ -251,12 +251,12 @@ public void SetStatusCode(int? statusCode)
/// <param name="keyTypes">Key Type, Possible values - certificate, password, pgp and scmp_api. When Key Type is provided atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationStartDate">Expiry Filter Start Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationEndDate">Expiry Filter End Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <returns>InlineResponse20011</returns>
public InlineResponse20011 SearchKeys (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null)
/// <returns>InlineResponse2001</returns>
public InlineResponse2001 SearchKeys (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null)
{
logger.Debug("CALLING API \"SearchKeys\" STARTED");
this.SetStatusCode(null);
ApiResponse<InlineResponse20011> localVarResponse = SearchKeysWithHttpInfo(offset, limit, sort, organizationIds, keyIds, keyTypes, expirationStartDate, expirationEndDate);
ApiResponse<InlineResponse2001> localVarResponse = SearchKeysWithHttpInfo(offset, limit, sort, organizationIds, keyIds, keyTypes, expirationStartDate, expirationEndDate);
logger.Debug("CALLING API \"SearchKeys\" ENDED");
this.SetStatusCode(localVarResponse.StatusCode);
return localVarResponse.Data;
Expand All @@ -274,8 +274,8 @@ public InlineResponse20011 SearchKeys (int? offset = null, int? limit = null, st
/// <param name="keyTypes">Key Type, Possible values - certificate, password, pgp and scmp_api. When Key Type is provided atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationStartDate">Expiry Filter Start Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationEndDate">Expiry Filter End Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <returns>ApiResponse of InlineResponse20011</returns>
public ApiResponse< InlineResponse20011 > SearchKeysWithHttpInfo (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null)
/// <returns>ApiResponse of InlineResponse2001</returns>
public ApiResponse< InlineResponse2001 > SearchKeysWithHttpInfo (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null)
{
LogUtility logUtility = new LogUtility();

Expand Down Expand Up @@ -371,9 +371,9 @@ public ApiResponse< InlineResponse20011 > SearchKeysWithHttpInfo (int? offset =
}
}

return new ApiResponse<InlineResponse20011>(localVarStatusCode,
return new ApiResponse<InlineResponse2001>(localVarStatusCode,
localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
(InlineResponse20011) Configuration.ApiClient.Deserialize(localVarResponse, typeof(InlineResponse20011))); // Return statement
(InlineResponse2001) Configuration.ApiClient.Deserialize(localVarResponse, typeof(InlineResponse2001))); // Return statement
}

/// <summary>
Expand All @@ -388,12 +388,12 @@ public ApiResponse< InlineResponse20011 > SearchKeysWithHttpInfo (int? offset =
/// <param name="keyTypes">Key Type, Possible values - certificate, password, pgp and scmp_api. When Key Type is provided atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationStartDate">Expiry Filter Start Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationEndDate">Expiry Filter End Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <returns>Task of InlineResponse20011</returns>
public async System.Threading.Tasks.Task<InlineResponse20011> SearchKeysAsync (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null)
/// <returns>Task of InlineResponse2001</returns>
public async System.Threading.Tasks.Task<InlineResponse2001> SearchKeysAsync (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null)
{
logger.Debug("CALLING API \"SearchKeysAsync\" STARTED");
this.SetStatusCode(null);
ApiResponse<InlineResponse20011> localVarResponse = await SearchKeysAsyncWithHttpInfo(offset, limit, sort, organizationIds, keyIds, keyTypes, expirationStartDate, expirationEndDate);
ApiResponse<InlineResponse2001> localVarResponse = await SearchKeysAsyncWithHttpInfo(offset, limit, sort, organizationIds, keyIds, keyTypes, expirationStartDate, expirationEndDate);
logger.Debug("CALLING API \"SearchKeysAsync\" ENDED");
this.SetStatusCode(localVarResponse.StatusCode);
return localVarResponse.Data;
Expand All @@ -412,8 +412,8 @@ public async System.Threading.Tasks.Task<InlineResponse20011> SearchKeysAsync (i
/// <param name="keyTypes">Key Type, Possible values - certificate, password, pgp and scmp_api. When Key Type is provided atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationStartDate">Expiry Filter Start Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <param name="expirationEndDate">Expiry Filter End Date. When Expiration Date filter is provided, atleast one more filter needs to be provided (optional)</param>
/// <returns>Task of ApiResponse (InlineResponse20011)</returns>
public async System.Threading.Tasks.Task<ApiResponse<InlineResponse20011>> SearchKeysAsyncWithHttpInfo (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null)
/// <returns>Task of ApiResponse (InlineResponse2001)</returns>
public async System.Threading.Tasks.Task<ApiResponse<InlineResponse2001>> SearchKeysAsyncWithHttpInfo (int? offset = null, int? limit = null, string sort = null, List<string> organizationIds = null, List<string> keyIds = null, List<string> keyTypes = null, DateTime? expirationStartDate = null, DateTime? expirationEndDate = null)
{
LogUtility logUtility = new LogUtility();

Expand Down Expand Up @@ -509,9 +509,9 @@ public async System.Threading.Tasks.Task<ApiResponse<InlineResponse20011>> Searc
}
}

return new ApiResponse<InlineResponse20011>(localVarStatusCode,
return new ApiResponse<InlineResponse2001>(localVarStatusCode,
localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()),
(InlineResponse20011) Configuration.ApiClient.Deserialize(localVarResponse, typeof(InlineResponse20011))); // Return statement
(InlineResponse2001) Configuration.ApiClient.Deserialize(localVarResponse, typeof(InlineResponse2001))); // Return statement
}
}
}
Loading

0 comments on commit afdff65

Please sign in to comment.