File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -58,14 +58,14 @@ python -m lists.v1alpha.get_list -h
5858python -m lists.v1alpha.patch_list -h
5959```
6060
61- ## Installing the Chronicle REST API SDK
61+ ## Installing the Chronicle REST API CLI
6262
63- Install the SDK from source
63+ Install the CLI from source
6464```
6565python setup.py install
6666```
6767
68- Alternatively, install the SDK from source using make
68+ Alternatively, install the CLI from source using make
6969```
7070make install
7171```
@@ -75,9 +75,9 @@ Build the wheel file
7575make dist
7676```
7777
78- ## Using the Chronicle REST API SDK
78+ ## Using the Chronicle REST API CLI
7979
80- The SDK provides a unified command-line interface for Chronicle APIs.
80+ The CLI provides a unified command-line interface for Chronicle APIs.
8181The CLI follows this pattern:
8282```
8383chronicle [common options] COMMAND_GROUP COMMAND [command options]
@@ -105,7 +105,7 @@ CHRONICLE_INSTANCE=your-instance-id
105105CHRONICLE_REGION=your-region
106106```
107107
108- The SDK will use values from the ` .env ` file or a file provided with the
108+ The CLI will use values from the ` .env ` file or a file provided with the
109109` --env-file ` parameter. Command-line options take precedence over environment
110110variables.
111111
Original file line number Diff line number Diff line change 1313# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414# See the License for the specific language governing permissions and
1515# limitations under the License.
16- """Setup configuration for Chronicle API SDK ."""
16+ """Setup configuration for Chronicle API CLI ."""
1717
1818from setuptools import find_packages
1919from setuptools import setup
2020
2121setup (
22- name = "chronicle-api" ,
22+ name = "chronicle-api-cli " ,
2323 version = "0.1.3" ,
24- description = "Chronicle API SDK and CLI" ,
24+ description = "Chronicle API CLI" ,
2525 author = "Google LLC" ,
2626 author_email = "chronicle-support@google.com" ,
2727 packages = find_packages (include = [
You can’t perform that action at this time.
0 commit comments