Loading AppPkgMgmtProto3/proto3/.openapi-generator-ignore 0 → 100644 +23 −0 Original line number 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 AppPkgMgmtProto3/proto3/.openapi-generator/FILES 0 → 100644 +70 −0 Original line number Diff line number Diff line .openapi-generator-ignore README.md models/action.proto models/additional_service_data.proto models/app_d.proto models/app_external_cpd.proto models/app_pkg_filter.proto models/app_pkg_info.proto models/app_pkg_info_links.proto models/app_pkg_info_modifications.proto models/app_pkg_notification.proto models/app_pkg_notification_links.proto models/app_pkg_notification_type.proto models/app_pkg_subscription.proto models/app_pkg_subscription_info.proto models/app_pkg_subscription_info_links.proto models/app_pkg_subscription_link_list.proto models/app_pkg_subscription_link_list_links.proto models/app_pkg_subscription_type.proto models/block_storage_data.proto models/category_ref.proto models/change_app_instance_state_op_config.proto models/checksum.proto models/checksum_data.proto models/create_app_pkg.proto models/dns_rule_descriptor.proto models/feature_dependency.proto models/filter_type.proto models/interface_descriptor.proto models/interface_type.proto models/ip_address_type.proto models/key_value_pairs.proto models/latency_descriptor.proto models/link_type.proto models/logical_node_requirements.proto models/mcio_constraint_params.proto models/mcio_identification_data.proto models/monitoring_parameter.proto models/o_auth2_info.proto models/onboarding_state.proto models/operational_state.proto models/os_container_descriptor.proto models/problem_details.proto models/requested_additional_capability_data.proto models/security_info.proto models/serializer_type.proto models/service_dependency.proto models/service_descriptor.proto models/service_port_data.proto models/subscriptions_app_pkg_subscription.proto models/sw_image_desc.proto models/sw_image_descriptor.proto models/terminate_app_instance_op_config.proto models/time_stamp.proto models/traffic_filter.proto models/traffic_rule_descriptor.proto models/transport_dependency.proto models/transport_descriptor.proto models/transports_supported.proto models/tunnel_info.proto models/tunnel_type.proto models/usage_state.proto models/version.proto models/virtual_compute_descriptor.proto models/virtual_cpu_data.proto models/virtual_cpu_pinning_data.proto models/virtual_memory_data.proto models/virtual_network_interface_requirements.proto services/app_pkgm_notifications_service.proto services/app_pkgm_service.proto AppPkgMgmtProto3/proto3/.openapi-generator/VERSION 0 → 100644 +1 −0 Original line number Diff line number Diff line 5.4.0 No newline at end of file AppPkgMgmtProto3/proto3/README.md 0 → 100644 +32 −0 Original line number Diff line number Diff line # gPRC for mec0102 ETSI GS MEC 010-2 - Part 2: Application lifecycle, rules and requirements management described using OpenAPI. ## Overview These files were generated by the [OpenAPI Generator](https://openapi-generator.tech) project. - API version: 3.1.1 - Package version: - Build package: org.openapitools.codegen.languages.ProtobufSchemaCodegen For more information, please visit [https://forge.etsi.org/rep/mec/gs010-2-app-pkg-lcm-api](https://forge.etsi.org/rep/mec/gs010-2-app-pkg-lcm-api) ## Usage Below are some usage examples for Go and Ruby. For other languages, please refer to https://grpc.io/docs/quickstart/. ### Go ``` # assuming `protoc-gen-go` has been installed with `go get -u github.com/golang/protobuf/protoc-gen-go` mkdir /var/tmp/go/ protoc --go_out=/var/tmp/go/ services/* protoc --go_out=/var/tmp/go/ models/* ``` ### Ruby ``` # assuming `grpc_tools_ruby_protoc` has been installed via `gem install grpc-tools` RUBY_OUTPUT_DIR="/var/tmp/ruby/mec0102" mkdir $RUBY_OUTPUT_DIR grpc_tools_ruby_protoc --ruby_out=$RUBY_OUTPUT_DIR --grpc_out=$RUBY_OUTPUT_DIR/lib services/* grpc_tools_ruby_protoc --ruby_out=$RUBY_OUTPUT_DIR --grpc_out=$RUBY_OUTPUT_DIR/lib models/* ``` AppPkgMgmtProto3/proto3/models/action.proto 0 → 100644 +25 −0 Original line number Diff line number Diff line /* ETSI GS MEC 010-2 - Part 2: Application lifecycle, rules and requirements management ETSI GS MEC 010-2 - Part 2: Application lifecycle, rules and requirements management described using OpenAPI. The version of the OpenAPI document: 3.1.1 Contact: cti_support@etsi.org Generated by OpenAPI Generator: https://openapi-generator.tech */ syntax = "proto3"; package mec0102; enum Action { DROP = 0; FORWARD_DECAPSULATED = 1; FORWARD_ENCAPSULATED = 2; PASSTHROUGH = 3; DUPLICATE_DECAPSULATED = 4; DUPLICATE_ENCAPSULATED = 5; } Loading
AppPkgMgmtProto3/proto3/.openapi-generator-ignore 0 → 100644 +23 −0 Original line number 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
AppPkgMgmtProto3/proto3/.openapi-generator/FILES 0 → 100644 +70 −0 Original line number Diff line number Diff line .openapi-generator-ignore README.md models/action.proto models/additional_service_data.proto models/app_d.proto models/app_external_cpd.proto models/app_pkg_filter.proto models/app_pkg_info.proto models/app_pkg_info_links.proto models/app_pkg_info_modifications.proto models/app_pkg_notification.proto models/app_pkg_notification_links.proto models/app_pkg_notification_type.proto models/app_pkg_subscription.proto models/app_pkg_subscription_info.proto models/app_pkg_subscription_info_links.proto models/app_pkg_subscription_link_list.proto models/app_pkg_subscription_link_list_links.proto models/app_pkg_subscription_type.proto models/block_storage_data.proto models/category_ref.proto models/change_app_instance_state_op_config.proto models/checksum.proto models/checksum_data.proto models/create_app_pkg.proto models/dns_rule_descriptor.proto models/feature_dependency.proto models/filter_type.proto models/interface_descriptor.proto models/interface_type.proto models/ip_address_type.proto models/key_value_pairs.proto models/latency_descriptor.proto models/link_type.proto models/logical_node_requirements.proto models/mcio_constraint_params.proto models/mcio_identification_data.proto models/monitoring_parameter.proto models/o_auth2_info.proto models/onboarding_state.proto models/operational_state.proto models/os_container_descriptor.proto models/problem_details.proto models/requested_additional_capability_data.proto models/security_info.proto models/serializer_type.proto models/service_dependency.proto models/service_descriptor.proto models/service_port_data.proto models/subscriptions_app_pkg_subscription.proto models/sw_image_desc.proto models/sw_image_descriptor.proto models/terminate_app_instance_op_config.proto models/time_stamp.proto models/traffic_filter.proto models/traffic_rule_descriptor.proto models/transport_dependency.proto models/transport_descriptor.proto models/transports_supported.proto models/tunnel_info.proto models/tunnel_type.proto models/usage_state.proto models/version.proto models/virtual_compute_descriptor.proto models/virtual_cpu_data.proto models/virtual_cpu_pinning_data.proto models/virtual_memory_data.proto models/virtual_network_interface_requirements.proto services/app_pkgm_notifications_service.proto services/app_pkgm_service.proto
AppPkgMgmtProto3/proto3/.openapi-generator/VERSION 0 → 100644 +1 −0 Original line number Diff line number Diff line 5.4.0 No newline at end of file
AppPkgMgmtProto3/proto3/README.md 0 → 100644 +32 −0 Original line number Diff line number Diff line # gPRC for mec0102 ETSI GS MEC 010-2 - Part 2: Application lifecycle, rules and requirements management described using OpenAPI. ## Overview These files were generated by the [OpenAPI Generator](https://openapi-generator.tech) project. - API version: 3.1.1 - Package version: - Build package: org.openapitools.codegen.languages.ProtobufSchemaCodegen For more information, please visit [https://forge.etsi.org/rep/mec/gs010-2-app-pkg-lcm-api](https://forge.etsi.org/rep/mec/gs010-2-app-pkg-lcm-api) ## Usage Below are some usage examples for Go and Ruby. For other languages, please refer to https://grpc.io/docs/quickstart/. ### Go ``` # assuming `protoc-gen-go` has been installed with `go get -u github.com/golang/protobuf/protoc-gen-go` mkdir /var/tmp/go/ protoc --go_out=/var/tmp/go/ services/* protoc --go_out=/var/tmp/go/ models/* ``` ### Ruby ``` # assuming `grpc_tools_ruby_protoc` has been installed via `gem install grpc-tools` RUBY_OUTPUT_DIR="/var/tmp/ruby/mec0102" mkdir $RUBY_OUTPUT_DIR grpc_tools_ruby_protoc --ruby_out=$RUBY_OUTPUT_DIR --grpc_out=$RUBY_OUTPUT_DIR/lib services/* grpc_tools_ruby_protoc --ruby_out=$RUBY_OUTPUT_DIR --grpc_out=$RUBY_OUTPUT_DIR/lib models/* ```
AppPkgMgmtProto3/proto3/models/action.proto 0 → 100644 +25 −0 Original line number Diff line number Diff line /* ETSI GS MEC 010-2 - Part 2: Application lifecycle, rules and requirements management ETSI GS MEC 010-2 - Part 2: Application lifecycle, rules and requirements management described using OpenAPI. The version of the OpenAPI document: 3.1.1 Contact: cti_support@etsi.org Generated by OpenAPI Generator: https://openapi-generator.tech */ syntax = "proto3"; package mec0102; enum Action { DROP = 0; FORWARD_DECAPSULATED = 1; FORWARD_ENCAPSULATED = 2; PASSTHROUGH = 3; DUPLICATE_DECAPSULATED = 4; DUPLICATE_ENCAPSULATED = 5; }