Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DisableAutoRenewalCmd = &cobra.Command{ Use: "disable-auto-renewal <subscription ID>", Short: "Disable subscription auto-renewal", Long: `This endpoint disables auto-renewal for a subscription, which stops any further auto-renewal of the associated service.`, Args: cobra.MatchAll(cobra.ExactArgs(1)), Run: func(cmd *cobra.Command, args []string) { r, err := api.Request().BillingDisableAutoRenewalV1WithResponse(context.TODO(), args[0]) if err != nil { log.Fatal(err) } output.Format(cmd, r.Body, r.StatusCode()) }, }
View Source
var EnableAutoRenewalCmd = &cobra.Command{ Use: "enable-auto-renewal <subscription ID>", Short: "Enable subscription auto-renewal", Long: `This endpoint enables auto-renewal for a subscription, so the associated service is renewed automatically.`, Args: cobra.MatchAll(cobra.ExactArgs(1)), Run: func(cmd *cobra.Command, args []string) { r, err := api.Request().BillingEnableAutoRenewalV1WithResponse(context.TODO(), args[0]) if err != nil { log.Fatal(err) } output.Format(cmd, r.Body, r.StatusCode()) }, }
View Source
var GroupCmd = &cobra.Command{
Use: "subscriptions",
Short: "Subscription management",
Long: ``,
}
View Source
var ListCmd = &cobra.Command{ Use: "list", Short: "Get subscription list", Long: `This endpoint retrieves a list of all subscriptions associated with your account.`, Run: func(cmd *cobra.Command, args []string) { r, err := api.Request().BillingGetSubscriptionListV1WithResponse(context.TODO()) if err != nil { log.Fatal(err) } output.Format(cmd, r.Body, r.StatusCode()) }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.