Documentation ¶
Index ¶
- func PossibleValuesForApprovalMode() []string
- func PossibleValuesForEnablementRules() []string
- func PossibleValuesForNotificationDeliveryMechanism() []string
- func PossibleValuesForNotificationLevel() []string
- func PossibleValuesForRecipientType() []string
- func PossibleValuesForRoleManagementPolicyRuleType() []string
- func PossibleValuesForUserType() []string
- func ValidateScopedRoleManagementPolicyAssignmentID(input interface{}, key string) (warnings []string, errors []error)
- type ApprovalMode
- type ApprovalSettings
- type ApprovalStage
- type BaseRoleManagementPolicyRuleImpl
- type CreateOperationResponse
- type DeleteOperationResponse
- type EnablementRules
- type GetOperationResponse
- type ListForScopeCompleteResult
- type ListForScopeCustomPager
- type ListForScopeOperationResponse
- type NotificationDeliveryMechanism
- type NotificationLevel
- type PolicyAssignmentProperties
- type PolicyAssignmentPropertiesPolicy
- type PolicyAssignmentPropertiesRoleDefinition
- type PolicyAssignmentPropertiesScope
- type Principal
- type RawRoleManagementPolicyRuleImpl
- type RecipientType
- type RoleManagementPolicyApprovalRule
- type RoleManagementPolicyAssignment
- type RoleManagementPolicyAssignmentOperationPredicate
- type RoleManagementPolicyAssignmentProperties
- type RoleManagementPolicyAssignmentsClient
- func (c RoleManagementPolicyAssignmentsClient) Create(ctx context.Context, id ScopedRoleManagementPolicyAssignmentId, ...) (result CreateOperationResponse, err error)
- func (c RoleManagementPolicyAssignmentsClient) Delete(ctx context.Context, id ScopedRoleManagementPolicyAssignmentId) (result DeleteOperationResponse, err error)
- func (c RoleManagementPolicyAssignmentsClient) Get(ctx context.Context, id ScopedRoleManagementPolicyAssignmentId) (result GetOperationResponse, err error)
- func (c RoleManagementPolicyAssignmentsClient) ListForScope(ctx context.Context, id commonids.ScopeId) (result ListForScopeOperationResponse, err error)
- func (c RoleManagementPolicyAssignmentsClient) ListForScopeComplete(ctx context.Context, id commonids.ScopeId) (ListForScopeCompleteResult, error)
- func (c RoleManagementPolicyAssignmentsClient) ListForScopeCompleteMatchingPredicate(ctx context.Context, id commonids.ScopeId, ...) (result ListForScopeCompleteResult, err error)
- type RoleManagementPolicyAuthenticationContextRule
- type RoleManagementPolicyEnablementRule
- type RoleManagementPolicyExpirationRule
- type RoleManagementPolicyNotificationRule
- type RoleManagementPolicyRule
- type RoleManagementPolicyRuleTarget
- type RoleManagementPolicyRuleType
- type ScopedRoleManagementPolicyAssignmentId
- func NewScopedRoleManagementPolicyAssignmentID(scope string, roleManagementPolicyAssignmentName string) ScopedRoleManagementPolicyAssignmentId
- func ParseScopedRoleManagementPolicyAssignmentID(input string) (*ScopedRoleManagementPolicyAssignmentId, error)
- func ParseScopedRoleManagementPolicyAssignmentIDInsensitively(input string) (*ScopedRoleManagementPolicyAssignmentId, error)
- func (id *ScopedRoleManagementPolicyAssignmentId) FromParseResult(input resourceids.ParseResult) error
- func (id ScopedRoleManagementPolicyAssignmentId) ID() string
- func (id ScopedRoleManagementPolicyAssignmentId) Segments() []resourceids.Segment
- func (id ScopedRoleManagementPolicyAssignmentId) String() string
- type UserSet
- type UserType
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForApprovalMode ¶ added in v0.20241009.1142232
func PossibleValuesForApprovalMode() []string
func PossibleValuesForEnablementRules ¶ added in v0.20241009.1142232
func PossibleValuesForEnablementRules() []string
func PossibleValuesForNotificationDeliveryMechanism ¶ added in v0.20241009.1142232
func PossibleValuesForNotificationDeliveryMechanism() []string
func PossibleValuesForNotificationLevel ¶ added in v0.20241009.1142232
func PossibleValuesForNotificationLevel() []string
func PossibleValuesForRecipientType ¶ added in v0.20241009.1142232
func PossibleValuesForRecipientType() []string
func PossibleValuesForRoleManagementPolicyRuleType ¶
func PossibleValuesForRoleManagementPolicyRuleType() []string
func PossibleValuesForUserType ¶ added in v0.20241009.1142232
func PossibleValuesForUserType() []string
func ValidateScopedRoleManagementPolicyAssignmentID ¶
func ValidateScopedRoleManagementPolicyAssignmentID(input interface{}, key string) (warnings []string, errors []error)
ValidateScopedRoleManagementPolicyAssignmentID checks that 'input' can be parsed as a Scoped Role Management Policy Assignment ID
Types ¶
type ApprovalMode ¶ added in v0.20241009.1142232
type ApprovalMode string
const ( ApprovalModeNoApproval ApprovalMode = "NoApproval" ApprovalModeParallel ApprovalMode = "Parallel" ApprovalModeSerial ApprovalMode = "Serial" ApprovalModeSingleStage ApprovalMode = "SingleStage" )
func (*ApprovalMode) UnmarshalJSON ¶ added in v0.20241009.1142232
func (s *ApprovalMode) UnmarshalJSON(bytes []byte) error
type ApprovalSettings ¶ added in v0.20241009.1142232
type ApprovalSettings struct { ApprovalMode *ApprovalMode `json:"approvalMode,omitempty"` ApprovalStages *[]ApprovalStage `json:"approvalStages,omitempty"` IsApprovalRequired *bool `json:"isApprovalRequired,omitempty"` IsApprovalRequiredForExtension *bool `json:"isApprovalRequiredForExtension,omitempty"` IsRequestorJustificationRequired *bool `json:"isRequestorJustificationRequired,omitempty"` }
type ApprovalStage ¶ added in v0.20241009.1142232
type ApprovalStage struct { ApprovalStageTimeOutInDays *int64 `json:"approvalStageTimeOutInDays,omitempty"` EscalationApprovers *[]UserSet `json:"escalationApprovers,omitempty"` EscalationTimeInMinutes *int64 `json:"escalationTimeInMinutes,omitempty"` IsApproverJustificationRequired *bool `json:"isApproverJustificationRequired,omitempty"` IsEscalationEnabled *bool `json:"isEscalationEnabled,omitempty"` PrimaryApprovers *[]UserSet `json:"primaryApprovers,omitempty"` }
type BaseRoleManagementPolicyRuleImpl ¶ added in v0.20240920.1135249
type BaseRoleManagementPolicyRuleImpl struct { Id *string `json:"id,omitempty"` RuleType RoleManagementPolicyRuleType `json:"ruleType"` Target *RoleManagementPolicyRuleTarget `json:"target,omitempty"` }
func (BaseRoleManagementPolicyRuleImpl) RoleManagementPolicyRule ¶ added in v0.20240920.1135249
func (s BaseRoleManagementPolicyRuleImpl) RoleManagementPolicyRule() BaseRoleManagementPolicyRuleImpl
type CreateOperationResponse ¶
type CreateOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *RoleManagementPolicyAssignment }
type DeleteOperationResponse ¶
type EnablementRules ¶ added in v0.20241009.1142232
type EnablementRules string
const ( EnablementRulesJustification EnablementRules = "Justification" EnablementRulesMultiFactorAuthentication EnablementRules = "MultiFactorAuthentication" EnablementRulesTicketing EnablementRules = "Ticketing" )
func (*EnablementRules) UnmarshalJSON ¶ added in v0.20241009.1142232
func (s *EnablementRules) UnmarshalJSON(bytes []byte) error
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *RoleManagementPolicyAssignment }
type ListForScopeCompleteResult ¶
type ListForScopeCompleteResult struct { LatestHttpResponse *http.Response Items []RoleManagementPolicyAssignment }
type ListForScopeCustomPager ¶ added in v0.20240628.1153531
func (*ListForScopeCustomPager) NextPageLink ¶ added in v0.20240628.1153531
func (p *ListForScopeCustomPager) NextPageLink() *odata.Link
type ListForScopeOperationResponse ¶
type ListForScopeOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]RoleManagementPolicyAssignment }
type NotificationDeliveryMechanism ¶ added in v0.20241009.1142232
type NotificationDeliveryMechanism string
const (
NotificationDeliveryMechanismEmail NotificationDeliveryMechanism = "Email"
)
func (*NotificationDeliveryMechanism) UnmarshalJSON ¶ added in v0.20241009.1142232
func (s *NotificationDeliveryMechanism) UnmarshalJSON(bytes []byte) error
type NotificationLevel ¶ added in v0.20241009.1142232
type NotificationLevel string
const ( NotificationLevelAll NotificationLevel = "All" NotificationLevelCritical NotificationLevel = "Critical" NotificationLevelNone NotificationLevel = "None" )
func (*NotificationLevel) UnmarshalJSON ¶ added in v0.20241009.1142232
func (s *NotificationLevel) UnmarshalJSON(bytes []byte) error
type PolicyAssignmentProperties ¶
type PolicyAssignmentProperties struct { Policy *PolicyAssignmentPropertiesPolicy `json:"policy,omitempty"` RoleDefinition *PolicyAssignmentPropertiesRoleDefinition `json:"roleDefinition,omitempty"` Scope *PolicyAssignmentPropertiesScope `json:"scope,omitempty"` }
type PolicyAssignmentPropertiesPolicy ¶
type PolicyAssignmentPropertiesPolicy struct { Id *string `json:"id,omitempty"` LastModifiedBy *Principal `json:"lastModifiedBy,omitempty"` LastModifiedDateTime *string `json:"lastModifiedDateTime,omitempty"` }
func (*PolicyAssignmentPropertiesPolicy) GetLastModifiedDateTimeAsTime ¶
func (o *PolicyAssignmentPropertiesPolicy) GetLastModifiedDateTimeAsTime() (*time.Time, error)
func (*PolicyAssignmentPropertiesPolicy) SetLastModifiedDateTimeAsTime ¶
func (o *PolicyAssignmentPropertiesPolicy) SetLastModifiedDateTimeAsTime(input time.Time)
type RawRoleManagementPolicyRuleImpl ¶
type RawRoleManagementPolicyRuleImpl struct { Type string Values map[string]interface{} // contains filtered or unexported fields }
RawRoleManagementPolicyRuleImpl is returned when the Discriminated Value doesn't match any of the defined types NOTE: this should only be used when a type isn't defined for this type of Object (as a workaround) and is used only for Deserialization (e.g. this cannot be used as a Request Payload).
func (RawRoleManagementPolicyRuleImpl) RoleManagementPolicyRule ¶ added in v0.20240920.1135249
func (s RawRoleManagementPolicyRuleImpl) RoleManagementPolicyRule() BaseRoleManagementPolicyRuleImpl
type RecipientType ¶ added in v0.20241009.1142232
type RecipientType string
const ( RecipientTypeAdmin RecipientType = "Admin" RecipientTypeApprover RecipientType = "Approver" RecipientTypeRequestor RecipientType = "Requestor" )
func (*RecipientType) UnmarshalJSON ¶ added in v0.20241009.1142232
func (s *RecipientType) UnmarshalJSON(bytes []byte) error
type RoleManagementPolicyApprovalRule ¶ added in v0.20241009.1142232
type RoleManagementPolicyApprovalRule struct { Setting *ApprovalSettings `json:"setting,omitempty"` Id *string `json:"id,omitempty"` RuleType RoleManagementPolicyRuleType `json:"ruleType"` Target *RoleManagementPolicyRuleTarget `json:"target,omitempty"` }
func (RoleManagementPolicyApprovalRule) MarshalJSON ¶ added in v0.20241009.1142232
func (s RoleManagementPolicyApprovalRule) MarshalJSON() ([]byte, error)
func (RoleManagementPolicyApprovalRule) RoleManagementPolicyRule ¶ added in v0.20241009.1142232
func (s RoleManagementPolicyApprovalRule) RoleManagementPolicyRule() BaseRoleManagementPolicyRuleImpl
type RoleManagementPolicyAssignment ¶
type RoleManagementPolicyAssignment struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *RoleManagementPolicyAssignmentProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type RoleManagementPolicyAssignmentOperationPredicate ¶
type RoleManagementPolicyAssignmentOperationPredicate struct { Id *string Name *string Type *string }
func (RoleManagementPolicyAssignmentOperationPredicate) Matches ¶
func (p RoleManagementPolicyAssignmentOperationPredicate) Matches(input RoleManagementPolicyAssignment) bool
type RoleManagementPolicyAssignmentProperties ¶
type RoleManagementPolicyAssignmentProperties struct { EffectiveRules *[]RoleManagementPolicyRule `json:"effectiveRules,omitempty"` PolicyAssignmentProperties *PolicyAssignmentProperties `json:"policyAssignmentProperties,omitempty"` PolicyId *string `json:"policyId,omitempty"` RoleDefinitionId *string `json:"roleDefinitionId,omitempty"` Scope *string `json:"scope,omitempty"` }
func (*RoleManagementPolicyAssignmentProperties) UnmarshalJSON ¶
func (s *RoleManagementPolicyAssignmentProperties) UnmarshalJSON(bytes []byte) error
type RoleManagementPolicyAssignmentsClient ¶
type RoleManagementPolicyAssignmentsClient struct {
Client *resourcemanager.Client
}
func NewRoleManagementPolicyAssignmentsClientWithBaseURI ¶
func NewRoleManagementPolicyAssignmentsClientWithBaseURI(sdkApi sdkEnv.Api) (*RoleManagementPolicyAssignmentsClient, error)
func (RoleManagementPolicyAssignmentsClient) Create ¶
func (c RoleManagementPolicyAssignmentsClient) Create(ctx context.Context, id ScopedRoleManagementPolicyAssignmentId, input RoleManagementPolicyAssignment) (result CreateOperationResponse, err error)
Create ...
func (RoleManagementPolicyAssignmentsClient) Delete ¶
func (c RoleManagementPolicyAssignmentsClient) Delete(ctx context.Context, id ScopedRoleManagementPolicyAssignmentId) (result DeleteOperationResponse, err error)
Delete ...
func (RoleManagementPolicyAssignmentsClient) Get ¶
func (c RoleManagementPolicyAssignmentsClient) Get(ctx context.Context, id ScopedRoleManagementPolicyAssignmentId) (result GetOperationResponse, err error)
Get ...
func (RoleManagementPolicyAssignmentsClient) ListForScope ¶
func (c RoleManagementPolicyAssignmentsClient) ListForScope(ctx context.Context, id commonids.ScopeId) (result ListForScopeOperationResponse, err error)
ListForScope ...
func (RoleManagementPolicyAssignmentsClient) ListForScopeComplete ¶
func (c RoleManagementPolicyAssignmentsClient) ListForScopeComplete(ctx context.Context, id commonids.ScopeId) (ListForScopeCompleteResult, error)
ListForScopeComplete retrieves all the results into a single object
func (RoleManagementPolicyAssignmentsClient) ListForScopeCompleteMatchingPredicate ¶
func (c RoleManagementPolicyAssignmentsClient) ListForScopeCompleteMatchingPredicate(ctx context.Context, id commonids.ScopeId, predicate RoleManagementPolicyAssignmentOperationPredicate) (result ListForScopeCompleteResult, err error)
ListForScopeCompleteMatchingPredicate retrieves all the results and then applies the predicate
type RoleManagementPolicyAuthenticationContextRule ¶ added in v0.20241009.1142232
type RoleManagementPolicyAuthenticationContextRule struct { ClaimValue *string `json:"claimValue,omitempty"` IsEnabled *bool `json:"isEnabled,omitempty"` Id *string `json:"id,omitempty"` RuleType RoleManagementPolicyRuleType `json:"ruleType"` Target *RoleManagementPolicyRuleTarget `json:"target,omitempty"` }
func (RoleManagementPolicyAuthenticationContextRule) MarshalJSON ¶ added in v0.20241009.1142232
func (s RoleManagementPolicyAuthenticationContextRule) MarshalJSON() ([]byte, error)
func (RoleManagementPolicyAuthenticationContextRule) RoleManagementPolicyRule ¶ added in v0.20241009.1142232
func (s RoleManagementPolicyAuthenticationContextRule) RoleManagementPolicyRule() BaseRoleManagementPolicyRuleImpl
type RoleManagementPolicyEnablementRule ¶ added in v0.20241009.1142232
type RoleManagementPolicyEnablementRule struct { EnabledRules *[]EnablementRules `json:"enabledRules,omitempty"` Id *string `json:"id,omitempty"` RuleType RoleManagementPolicyRuleType `json:"ruleType"` Target *RoleManagementPolicyRuleTarget `json:"target,omitempty"` }
func (RoleManagementPolicyEnablementRule) MarshalJSON ¶ added in v0.20241009.1142232
func (s RoleManagementPolicyEnablementRule) MarshalJSON() ([]byte, error)
func (RoleManagementPolicyEnablementRule) RoleManagementPolicyRule ¶ added in v0.20241009.1142232
func (s RoleManagementPolicyEnablementRule) RoleManagementPolicyRule() BaseRoleManagementPolicyRuleImpl
type RoleManagementPolicyExpirationRule ¶ added in v0.20241009.1142232
type RoleManagementPolicyExpirationRule struct { IsExpirationRequired *bool `json:"isExpirationRequired,omitempty"` MaximumDuration *string `json:"maximumDuration,omitempty"` Id *string `json:"id,omitempty"` RuleType RoleManagementPolicyRuleType `json:"ruleType"` Target *RoleManagementPolicyRuleTarget `json:"target,omitempty"` }
func (RoleManagementPolicyExpirationRule) MarshalJSON ¶ added in v0.20241009.1142232
func (s RoleManagementPolicyExpirationRule) MarshalJSON() ([]byte, error)
func (RoleManagementPolicyExpirationRule) RoleManagementPolicyRule ¶ added in v0.20241009.1142232
func (s RoleManagementPolicyExpirationRule) RoleManagementPolicyRule() BaseRoleManagementPolicyRuleImpl
type RoleManagementPolicyNotificationRule ¶ added in v0.20241009.1142232
type RoleManagementPolicyNotificationRule struct { IsDefaultRecipientsEnabled *bool `json:"isDefaultRecipientsEnabled,omitempty"` NotificationLevel *NotificationLevel `json:"notificationLevel,omitempty"` NotificationRecipients *[]string `json:"notificationRecipients,omitempty"` NotificationType *NotificationDeliveryMechanism `json:"notificationType,omitempty"` RecipientType *RecipientType `json:"recipientType,omitempty"` Id *string `json:"id,omitempty"` RuleType RoleManagementPolicyRuleType `json:"ruleType"` Target *RoleManagementPolicyRuleTarget `json:"target,omitempty"` }
func (RoleManagementPolicyNotificationRule) MarshalJSON ¶ added in v0.20241009.1142232
func (s RoleManagementPolicyNotificationRule) MarshalJSON() ([]byte, error)
func (RoleManagementPolicyNotificationRule) RoleManagementPolicyRule ¶ added in v0.20241009.1142232
func (s RoleManagementPolicyNotificationRule) RoleManagementPolicyRule() BaseRoleManagementPolicyRuleImpl
type RoleManagementPolicyRule ¶
type RoleManagementPolicyRule interface {
RoleManagementPolicyRule() BaseRoleManagementPolicyRuleImpl
}
func UnmarshalRoleManagementPolicyRuleImplementation ¶ added in v0.20240920.1135249
func UnmarshalRoleManagementPolicyRuleImplementation(input []byte) (RoleManagementPolicyRule, error)
type RoleManagementPolicyRuleTarget ¶
type RoleManagementPolicyRuleTarget struct { Caller *string `json:"caller,omitempty"` EnforcedSettings *[]string `json:"enforcedSettings,omitempty"` InheritableSettings *[]string `json:"inheritableSettings,omitempty"` Level *string `json:"level,omitempty"` Operations *[]string `json:"operations,omitempty"` TargetObjects *[]string `json:"targetObjects,omitempty"` }
type RoleManagementPolicyRuleType ¶
type RoleManagementPolicyRuleType string
const ( RoleManagementPolicyRuleTypeRoleManagementPolicyApprovalRule RoleManagementPolicyRuleType = "RoleManagementPolicyApprovalRule" RoleManagementPolicyRuleTypeRoleManagementPolicyAuthenticationContextRule RoleManagementPolicyRuleType = "RoleManagementPolicyAuthenticationContextRule" RoleManagementPolicyRuleTypeRoleManagementPolicyEnablementRule RoleManagementPolicyRuleType = "RoleManagementPolicyEnablementRule" RoleManagementPolicyRuleTypeRoleManagementPolicyExpirationRule RoleManagementPolicyRuleType = "RoleManagementPolicyExpirationRule" RoleManagementPolicyRuleTypeRoleManagementPolicyNotificationRule RoleManagementPolicyRuleType = "RoleManagementPolicyNotificationRule" )
func (*RoleManagementPolicyRuleType) UnmarshalJSON ¶
func (s *RoleManagementPolicyRuleType) UnmarshalJSON(bytes []byte) error
type ScopedRoleManagementPolicyAssignmentId ¶
type ScopedRoleManagementPolicyAssignmentId struct { Scope string RoleManagementPolicyAssignmentName string }
ScopedRoleManagementPolicyAssignmentId is a struct representing the Resource ID for a Scoped Role Management Policy Assignment
func NewScopedRoleManagementPolicyAssignmentID ¶
func NewScopedRoleManagementPolicyAssignmentID(scope string, roleManagementPolicyAssignmentName string) ScopedRoleManagementPolicyAssignmentId
NewScopedRoleManagementPolicyAssignmentID returns a new ScopedRoleManagementPolicyAssignmentId struct
func ParseScopedRoleManagementPolicyAssignmentID ¶
func ParseScopedRoleManagementPolicyAssignmentID(input string) (*ScopedRoleManagementPolicyAssignmentId, error)
ParseScopedRoleManagementPolicyAssignmentID parses 'input' into a ScopedRoleManagementPolicyAssignmentId
func ParseScopedRoleManagementPolicyAssignmentIDInsensitively ¶
func ParseScopedRoleManagementPolicyAssignmentIDInsensitively(input string) (*ScopedRoleManagementPolicyAssignmentId, error)
ParseScopedRoleManagementPolicyAssignmentIDInsensitively parses 'input' case-insensitively into a ScopedRoleManagementPolicyAssignmentId note: this method should only be used for API response data and not user input
func (*ScopedRoleManagementPolicyAssignmentId) FromParseResult ¶
func (id *ScopedRoleManagementPolicyAssignmentId) FromParseResult(input resourceids.ParseResult) error
func (ScopedRoleManagementPolicyAssignmentId) ID ¶
func (id ScopedRoleManagementPolicyAssignmentId) ID() string
ID returns the formatted Scoped Role Management Policy Assignment ID
func (ScopedRoleManagementPolicyAssignmentId) Segments ¶
func (id ScopedRoleManagementPolicyAssignmentId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Scoped Role Management Policy Assignment ID
func (ScopedRoleManagementPolicyAssignmentId) String ¶
func (id ScopedRoleManagementPolicyAssignmentId) String() string
String returns a human-readable description of this Scoped Role Management Policy Assignment ID
Source Files ¶
- client.go
- constants.go
- id_scopedrolemanagementpolicyassignment.go
- method_create.go
- method_delete.go
- method_get.go
- method_listforscope.go
- model_approvalsettings.go
- model_approvalstage.go
- model_policyassignmentproperties.go
- model_policyassignmentpropertiespolicy.go
- model_policyassignmentpropertiesroledefinition.go
- model_policyassignmentpropertiesscope.go
- model_principal.go
- model_rolemanagementpolicyapprovalrule.go
- model_rolemanagementpolicyassignment.go
- model_rolemanagementpolicyassignmentproperties.go
- model_rolemanagementpolicyauthenticationcontextrule.go
- model_rolemanagementpolicyenablementrule.go
- model_rolemanagementpolicyexpirationrule.go
- model_rolemanagementpolicynotificationrule.go
- model_rolemanagementpolicyrule.go
- model_rolemanagementpolicyruletarget.go
- model_userset.go
- predicates.go
- version.go