Commit 2c9a2d9c authored by Laurent Velez's avatar Laurent Velez
Browse files

Merge branch 'stf644' into 'master'

STF644 - Milestone B - Merge stf644 to Master branch

See merge request !18
parents 1b42758b 4cf9c989
Loading
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+6 −0
Original line number Original line Diff line number Diff line
protoc/
go-stubs/
ruby-stubs/
.proto-gen/
python-stubs/
.vscode/
 No newline at end of file

.vscode/settings.json

deleted100644 → 0
+0 −3
Original line number Original line Diff line number Diff line
{
    "git.ignoreLimitWarning": true
}
 No newline at end of file
+23 −0
Original line number Original line Diff line number Diff line
# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
+58 −0
Original line number Original line Diff line number Diff line
.openapi-generator-ignore
README.md
models/app_info.proto
models/app_info_endpoint.proto
models/app_profile.proto
models/app_profile_end_pt.proto
models/app_ready_confirmation.proto
models/app_termination_confirmation.proto
models/app_termination_notification.proto
models/app_termination_notification_links.proto
models/app_termination_notification_subscription.proto
models/category_ref.proto
models/current_time.proto
models/destination_interface.proto
models/destination_interface_interface_type.proto
models/dns_rule.proto
models/dns_rule_ip_address_type.proto
models/dns_rule_state.proto
models/end_point_info_address.proto
models/end_point_info_addresses.proto
models/feature_dependency.proto
models/link_type.proto
models/link_type_confirm_termination.proto
models/mec_app_supt_api_subscription_link_list.proto
models/mec_app_supt_api_subscription_link_list_links.proto
models/mec_app_supt_api_subscription_link_list_subscription.proto
models/operation_action_type.proto
models/problem_details.proto
models/security_info.proto
models/security_info_o_auth2_info.proto
models/security_info_o_auth2_info_grant_type.proto
models/self.proto
models/serializer_type.proto
models/service_dependency.proto
models/time_source_status.proto
models/timing_caps.proto
models/timing_caps_ntp_servers.proto
models/timing_caps_ntp_servers_authentication_option.proto
models/timing_caps_ntp_servers_ntp_server_addr_type.proto
models/timing_caps_ptp_masters.proto
models/timing_caps_time_stamp.proto
models/traffic_filter.proto
models/traffic_rule.proto
models/traffic_rule_action.proto
models/traffic_rule_filter_type.proto
models/traffic_rule_state.proto
models/transport_dependency.proto
models/transport_descriptor.proto
models/transport_type.proto
models/tunnel_info.proto
models/tunnel_info_tunnel_type.proto
services/app_confirm_ready_service.proto
services/app_confirm_termination_service.proto
services/app_dns_rules_service.proto
services/app_registrations_service.proto
services/app_subscriptions_service.proto
services/app_traffic_rules_service.proto
services/timing_service.proto
+1 −0
Original line number Original line Diff line number Diff line
6.2.1
 No newline at end of file
Loading