Skip to content

Describe Package Group

codeartifact_describe_package_group R Documentation

Returns a PackageGroupDescription object that contains information about the requested package group

Description

Returns a PackageGroupDescription object that contains information about the requested package group.

Usage

codeartifact_describe_package_group(domain, domainOwner, packageGroup)

Arguments

domain

[required] The name of the domain that contains the package group.

domainOwner

The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.

packageGroup

[required] The pattern of the requested package group.

Value

A list with the following syntax:

list(
  packageGroup = list(
    arn = "string",
    pattern = "string",
    domainName = "string",
    domainOwner = "string",
    createdTime = as.POSIXct(
      "2015-01-01"
    ),
    contactInfo = "string",
    description = "string",
    originConfiguration = list(
      restrictions = list(
        list(
          mode = "ALLOW"|"ALLOW_SPECIFIC_REPOSITORIES"|"BLOCK"|"INHERIT",
          effectiveMode = "ALLOW"|"ALLOW_SPECIFIC_REPOSITORIES"|"BLOCK"|"INHERIT",
          inheritedFrom = list(
            arn = "string",
            pattern = "string"
          ),
          repositoriesCount = 123
        )
      )
    ),
    parent = list(
      arn = "string",
      pattern = "string"
    )
  )
)

Request syntax

svc$describe_package_group(
  domain = "string",
  domainOwner = "string",
  packageGroup = "string"
)