Example #1
0
 def Args(parser):
     resource_args.AddCertificateAuthorityPositionalResourceArg(
         parser, 'to update')
     flags.AddPublishCrlFlag(parser, use_update_help_text=True)
     flags.AddPublishCaCertFlag(parser, use_update_help_text=True)
     flags.AddCertificateAuthorityIssuancePolicyFlag(parser)
     labels_util.AddUpdateLabelsFlags(parser)
Example #2
0
 def Args(parser):
   resource_args.AddCertificateAuthorityPositionalResourceArg(
       parser, 'to activate')
   base.Argument(
       '--pem-chain',
       required=True,
       help='A file containing a list of PEM-encoded certificates, starting '
       'with the current CA certificate and ending with the root CA '
       'certificate.').AddToParser(parser)
 def Args(parser):
   resource_args.AddCertificateAuthorityPositionalResourceArg(
       parser, 'to update')
   flags.AddPublishCrlFlag(parser, use_update_help_text=True)
   flags.AddPublishCaCertFlag(parser, use_update_help_text=True)
   base.Argument(
       '--pem-chain',
       required=False,
       help='A file containing a list of PEM-encoded certificates that represent the issuing chain of this CA.'
   ).AddToParser(parser)
   flags.AddCertificateAuthorityIssuancePolicyFlag(parser)
   labels_util.AddUpdateLabelsFlags(parser)
Example #4
0
 def Args(parser):
   resource_args.AddCertificateAuthorityPositionalResourceArg(
       parser, 'to schedule deletion for')
Example #5
0
 def Args(parser):
     resource_args.AddCertificateAuthorityPositionalResourceArg(
         parser, 'to schedule deletion for')
     flags.AddIgnoreActiveCertificatesFlag(parser)
Example #6
0
 def Args(parser):
     resource_args.AddCertificateAuthorityPositionalResourceArg(
         parser, 'to restore')
 def Args(parser):
     resource_args.AddCertificateAuthorityPositionalResourceArg(
         parser, 'to get csr for')
     parser.display_info.AddFormat("""value(pemCsr)""")