Skip to content

Commit 8425fca

Browse files
committed
Initial commit of Perl alpha client generated files
1 parent a7cd021 commit 8425fca

File tree

1,293 files changed

+217224
-1
lines changed

Some content is hidden

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

1,293 files changed

+217224
-1
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,16 @@ The API is organized into collections of endpoints that allow manipulation of ob
77
For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/)
88

99

10+
> ⚠️ This client library (`2.0.0-alpha1`) is an early-access release. Features may change without notice. Use at your own risk.
11+
12+
**We strongly recommend that you do not install alpha and beta releases on live production services.** No official support is provided for such releases. Please try out the library in a test environment, see what breaks without worrying about consequences, and give us [feedback](#issues).
13+
14+
Read about the [Fastly Product Lifecycle](https://docs.fastly.com/products/fastly-product-lifecycle).
15+
16+
1017
# VERSION
1118

12-
Automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
19+
Automatically generated:
1320

1421
- API version: 1.0.0
1522
- Package version: 2.0.0-alpha1

bin/autodoc

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
#!/usr/bin/perl
2+
use FindBin;
3+
use File::Spec;
4+
use lib File::Spec->catdir($FindBin::Bin, '..', 'lib');
5+
6+
use Moose::Util qw(apply_all_roles);
7+
use Getopt::Std;
8+
9+
my %options=();
10+
getopts("wnphmHc:", \%options);
11+
help if $options{h};
12+
13+
my $my_app = $options{c} || 'My::App';
14+
15+
if ($options{c}) {
16+
eval <<LOAD;
17+
use $my_app;
18+
apply_all_roles($my_app, "Fastly::Role::AutoDoc");
19+
LOAD
20+
die $@ if $@;
21+
}
22+
else {
23+
package My::App;
24+
use Moose;
25+
with ('Fastly::Role', 'Fastly::Role::AutoDoc');
26+
}
27+
28+
package main;
29+
30+
my $opt;
31+
$opt = 'wide' if $options{w};
32+
$opt = 'narrow' if $options{n};
33+
34+
$opt = 'pod' if $options{p};
35+
$opt = 'pod' if $options{H};
36+
$opt = 'pod' if $options{m};
37+
38+
$opt ||= 'wide';
39+
40+
my $api = $my_app->new;
41+
42+
if ($options{H}) {
43+
my $pod2html = "pod2html --backlink --css http://st.pimg.net/tucs/style.css?3";
44+
open STDOUT, "| $pod2html" or die "Can't fork: $!";
45+
$api->autodoc($opt);
46+
close STDOUT or die "Can't close: $!";
47+
}
48+
elsif ($options{m}) {
49+
my $pod2markdown = "pod2markdown --html-encode-chars 1";
50+
open STDOUT, "| $pod2markdown" or die "Can't fork: $!";
51+
$api->autodoc($opt);
52+
close STDOUT or die "Can't close: $!";
53+
}
54+
else {
55+
$api->autodoc($opt);
56+
}
57+
58+
exit(0);
59+
60+
# --------------------
61+
sub help {
62+
print <<HELP;
63+
Usage: autodoc [OPTION] [-c My::App::Class]
64+
65+
-w wide format (default)
66+
-n narrow format
67+
-p POD format
68+
-H HTML format
69+
-m Markdown format
70+
-h print this help message
71+
-c your application class
72+
73+
HELP
74+
75+
exit(0);
76+
}

docs/Acl.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Fastly::Object::Acl
2+
3+
## Load the model package
4+
```perl
5+
use Fastly::Object::Acl;
6+
```
7+
8+
## Properties
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**name** | **string** | Name for the ACL. Must start with an alphanumeric character and contain only alphanumeric characters, underscores, and whitespace. | [optional]
12+
13+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
14+
15+

0 commit comments

Comments
 (0)