Annotation Type Incubating


  • @Retention(RUNTIME)
    @Target(METHOD)
    @Documented
    public @interface Incubating
    Signifies that a public API has not yet become stable, and may be subject to change. Projects that cannot quickly update based on their service dependencies cannot safely use Incubating APIs. This annotation is added to service methods which are tagged with incubating. For example:
    
     getFileSystems:
       tags:
         - incubating
       http: GET /fileSystems
       returns: map<string, BackingFileSystem>