Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

docs: regenerate javadocs #37

Merged
merged 1 commit into from Nov 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/release-please.yml
@@ -1 +1,2 @@
releaseType: java-yoshi
bumpMinorPreMajor: true
14 changes: 10 additions & 4 deletions .kokoro/build.sh
Expand Up @@ -27,6 +27,7 @@ echo ${JOB_TYPE}
mvn install -B -V \
-DskipTests=true \
-Dclirr.skip=true \
-Denforcer.skip=true \
-Dmaven.javadoc.skip=true \
-Dgcloud.download.skip=true \
-T 1C
Expand All @@ -38,7 +39,7 @@ fi

case ${JOB_TYPE} in
test)
mvn test -B -Dclirr.skip=true
mvn test -B -Dclirr.skip=true -Denforcer.skip=true
bash ${KOKORO_GFILE_DIR}/codecov.sh
bash .kokoro/coerce_logs.sh
;;
Expand All @@ -49,12 +50,17 @@ javadoc)
mvn javadoc:javadoc javadoc:test-javadoc
;;
integration)
mvn -B ${INTEGRATION_TEST_ARGS} -DtrimStackTrace=false -Dclirr.skip=true -fae verify
mvn -B ${INTEGRATION_TEST_ARGS} \
-DtrimStackTrace=false \
-Dclirr.skip=true \
-Denforcer.skip=true \
-fae \
verify
bash .kokoro/coerce_logs.sh
;;
clirr)
mvn -B clirr:check
mvn -B -Denforcer.skip=true clirr:check
;;
*)
;;
esac
esac
6 changes: 5 additions & 1 deletion .kokoro/dependencies.sh
Expand Up @@ -23,5 +23,9 @@ echo $JOB_TYPE

export MAVEN_OPTS="-Xmx1024m -XX:MaxPermSize=128m"

mvn install -DskipTests=true -B -V
# this should run maven enforcer
mvn install -B -V \
-DskipTests=true \
-Dclirr.skip=true

mvn -B dependency:analyze -DfailOnWarning=true
Expand Up @@ -32,8 +32,8 @@

// AUTO-GENERATED DOCUMENTATION AND SERVICE
/**
* Service Description: Policy tag manager API service allows clients to manage their taxonomies and
* policy tags data.
* Service Description: The policy tag manager API service allows clients to manage their taxonomies
* and policy tags.
*
* <p>This class provides the ability to make remote calls to the backing service through method
* calls that map to API methods. Sample code to get started:
Expand Down Expand Up @@ -154,7 +154,7 @@ public PolicyTagManagerStub getStub() {

// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Creates a new taxonomy in a given project.
* Creates a taxonomy in the specified project.
*
* <p>Sample code:
*
Expand All @@ -174,7 +174,7 @@ public final Taxonomy createTaxonomy(CreateTaxonomyRequest request) {

// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Creates a new taxonomy in a given project.
* Creates a taxonomy in the specified project.
*
* <p>Sample code:
*
Expand All @@ -193,7 +193,8 @@ public final UnaryCallable<CreateTaxonomyRequest, Taxonomy> createTaxonomyCallab

// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Deletes a taxonomy. This operation will also delete all policy tags in this taxonomy.
* Deletes a taxonomy. This operation will also delete all policy tags in this taxonomy along with
* their associated policies.
*
* <p>Sample code:
*
Expand All @@ -213,7 +214,8 @@ public final void deleteTaxonomy(DeleteTaxonomyRequest request) {

// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Deletes a taxonomy. This operation will also delete all policy tags in this taxonomy.
* Deletes a taxonomy. This operation will also delete all policy tags in this taxonomy along with
* their associated policies.
*
* <p>Sample code:
*
Expand Down Expand Up @@ -271,7 +273,8 @@ public final UnaryCallable<UpdateTaxonomyRequest, Taxonomy> updateTaxonomyCallab

// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Lists all taxonomies in a project in a particular location.
* Lists all taxonomies in a project in a particular location that the caller has permission to
* view.
*
* <p>Sample code:
*
Expand All @@ -291,7 +294,8 @@ public final ListTaxonomiesResponse listTaxonomies(ListTaxonomiesRequest request

// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Lists all taxonomies in a project in a particular location.
* Lists all taxonomies in a project in a particular location that the caller has permission to
* view.
*
* <p>Sample code:
*
Expand Down Expand Up @@ -350,7 +354,7 @@ public final UnaryCallable<GetTaxonomyRequest, Taxonomy> getTaxonomyCallable() {

// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Creates a policy tag in a taxonomy.
* Creates a policy tag in the specified taxonomy.
*
* <p>Sample code:
*
Expand All @@ -370,7 +374,7 @@ public final PolicyTag createPolicyTag(CreatePolicyTagRequest request) {

// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Creates a policy tag in a taxonomy.
* Creates a policy tag in the specified taxonomy.
*
* <p>Sample code:
*
Expand Down Expand Up @@ -624,7 +628,7 @@ public final UnaryCallable<SetIamPolicyRequest, Policy> setIamPolicyCallable() {

// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Returns permissions that a caller has on specified resources.
* Returns the permissions that a caller has on the specified taxonomy or policy tag.
*
* <p>Sample code:
*
Expand All @@ -644,7 +648,7 @@ public final TestIamPermissionsResponse testIamPermissions(TestIamPermissionsReq

// AUTO-GENERATED DOCUMENTATION AND METHOD
/**
* Returns permissions that a caller has on specified resources.
* Returns the permissions that a caller has on the specified taxonomy or policy tag.
*
* <p>Sample code:
*
Expand Down
Expand Up @@ -39,8 +39,8 @@
*
* ====================== PolicyTagManagerClient ======================
*
* <p>Service Description: Policy tag manager API service allows clients to manage their taxonomies
* and policy tags data.
* <p>Service Description: The policy tag manager API service allows clients to manage their
* taxonomies and policy tags.
*
* <p>Sample for PolicyTagManagerClient:
*
Expand Down