-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1999 from tharindu1st/subscription-cr-apply
fix subscription validation
- Loading branch information
Showing
31 changed files
with
1,940 additions
and
173 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
adapter/api/proto/wso2/discovery/config/enforcer/client.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Copyright (c) 2024, WSO2 LLC. (http://www.wso2.org) All Rights Reserved. | ||
// | ||
// WSO2 LLC. licenses this file to you under the Apache License, | ||
// Version 2.0 (the "License"); you may not use this file except | ||
// in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
syntax = "proto3"; | ||
|
||
package wso2.discovery.config.enforcer; | ||
|
||
option go_package = "github.com/envoyproxy/go-control-plane/wso2/discovery/config/enforcer;enforcer"; | ||
option java_package = "org.wso2.apk.enforcer.discovery.config.enforcer"; | ||
option java_outer_classname = "HttpClientProto"; | ||
option java_multiple_files = true; | ||
|
||
// [#protodoc-title: SSL] | ||
|
||
// Model for enforcer management user | ||
message HttpClient { | ||
// Disable SSL Verification | ||
bool skipSSl = 1; | ||
|
||
// Hostname Verifier | ||
string hostnameVerifier = 2; | ||
|
||
// MaxtotalConnections | ||
int32 maxTotalConnections = 3; | ||
// MaxConnectionsPerRoute | ||
int32 maxConnectionsPerRoute = 4; | ||
// ConnectTimeout | ||
int32 connectTimeout = 5; | ||
// SocketTimeout | ||
int32 socketTimeout = 6; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
215 changes: 215 additions & 0 deletions
215
adapter/pkg/discovery/api/wso2/discovery/config/enforcer/client.pb.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.