File tree 1 file changed +27
-4
lines changed
1 file changed +27
-4
lines changed Original file line number Diff line number Diff line change @@ -74,9 +74,22 @@ angular.module('gcloud.docs')
74
74
_url : '{baseUrl}/storage'
75
75
} ,
76
76
77
+ storageWithFiles : {
78
+ title : 'Storage' ,
79
+ _url : '{baseUrl}/storage' ,
80
+ pages : [
81
+ {
82
+ title : 'Bucket' ,
83
+ url : '/bucket'
84
+ } ,
85
+ {
86
+ title : 'File' ,
87
+ url : '/file'
88
+ }
89
+ ]
90
+ } ,
91
+
77
92
VERSIONS : {
78
- // Give a version with/without a comparator, anything semver:
79
- // https://github.com/npm/node-semver#versions
80
93
//
81
94
// Multiple keys may be used to match a version.
82
95
//
@@ -89,8 +102,18 @@ angular.module('gcloud.docs')
89
102
//
90
103
// To keep the documentation for the main module, `gcloud`, on top of the
91
104
// link list, **make sure the title is `gcloud`**
92
- '*' : [ 'gcloud' , 'storage' ] ,
105
+ '*' : [ 'gcloud' ] ,
106
+
107
+ // deprecate old datastore api.
93
108
'<0.8.0' : [ 'datastore' ] ,
94
- '>=0.8.0' : [ 'datastoreWithTransaction' , 'pubsub' ]
109
+
110
+ // introduce datastore refactor + pubsub.
111
+ '>=0.8.0' : [ 'datastoreWithTransaction' , 'pubsub' ] ,
112
+
113
+ // deprecate old storage api.
114
+ '<0.9.0' : [ 'storage' ] ,
115
+
116
+ // introduce new storage api.
117
+ '>=0.9.0' : [ 'storageWithFiles' ]
95
118
}
96
119
} ) ;
You can’t perform that action at this time.
0 commit comments