@@ -4028,6 +4028,7 @@ const (
40284028 TAPE_DRIVE_TYPE_LTO6 TapeDriveType = 1 + iota
40294029 TAPE_DRIVE_TYPE_LTO7 TapeDriveType = 1 + iota
40304030 TAPE_DRIVE_TYPE_LTO8 TapeDriveType = 1 + iota
4031+ TAPE_DRIVE_TYPE_LTO9 TapeDriveType = 1 + iota
40314032 TAPE_DRIVE_TYPE_TS1140 TapeDriveType = 1 + iota
40324033 TAPE_DRIVE_TYPE_TS1150 TapeDriveType = 1 + iota
40334034 TAPE_DRIVE_TYPE_TS1155 TapeDriveType = 1 + iota
@@ -4043,6 +4044,7 @@ func (tapeDriveType *TapeDriveType) UnmarshalText(text []byte) error {
40434044 case "LTO6" : * tapeDriveType = TAPE_DRIVE_TYPE_LTO6
40444045 case "LTO7" : * tapeDriveType = TAPE_DRIVE_TYPE_LTO7
40454046 case "LTO8" : * tapeDriveType = TAPE_DRIVE_TYPE_LTO8
4047+ case "LTO9" : * tapeDriveType = TAPE_DRIVE_TYPE_LTO9
40464048 case "TS1140" : * tapeDriveType = TAPE_DRIVE_TYPE_TS1140
40474049 case "TS1150" : * tapeDriveType = TAPE_DRIVE_TYPE_TS1150
40484050 case "TS1155" : * tapeDriveType = TAPE_DRIVE_TYPE_TS1155
@@ -4061,6 +4063,7 @@ func (tapeDriveType TapeDriveType) String() string {
40614063 case TAPE_DRIVE_TYPE_LTO6 : return "LTO6"
40624064 case TAPE_DRIVE_TYPE_LTO7 : return "LTO7"
40634065 case TAPE_DRIVE_TYPE_LTO8 : return "LTO8"
4066+ case TAPE_DRIVE_TYPE_LTO9 : return "LTO9"
40644067 case TAPE_DRIVE_TYPE_TS1140 : return "TS1140"
40654068 case TAPE_DRIVE_TYPE_TS1150 : return "TS1150"
40664069 case TAPE_DRIVE_TYPE_TS1155 : return "TS1155"
@@ -4939,6 +4942,7 @@ type S3Target struct {
49394942 ProxyUsername * string
49404943 Quiesced Quiesced
49414944 Region * S3Region
4945+ RestrictedAccess bool
49424946 SecretKey * string
49434947 StagedDataExpirationInDays int
49444948 State TargetState
@@ -4989,6 +4993,8 @@ func (s3Target *S3Target) parse(xmlNode *XmlNode, aggErr *AggregateError) {
49894993 parseEnum (child .Content , & s3Target .Quiesced , aggErr )
49904994 case "Region" :
49914995 s3Target .Region = newS3RegionFromContent (child .Content , aggErr )
4996+ case "RestrictedAccess" :
4997+ s3Target .RestrictedAccess = parseBool (child .Content , aggErr )
49924998 case "SecretKey" :
49934999 s3Target .SecretKey = parseNullableString (child .Content )
49945000 case "StagedDataExpirationInDays" :
0 commit comments