16
16
17
17
package com .google .pubsub .v1 ;
18
18
19
- import com .google .api .core .BetaApi ;
20
19
import com .google .api .pathtemplate .PathTemplate ;
21
20
import com .google .api .pathtemplate .ValidationException ;
22
21
import com .google .api .resourcenames .ResourceName ;
@@ -71,7 +70,6 @@ public static Builder newBuilder() {
71
70
return new Builder ();
72
71
}
73
72
74
- @ BetaApi ("The per-pattern Builders are not stable yet and may be changed in the future." )
75
73
public static Builder newProjectTopicBuilder () {
76
74
return new Builder ();
77
75
}
@@ -84,12 +82,10 @@ public static TopicName of(String project, String topic) {
84
82
return newBuilder ().setProject (project ).setTopic (topic ).build ();
85
83
}
86
84
87
- @ BetaApi ("The static create methods are not stable yet and may be changed in the future." )
88
85
public static TopicName ofProjectTopicName (String project , String topic ) {
89
86
return newBuilder ().setProject (project ).setTopic (topic ).build ();
90
87
}
91
88
92
- @ BetaApi ("The static create methods are not stable yet and may be changed in the future." )
93
89
public static TopicName ofDeletedTopicName () {
94
90
return new TopicName ("_deleted-topic_" );
95
91
}
@@ -98,12 +94,10 @@ public static String format(String project, String topic) {
98
94
return newBuilder ().setProject (project ).setTopic (topic ).build ().toString ();
99
95
}
100
96
101
- @ BetaApi ("The static format methods are not stable yet and may be changed in the future." )
102
97
public static String formatProjectTopicName (String project , String topic ) {
103
98
return newBuilder ().setProject (project ).setTopic (topic ).build ().toString ();
104
99
}
105
100
106
- @ BetaApi ("The static format methods are not stable yet and may be changed in the future." )
107
101
public static String formatDeletedTopicName () {
108
102
return "_deleted-topic_" ;
109
103
}
0 commit comments